@charset "utf-8";

body {
    background: #fff;
}
.pc-none{
    display: none;
}
@media screen and (max-width: 820px) {
    .pc-none{
        display: block;
    }
    .sp-none{
      display: none;
    }
}
.mainvisual{
  position: relative;
}
.mainvisual .mv-logo{
  position: absolute;
  top: 18%;
  right: 10%;
  max-width: 500px;
  width: 35%;
  z-index: 103;
  opacity: 0;
  transition: .6s;
  mix-blend-mode: multiply;
}
.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.mv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainvisual .caption{
  position: absolute;
  bottom: 1%;
  left: 1%;
  z-index: 104;
  font-size: clamp(10px, 0.833vw, 12px);
}
.mv-caption{
  opacity: 0;
  transition: .6s;
}
/* 画像① */
.mv__img--01 {
  z-index: 100;
}
.mv__img--01 {
  opacity: 0;
  animation: mvFadeIn 2s ease forwards;
}

@keyframes mvFadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 画像② */
.mv__img--02 {
  z-index: 101;

  /* 最初は中央の小さな四角 */
  clip-path: inset(50% 50% 50% 50%);

  /* 少し拡大した状態から始める */
  transform: scale(1.08);

  will-change: clip-path, transform;
}
@media screen and (max-width: 820px) {
    .mainvisual .mv-logo{
      position: absolute;
      top: 18%;
      right: 50%;
      transform: translateX(50%);
      width: 70%;
    }
}
.usp{
    background: #ece5d8;
}
.usp .inner{
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 1200px;
    width: calc(100% - 50px);
}
@media screen and (max-width: 820px) {
    .usp .inner{
      padding: 1.4rem 0;
      width: 100%;
  }
}
.gallery {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff; /* 余白部分の色 */
}

.gallery__frame {
  position: absolute;
  inset: clamp(16px, 2vw, 40px); /* 余白 */
  overflow: hidden;
}

