@charset "UTF-8";

/*===========================================================*/
/* variables */
/*===========================================================*/

:root {
  --black: #200E0B;
  --white: #ffffff;
  --bg: #E4E3E1;
  --bg2: #DEDEDC;
  --note: #86807F;
  --line: #C7C0B8;
  --accent: #731500;

  --font-en: "Cormorant SC", serif;
  --font-ja: "Shippori Mincho", serif;
  --font-yugothic: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Hiragino Sans", sans-serif;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);

  --header-height: 7rem;
  @media (max-width: 768px) {
    --header-height: 6.3rem;
  }
}

/*===========================================================*/
/* base */
/*===========================================================*/

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

/* Lenis smooth scroll (see js/script.js) */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-yugothic);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

main {
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
dl, dt, dd { margin: 0; }
button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/*===========================================================*/
/* utility */
/*===========================================================*/

.pc-only {
  @media (max-width: 768px) { display: none !important; }
}
.sp-only {
  @media (min-width: 769px) { display: none !important; }
}

.mw1300 {
  max-width: 130rem;
  width: calc(100% - 4.8rem);
  margin-left: auto;
  margin-right: auto;
  @media (max-width: 768px) {
  }
}

.cmn-sec {
  position: relative;
  scroll-margin-top: var(--header-height);
}

.hover-sweep {
  position: relative;
  overflow: hidden;
  transition: color 1s var(--ease);
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease);
  }
  @media (hover: hover) {
    &:hover {
      color: var(--black);
      &::before {
        transform: scaleX(1);
        transform-origin: left;
      }
    }
  }
  span, i {
    position: relative;
    z-index: 1;
  }
}

/*===========================================================*/
/* section heading */
/*===========================================================*/

.cmn-head {
  position: relative;
  display: inline-flex;
  /* margin-bottom: 2.4rem; */
  @media (max-width: 768px) {
    /* margin-bottom: 1.6rem; */
  }
  &.--center {
    display: flex;
    justify-content: center;
  }
}

.cmn-head-accent {
  display: inline-flex;
  align-items: center;
  gap: .8rem 1.6rem;
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0em;
  @media (max-width: 768px) {
    font-size: 2rem;
    gap: .8rem;
  }
  &.--column {
    flex-direction: column;
  }
  img {
    aspect-ratio: 9/22;
    width: 0.9rem;
    height: auto;
    flex-shrink: 0;
    @media (max-width: 768px) {
      width: 0.7rem;
    }
  }
}

/* large decorative English ghost text (image assets, positioned per-section) */
.en-deco {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 9.2rem;
  pointer-events: none;
  user-select: none;
  @media (max-width: 768px) {
    height: 3.7rem;
  }
}

/*===========================================================*/
/* header */
/*===========================================================*/

body:has(.modal.is-active){
  header{
    border-bottom: unset;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--bg);
  border-bottom: .5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
  @media (max-width: 768px) {
    padding: 0 1.6rem;
  }

  .logo-wrap {
    flex-shrink: 0;
    .logo-link {
      display: block;
      .logo-img {
        aspect-ratio: 373/28;
        width: 37.3rem;
        height: auto;
        @media (max-width: 768px) {
          display: none;
        }
      }
      .logo-text {
        display: none;
        @media (max-width: 768px) {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          /* gap: 0.3rem; */
        }
      }
      .logo-text-en {
        font-family: var(--font-en);
        /* font-variant: small-caps; */
        font-weight: 500;
        font-size: 2.2rem;
        /* letter-spacing: 0.03em; */
        letter-spacing: 0;
        color: var(--black);
        white-space: nowrap;
        line-height: 1.3;
      }
      .logo-text-ja {
        font-family: var(--font-ja);
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0;
        color: var(--black);
        white-space: nowrap;
        line-height: 1.3;
      }
    }
  }

  .link-wrap {
    display: flex;
    align-items: center;
    gap: 5.6rem;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 3.2rem;
    @media (max-width: 1280px) {
      display: none;
    }
    a {
      font-family: var(--font-en);
      /* font-variant: small-caps; */
      color: var(--black);
      /* font-weight: 500; */
      font-weight: 400;
      font-size: 1.8rem;
      /* letter-spacing: 0.03em; */
      letter-spacing: 0;
      white-space: nowrap;
      position: relative;
      &::after {
        content: "";
        display: block;
        width: 0;
        height: 0.5px;
        background: var(--black);
        position: absolute;
        bottom: -0.4rem;
        left: 0;
        transition: 1s var(--ease);
      }
      @media (hover: hover) {
        &:hover::after { width: 100%; }
      }
    }
  }

  .btn-vacancy {
    font-family: var(--font-ja);
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.4rem;
    gap: .8rem;
    line-height: 3.8rem;
    background: var(--black);
    color: var(--white);
    letter-spacing: 0.1em;
    @media (max-width: 1280px) { display: none; }
    i {
      aspect-ratio: 6.06/10.71;
      width: 0.606rem;
      height: auto;
      background-color: currentColor;
      mask-image: url(../img/icon-arrow.svg);
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
      transition: background-color 0.3s var(--ease);
    }
  }

  .burger {
    display: none;
    @media (max-width: 1280px) {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      width: 4.8rem;
      height: 1.8rem;
      cursor: pointer;
      position: relative;
      .bar {
        width: 100%;
        height: 0.08rem;
        background: var(--black);
        transition: transform 0.3s, opacity 0.3s;
      }
      &.is-active {
        .bar1 { 
          transform: translateY(0.86rem) rotate(20.56deg); 
        }
        .bar2 { 
          opacity: 0; 
        }
        .bar3 { 
          transform: translateY(-0.86rem) rotate(-20.56deg); 
        }
      }
    }
  }
}

