@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
}
body {
  color: #453910; /* RGB */
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #FFFDF9;
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease 0s;
}
.none {
  display: none;
}
address {
  font-style: normal;
}
/*コンテンツの幅・中央揃え*/
.row {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .row {
    padding: 0 16px;
  }
}
.inner {
  width: 92%;
  margin: 0 auto;
}
/*------------------------
  PC版トップページ用ヘッダー
------------------------*/
#header-index {
  width: 100%;
  height: 100vh;
  background-image: url("../images/top-first-view@2x.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
#header-index .header-logo_pc-index {
  width: 100%;
  height: 250px;
  background-image: url("../images/header-bg_top@.png");
  background-size: auto 100%;
  background-position: center top;
  background-repeat: repeat-x;
  margin-bottom: 15vh;
}
.header-logo_pc-index .header-logo {
  width: 400px;
  height: 200px;
  margin: 0 auto;
}
.header-logo_pc-index .header-logo img {
  width: 100%;
  height: auto;
}
#header-index .header-lead {
  position: relative;
  padding-bottom: 9vh;
}
#header-index .header-lead h2 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 40px;
}
#header-index .header-lead p {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 50px;
}
/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: -60px;
  left: 50%;
}
/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: -17px;
  top: -85px;
  /*テキストの形状*/
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
/* 丸の描写 */
.scrolldown2:before {
  content: "♦︎";
  /*描画位置*/
  font-size: 1.3rem;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: -6px;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 50px;
  background: #fff;
}
@media screen and (max-width:599px) {
  #header-index {
  background-image: url("../images/top-first-view_sp@2x.png");
  background-size: auto 100%;
  background-position: right;
  background-repeat: no-repeat;
}
  #header-index .header-logo_pc-index {
    height: 220px;
    margin-bottom: 5vh;
  }
  .header-logo_pc-index .header-logo {
    width: 94%;
    max-width: 350px;
  }
  #header-index .header-lead {
    padding-bottom: 10vh;
  }
  #header-index .header-lead h2 {
    font-size: 2.6rem;
    margin-bottom: 4vh;
  }
  #header-index .header-lead p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 6vh;
  }
}
/*------------------------
  PC版下層ページのヘッダー
------------------------*/
.header .header-logo_pc {
  width: 100%;
  height: 250px;
  background-image: url("../images/header-bg.jpg");
  background-size: auto 100%;
  background-position: center top;
  background-repeat: repeat-x;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100;
}
.header-logo_pc .header-logo {
  width: 375px;
  height: 200px;
  margin: 0 auto;
}
.header-logo_pc .header-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:599px) {
  .header .header-logo_sp {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding-left: 5px;
    border-bottom: solid 1px #D1C59E;
  }
}
/*------------------------
  PC版ナビゲーションメニュー
------------------------*/
/*PC版全ページ共通*/
nav {
  width: 100%;
  height: 50px;
  margin-top: -50px;
  position: relative;
  z-index: 1000;
}
nav ul {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav ul li a {
  display: block;
  width: 83px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all .3s;
  text-align: center;
  padding: 11px 10px;
}
/*トップページのみのCSS*/
#nav_pc-index ul li a {
  font-family: 'Shippori Mincho', serif;
  color: #fff;
}
/*下層ページのみのCSS*/
#nav_pc ul li a {
  font-family: 'Shippori Mincho', serif;
  color: #726740;
}
/*ホバーで変化をつける*/
nav ul li a:hover{
  border-bottom:  3px solid ;
}
/*表示中のページに変化をつける*/
a.current, li.current a{
  border-bottom:  3px solid ;
}
/*ナビゲーションメニューのドロップダウン*/

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
/*下層ページのみ*/
#nav_pc ul li.has-child::before {
  border-top: 2px solid #726740;
  border-right: 2px solid #726740;
}
/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #A39568;
  border-right: 2px solid #A39568;
  transform: rotate(135deg);
}
/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -258px;
  bottom: -52px;
  z-index: 4;
  /*形状を指定*/
  width: 600px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all .3s;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #A39568;
  width: 200px!important;
  background-color: rgba(255, 255, 255, 0.9);
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  background: #fff;
  color: #453910;
}
/*==3階層目*/
/*3階層目の位置*/
nav li.has-child ul ul {
  top: 49px;
  left: 0px;
  display: block;
}
nav li.has-child ul ul li a:hover, nav li.has-child ul ul li a:active {
  background: #fff;
  color: #453910;
}
/*==599px以下の形状*/
@media screen and (max-width:599px) {
  nav {
    position: fixed;
    width: 95%;
    height: 95vh;
    top: 2.5%;
    left: 2.5%;
    background-color: #fff;
    border: 1px solid #D1C59E;
    border-radius: 3px;
    padding: 10%;
    margin-top: 0; /*PC版の時の位置調整を解除*/
    z-index: -1; /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    opacity: 0; /*はじめは透過0*/
    transition: all 0.3s;  
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  nav.panelactive {
    opacity: 1;
    z-index: 10000;
  }
  nav ul {
    display: none;
    z-index: 10000;
  }
  nav.panelactive ul {
    display: block;
    height: auto;
  }
  /* nav ul li {
    background-color: #fff;
  } */
  nav ul li a {
    color: #A39568 !important;
    width: 100%;
    padding: 11px;
  }
  
  /*２階層目のメニューを固定表示に*/
  nav.panelactive .secondmenu {
    width: 100%;
    position: static;
    border-top: solid 1px #D1C59E;
    border-bottom: solid 1px #D1C59E;
  }
  nav.panelactive .secondmenu li a {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #A39568;
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.0);
  }
  /*表示中のページに変化をつける*/
  a.current, li.current a{
  border-bottom:  none!important ;
  background-color: #F4F0E7!important;
}
　/*３階層目のメニューを非表示に*/
  nav.panelactive .thirdmenu {
    display: none;
  }
  
  /*矢印を非表示に*/
  nav ul li.has-child::before {
    display: none;
  }
  
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 99999; /*ボタンを最前面に*/
    top: 10px;
    right: 16px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #A39568;
    width: 70%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 70%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(30deg);
    width: 70%;
  }
}
/*------------------------
  PC版ナビゲーションがスクロールして固定された時のCSS
  トップページ・下層ページ共通
------------------------*/
@media (min-width: 600px) {
  .gnav-fix {
    position: fixed !important;
    top: 0;
    margin-top: 0 !important;
    animation-name: fadeIn;
    animation-duration: 0.8s;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
  }
  .gnav-fix a {
    color: #A39568 !important;
  }
  .gnav-fix a:hover {
    color: #453910 !important;
  }
  .gnav-fix ul li.has-child::before {
    border-top: 2px solid #A39568 !important;
    border-right: 2px solid #A39568 !important;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------
  PC用フッター
  全ページ共通
------------------------*/
.footer {
  width: 100%;
  height: 300px;
  border-top: solid 5px #A39568;
  background-image: url("../images/footer-bg.svg");
  background-repeat: repeat;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-top {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 120px;
}
.footer-logo {
  width: 25%;
  height: auto;
}
.footer-top img {
  width: 100%;
  height: auto;
}
.footer .sns-icons ul {
  display: flex;
  justify-content: center;
}
.footer .sns-icons ul li i {
  color: #fff;
  font-size: 2.4rem;
}
.footer .sns-icons ul li:nth-child(n+2) i {
  margin-left: 25px;
  line-height: 2.4rem;
  font-size: 2.2rem;
}
.footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.footer-bottom address {
  width: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  text-align: left;
}
.footer-bottom address i, .footer-bottom address a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom small {
  width: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  text-align: right;
}
@media (max-width: 599px) {
  .footer {
    height: 400px;
    padding-top: 60px;
  }
  .footer-top {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .footer-logo {
    width: 200px;
    height: auto;
    margin-left: 5px;
  }
  .footer .sns-icons ul li i {
    font-size: 3rem;
  }
  .footer .sns-icons ul li:nth-child(n+2) i {
    font-size: 2.6rem;
    line-height: 3rem;
    margin-left: 40px;
  }
  .footer-bottom {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-bottom address {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-bottom small {
    width: 100%;
    text-align: center;
  }
}
/*========= ページトップボタンのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.2));
  transition: all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 50px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media (max-width: 599px) {
  #page-top {
    right: 10px;
  }
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 1s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}
/*------------------------
  スクロールをしたらふわっと出現させる
------------------------*/
.fadeInUp {
  opacity: 0;
}
.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
@media (min-width: 600px) {
  .delay-time03 {
    animation-delay: 0.3s;
  }
  .delay-time06 {
    animation-delay: 0.6s;
  }
}

.visible {
  visibility: visible !important;
  opacity: 1 !important;
}