/* 全体の初期設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #503232;
}
h1,h2,h3,h4,h5,h6 {
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
img {
  width: 100%;
}
a:hover{
  text-decoration: none;
}
.jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sp_only{
  display: none!important;
}
@media screen and (max-width: 767px) {
  .sp_only{
    display: block!important;
  }
  .pc_only{
    display: none!important;
  }
}

/* top以外のスライド */
.slick-dots {
  bottom: 3% !important;
}
.slick-dots li {
  width: 5px !important;
  height: 5px !important;
  margin: 0 7.5px !important;
}
.slick-dots li button {
  width: 5px !important;
  height: 5px !important;
}
.slick-dots li button:before {
  width: 5px !important;
  height: 5px !important;
  color: transparent !important;
  opacity: 0.7 !important;
  background-color: #fff;
  border-radius: 9999px;
}
.slick-dots .slick-active button:before {
  opacity: 1 !important;
}
.slick-dotted.slick-slider{
  margin-bottom: 0 !important;
}
.slide-arrow {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
}
.prev-arrow {
  left: 0%;
}
.next-arrow {
  right: 0%;
}
.slide-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ヘッダー */
header {
  color: #fff;
  position: fixed;
  top: 5dvh;
  width: 100%;
  padding-top: 25px;
  z-index: 997;
  mix-blend-mode: difference;
}

header h1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12%;
  max-width: 215px;
  height: auto;
  opacity: 0;
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
  animation-delay: 3000ms;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  header h1 {
    width: 28%;
    margin-top: -10px;
  }
}

nav {
  padding:0 25px;
}
nav ul {
  display: inline-flex;
  flex-direction: column;
  font-size: 16px;
  text-align: left;
  line-height: 21px;
  gap: 15px;
}

nav li {
  display: inline-block;
  margin: 0 15px;
}
.menu-item a:hover{
  text-decoration:line-through;
  text-decoration-color: #e6d2be;
  text-decoration-thickness: 1px;
}
.soon::after{
  content:"Coming soon";
  opacity: 0;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  color: #e6d2be;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.menu-item.soon{
  text-decoration:none;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.soon:hover a{
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.soon:hover::after{
  opacity: 1;
}
#ig_icon {
  width: 15px;
  aspect-ratio: 1/1;
}
#ig_icon:hover{
  opacity: 0.7;
}
nav ul li a {
  color: #e6d2be;
  text-decoration: none;
  mix-blend-mode: difference;
}
.menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav ul {
    display: none;
  }
  nav li{
    margin: 0;;
  }
  .menu-item a:hover{
    text-decoration: none;
  }
  nav ul li a {
    color: #503232;
  }
  .soon{
    opacity: 0.6;
  }
  .menu-btn {
    position: absolute;
    top: 0;
    left: 30px;
    width: 30px;
    height: 20px;
    display: flex;
    align-items: center;
    z-index: 997;
    justify-content: space-between;
    flex-direction: column;
    caret-color: transparent;
  }
  .menu-btn span {
    width: 100%;
    height: 1px;
    background: #e6d2be;
    transition: all 250ms ease-out;
    transform-origin: 0 0;
  }
  .sp-menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
  }
  /* アニメーション後のメニューの状態 */
  nav.is-active {
    pointer-events: auto;
    opacity: 1;
    background-color: #e6d2be;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 997;
    transition: 0.3s ease-in-out;
  }
  nav.is-active .menu-btn {
    top: 5dvh;
    left: auto;
    right:25px;
  }
  nav.is-active ul {
    display: flex;
    margin-top: 8dvh;
  }
  nav.is-active ul li a {
    mix-blend-mode: normal;
  }
  header:has(.is-active) {
    mix-blend-mode: normal;
    top: 0;
  }
  header:has(.is-active) h1{
    opacity: 0;
    transition: 0s;
  }
  header:has(.is-active) .menu-btn span:nth-last-child(1) {
    transform: rotate(-35deg) translate(0px, -1px);
    background-color: #503232;
  }

  header:has(.is-active) .menu-btn span:nth-last-child(2) {
    transform: rotate(0deg) scale(0.2, 0.2);
    opacity: 0;
  }

  header:has(.is-active) .menu-btn span:nth-last-child(3) {
    transform: rotate(35deg) translate(0px, 1px);
    background-color: #503232;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  letter-spacing: 0.1em;
}
.sec_tll {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  h2{
    font-size: 24px;
  }
}

