@charset "UTF-8";

@media screen and (min-width: 768px) {
  .wrapper {
    overflow: revert;
  }
}

/* mapModal */
.mapModal .modal__container {
  max-width: 600px;
  background-color: transparent;
  padding-inline: 0;
}
.mapModal .modal__close {
  top: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  width: 30px;
  aspect-ratio: 1;
  font-size: 20px;
  line-height: 1;
}

.sectionTitle--large::after {
  content: none;
}

/* commonKv
---------------------------------------------- */
.commonKv {
  padding-top: 80px;
}

.commonMap {
  margin-top: 100px;
}
.commonMap__inner {
  display: grid;
  grid-template-columns: auto calc(1195 / 1760 * 100%);
  gap: 20px 5%;
}

.commonKv__img {
  clip-path: inset(0 100% 0 0);
  transition: .7s .3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.loaded .commonKv__img {
  clip-path: inset(0);
}

@media screen and (max-width: 767px) {
  .commonKv {
    padding-top: 40px;
  }

  .commonMap {
    margin-top: 0;
  }
  .commonMap__inner {
    grid-template-columns: 1fr;
  }
  .commonMap .sectionHead {
    padding-bottom: 0;
  }
  .commonMap__img .imgcap {
    right: auto;
    bottom: -1em;
    left: 0;
  }
}

/* kv
---------------------------------------------- */
.pageTab__inner {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .pageTab__inner {
    grid-template-columns: 1fr;
  }
}

/* map
---------------------------------------------- */
.mapBox {
  max-width: 1280px;
  margin-top: 80px;
}
.mapBox__inner {
  width: fit-content;
  max-width: 640px;
  margin-left: auto;
}
.mapBox__text {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .mapBox {
    max-width: 560px;
    margin-top: 40px;
  }
}

/* intro
---------------------------------------------- */
.intro {
  margin-top: clamp(60px, 3.57rem + 6.47vw, 160px);
}
.intro + * {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.introMain {
  position: sticky;
  top: 0;
}

.introMainBox {
  width: 100%;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.introMain__title {
  font-size: clamp(16px, 1.33rem + 0.35vw, 20px);
  letter-spacing: 4px;
}
.introMain__copy {
  font-size: clamp(18px, 0.86rem + 1.22vw, 32px);
  line-height: 1.7;
  margin-top: 2em;
}
.introMain__text {
  font-size: clamp(14px, 1.13rem + 0.35vw, 18px);
  line-height: 2;
  margin-top: 3.5em;
}

.introMain__img img {
  height: 100vh;
  object-fit: cover;
}

.introBody {
  padding-block: 300px 240px;
  position: relative;
  z-index: 1;
}
.introBody::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(235 228 213 / .9);
  filter: blur(30px);
  z-index: -1;
}

.introSection {
  display: grid;
  grid-template-columns: calc(950 / 1920 * 100%) 1fr;
  gap: 50px calc(180 / 1920 * 100%);
}
.introSection + .introSection {
  margin-top: 160px;
}

.introPickup {
  position: sticky;
  top: 150px;
  z-index: 1;
}

.introItem__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  width: min(100%, 630px);
  margin-left: auto;
  padding-top: 40px;
  padding-left: 20px;
}
.introItem__name {
  flex: 1;
  display: block;
  font-size: clamp(16px, 1.33rem + 0.35vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.introItem__name .small {
  display: block;
  font-size: 11px;
  margin-top: 1em;
}

/* mapBtnBox */
.mapBtnBox {
  width: 100%;
  max-width: 200px;
}
.mapBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: .5em;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #000;
  border-radius: 50vw;
  color: #fff;
  font-family: YakuHanMP, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 1em;
  transition: opacity .4s;
}
.mapBtnBox .icon {
  font-size: 16px;
}

.introRight {
  width: 90%;
  max-width: 630px;
  padding-top: 200px;
}

.introSection__title {
  font-size: clamp(48px, 3.73rem + 1.39vw, 64px);
  letter-spacing: 4px;
  line-height: 1;
  color: rgb(255 255 255 / .5);
}
.introSection__text {
  margin-top: 2em;
}

.introSectionList {
  margin-top: 40px;
}
.introSectionList .introItem + .introItem {
  margin-top: 40px;
}

@media (hover: hover) and (pointer: fine) {
  .mapBtn:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .introMain {
    position: relative;
    inset: revert;
  }
  .introMain__copy {
    margin-top: 1em;
  }
  .introMain__text {
    margin-top: 1.5em;
  }
  .introMain img {
    height: auto;
    min-height: 280px;
  }

  .introBody {
    padding-block: 80px 60px;
  }

  .introSection {
    grid-template-columns: 1fr;
  }
  .introSection + .introSection {
    margin-top: 60px;
  }

  .introLeft {
    order: 1;
  }

  .introPickup {
    position: static;
  }

  .introItem__body {
    display: block;
    padding-top: 30px;
    padding-inline: 20px;
  }

  /* mapBtnBox */
  .mapBtnBox {
    margin-top: 20px;
  }
  .mapBtn {
    padding: .5em;
  }

  .introRight {
    width: calc(320 / 375 * 100%);
    max-width: 400px;
    margin-inline: auto;
    padding-top: 0;
  }

  .introSection__title {
    color: rgb(168 138 20 / .8);
    font-size: 48px;
  }

  .introSectionList {
    margin-top: 40px;
  }
  .introSectionList .introItem + .introItem {
    margin-top: 20px;
  }
}

/* otherCut
---------------------------------------------- */
.otherCut {
  padding-block: 140px;
  position: relative;
  z-index: 1;
}
.otherCut__title {
  font-size: clamp(42px, 0.32rem + 5.04vw, 100px);
  color: rgb(168 138 20 / .1);
  text-align: right;
}

.otherCutBox {
  padding-block: 480px 460px;
  position: relative;
  z-index: 0;
}
.otherCutBox__text {
  font-size: 18px;
  line-height: 2;
}
.otherCut__item {
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.otherCut__item01 {
  width: calc(468 / 1280 * 100%);
  top: -35%;
  left: 0;
}
.otherCut__item02 {
  width: calc(325 / 1280 * 100%);
  top: -4%;
  left: calc(305 / 1280 * 100%);
}
.otherCut__item03 {
  width: calc(305 / 1280 * 100%);
  top: 14%;
  right: 0;
  z-index: 1;
}
.otherCut__item04 {
  width: calc(630 / 1280 * 100%);
  top: 50%;
  left: calc(488 / 1280 * 100%);
}
.otherCut__item05 {
  width: calc(306 / 1280 * 100%);
  bottom: 0;
  left: calc(70 / 1280 * 100%);
}

.otherCut__item  .photo {
  overflow: hidden;
}
/* .otherCut__item .photo img {
  transform: scale(1.1);
} */

@media screen and (max-width: 768px) {
  .otherCut {
    padding-block: 60px;
  }
  .otherCut__title {
    color: rgb(168 138 20 / .5);
    text-align: left;
  }

  .otherCutBox {
    width: 100%;
    padding-block: 330px 380px;
  }
  .otherCutBox__text {
    width: 58%;
    font-size: 14px;
    padding-left: 20px;
  }
  .otherCut__item01 {
    width: calc(200 / 375 * 100%);
    top: 20px;
    left: 0;
  }
  .otherCut__item02 {
    width: calc(170 / 375 * 100%);
    top: 18%;
    left: calc(184 / 375 * 100%);
  }
  .otherCut__item03 {
    width: calc(140 / 375 * 100%);
    top: 45%;
    right: 0;
  }
  .otherCut__item04 {
    width: calc(180 / 375 * 100%);
    top: 65%;
    left: calc(90 / 375 * 100%);
  }
  .otherCut__item05 {
    width: calc(170 / 375 * 100%);
    bottom: 0;
    left: calc(10 / 375 * 100%);
  }

  .otherCut__item .imgcap {
    font-size: 8px;
  }
}

/* commonMap02
---------------------------------------------- */
@media screen and (max-width: 768px) {
  .commonMap02 {
    width: 100%;
  }
}

/*  fade animation
--------------------------------------------------*/
@keyframes fadeSlide{ from { opacity: 0; transform: translate3d(0, 20px, 0); } to { opacity: 1; transform: none; }}
.fade_slide.inview{ animation-name: fadeSlide; animation-fill-mode:both; animation-duration:1s; visibility: visible !important; opacity: 0;}

/* fade in */
@keyframes fadeIn{ from { opacity: 0; } to { opacity: 1; } }
.fi.inview{ animation-name: fadeIn; animation-fill-mode:both; animation-duration:.5s; visibility: visible !important; opacity: 0;}

/* fade in up */
@keyframes fadeInUp{ from { opacity: 0; transform: translate3d(0, 10px, 0); } to { opacity: 1; transform: none; }}
.fi_u.inview{ animation-name: fadeInUp; animation-fill-mode:both; animation-duration:.5s; visibility: visible !important; opacity: 0;}

/* fade in down */
@keyframes fadeInDown{ from { opacity: 0; transform: translate3d(0, -10px, 0); } to { opacity: 1; transform: none; }}
.fi_d.inview{ animation-name: fadeInDown; animation-fill-mode:both; animation-duration:.5s; visibility: visible !important; opacity: 0;}

/* fade in right */
@keyframes fadeInRight{ from { opacity: 0; transform: translate(10px,0); } to { opacity: 1; transform: none; } }
.fi_r.inview{ animation-name: fadeInRight; animation-fill-mode:both; animation-duration:.5s; visibility: visible !important; opacity: 0;}

/* fade in left */
@keyframes fadeInLeft{ from { opacity: 0; transform: translate(-10px,0); }to { opacity: 1; transform: none; }}
.fi_l.inview{ animation-name: fadeInLeft; animation-fill-mode:both; animation-duration:.5s; visibility: visible !important; opacity: 0;}