@charset "UTF-8";

/* ---------------------------------------------
  utility
--------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* color */
body{
  --notoSans: "Noto Sans JP", sans-serif;
  --notoSerif: "Noto Serif JP", serif;
}

@media (min-width: 769px) {
  .is-hidden_pc {
    display: none !important;
  }
  .is-hidden_sp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .is-hidden_sp {
    display: none !important;
  }
  
  .is-hidden_pc {
    display: block !important;
  }
}

/* ---------------------------------------------
base 専用
--------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: #F7F6EF;
}


main {
  display: block;
  overflow-x: hidden;
}

@media (max-width: 767px){
  body {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

/* ---------------------------------------------
パーツ
--------------------------------------------- */

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

table {
  width: 100%;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: min(1032px, 100%);
  padding: 0 16px;
  margin: auto;
}


@media (max-width: 768px){

}

#totop{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid var(--border);
  position: fixed;
  bottom: -20px;
  right: 10px;
}

#totop span{
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: top .3s ease;
  top: 12px;
}

#totop.is-clicked span{
  top: 6px;
}

#totop span::before,
#totop span::after{
  content: "";
  display: block;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 12px;
  height: 12px;
  transform: rotate(-135deg);
}

#totop span::after{
  transform: translateY(-8px) rotate(-135deg);
}

/* ---------------------------------------------
  animation
--------------------------------------------- */

.fade-in {
  --delay: 0s;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease var(--delay),
    transform 0.8s ease var(--delay);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0);
  transition:
    opacity .8s ease var(--delay),
    filter .8s ease var(--delay);
}

.fade-in.blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.fade-in.left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease var(--delay),
    transform 0.8s ease var(--delay);
}

.fade-in.left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease var(--delay),
    transform 0.8s ease var(--delay);
}

.fade-in.right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-2 { --delay: 0.2s; }
.delay-4 { --delay: 0.4s; }
.delay-6 { --delay: 0.6s; }
.delay-8 { --delay: 0.8s; }
.delay-10 { --delay: 1s; }
.delay-12 { --delay: 1.2s; }

/* ---------------------------------------------
  header
--------------------------------------------- */

header{
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

header .upper-wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 45px 0 22px;
}

header .upper-wrap .sns-group{
  display: flex;
  gap: 5px;
  align-items: center;
}

header .upper-wrap .sns-group .instagram img{
  width: 40px;
}

header .upper-wrap .sns-group .line img{
  width: 23px;
}

header .upper-wrap nav ul{
  display: flex;
  font-size: 14px;
  gap: 40px;
  color: #707070;
}

header .upper-wrap nav ul li a{
  position: relative;
}

header .upper-wrap nav ul li a::before{
  content: "";
  display: block;
  background-color: #BFB194;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -9px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s ease;
}

header .upper-wrap nav ul li a:hover::before,
header .upper-wrap nav ul li a.is-active::before{
  transform: scaleX(1);
  transform-origin: left;
}

header h1{
  display: block;
  max-width: 245px;
  margin: 56px auto 50px;
}

@media (max-width: 768px){

}

/* ---------------------------------------------
  hamburger menu
--------------------------------------------- */

.hamburger{
  display: none;
  width: 60px;
  height: 60px;
  border: 0;
  background: url(../img/common/ham-bg.svg) no-repeat;
  background-size: cover;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
}

body.is-nav-open .hamburger{
  background: url(../img/common/ham-bg-wh.svg) no-repeat;
  background-size: cover;
}