/*===========================================================*/
/* modal (SP nav) */
/*===========================================================*/

.modal {
  position: fixed;
  inset: 0;
  padding-top: var(--header-height);
  background: #E4E3E1;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
  &.is-active {
    z-index: 99;
    visibility: visible;
    opacity: 1;
  }
  @media (min-width: 1281px) { display: none; }
}

.modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
  padding: 5.6rem 2.4rem 4rem;
  min-height: calc(100dvh - var(--header-height));
}

.modal-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  a {
    font-family: var(--font-en);
    /* font-variant: small-caps; */
    font-size: 2.8rem;
    font-weight: 500;
    /* letter-spacing: 0.03em; */
    letter-spacing: 0;
  }
}

.modal-btn{
  width: 100%;
  max-width: 32.7rem;
}

.btn-vacancy-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0 3.2rem; */
  /* gap: .8rem; */
  line-height: 6.9rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  /* i {
    width: 0.7rem;
    height: 1.1rem;
    background: url(../img/icon-arrow.svg) center/contain no-repeat;
  } */
}

/*===========================================================*/
/* KV */
/*===========================================================*/

.kv {
  /* padding: 13.1rem 0 15.5rem; */
  padding: 8.1875vw 0 9.6875vw;
  @media (max-width: 768px) {
    /* padding: 4rem 0 4.2rem; */
    padding: 10.667vw 0 11.2vw;
  }
}

.kv-inner {
  position: relative;
  padding: 0 2.4rem;
  @media (max-width: 768px) {
    padding: 0 .8rem;
  }
}

.kv-img {
  aspect-ratio: 1552/932;
  object-fit: cover;
  @media (max-width: 768px) {
    aspect-ratio: 359/387;
  }
}

.kv-deco {
  position: absolute;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.kv-deco--top {
  width: 100%;
  top: 0;
  transform: translateY(-61%);
  @media (max-width: 768px) {
    transform: translateY(-59%);
  }
}
.kv-deco--bottom {
  width: 101.5%;
  bottom: 0;
  left: -1.2rem;
  transform: translateY(39%);
  @media (max-width: 768px) {
    left: -.4rem;
    transform: translateY(44%);
  }
}

/*===========================================================*/
/* CONCEPT */
/*===========================================================*/

.concept {
  padding: 12.8rem 0 0;
  @media (max-width: 768px) {
    padding: 8.5rem 0 0;
  }
}

.concept-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.4rem;
  }
}

.concept-top__img {
  width: 75.9rem;
  height: auto;
  aspect-ratio: 759/412;
  max-width: 58.384%;
  flex-shrink: 0;
  @media (max-width: 768px) {
    /* aspect-ratio: 296/218; */
    aspect-ratio: unset;
    width: 100%;
    /* max-width: fit-content; */
    max-width: 100%;
    /* margin-left: auto; */
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -2.4rem;
  }
  picture{
    display: block;
    @media (max-width: 768px) {
      /* margin-right: -2.4rem; */
      max-width: 29.6rem;
      aspect-ratio: 296/218;
    }
  }
  img {
    display: block;
  }
}