/* ローディング */
.loader-bg {
  align-items: center; /* 上下左右中央 */
  background-color: #503232;
  display: flex; /* 上下左右中央 */
  height: 100vh; /* 縦いっぱい */
  justify-content: center; /* 上下左右中央 */
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw; /* 横幅いっぱい */
  z-index: 998;
}
.loader{
  align-items: center; /* 上下左右中央 */
  display: flex; /* 上下左右中央 */
  height: 100vh; /* 縦いっぱい */
  justify-content: center; /* 上下左右中央 */
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw; /* 横幅いっぱい */
  z-index: 999;
}
.loader img{
  display: block;
  position: absolute;
  width: 22%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 1024px) {
  .loader img{
    width: 244.56px;
    height: 333.01px;
  }
}

/* メインコンテンツ */
main{
  position:relative;
}
section {
  width: 100%;
}
.container {
  width: 73%;
  margin: 0 auto 0;
  max-width: 1400px;
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 120px max(3%, 25px) 0;
  }
}
@media screen and (max-width: 767px) {
  .container{
    padding-top: 70px;
  }
}
#top {
  /* position:absolute; */
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
/* .top-slide_list {
  width: 100%;
  height: 100%;
  position: relative;
  height: 300vh;
} */
.top-slide{
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 1;
}
.top-slide picture{
  width: 100%;
  height: 100%;
}
.top-slide picture img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#slide01{z-index:13}
#slide02{z-index:12}
#slide03{z-index:11}
/* #slide05{
  width:100vw;
  height: 100vh;
  z-index: -1;
} */
@media screen and (max-width: 1024px) {
  .slick-list,
  .slick-track,
  .slick-slide,
  .slick-slide > div{
    height: 100% !important;
    width: 100%;
  }
  .slide-item{
    height: 100%!important;
    width: 100%!important;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #top {
    height: 100vh;
  }
}

#about {
  background-color: #503232;
  height: auto;
}
#about .container {
  color: #e6d2be;
  padding-bottom: 200px;
}
.about_text {
  width: 50%;
  font-size: 15px;
  line-height: 25px;
  margin-left: 33%;
}
.about_text .en {
  font-size: 14px;
  margin-top: 46px;
}
@media screen and (max-width: 1024px) {
  .about_text {
    width: 62%;
    margin-top: 75px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #about .container{
    padding-bottom: 70px;
  }
  .about_text {
    width: 100%;
    font-size: 14px;
    margin-top: 60px;
  }
  .about_text .en{
    font-size: 12px;
    margin-top: 25px;
  }
}
#place {
  background-color: #e6d2be;
}
.place_slide {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .place_slide {
    aspect-ratio:64 /45;
  }
}