.hamburger__line{
  display: block;
  width: 31px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 768px){
  header{
    background-color: transparent;
  }

  .hamburger{ 
    display: block;
  }

  header .navigation--wrap{
    position: relative;
    background-color: initial;
    font-size: 20px;
  }

  #js-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #DFD3C9;
    flex-direction: column;
    align-items: flex-start;
    padding: 75px 25px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  body.is-nav-open #js-nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  html.is-nav-open,
  body.is-nav-open {
    overflow: hidden;
    height: 100%;
  }

  header .navigation--wrap ul li:nth-of-type(5){
    border-right: none;
  }
  
  header .navigation--wrap > ul > li:not(:nth-of-type(6)) > a::before,
  header .navigation--wrap > ul > li:not(:last-of-type) > a::before{
    display: none;
  }
  
  header .navigation--wrap ul li:not(:nth-of-type(6)) a::after,
  header .navigation--wrap ul li:not(:last-of-type) a::after{
    content: none;
  }

  header .navigation--wrap > ul > li{
    margin-bottom: 20px;
  }

  header .navigation--wrap ul li.parent--list > a {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  header .navigation--wrap ul li a span{
    position: initial;
    opacity: 1;
    font-size: 14px;
    transform: none;
    display: block;
    color: #fff;
    font-family: var(--notoSans);
    padding-left: 4em;
  }
  
  header .navigation--wrap ul li a:hover span{
    transform: none;
  }
  
  header .navigation--wrap .sp--childList{
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding-left: 2.2em;
  }
  
  header .navigation--wrap .sp--childList li a{
    color: var(--accent-gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: var(--notoSans);
  }

  header .navigation--wrap ul li .sp--childList li a::before{
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    background: var(--accent-gold);
    margin-right: 3px;
    position: initial;
  }

  header .navigation--wrap ul li.sp--addNav ul{
    flex-direction: column;
    align-items: flex-start;
  }

  header .navigation--wrap ul li .group--logo{
    padding: 0;
    margin-top: 20px;
  }

  header .navigation--wrap ul li.sp--addNav ul li a{
    color: var(--accent-silver);
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 0;
    font-family: var(--notoSans);
  }

  header .navigation--wrap ul li.sp--addNav ul li{
    margin-bottom: .5em;
  }

  header .navigation--wrap ul li.sp--addNav ul li a::before{
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background: var(--accent-silver);
    margin-right: 5px;
    flex-shrink: 0;
    position: initial;
  }
}

  
/* ---------------------------------------------
  top-mv
--------------------------------------------- */
.mv-wrap {
  overflow: hidden;
  position: relative;
}

.mv-swiper {
  overflow: visible;
  padding-left: 200px;
}

.mv-swiper .swiper-slide {
  aspect-ratio: 208 / 939; /* 必要なら */
}

.mv-swiper .swiper-slide img {
  width: 100%;
  display: block;
  height: auto;
}

.mv-wrap .mv-copy{
  position: absolute;
  top: 0;
  left: 12%;
  width: 250px;
  background-color: #F7F6EF;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}

.mv-wrap .mv-copy h2{
  padding-top: 100px;
}

.teaser-page .mv-wrap{
  position: relative;
  padding-bottom: 65px;
}

.teaser-page .mv-wrap .bg-deco{
  max-width: 770px;
  margin: auto;
  display: block;
}

.teaser-page .mv-wrap .mv-contentWrap{
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teaser-page .mv-wrap .mv-contentWrap .open-txt{
  display: block;
  width: 445px;
}

.teaser-page .mv-wrap .mv-contentWrap h1{
  display: block;
  width: 700px;
  margin: 60px 0;
}

.teaser-page .mv-wrap .mv-contentWrap .read{
  line-height: 2.6;
  font-size: 16px;
  font-weight: 500;
}



@media (max-width: 768px){

  .teaser-page .mv-wrap{
    padding-bottom: 212px;
    margin-top: 150px;
  }

  .teaser-page .mv-wrap .bg-deco{
    max-width: 100%;
  }

  .teaser-page .mv-wrap .mv-contentWrap{
    top: 80px;
  }

  .teaser-page .mv-wrap .mv-contentWrap .open-txt{
    width: 295px;
  }

  .teaser-page .mv-wrap .mv-contentWrap h1{
    width: 100%;
    margin: 30px 0 53px;
  }

  .teaser-page .mv-wrap .mv-contentWrap .read{
    font-size: 12px;
  }
}

/* ---------------------------------------------
  concept
--------------------------------------------- */
.bg-decoInner{
  position: relative;
}

.bg-decoInner .sec-deco {
  position: absolute;
  width: 1475px;
  top: 670px;
  left: -347px;
  z-index: -1;
  opacity: 0;
  transform: translate(500px, -300px) rotate(-29deg);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.bg-decoInner .sec-deco.is-active {
  opacity: 1;
  transform: translate(0, 0) rotate(-29deg);
}

.concept-wrap{
  padding-bottom: 190px;
}

.concept-wrap h2{
  width: 148px;
  position: relative;
  margin: auto;
  display: block;
}

.concept-wrap h2::before{
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background-color: #BFB194;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.concept-wrap .read{
 text-align: center;
 line-height: 2.6; 
 margin: 35px auto 75px;
}

.concept-wrap .concept-imageWrap{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 42px;
}

.concept-wrap .concept-imageWrap li:first-of-type{
  width: 236px;
}

.concept-wrap .concept-imageWrap li:nth-of-type(2){
  width: 372px;
}

.concept-wrap .concept-imageWrap li:nth-of-type(3){
  width: 265px;
}

.concept-wrap .concept-imageWrap li:last-of-type{
  width: 370px;
}


@media (max-width: 768px){
  .bg-decoInner .sec-deco{
    width: 490px;
    top: 745px;
    left: -105px;
  }

  .bg-decoInner .sec-deco:first-of-type{
    top: 350px;
    left: 145px;
  }
  
  .concept-wrap{
    padding-bottom: 380px;
  }

  .concept-wrap h2{
    width: 106px;
  }

  .concept-wrap .read{
  text-align: left;
  margin: 35px auto;
  }

  .concept-wrap .concept-imageWrap{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-right: -40px;
    position: relative;
  }

  .concept-wrap .concept-imageWrap li:first-of-type{
    width: 131px;
  }

  .concept-wrap .concept-imageWrap li:nth-of-type(2){
    width: 206px;
    margin-top: -50px;
  }

  .concept-wrap .concept-imageWrap li:nth-of-type(3){
    position: absolute;
    width: 147px;
    top: 197px;
    left: -20px;
  }

  .concept-wrap .concept-imageWrap li:last-of-type{
    position: absolute;
    width: 205px;
    top: 240px;
    left: 135px;
  }
}

/* ---------------------------------------------
  access
--------------------------------------------- */
.access-wrap{
  padding-bottom: 150px;
}

.access-wrap .access-inner{
  display: flex;
  flex-direction: column;
  gap: 115px;
  align-items: center;
  width: 100%;
}

.access-wrap .access-inner .insta-icon{
  display: block;
  width: 80px;
}

.access-wrap .access-inner .insta-icon a{
  transition: .4s;
}

.access-wrap .access-inner .insta-icon a:hover{
  opacity: .7;
}

.access-wrap .access-contentWrap{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.access-wrap .access-contentWrap .txt-wrap{
  padding-top: 45px;
}

.access-wrap .access-contentWrap .txt-wrap h2{
  width: 126px;
}

.access-wrap .access-contentWrap .txt-wrap p{
  line-height: 2.2;
  margin: 35px 0 65px;  
}

.access-wrap .access-contentWrap .txt-wrap a{
  display: block;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid #707070;
  width: 180px;
  padding: 20px 0;
  text-align: center;
  transition: .4s;
}

.access-wrap .access-contentWrap .txt-wrap a:hover{
  opacity: .7;
}

@media (max-width: 768px){
  .access-wrap{
    padding-bottom: 150px;
  }

  .access-wrap .access-contentWrap{
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .access-wrap .access-contentWrap .txt-wrap{
    padding-top: 0;
  }

  .access-wrap .access-contentWrap .txt-wrap h2{
    width: 90px;
  }

  .access-wrap .access-contentWrap .txt-wrap p{
    margin: 23px 0;  
  }

  .access-wrap .access-contentWrap .txt-wrap a{
    font-size: 12px;
    width: 140px;
    padding: 15px 0;
    margin: auto;
  }

  .access-wrap .access-contentWrap .map-wrap iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 343 / 331;
  }
}

/* ---------------------------------------------
  reserve
--------------------------------------------- */
.reserve-wrap{
  position: relative;
  padding-bottom: 100px;
}

.reserve-wrap picture img{
  width: 100%;
}

.reserve-wrap .reserve-contentWrap{
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve-wrap .reserve-contentWrap h2{
  width: 212px;
}

.reserve-wrap .reserve-contentWrap p{
  margin: 12px 0 32px;
  font-size: 17px;
  color: #676767;
  font-weight: 500;
}

.reserve-wrap .reserve-contentWrap a{
  background-color: #fff;
  display: block;
  font-weight: 300;
  width: 180px;
  border-radius: 100px;
  padding: 21px 0;
  text-align: center;
  transition: .4s;
}

.reserve-wrap .reserve-contentWrap a:hover{
  opacity: .7;
}

@media (max-width: 768px){

}

/* ---------------------------------------------
  banner-area
--------------------------------------------- */
.banner-area{
  padding-bottom: 200px;
}

.banner-area ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 660px;
  margin: auto;
}

.banner-area ul li{
  width: calc((100% - 30px) / 2);
}

.banner-area a{
  transition: .4s;
}

.banner-area a:hover{
  opacity: .7;
}

@media (max-width: 768px){
  .banner-area{
    padding-bottom: 90px;
  }

  .banner-area ul{
    gap: 15px;
    width: 100%;
    margin: auto;
  }

  .banner-area ul li{
    width: calc((100% - 15px) / 2);
  }

}

/* ---------------------------------------------
  footer
--------------------------------------------- */
footer .info-txt{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  padding-bottom: 90px;
}

footer .bottom-wrap{
  height: 45px;
  width: 100%;
  background-color: #454545;
}

@media (max-width: 768px){
footer .info-txt{
  font-size: 12px;
  padding-bottom: 60px;
}

footer .bottom-wrap{
  height: 45px;
}
}