.concept-main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 4rem;
  padding-bottom: 28rem;
  @media (max-width: 768px) {
    flex-direction: column;
    margin-top: unset;
    padding-top: 12.2rem;
    padding-bottom: 11.4rem;
    gap: 3.2rem;
  }
}

.en-deco--concept {
  z-index: -1;
  /* top: -11.4rem; */
  top: -7.125vw;
  /* right: -9.668vw; */
  right: calc(50% - 50vw);
  left: auto;
  width: 79vw;
  height: auto;
  @media (max-width: 768px) {
    /* top: -3vw; */
    top: -8vw;
    width: 93.6vw;
  }
}

.concept-catch {
  aspect-ratio: 528/292;
  position: relative;
  z-index: 2;
  width: 52.8rem;
  height: auto;
  /* flex-shrink: 0; */
  @media (max-width: 768px) {
    width: 27.2rem;
  }
}

.concept-text {
  position: relative;
  z-index: 2;
  /* padding-top: 12.7rem; */
  margin-top: auto;
  @media (max-width: 768px) {
    /* padding-top: 0; */
  }
}

.concept-line {
  display: block;
  width: 4.8rem;
  height: .5px;
  background: var(--black);
  margin-bottom: 4rem;
  @media (max-width: 768px) {
    margin-bottom: 3.2rem;
  }
}

