@charset "UTF-8";

@font-face {
  font-family: SetoFontSP_sjis;
  src: url('../fonts/SetoFontSP_sjis.woff') format("woff");
}


@media(min-width: 800px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-size: 16px;
}

body {
  max-width: 1920px;
  color: #40210F;
  font-family: SetoFontSP_sjis, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  background: #fff;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration-line: none;
  color: #40210F;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

/* 見出し
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3 {
  font-weight: bold;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb120 {
  margin-bottom: 120px;
}

.mt40 {
  margin-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb100 {
  padding-bottom: 100px;
}

.pt40 {
  padding-top: 40px;
}

.pt80 {
  padding-top: 80px;
}

.pt100 {
  padding-top: 100px;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.font24 {
  font-size: 24px;
}

.text-64 {
  font-size: 64px;
}

.text-red {
  color: #F5695F;
}

.text-white {
  color: #FFF;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 751px) {
  .pc {
    display: block;
  }

  .sp {
    display: none !important;
  }

  .pc-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .pc-row {
    flex-direction: column;
    align-items: center;
  }

  .font24 {
    font-size: 16px;
  }

}

.box1440 {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 10px;
}

.box1200 {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.bg-tile {
  background-image: url(../images/head_img.png);
  width: 100%;
  height: 0;
  padding-top: calc(160 / 1920 * 100%);
  /* calc(画像高さ ÷ 画像横幅 × 100%) */
  background-size: cover;
  margin-bottom: 10px;
}

.bg-top {
  background-image: url(../images/head_img.png);
  background-size: cover;
  width: 100%;
}


.bg-orange {
  background-image: url(../images/bg_orange.jpg);
  background-size: cover;
}

.bg-white {
  background-image: url(../images/bg_white.jpg);
  background-size: cover;
}


.logo-tel-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
@media screen and (min-width: 1201px) {

  /* PC時はMENUボタンを非表示 */
  #open,
  #close {
    display: none !important;
  }

  #navi {
    display: block !important;
  }
}

nav ul {
  font-size: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.nav01 {
  background: url(../images/nav_top.png) no-repeat left center;
}

.nav02 {
  background: url(../images/nav_katsura.png) no-repeat left center;
}
.nav03 {
  background: url("../images/nav_katsura-room.png") no-repeat left center;
}
.nav04 {
  background: url("../images/nav_kidsbase.png") no-repeat left center;
}

.nav01,
.nav02,
.nav03,
.nav04 {
  padding-left: 68px;
  margin-bottom: 10px;
  white-space: nowrap;
  background-size: auto 55px;
  line-height: 1.2;
}

#navi ul li span {
  font-size: 0.7em;
  padding-right: 0.5em;
}


nav a {
  display: block;
  padding: 10px 0;
}

nav a:hover {
  color: #F5695F;
}

@media screen and (max-width: 1200px) {
  .bg-tile {
    display: none;
  }

  .logo-tel-area {
    padding: 2rem 1rem 1rem;
  }

  .menu {
    background-color: #fff;
    bottom: 0;
  }

  nav ul {
    font-size: 16px;
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
  }

  nav li {
    padding: 10px 0 10px 2rem;
    border-bottom: 1px dotted #D6D6D6;
    margin-bottom: 0;
  }

  nav li a {
    text-align: left;
  }

  nav a {
    padding: 1rem;
  }

  .nav01,
  .nav02,
	.nav03,
  .nav04 {
    padding-left: 45px;
    margin-bottom: 0px;
    background-size: auto 50px;
  }


  /* スマホ時はMENUボタンを表示 */
  #open,
  #close {
    display: block;
    position: relative;
    text-align: right;
  }

  #open img,
  #close img {
    position: relative;
    top: 5px;
    right: 5px;
    width: 10%;
    filter: drop-shadow(5px 5px 2px rgb(214, 214, 214));
  }

  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}


.top-view {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(800 / 1920 * 100%);
  background: url(../images/top_view.jpg) center center / cover no-repeat;
}

.topview-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.mirai-toptext {
  text-shadow: 6px 4px 2px #fff;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 8%;
  height: auto;
  z-index: 999;
}

#pagetop img {
  width: 100%;
}

#pagetop a:hover {
  opacity: 1;
}


@media (max-width: 1280px) {
  .opening-img img {
    width: 80%;
  }
}

@media (max-width: 980px) {
  .opening-img img {
    width: 60%;
  }

}

@media (max-width: 750px) {
  h3 {
    font-size: 16px;
  }

  .row {
    flex-direction: column;
    align-items: center;
  }

  #open img,
  #close img {
    width: 15%;
  }

  #pagetop {
    width: 16%;
  }

  .mirai-toptext {
    font-size: 23px;
  }
}

.greeting-box {
  padding: 4rem 3em;
  margin: 4em auto;
  background: #FFF;
  border: solid 3px #91c8d0;
  border-radius: 10px;
  max-width: 1000px;
  width: 80%;
}

.greeting-ttl {
  text-align: center;
  margin-bottom: 2rem;
}

.greeting-text {
  flex-basis: 78%;
  margin-bottom: 2em;
}

.greeting-text span {
  color: #F5695F;
  font-weight: bold;
  font-size: 1.1em;
}

.greeting-img {
  flex-basis: 18%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 750px) {

  .greeting-box {
    padding: 2rem;
    width: 90%;
  }

  .greeting-text {
    margin: 0 auto 2rem;
  }

}

/**************************************************
          footer
**************************************************/
footer .box1440 {
  position: relative;
}

.footer-mailto {
  position: absolute;
  top: -45px;
  right: 5px;
}

.footer-mailto a img {
  width: 60%;
}

.logo-address {
  display: flex;
  flex-direction: column;
  flex: 0 1 45%;
  width: 100%;
}

.map-area {
  flex: 0 1 48%;
  margin-left: 1rem;
  width: 100%;
}

.map-area iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-img {
  position: relative;
  top: 15px;
  z-index: 2;
}

.row.footer-group {
  justify-content: center;
  gap: 1em;
	flex-wrap: wrap;
	max-width: 610px;
    margin: 0 auto;
}

.row.footer-group > div:first-of-type {
	display: flex;
	justify-content: center;
	width: 100%;
    /*text-align: center;*/
}
.row.footer-group > a {
	width: 48%;
}

.footer-group a img {
/*  border: 1px solid #e0e0e0;*/
	display: block;
}

.row.footer-group>div:first-of-type a:not(:last-of-type) {
  position: relative;
}

.row.footer-group>div:first-of-type a:not(:last-of-type)::after {
  content: "";
  width: 2px;
  height: 60%;
  background-color: #40210f;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.copyright {
  font-size: 0.9em;
  font-weight: bold;
  padding: 40px 0 15px;
  background-image: url(../images/copyright_bg.png);
  width: 100%;
  position: relative;
  top: -30px;
}

@media (max-width: 750px) {
  .footer-mailto {
    position: absolute;
    top: -60px;
    right: 5px;
  }

  .footer-mailto a img {
    width: 80%;
  }

  .map-area {
    margin: 40px 0;
    width: 80%;
  }
}

@media screen and (max-width: 560px) {
	.row.footer-group > div:first-of-type {
		flex-direction: column;
    align-items: center;
	}
	
	.row.footer-group>div:first-of-type a:not(:last-of-type)::after {
		width: 70%;
        height: 2px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 0;
	}
	
	.row.footer-group > a {width: auto;}
}