/* --------------------------- */
/* Base
/* --------------------------- */
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body{
  font-size: 1.4rem;
  color: #333;
  font-family: Poppins, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.15rem;
  line-height: 1;
}

img{
  width: 100%;
  vertical-align: bottom;
}
a{
  color: #333;
  text-decoration: none;
}
ul{
  list-style: none;
}


/* --------------------------- */
/* header
/* --------------------------- */
.header{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  background: #fff;
  line-height: 100px;
}

.header-scroll{
  line-height: 80px;
  transition: 0.3s;
}

.site-title{
  width: 70px;
  height: 50px;
  margin-top: 22px;
  margin-left: 40px;
  line-height: normal;
  z-index: 30;
}

.site-title-scroll{
  margin-top: 14px;
  width: 65px;
  transition: 0.15s;
}

.header-nav{
  width: 650px;
}

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

.nav-item{
  width: auto;
  text-align: center;
  font-weight: 600;
}

.nav-item a{
  color: #333;
  font-size: 1.3rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.nav-item a::after{
  position: absolute;
  bottom: 40px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.nav-item a:hover::after{
  bottom: 35px;
  opacity: 1;
  visibility: visible;
}

.nav-item-scroll a::after{
  position: absolute;
  bottom: 30px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.nav-item-scroll a:hover::after{
  bottom: 25px;
  opacity: 1;
  visibility: visible;
}

.nav-item-reserve{
  text-align: center;
  font-weight: 600; 
  margin-right: 25px;
}

.nav-item-reserve a{
  color: #94aebc;
  font-size: 1.3rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.nav-item-reserve a::after{
  position: absolute;
  bottom: 40px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #94aebc;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.nav-item-reserve a:hover::after{
  bottom: 35px;
  opacity: 1;
  visibility: visible;
}

.nav-item-reserve-scroll a::after{
  position: absolute;
  bottom: 30px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #94aebc;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.nav-item-reserve-scroll a:hover::after{
  bottom: 25px;
  opacity: 1;
  visibility: visible;
}

/*
.change-color{
  transition: 0.3s;
  color: #333;
}

.change-color a{
  transition: 0.3s;
  color: #333;
}

.nav-bg{
  background-color: #fff;
}
*/


/* --------------------------- */
/* key visual
/* --------------------------- */

.kv-container{
  display: flex;
  width: 100%;
}

.kv-blank{
  width: 0%;
  min-height: 0px;
}

.kv-wrapper{
  width: 100%;
}

.kv-slider img{
  height: auto;
  margin: 100px 0 0 auto;
}

/* --------------------------- */
/* Section
/* --------------------------- */

.section-wrapper{
  width: 100%;
  margin: 50px auto;
}

.section-title{
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
}


/* --------------------------- */
/* news
/* --------------------------- */

.section-title-bg-news{
  background-image: url(../img/gray02@2x\ 1.png);
  background-repeat: none;
  background-size: contain;
  width: 160px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-news{
  width: 100%;
  padding: 0 20%;
  display: flex;
  justify-content: center;
  line-height: 30px;
  margin: 36px 0;
  box-sizing: border-box;
}

.section-content-news dt{
  float: left;
  clear: left;
  width: 120px;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  font-weight: 300;

}

.section-content-news dd{
  margin-left: 120px;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
}

.section-content-news a:hover{
  color: #aaa;
}

/* --------------------------- */
/* news(news.html)
/* --------------------------- */
.section-wrapper-news{
  padding-top: 160px;
  margin-bottom: 160px;
}

.nav-news{
  color: #333;
}

.nav-news a{
  color: #333;
}

.dl-news{
  line-height: 40px;
}

/* --------------------------- */
/* news(news_detail.html)
/* --------------------------- */
.news-article{
  width: 100%;
  font-size: 1.4rem;
  margin: 0 auto;
  padding: 0 20%;
  box-sizing: border-box;
}

.news-date{
  width: 100%;
  display: inline-block;
  text-align: left;
  font-weight: 500;
  line-height: 21px;
  margin-top: 30px;
}

.news-title{
  width: 100%;
  display: inline-block;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid;
  line-height: 21px;
  margin-bottom: 30px;
}

.news-text{
  display: inline-block;
  text-align: left;
  line-height: 25px;
}


/* --------------------------- */
/* about
/* --------------------------- */

.section-title-bg-about{
  background-image: url(../img/gray02@2x\ 2.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: 10% 50%;
  width: 240px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-about{
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 25px;
  margin: 20px 0 60px 0;
  display: flex;
  justify-content: center;
  letter-spacing: 0.25em;
  padding: 0 26%;
  box-sizing: border-box;
}

.about-text p{
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.text-bold{
  font-weight: 700;
}

.about-img{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 180px;
}

.about-img-left{
  width: 30%;
  transform: translate(11%,30%);
}

.about-img-right{
  width: 30%;
  z-index: 2;
  transform: translate(-10%,0%);
}

/* --------------------------- */
/* instagram
/* --------------------------- */

.section-title-bg-instagram{
  background-image: url(../img/gray02@2x\ 3.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 190px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-instagram{
  width: 75%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.instagram-post-img{
  width: 27%;
  position: relative;
  margin-bottom: 50px;
}

.instagram-post-img:before{
  content: "";
  display: block;
  padding-top: 100%;
}

.instagram-post-img img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  opacity: 0.6;
}

.instagram-post-img:nth-last-child(1),
.instagram-post-img:nth-last-child(2),
.instagram-post-img:nth-last-child(3){
  margin-bottom: 0px;
}



/* --------------------------- */
/* menu
/* --------------------------- */

.section-title-bg-menu{
  background-image: url(../img/gray02@2x\ 4.png);
  background-repeat: none;
  background-size: contain;
  width: 160px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-menu{
  width: 80%;
  margin: 20px auto 50px;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.15em;
  flex-direction: column;
  align-items: center;
}

.menu-left{
  width: 45%;
  display: flex;
  flex-direction: column;
}

.menu-right{
  width: 45%;
  display: flex;
  flex-direction: column;
}

.menu-title{
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 27px;
}

.section-content-menu dl{
  margin-bottom: 30px;
  width: 100%;
  line-height: 21px;
}


.section-content-menu dt{
  float: left;
  clear: left;
  margin-right: 0.5em;
}

.section-content-menu dd{
  float: right;
  margin-left: 1em;
}



.menu-right-top{
  margin-bottom: 50px;
}

.menu-list{
  width: 100%;
}

.menu-hand-desc{
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.menu-desc{
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 150px;
}

/* --------------------------- */
/* reserve
/* --------------------------- */

.section-title-bg-reserve{
  background-image: url(../img/gray02@2x\ 2.png);
  background-repeat: none;
  background-size: contain;
  width: 160px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-reserve{
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 24px;
  margin: 50px auto;
}

.reserve-text p{
  margin-bottom: 10px;
}

.text-small{
  font-size: 1.4rem;
}

.text-small-12{
  font-size: 1.2rem;
}

.reserve-icon-wrapper{
  width: 100%;
  display: flex;
  align-items: center;
  margin: 50px auto;
  flex-direction: column;
}

.reserve-icon-line{
  width: 70px;
  height: 70px;
  margin-bottom: 70px;
}

.reserve-icon-hpb{
  height: 50px;
  width: 180px;
  margin-bottom: 100px;
}


/* --------------------------- */
/* access
/* --------------------------- */

.section-title-bg-access{
  background-image: url(../img/gray02@2x\ 2.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: -30% 30%;
  width: 240px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.section-content-access{
  width: 100%;
  text-align: center;
  margin: 50px 0;
}

.access-text{
  display: inline-block;
  text-align: left;
  font-size: 1.6rem;
  line-height: 20px;
  letter-spacing: 0.1em;
}

.access-text-small{
  font-size: 1.2rem;
  line-height: 18px;
  letter-spacing: 0.1em;
}

.access-img{
  width: 60%;
  max-width: 465px;
  margin: 30px auto;
}

.access-text-openclose-wrapper{
  width: 100%;
  text-align: center;
  margin-bottom: 160px;
}

.access-text-openclose{
  display: inline-block;
  font-size: 1.4rem;
  text-align: left;
  line-height: 21px;
}

.text-bold-access{
  font-weight: 500;
}

/* --------------------------- */
/* footer
/* --------------------------- */

.footer{
  width: 100%;
  background-color: #C8D4DB;
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer-nav-list{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 45%;
  margin: 0 auto;
  padding: 0;
}

.footer-nav-item{
  width: auto;
  text-align: center;
  font-weight: 600;
}

.footer-nav-item a{
  color: #333333;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-nav-item a:hover{
  color: #fff;
}

.footer-nav-item-reserve a{
  color: #333;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
}

.footer-nav-item-reserve a:hover{
  color: #fff;
}


.footer-icon-wrapper{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 30px;
}

.footer-icon-fasola{
  width: 58px;
  height: 45px;
  margin-right: 27px;
}

.footer-icon-insta{
  width: 40px;
  height: 40px;
  margin-left: 27px;
}

.footer-copy{
  font-size: 10px;
  line-height: 200%;
  letter-spacing: 0.15em;
  color: #504E4E;
  text-align: center;
}

/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

/* --------------------------- */
/* button
/* --------------------------- */

.btn-viewmore {
  text-align: left;
  position: relative;
  width: 120px;
  margin: 0 auto;
  margin-bottom: 120px;
  font-weight: 300;
}

.btn-viewmore a{
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  display: inline-block;
  width: 120px;
  height: 20px;
}

.btn-viewmore a::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 10px;
  right: -15px;
  width: 27px;
  height: 1px;
  background-color: #333; 
}

.btn-viewmore a::after{
  content: '';
  display: block;
  position: absolute;
  bottom: 10px;
  right: -15px;
  width: 12px;
  height: 1px;
  background-color: #333; 
  transform: translate(2px,-3px) rotate(30deg);
}

.btn-viewmore a:hover:before{
  right: -25px;
  transition: 0.3s;
}

.btn-viewmore a:hover:after{
  right: -25px;
  transition: 0.3s;
}

.btn-back{
  margin-top: 50px;
  width: 70px;
}


/* --------------------------- */
/* Tablet用ブレイクポイント
/* --------------------------- */

@media screen and (min-width: 900px){

.hamburger-menu{
  display: none;
}

}  

@media screen and (max-width: 899px){

.br-pc{
  display: none;
}

/* --------------------------- */
/* Tab_header
/* --------------------------- */

.header-nav{
  display: none;
}

.menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 30;
}

.menu-btn-scroll{
  top: 0px;
  transition: 0.15s;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after{
  content:'';
  display: block;
  height: 2px;
  width: 30px;
  background: #333;
  position: absolute;
  transition: 0.3s;
}

.menu-btn span:before{
  bottom: 8px;
}

.menu-btn span:after{
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span{
  background: rgba(255,255,255,0);
}

#menu-btn-check:checked ~ .menu-btn span::before{
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after{
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.hamburger-menu-content{
  width: 100%;
  height: 550px;
  position: fixed;
  top: -100%;
  left: 0; /*ハンバーガークリック前は画面外に逃がしておく*/
  z-index: 20;
  background: rgba(200,212,219,0.95);
  transition: all 0.5s;
}

/*ハンバーガークリック時にメニューを表示*/
#menu-btn-check:checked ~ .hamburger-menu-content{
  top: 0;
}

.hamburger-menu-list{
  margin-left: 50px;
  margin-top: 120px;
  height: 100%;
}

.hamburger-menu-item {
  line-height: 24px;
  margin-bottom: 30px;
}

.hamburger-menu-item a{
  font-size: 1.6rem;
  font-weight: 600;
  color: #444;
}

.hamburger-menu-item-reserve {
  line-height: 24px;
  margin-bottom: 30px;
}

.hamburger-menu-item-reserve a{
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}


/* --------------------------- */
/* Tab_about
/* --------------------------- */

.about-img-left{
  width: 35%;
  transform: translate(20%,20%);
}

.about-img-right{
  width: 35%;
  z-index: 2;
}


/* --------------------------- */
/* Tab_menu
/* --------------------------- */

.section-content-menu{
  width: 100%;
  margin: 20px auto 50px;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.15em;
  flex-direction: column;
  align-items: center;
}

.menu-left{
  margin-bottom: 20px;
}

/* --------------------------- */
/* footer_old
/* --------------------------- */

/*
.footer-nav-list{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  padding: 0;
}
*/

/* --------------------------- */
/* footer(SPと共通)
/* --------------------------- */

.footer{
  padding-top: 30px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  margin: 0 auto;
  padding: 0 30px;
  align-items: flex-start;
  line-height: 30px;
}

.footer-nav-item{
  margin-bottom: 10px;
}

.footer-nav-item a {
  color: #333333;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-nav-item-reserve a {
  color: #333333;
  font-size: 1.4rem;
  text-decoration: none;
}

.sp-display-none{
  display: none;
}

}

/* --------------------------- */
/* SP横向き用ブレイクポイント
/* --------------------------- */

@media (orientation: landscape) and (max-width: 940px){

  .hamburger-menu-content{
    width: 100%;
    height: 500px;
    position: fixed;
    top: -150%;
    left: 0; /*ハンバーガークリック前は画面外に逃がしておく*/
    z-index: 20;
    background: rgba(200,212,219,0.95);
    transition: all 0.5s;
  }
  
  /*ハンバーガークリック時にメニューを表示*/
  #menu-btn-check:checked ~ .hamburger-menu-content{
    top: 0;
    overflow: auto;
  }

  .hamburger-menu-list{
    margin-top: 120px;
    height: 100%;
    text-align: center;
  }

}



/* --------------------------- */
/* SP用ブレイクポイント
/* --------------------------- */
 
@media screen and (min-width: 600px){

.br-sp{
  display: none;
}

}

@media screen and (max-width: 599px){
  
.br-pc{
  display: none;}
  

/* --------------------------- */
/* SP_header
/* --------------------------- */

.header{
  height: 80px;
}

.site-title{
  width: 50px;
  height: 50px;
  margin-top: 20px;
  margin-left: 20px;
  line-height: normal;
  z-index: 30;
}

.site-title-scroll {
  margin-top: 20px;
  width: 50px;
  transition: 0.15s;
}

.menu-btn{
  top: 10px;
  right: 5px;
}

.menu-btn-scroll{
  top: 10px;
  transition: 0.15s;
}

.kv-slider img {
  height: auto;
  margin: 80px 0 0 auto;
}

/* --------------------------- */
/* SP_section
/* --------------------------- */

.section-wrapper{
  width: 100%;
  margin: 50px auto 0px;
}

.section-title{
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
}

/* --------------------------- */
/* SP_news
/* --------------------------- */

.section-content-news {
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 30px;
  margin: 36px 0px;
  padding: 0 10%;
  box-sizing: border-box;
}

.section-content-news dt{
  float: left;
  clear: left;
  width: 90px;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  font-weight: 300;
  box-sizing: border-box;

}

.section-content-news dd{
  margin-left: 90px;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  box-sizing: border-box;
}


/* --------------------------- */
/* SP_about
/* --------------------------- */

.section-content-about {
  padding: 0px 20px;
}

.about-text p{
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.4rem;
}

.about-img{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  flex-direction: column;
}

.about-img-left{
  width: 70%;
  margin: 0 0 0 auto;
  transform: translate(-10%,60%);
}

.about-img-right{
  width: 70%;
  z-index: 2;
  transform: translate(10%,-110%);
}

/* --------------------------- */
/* SP_instagram
/* --------------------------- */

.section-content-instagram{
  width: 85%;
}

.instagram-post-img{
  width: 45%;
  position: relative;
  margin-bottom: 50px;
}

.instagram-post-img:nth-last-child(3){
  margin-bottom: 50px;
}


/* --------------------------- */
/* SP_menu
/* --------------------------- */

.section-content-menu{
  width: 100%;
  margin: 20px auto 20px;
}

.menu-left{
  margin-bottom: 20px;
  width: 85%;
}

.menu-right{
  margin-bottom: 20px;
  width: 85%;
}

.menu-desc {
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
  padding: 0 30px;
  box-sizing: border-box;
}


/* --------------------------- */
/* access
/* --------------------------- */

.access-img{
  width: 80%;
}

.access-text-openclose-wrapper{
  width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 160px;
}


/* --------------------------- */
/* SP_footer
/* --------------------------- */

.footer{
  padding-top: 30px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  margin: 0 auto;
  padding: 0 30px;
  align-items: flex-start;
  line-height: 30px;
}

.footer-nav-item{
  margin-bottom: 10px;
}

.footer-nav-item a {
  color: #333333;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-nav-item-reserve a {
  color: #333333;
  font-size: 1.4rem;
  text-decoration: none;
}

.sp-display-none{
  display: none;
}


/* --------------------------- */
/* SP_button
/* --------------------------- */

.btn-viewmore {
  margin-bottom: 60px;
}


}