.concept-desc {
  max-width: 37.4rem;
  font-size: 1.3rem;
  line-height: 2.4;
  color: var(--black);
  letter-spacing: 0.15em;
  @media (max-width: 768px) {
    max-width: none;
  }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.concept-photos {
  /* margin-top: 6.4rem; */
  overflow: hidden;
  @media (max-width: 768px) {
    /* margin-top: 4rem; */
  }
}

.photos-track {
  display: flex;
  gap: 2px;
  width: max-content;
  animation: marquee 100s linear infinite;
}

.photo {
  flex-shrink: 0;
  /* aspect-ratio: 538/578; */
  height: 57.8rem;
  width: auto;
  overflow: hidden;
  @media (max-width: 768px) {
    height: 39rem;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*===========================================================*/
/* LOCATION */
/*===========================================================*/

.location {
  padding: 12.6rem 0 20.7rem;
  @media (max-width: 768px) {
    padding: 22.4rem 0 9rem;
  }
}

.en-deco--location {
  position: relative;
  margin-bottom: 45px;
  width: 100%;
  height: auto;
  aspect-ratio: 1600/110;
  @media (max-width: 768px) {
    aspect-ratio: 744/443;
    position: absolute;
    top: 4.9rem;
  }
}

.location-main {
  display: flex;
  /* align-items: center; */
  /* gap: 6rem; */
  @media (max-width: 768px) {
    flex-direction: column-reverse;
    /* gap: 3.2rem; */
  }
}

.location-map {
  flex: 1;
  min-width: 53%;
  flex-shrink: 0;
  @media (max-width: 768px) {
    margin-inline: -2.4rem;
  }
  img{
    aspect-ratio: 941/860;
    @media (max-width: 768px) {
      aspect-ratio: 750/1048;
    }
  }
}

.location-text {
  /* flex: 1; */
  /* min-width: 0; */
  margin-top: min(7.5vw, 120px);
  width: 43.5rem;
  @media (max-width: 768px) {
    width: 100%;
    margin-top: unset;
  }
}

.location-catch {
  aspect-ratio: 435/182;
  width: 100%;
  margin: 7.2rem 0;
  @media (max-width: 768px) {
    width: 27.2rem;
    margin: 6.4rem 0;
  }
}

.location-line {
  display: block;
  width: 4.8rem;
  height: .5px;
  background: var(--black);
  margin-bottom: 4rem;
  @media (max-width: 768px) {
    margin-bottom: 3.2rem;
  }
}

.location-desc {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.1em;
  @media (max-width: 768px) {
  }
}

/* facilities */

.facilities {
  /* margin-top: 10rem; */
  @media (max-width: 768px) {
    /* margin-top: 6.4rem; */
  }
}

.facilities-head {
  margin-bottom: 4rem;
  @media (max-width: 768px) {
    margin-bottom: 2.4rem;
  }
}

.facilities-ttl {
  line-height: 1.2;
  font-family: var(--font-en);
  font-size: 4.8rem;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  gap: 4rem;
  @media (max-width: 768px) {
    font-size: 2.8rem;
    gap: 1.6rem;
  }
  span {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--note);
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: .8rem;
    top: .2rem;
    @media (max-width: 768px) {
      top: .3em;
      font-size: 1.2rem;
    }
    &::before{
      content: "";
      display: block;
      mask-image: url(../img/icon-slash.svg);
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      background-color: var(--note);
      aspect-ratio: 9/21;
      width: .9rem;
      height: auto;
    }
  }
}

.facilities-nav {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
  @media (max-width: 768px) {
    margin-top: 2.4rem;
    gap: 1.6rem;
  }
}

.facilities-progress {
  flex: 1;
  height: 0.2rem;
  background: var(--white);
  position: relative;
  span {
    position: absolute;
    left: 0;
    top: 0;
    height: 0.2rem;
    background: var(--black);
    /* width: 25%; */
    width: 0%;
    transition: width 1s var(--ease);
  }
}

.facilities-btn-wrap{
  display: flex;
  align-items: center;
  gap: .8rem;
  @media (max-width: 768px) {
    gap: .4rem;
  }
}

.facilities-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: .5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  @media (hover: hover) {
    &:hover { opacity: 0.6; }
  }
  @media (max-width: 768px) {
    width: 3.2rem;
    height: 3.2rem;
  }
  i {
    aspect-ratio: 6.06/10.71;
    width: 0.606rem;
    height: auto;
    background: var(--black);
    mask-image: url(../img/icon-arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }
  &.js-fac-prev i { transform: rotate(180deg); }
  &.swiper-button-disabled { 
    /* opacity: 0.25; */
    opacity: 1; 
    cursor: default; 
  }
}

.facilities-swiper { overflow: hidden; }

.facility-card {
  .facility-card__img {
    position: relative;
    img {
      aspect-ratio: 291/194;
      object-fit: cover;
    }
  }
  .facility-card__name {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    @media (max-width: 768px) {
      gap: .8rem;
    }
  }
  .facility-card__num {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 19/28;
    width: 1.9rem;
    height: auto;
    display: flex;
    justify-content: center;
    padding-top: 0.4rem;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background-color: var(--black);
      -webkit-mask: url(../img/icon-pin.svg) center/contain no-repeat;
      mask: url(../img/icon-pin.svg) center/contain no-repeat;
    }
  }
  .facility-card__sub {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: var(--note);
    line-height: 1.3;
    display: flex;
    align-items: center;
    white-space: nowrap;
    @media (max-width: 768px) {
      font-weight: 500;
      font-size: 1.2rem;
      margin-top: 1rem;
    }
    span {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    span + span::before {
      content: "/";
      margin: 0 0.4rem;
    }
    span:empty { display: none; }
  }
}

.ico {
  display: inline-block;
  height: auto;
  /* width: 1.1rem;
  height: 1.1rem; */
  background-color: currentColor;
  flex-shrink: 0;
}
.ico-walk {
  -webkit-mask: url(../img/icon-walk.svg) center/contain no-repeat;
  mask: url(../img/icon-walk.svg) center/contain no-repeat;
  aspect-ratio: 7.33/12.39;
  width: .733rem;
}
.ico-clock {
  -webkit-mask: url(../img/icon-clock.svg) center/contain no-repeat;
  mask: url(../img/icon-clock.svg) center/contain no-repeat;
  aspect-ratio: 1/1;
  width: 1.1rem;
}

/*===========================================================*/
/* ACCESS */
/*===========================================================*/

.access-banner {
  position: relative;
  z-index: -1;
}

.en-deco--access {
  width: 93.56vw;
  height: auto;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.access-main {
  /* padding: 21rem 0 10.4rem; */
  padding: 13.125vw 0 10.4rem;
  @media (max-width: 768px) {
    padding: 13.3rem 0 7.2rem;
  }
}

.access-main__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  @media (max-width: 768px) {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6.4rem;
  }
  .cmn-head { 
    flex-shrink: 0; 
  }
}

.access-catch {
  width: 69rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 690/79;
  @media (max-width: 768px) {
    width: 25.546rem;
    aspect-ratio: 511/225;
  }
}

.access-line {
  display: block;
  width: 4.8rem;
  height: .5px;
  background: var(--black);
  margin: 8rem 0 4rem;
  @media (max-width: 768px) {
    margin: 6.4rem 0 3.2rem;
  }
}

.access-desc {
  font-size: 1.3rem;
  line-height: 2.4;
  max-width: 69rem;
  letter-spacing: 0.1em ;
  @media (max-width: 768px) {
  }
}

.access-destinations {
  /* padding-bottom: 44rem; */
  padding-bottom: min(27.5vw, 44rem);
  @media (max-width: 768px) {
    /* padding-bottom: 14.6rem; */
    padding-bottom: 22.4rem;
  }
}


.access-destinations__ttl {
  margin-bottom: 4rem;
  line-height: 1.2;
  font-family: var(--font-en);
  font-size: 4.8rem;
  letter-spacing: 0;
  display: flex;
  align-items: baseline;
  gap: 4rem;
  @media (max-width: 768px) {
    font-size: 2.8rem;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
  }
  span {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--note);
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: .8rem;
    top: .2rem;
    @media (max-width: 768px) {
      font-size: 1.2rem;
      position: relative;
      top: .3em;
    }
    &::before{
      content: "";
      display: block;
      mask-image: url(../img/icon-slash.svg);
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      background-color: var(--note);
      aspect-ratio: 9/21;
      width: .9rem;
      height: auto;
    }
  }
}


.access-destinations__map {
  @media (max-width: 768px) {
    position: relative;
    cursor: pointer;
  }
  img{
    aspect-ratio: 1300/699;
    display: block;
    width: 100%;
  }
}

.access-destinations__map-enlarge {
  display: none;
  @media (max-width: 768px) {
    display: block;
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    width: 3.2rem;
    height: 3.2rem;
    pointer-events: none;
    img { 
      width: 100%; 
      height: 100%; 
    }
  }
}

/* 路線図 拡大モーダル(SP) */

.route-modal-overlay {
  display: none;
  @media (max-width: 768px) {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    background: rgba(32, 14, 11, 0.9);
    &.is-open {
      display: flex;
    }
  }
}

.route-modal {
  /* background: var(--white); */
  background: #E4E3E1;
  width: calc(100% - 3.2rem);
  max-height: calc(100dvh - 12rem);
  overflow-y: auto;
  padding: 2.4rem 1.6rem;
}

.route-modal__map {
  width: 100%;
  height: auto;
}

.route-modal__close {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    &::before, &::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 0.1rem;
      background: var(--white);
    }
    &::before { transform: translate(-50%, -50%) rotate(45deg); }
    &::after { transform: translate(-50%, -50%) rotate(-45deg); }
  }
}