.gallery__item {
  position: absolute;
  inset: 0;
}
.gallery__item__inner{
  display: flex;
  justify-content: space-between;
}
.gallery__item__img{
  width: 49.6%;
  position: relative;
  height: 100dvh;
}
.gallery__item__img .gallery-caption{
  position: absolute;
	bottom: 10%;
  left: 2%;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 1630px) {
  .gallery__item__img .gallery-caption{
    bottom: 8%;
  }
}
@media screen and (max-width: 1300px) {
  .gallery__item__img .gallery-caption{
    bottom: 6%;
  }
}
@media screen and (max-width: 820px) {
  .gallery__item__img .gallery-caption{
    bottom: 2%;
    font-size: 8px;
  }
}
.gallery__text__wrap{
  position: absolute;
  top: 8%;
  right: 8%;
  display: flex;
  flex-direction: row-reverse;
}
.full .gallery__text__wrap{
  top: 12%;
  right: 50%;
  transform: translateX(50%);
}
.gallery__text{
  color: #fff;
  writing-mode: vertical-rl;
  font-size: clamp(22px, 1.875vw, 27px);
  text-shadow:
  0 2px 8px rgba(0, 0, 0, .45),
  0 0 20px rgba(0, 0, 0, .35);
  line-height: 1.6;
  letter-spacing: .1em;
  text-orientation: upright;
}
.gallery__text__sub{
  padding: 16% 16% 0 0;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: clamp(13px, 1.11vw, 16px);
  text-shadow:
  0 2px 8px rgba(0, 0, 0, .45),
  0 0 20px rgba(0, 0, 0, .35);
  line-height: 2.2;
  letter-spacing: .1em;
  text-orientation: upright;
}
.full .gallery__text__sub{
  padding: 6% 6% 0 0;
  line-height: 3.4;
}
.gallery__item__img.full{
  width: 100%;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 820px) {
    .gallery {
      position: relative;
      height: 100dvh;
      overflow: hidden;
      background: #fff;
    }

    .gallery__frame {
      position: absolute;
      inset: clamp(16px, 2vw, 40px);
      overflow: hidden;
    }

    .gallery__item {
      position: absolute;
      inset: 0;
    }
    .gallery__item__inner{
      display: block;
    }
    .gallery__item__img{
      width: 100%;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .gallery__item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .gallery__text__wrap{
      flex-direction: column;
    }
    .full .gallery__text__wrap{
      top: 8%;
      width: 78%;
      margin: 0 auto;
    }
    .gallery__text{
      text-shadow:
        0 2px 4px rgba(0, 0, 0, .6),
        0 6px 16px rgba(0, 0, 0, .55),
        0 0 30px rgba(0, 0, 0, .4);
    }
    .full .gallery__text{
       writing-mode: horizontal-tb;
      line-height: 1.4;
    }
    .gallery__text__sub{
      padding: 6% 0 0 0;
      text-shadow:
        0 2px 4px rgba(0, 0, 0, .8),
        0 6px 16px rgba(0, 0, 0, .75),
        0 12px 32px rgba(0, 0, 0, .6),
        0 0 50px rgba(0, 0, 0, .5);
      line-height: 1.8;
    }
    .full .gallery__text__sub{
      padding: 5% 0 0 0;
      writing-mode: horizontal-tb;
      line-height: 2.2;
      letter-spacing: -.001em;
      font-size: clamp(11px, 1.11vw, 16px);
    }
}
.top-access-detail{
    padding: 0 clamp(16px, 2vw, 40px) clamp(16px, 2vw, 40px);
    position: relative;
}
.top-access-detail .top-access-detail-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 540px;
  width: 38%;
}
@media screen and (max-width: 820px) {
  .top-access-detail{
      margin-top: 60px;
  }
  .top-access-detail .top-access-detail-text{
    width: 58%;
  }
}
.under-btn-container{
  padding: clamp(50px, 6.95vw, 100px) 0;
  background: #fff;
}
.under-btn-inner{
  margin: 0 auto;
  max-width: 96%;
  width: calc(100% - 50px);
}
.under-btn-lists{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16px, 1.67vw, 24px) 0;
}
.under-btn-list{
  width: 49%;
}
.under-btn-list.btn-off{
  position: relative;
}
.under-btn-list.btn-off a{
  pointer-events: none;
}
.under-btn-list.btn-off:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 2;
}
.under-btn-container .under-btn{
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.under-btn-container .under-btn img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.under-btn-container .under-btn:hover img {
  transform: scale(1.05);
}
.under-btn-container .under-btn-text-box{
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 32%;
  height: 80%;
  background: rgba(255, 255, 255, 0.8);
}
.under-btn-text-inner{
  padding: 8%;
  width: 100%;
  height: 100%;
}
.under-btn-text{
  display: flex;
  flex-direction: column;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  width: 100%;
  height: 100%;
  text-align: center;
}
.under-btn-text-ttl-wrap{
  padding: 4% 0;
  border-bottom: 1px solid #000;
}
.under-btn-text-ttl{
  font-size: clamp(9px, 1.2vw, 17px);
}
.under-btn-text-ttl.ls{
  letter-spacing: -.034em;
}
.under-btn-text-ttl-sub{
  font-size: clamp(6.7px, 0.83vw, 12px);
}
.under-btn-detail{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.under-btn-detail-txt{
  font-size: clamp(8px, 1.11vw, 16px);
}
@media screen and (max-width: 820px) {
  .under-btn-list.btn-off{
    display: none;
  }
  .under-btn-inner{
    padding: 0 clamp(16px, 2vw, 40px) ;
    width: 100%;
    max-width: 100%;
  }
  .under-btn-lists{
    flex-direction: column;
  }
  .under-btn-list{
    width: 100%;
  }
  .under-btn-text{
    border-top: 1.4px solid #000;
    border-bottom: 1.4px solid #000;
  }
  .under-btn-text-ttl-wrap{
    border-bottom: .8px solid #000;
  }
}
.cta-container .cta-inner{
  padding: clamp(36px, 3.14vw, 45px) 0 clamp(36px, 3.14vw, 45px);
}
.cta-container .cta-ttl{
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(24px, 2.78vw, 40px);
}
.cta-container .cta-btn-wrap{
  margin: 0 auto;
  font-size: clamp(15px, 1.25vw, 18px);
  letter-spacing: .14em;
}
.cta-container .cta-btn-wrap + .cta-btn-wrap{
  margin: clamp(24px, 2.08vw, 30px) auto 0;
}
.cta-container .cta-btn{
  margin: 0 auto;
  padding: 10px 0;
  max-width: 380px;
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  transition: .6s;;
}
.cta-container .cta-btn:hover{
  opacity: .6;
}
.cta-container .cta-btn.cta-btn-request{
  background: #9e8a64;
}
.cta-container .cta-btn.cta-btn-entry{
  background: #733222;
}
@media screen and (max-width: 820px) {
  .cta-container .cta-inner{
    max-width: 84%;
    margin: 0 auto;
  }
}