#place .container {
  padding: 30px 13.5% 0 5%;
  width: 100%;
  display: flex;
  gap: 18%;
  max-width: none;
}
@media screen and (max-width: 1024px){
  #place .container {
    flex-direction: column-reverse;
  }
}
#place .map {
  width: 50%;
  max-width: 843px;
  aspect-ratio: 281 / 254;
  overflow: hidden;
  position: relative;
}
#place .map img {
  height: auto;
  width: 133%;
  position: absolute;
  right: 0;
  top: 0;
}
#place .txt-container {
  width: 35%;
  color: #503232;
  padding: 120px 0 225px;
}
.place-txt {
  font-size: 15px;
  margin-top: 100px;
}
.place-txt .en {
  margin-top: 40px;
  font-size: 14px;
}
.slide-container {
  width: 100%;
  display: flex;
  aspect-ratio: 16 /9;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #place .container {
    padding:0 max(3%, 25px) 0;
  }
  #place .txt-container {
    width: 62%;
    padding-bottom: 50px;
  }
  #place .map {
    width:100%;
    max-width: none;
    aspect-ratio:120/137;
  }
}
@media screen and (max-width: 767px) {
  #place .txt-container {
    width: 100%;
    padding: 40px 0 70px;
  }
  .place-txt{
    margin-top:60px;
    font-size: 14px;
  }
  .place-txt .en{
    font-size: 12px;
  }
  /* #place .map{
    height: auto;
    aspect-ratio: 370/539;
  }
  #place .map img {
    width: 100%;
  } */
}
.slide-container .detail-slide {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #detail_slider{
    aspect-ratio: 64 /45;
  }
}
@media screen and (max-width: 767px) {
  #detail_slider{
    aspect-ratio: 39/ 55;
  }
  .slide-container .detail-slide {
    width: 100%;
  }
}
#detail .container {
  padding: 120px 0;
  display: flex;
}
.inner-txt {
  width: 50%;
}
.detail-txt {
  margin: 100px 0 130px;
  font-size: 15px;
}
.detail-txt .en {
  margin-top: 45px;
  font-size: 14px;
}
.price-wrap {
  padding-top: 40px;
  font-size: 18px;
  line-height: 36px;
  border-top: solid 1px #503232;
}
.plan-wrap {
  width: 50%;
  padding-left: 5%;
  text-align: right;
}
.price-wrap h4 {
  font-weight: 400;
  margin-bottom: 32px;
}
.plan-wrap picture img {
  max-width: 459px;
}
#plan02 img{
  padding-top:42px;
}
@media screen and (max-width: 1024px) {
  #detail .container{
    flex-direction: column;
    padding:120px max(3%, 25px);
  }
  .inner-txt{
    width: 100%;
  }
  .detail-txt{
    width: 63%;
    padding: 100px 0;
    font-size: 14px;
  }
  .detail-txt .en{
    font-size: 12px;
  }
  .plan-wrap{
    width: 100%;
    padding-left: 0;
    padding-right: 10%;
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
  }
  .price-wrap h4{
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  #detail .container{
    padding: 40px max(3%, 25px) 70px;
  }
  .detail-txt{
    width: 100%;
    margin:60px 0;
    padding:0;
  }
  .price-wrap {
    font-size: 16px;
  }
}
#arctecture {
  width: 73%;
  margin: 0 auto 0;
  max-width: 1400px;
  border-top: solid 1px #503232;
}
#arctecture h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 100px 0;
}
#arctecture .container {
  width: 66.8%;
  max-width: 935px;
  display: flex;
  justify-content: center;
  gap: 24%;
  padding: 0;
}
.bio {
  width: 350px;
  font-size: 14px;
  font-weight: 400;
}
.bio h4 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 18px;
  margin: 15px 0 35px;
}
@media screen and (max-width: 1024px) {
  #arctecture {
    --tab_margin:max(3%, 25px);
    width: calc(100% - (var(--tab_margin)*2));
  }
  #arctecture .container{
    width: 63%;
    max-width: none;
    flex-direction: column;
    justify-content: start;
    margin: 0;
    gap:65px;
  }
  .bio{
    width: 100%;
  }
}
@media screen and (max-width: 767px) { 
  #arctecture .container{
    width: 100%;
  }
  #arctecture h3{
    padding:70px 0;
  }
}
#access .inner {
  display: flex;
  padding-bottom: 100px;
  border-bottom: solid 1px #503232;
  gap: 1%;
}
#access .container .txt-container {
  font-size: 13px;
  font-weight: 400;
  width: 49%;
}
#access .container .txt-container .sml-ttl{
  margin: 20px 0 15px 0;
}
#access .container .txt-container .sml-ttl.first{
  margin-top: 0;
}
#access .container .txt-container ol{
  list-style-position: outside;
  margin-left: 1.36em;
} 
#access .container  h2 {
  margin-bottom: 100px;
}
#access .container .inner .address-map {
  position: relative;
  width: 50%;
  aspect-ratio: 7/5;
}
.address-map iframe {
  -webkit-filter: grayscale(95%);
  filter: grayscale(95%);
  width: 100%;
  height: 100%;
}
.address-map > div {
  width: 100%;
  height: 100%;
  position: relative;
}
.address-map > div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e6d2be;
  mix-blend-mode: soft-light;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #access .container h2{
    margin-bottom: 70px;
  }
  #access .inner{
    flex-direction: column-reverse;
    gap: 60px;
    padding-bottom: 120px;
  }
  #access .container .inner .txt-container,
  #access .container .inner .address-map{
    width: 100%;
  }
}
/* フッター */
footer {
  padding-top: 160px;
  text-align: center;
  width: 73%;
  margin: 0 auto 0;
  padding-bottom: 96px;
  max-width: 1400px;
}
footer figure {
  width: 100%;
  height: 270px;
  text-align: center;
}
footer figure img {
  height: 100%;
  width: auto;
}
footer .any-link {
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #503232;
  margin: 50px 0 58px;
  justify-content: center;
  width: 100%;
  gap: 18.6%;
}
footer .any-link a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #503232;
  text-decoration: none;
}
footer .any-link a span {
  font-size: 13px;
}
footer .copy {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  footer{
    --tab_margin:max(3%, 25px);
    width: calc(100% - (var(--tab_margin)*2));
  }
  footer .any-link {
    gap:25%;
  }
}
@media screen and (max-width: 767px) {
  footer{
    padding: 100px 0 60px;
  }
  footer .any-link {
    flex-direction: column;
    gap: 43px;
    margin: 100px 0;
  }
  footer .any-link a{
    gap:10px;
    flex-direction: column;
  }
  footer .any-link a p,
  footer .any-link a span{
    width: 100%;
  }
}