/*===========================================================*/
/* GALLERY */
/*===========================================================*/

.gallery {
  padding: 0 0 22.1rem;
  
  @media (max-width: 768px) {
    padding: 0 0 12.5rem;
  }
}

.gallery-head {
  text-align: center;
  margin-bottom: 8.8rem;
  @media (max-width: 768px) {
    margin-bottom: 7.2rem;
  }
}

.gallery-catch-wrap {
  position: relative;
  margin-top: 7.2rem;
  @media (max-width: 768px) {
    margin-top: 6.4rem;
  }
}

.en-deco--gallery {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 97.5vw;
  height: auto;
  margin-bottom: -1.2rem;
  @media (max-width: 768px) {
    width: 100%;
    top: -18rem;
  }
}

.gallery-catch {
  width: 37.1rem;
  height: auto;
  aspect-ratio: 371/183;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  @media (max-width: 768px) {
    width: 23rem;
  }
}


.gallery-line {
  display: block;
  width: 4.8rem;
  height: .5px;
  background: var(--black);
  margin: 8rem auto 4rem;
  @media (max-width: 768px) {
    margin: 6.4rem auto 3.2rem;
  }
}

.gallery-desc {
  font-size: 1.3rem;
  line-height: 2.4;
  /* max-width: 46.6rem; */
  letter-spacing: 0.1em ;
  @media (max-width: 768px) {
  }
}

.gallery-slider {
  .swiper-slide {
    opacity: 0.5;
    transform: scale(0.678);
    @media (max-width: 768px) {
      transform: scale(0.752);
    }
  }
  .swiper-slide-prev {
    transform-origin: right center;
  }
  .swiper-slide-next {
    transform-origin: left center;
  }
  .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
  .swiper-slide img {
    aspect-ratio: 884/528;
    object-fit: cover;
  }
  .gallery-swiper.is-ready .swiper-slide {
    transition: opacity 1s var(--ease), transform 1s var(--ease);

  }
}

.gallery-nav {
  width: fit-content;
  margin: 3.2rem auto 0;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  @media (max-width: 768px) {
    margin: 2.4rem auto 0;
    gap: 1.6rem;
  }
}

.gallery-prev,
.gallery-next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: .5px solid var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  @media (hover: hover) {
    &:hover { opacity: 0.6; }
  }
  @media (max-width: 768px) {
    width: 3.2rem;
    height: 3.2rem;
  }
  i {
    aspect-ratio: 6.06/10.71;
    width: 0.606rem;
    height: auto;
    background: var(--black);
    mask-image: url(../img/icon-arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }
}
.gallery-prev i { transform: rotate(180deg); }
.gallery-next i { 
  margin-left: 2.5px;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gallery-bullet {
  width: 2.4rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background: var(--white);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  @media (max-width: 768px) {
    width: 1.4rem;
    height: 0.15rem;
  }
  &.is-active {
    background: var(--black);
  }
}

/*===========================================================*/
/* ROOM PLAN */
/*===========================================================*/

.room-plan {
  padding: 19.6rem 0 28rem;
  @media (max-width: 768px) {
    padding: 9.9rem 0 12.8rem;
  }
}

.en-deco--roomplan {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 64vw;
  height: auto;
  @media (max-width: 768px) {
    width: 100vw;
  }
}

.room-plan-head {
  margin-bottom: 10.4rem;
  @media (max-width: 768px) {
    margin-bottom: 5.6rem;
  }
}

.room-plan-catch-wrap {
  position: relative;
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column-reverse;
    gap: 6.4rem;
  }
}

.room-plan-accent {
  position: absolute;
  top: 0;
  right: 0;
  margin-bottom: 0;
  @media (max-width: 768px) {
    position: static;
    margin-bottom: 1.6rem;
  }
}

.room-plan-catch {
  position: relative;
  z-index: 2;
  width: 49.9rem;
  height: auto;
  aspect-ratio: 499/183;
  margin-bottom: 8rem;
  @media (max-width: 768px) {
    width: 30.8rem;
    margin-bottom: 6.4rem;
  }
}

.room-plan-line {
  display: block;
  width: 4.8rem;
  height: 0.5px;
  background: var(--black);
  margin-bottom: 4rem;
  @media (max-width: 768px) {
    margin-bottom: 3.2rem;
  }
}

.room-plan-desc {
  font-size: 1.3rem;
  line-height: 2.4;
  letter-spacing: .1em;
  @media (max-width: 768px) {
  }
}

/* tabs */

.room-plan__tabs {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 6.4rem;
  @media (max-width: 768px) {
    gap: 0.4rem;
    margin-bottom: 4rem;
    /* flex-wrap: nowrap; */
    overflow-x: auto;
    scrollbar-width: none;
  }
  &::-webkit-scrollbar { display: none; }
}

.room-plan__tab {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  width: 12.8rem;
  border-radius: .2rem;
  border: .5px solid #C5C2C1;
  color: var(--black);
  line-height: 3.6rem;
  text-align: center;
  transition: all 1s var(--ease);
  white-space: nowrap;
  @media (max-width: 768px) {
    width: fit-content;
    font-size: 1.5rem;
    line-height: 2.7rem;
    padding: 0 1rem;
  }
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--black);
    color: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1s var(--ease);
  }
  &.is-active {
    transition: unset;
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
  }
  @media (hover: hover) {
    &:not(.is-active):hover {
      border-color: var(--black);
      color: var(--white);
      &::before {
        transform: scaleX(1);
        transform-origin: left;
      }
    }
  }
}

.room-plan__groups {
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  @media (max-width: 768px) {
    gap: 4rem;
  }
}

.room-plan__group {
  &.is-hidden { display: none; }
  @media (max-width: 768px) {
  }
}

.room-plan__group-ttl {
  font-family: var(--font-en);
  font-size: 4rem;
  letter-spacing: 0;
  margin-bottom: 3.2rem;
  @media (max-width: 768px) {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
}

.room-plan__group-body {
  display: flex;
  gap: 8rem;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.room-plan__cards-wrap {
  flex: 1;
  min-width: 0;
}

.room-plan__cards-swiper {
  overflow: visible;
  overflow-x: clip;
}
.room-plan__cards-swiper .swiper-slide {
  width: 24.8rem;
  height: auto;
  @media (max-width: 768px) {
  }
}

.room-plan__group-nav {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 2.4rem;
  @media (max-width: 768px) {
    gap: 1.6rem;
  }
}

.room-plan__group-btn-wrap{
  display: flex;
  align-items: center;
  gap: .8rem;
  @media (max-width: 768px) {
    gap: .4rem;
  }
}

.room-plan__group-prev, 
.room-plan__group-next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: .5px solid var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  @media (max-width: 768px) {
    width: 3.2rem;
    height: 3.2rem;
  }
  @media (hover: hover) {
    &:hover { opacity: 0.6; }
  }
  &.swiper-button-disabled { cursor: default; }
  i {
    aspect-ratio: 6.06/10.71;
    width: 0.606rem;
    height: auto;
    background: var(--black);
    mask-image: url(../img/icon-arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }
}
.room-plan__group-prev i { transform: rotate(180deg); }


.room-plan__group-progress {
  flex: 1;
  height: 0.2rem;
  background: var(--white);
  position: relative;
  span {
    position: absolute;
    left: 0;
    top: 0;
    height: 0.2rem;
    transform: translateY(-0.05rem);
    background: var(--black);
    width: 0%;
    transition: width 0.3s var(--ease);
  }
}

.room-plan__empty {
  background: #D9D9D9;
  padding: 3.2rem 4rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  color: var(--note);
  width: 24.8rem;
  aspect-ratio: 248/283.69;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    padding: 2.4rem 1.6rem;
    font-size: 1.3rem;
  }
}

.room-card {
  /* border-radius: .2rem; */
  border: 1px solid #C5C2C1;
  /* background: #F5F5F5; */
  height: 100%; 
  display: flex;
  flex-direction: column;
  padding: 1.6rem 2.4rem;
  @media (max-width: 768px) {
  }
}

.room-plan__floor-img {
  margin: -1.6rem -2.4rem 1.6rem;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 248/173;
  max-height: max-content;
  padding: .8rem;
  @media (max-width: 768px) {
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    @media (max-width: 768px) {
      /* width: 100%;
      height: 100%; */
    }
  }
}

.room-card__name {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0em;
  margin-bottom: 1.6rem;
}

.room-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px dashed #C5C2C1;
  padding: .6rem 0 .4rem;
  font-weight: 500;
  & + &{
    margin-top: .2rem;
  }
  .label { 
    color: var(--note);
    font-size: 1.2rem;
  }
  .value { 
    font-size: 1.3rem;
  }
}

.room-card__btn {
  /* border-radius: 0 0 .2rem .2rem; */
  margin: 1.6rem -2.5rem -1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  line-height: 4rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  i {
    width: .606rem;
    aspect-ratio: 6.06/10.71;
    height: auto;
    background-color: currentColor;
    mask-image: url(../img/icon-arrow.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    transition: background-color 0.3s var(--ease);
  }
}

/*===========================================================*/
/* OUTLINE */
/*===========================================================*/

.outline {
  background: var(--bg2);
  padding: 20rem 0;
  position: relative;
  scroll-margin-top: var(--header-height);
  @media (max-width: 768px) {
    /* padding: 12.8rem 0; */
    padding: 7.2rem 0 12.8rem;
  }
}

.en-deco--outline{
  position: absolute;
  top: 12.5rem;
  right: 0;
  left: auto;
  width: 49.4375vw;
  height: auto;
  @media (max-width: 768px) {
    width: 88.53333vw;
    top: 6.9rem;
  }
}


.outline-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 0;
    margin-top: 5rem;
  }
}

.outline-head {
  flex-shrink: 0;
  width: fit-content;
  @media (max-width: 768px) {
    width: 100%;
  }
  .cmn-head-accent{
    font-size: 2rem;
  }
}

.outline-ttl {
  margin-top: 2.4rem;
  font-family: var(--font-ja);
  font-size: 3.2rem;
  font-weight: 500;
  @media (max-width: 768px) {
    font-size: 2.6rem;
    margin-top: 2.2rem;
  }
}

.outline__table {
  margin-top: 4.6rem;
  max-width: 90rem;
  flex: 1;
  min-width: 0;
  @media (max-width: 768px) {
    margin-top: 6.4rem;
    width: 100%;
    max-width: 100%;
  }
}

.outline__row {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  border-bottom: 1px solid #C5C2C1;
  padding: 2rem 0.8rem;
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.outline__row:first-child {
  border-top: 1px solid #C5C2C1;;
}

.outline__label {
  min-width: 16rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  @media (max-width: 768px) {
    min-width: auto;
  }
}

.outline__value {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  @media (max-width: 768px) {
    font-size: 1.3rem;
  }
}

/*===========================================================*/
/* CONTACT US */
/*===========================================================*/

.contact {
  padding: 20rem 0 24rem;
  @media (max-width: 768px) {
    padding: 12.8rem 0;
  }
}

.contact-head {
  text-align: center;
}

.contact-catch-wrap {
  position: relative;
  margin-top: 2.4rem;
  @media (max-width: 768px) {
    margin-top: 2.2rem;
  }
}

.en-deco--contact {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70.3125vw;
  height: auto;
  margin-top: -13rem;
  @media (max-width: 768px) {
    width: 94.4vw;
    margin-top: -5.4rem;
  }
}

.contact-catch {
  position: relative;
  letter-spacing: 0;
  z-index: 2;
  font-family: var(--font-ja);
  font-size: 3.2rem;
  font-weight: 500;
  @media (max-width: 768px) {
    font-size: 2.6rem;
  }
}

.contact-line {
  display: block;
  width: 4.8rem;
  height: .5px;
  background: var(--black);
  margin: 4.8rem auto 4rem;
  @media (max-width: 768px) {
    margin: 6.4rem auto 3.2rem;
  }
}

.contact-desc {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.4;
  margin-bottom: 4rem;
  @media (max-width: 768px) {
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42.7rem;
  max-width: 100%;
  line-height: 9.5rem;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  @media (max-width: 768px) {
    width: 100%;
    line-height: 6.9rem;
    font-size: 1.6rem;
  }
}

/*===========================================================*/
/* FOOTER */
/*===========================================================*/

footer {
  position: relative;
  background: url(../img/bg-footer.webp) center/cover no-repeat;
  color: var(--white);
  padding: 11.5rem 0 0;
  @media (max-width: 768px) {
    background-image: url(../img/bg-footer-sp.webp);
    padding: 8.8rem 0 0;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
  padding-bottom: 11rem;
  
  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    gap: 7.2rem;
    padding-bottom: 6.4rem;
  }
}

.footer-logo {
  width: 42.5rem;
  max-width: 100%;
  height: auto;
  aspect-ratio: 425/89;
  @media (max-width: 768px) {
    width: 24rem;
    aspect-ratio: 240/57;
  }
}

.footer-corp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  flex-shrink: 0;
  @media (max-width: 768px) {
    align-items: center;
    gap: 2.4rem;
  }
}

.footer-corp-logo {
  width: 22.5rem;
  height: auto;
  aspect-ratio: 225/22.12;
  @media (max-width: 768px) {
    width: 17.8rem;
  }
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.2rem;
  font-weight: 400;
  @media (max-width: 768px) {
    font-size: 1rem;
  }
  @media (hover: hover) {
    a:hover { opacity: 0.7; }
  }
}

.footer-nav-divider {
  display: block;
  width: .8px;
  height: 2.1rem;
  background: #86807F;
  @media (max-width: 768px) {
    height: 1.6rem;
  }
}

.footer-copy {
  border-top: .8px solid #86807F;
  padding: 1.4rem 0;
  margin-inline: 2.4rem;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
  @media (max-width: 768px) {
    font-size: .8rem;
    padding: .6rem 0 .8rem;
    margin-inline: .8rem;
  }
}
