/*ファーストビュー画像位置矯正*/
.page-hero__visual {
    position: absolute;
    top: 0;
    left: 50%;
    width: 33.333%;
    height: 100%;
    overflow: hidden;
     transform: translateX(0%)!important; 
}


/* ==================================================
   LOWER PAGE COMMON
================================================== */

.lower-page {
  overflow-x: clip;
  overflow-y: visible;
}

.lower-page img {
  display: block;
  width: 100%;
  height: auto;
}

.lower-page figure {
  margin: 0;
}

.lower-page p,
.lower-page h1,
.lower-page h2,
.lower-page h3,
.lower-page h4 {
  margin-top: 0;
}


/* ==================================================
   PAGE HERO
   PC
================================================== */

.page-hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.page-hero__visual {
  position: absolute;
  top: 0;
  left: 50%;
  width: 33.333%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-50%);
}

.page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__heading {
  position: absolute;
  top: 48%;
  left: 8%;
  z-index: 2;
  width: 350px;
  margin: 0;
  transform: translateY(-50%);
}

.page-hero__title {
  position: relative;
  margin: 0;
  padding: 0 15px 8px;
  font-family: var(--mincho);
  font-size: clamp(64px, 5.8vw, 105px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page-hero__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
}

.page-hero__subtitle {
  margin: 12px 0 0;
  padding-left: 15px;
  overflow: hidden;
  font-family: var(--mincho);
  font-size: 35px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}


/* ==================================================
   PAGE HERO
   TABLET
================================================== */

@media screen and (max-width: 1024px) {

  .page-hero__visual {
    width: 45%;
  }

  .page-hero__heading {
    left: 6%;
  }

}


/* ==================================================
   PAGE HERO
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .page-hero {
    min-height: 600px;
  }

  .page-hero__visual {
    width: 68%;
  }
.page-hero__visual {
    position: absolute;
    top: 0;
    left: 16%;
    width: 68%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-50%);
}
	
	
  .page-hero__heading {
    top: 44%;
    left: 6%;
    width: min(72vw, 280px);
  }

  .page-hero__title {
    padding: 0 8px 6px;
    font-size: clamp(48px, 16vw, 72px);
    line-height: 0.9;
  }

  .page-hero__subtitle {
    margin-top: 8px;
    padding-left: 8px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

}


/* ==================================================
   PAGE HERO TITLE ANIMATION
================================================== */

.page-hero__title-mask {
  display: block;
  overflow: hidden;
}

.page-hero__title-text {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation:
    hero-title-rise 1s cubic-bezier(0.22, 1, 0.36, 1)
    0.85s forwards;
}

.page-hero__title::after {
  transform: scaleX(0);
  transform-origin: left center;
  animation:
    hero-line-grow 1.1s cubic-bezier(0.22, 1, 0.36, 1)
    0.15s forwards;
}

.page-hero__subtitle-text {
  display: block;
  opacity: 0;
  transform: translateX(-35px);
  animation:
    hero-subtitle-show 0.8s cubic-bezier(0.22, 1, 0.36, 1)
    1.75s forwards;
}


/* ==================================================
   PAGE HERO KEYFRAMES
================================================== */

@keyframes hero-line-grow {

  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }

}

@keyframes hero-title-rise {

  0% {
    opacity: 0;
    transform: translateY(110%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes hero-subtitle-show {

  0% {
    opacity: 0;
    transform: translateX(-35px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }

}


/* ==================================================
   PAGE INTRO
   PC
================================================== */

.page-intro {
  padding: 110px 0 140px;
}

.page-intro__inner {
  width: min(calc(100% - 80px), 1400px);
  margin: 0 auto;
}

.page-intro__content {
  text-align: center;
}

.page-intro__title {
  margin: 0 0 45px;
  font-family: var(--mincho);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.page-intro__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.08em;
}


/* ==================================================
   PAGE INTRO
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .page-intro {
    padding: 65px 0 85px;
  }

  .page-intro__inner {
    width: calc(100% - 40px);
  }

  .page-intro__title {
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .page-intro__text {
    font-size: 14px;
    line-height: 2.1;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .page-intro__text br {
    display: none;
  }

}


/* ==================================================
   SECTION HEADING
   PC
================================================== */

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 150px;
  padding-bottom: 28px;
  border-bottom: 1px solid #111;
}

.section-heading__main {
  display: flex;
  align-items: center;
  gap: 28px;
}

.section-heading__icon {
  flex: 0 0 auto;
  width: 100px;
}

.section-heading__icon img {
  width: 100%;
  height: auto;
}

.section-heading__text {
  flex: 1;
}

.section-heading__title {
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(42px, 4.5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.section-heading__subtitle {
  margin: 16px 0 0;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.section-heading__lead {
  flex: 0 0 auto;
  margin: 0 0 4px;
  font-family: var(--mincho);
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: right;
}


/* ==================================================
   SECTION HEADING
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .section-heading {
    display: block;
    margin-top: 85px;
    padding-bottom: 18px;
  }

  .section-heading__main {
    gap: 16px;
  }

  .section-heading__icon {
    width: 62px;
  }

  .section-heading__title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1;
  }

  .section-heading__subtitle {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .section-heading__lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: left;
  }

}


/* ==================================================
   FACILITY SECTION
================================================== */

.facility-section {
  position: relative;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {

  .facility-section {
    padding-bottom: 90px;
  }

}


/* ==================================================
   FACILITY SECTION HEADING
   PC
================================================== */

.section-heading--facility {
  display: block;
  width: min(calc(100% - 80px), 900px);
  margin: 0 auto;
  padding: 100px 0 55px;
  border-bottom: 0;
  text-align: center;
}

.section-heading--facility .section-heading__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.section-heading--facility .section-heading__icon {
  width: 82px;
}

.section-heading--facility .section-heading__text {
  flex: 0 1 auto;
  text-align: left;
}

.section-heading--facility .section-heading__title {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.section-heading--facility .section-heading__subtitle {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
}

.section-heading--facility .section-heading__lead {
  margin: 38px 0 0;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-align: center;
}


/* ==================================================
   FACILITY SECTION HEADING
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .section-heading--facility {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 65px 0 38px;
  }

  .section-heading--facility .section-heading__main {
    gap: 16px;
  }

  .section-heading--facility .section-heading__icon {
    width: 58px;
  }

  .section-heading--facility .section-heading__title {
    font-size: clamp(25px, 8vw, 36px);
    letter-spacing: 0.08em;
  }

  .section-heading--facility .section-heading__subtitle {
    margin-top: 8px;
    font-size: 12px;
  }

  .section-heading--facility .section-heading__lead {
    margin-top: 26px;
    font-size: 18px;
    text-align: center;
  }

}


/* ==================================================
   FACILITY SCROLL ANIMATION
   PC
================================================== */

.facility-scroll {
  position: relative;
  height: 200vh;
  overflow: visible;
}

.facility-scroll__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.facility-scroll .facility-main-visual {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.facility-scroll .facility-main-visual__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}

.facility-scroll .facility-main-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facility-scroll .facility-main-visual__content {
  --facility-text-progress: 0;

  position: absolute;
  top: 50%;
  left: 5.5%;
  z-index: 2;
  width: 38%;
  padding: 0;
  color: #fff;
  background: none;
  opacity: var(--facility-text-progress);
  transform:
    translateY(
      calc(
        -50% + (1 - var(--facility-text-progress)) * 55vh
      )
    );
  will-change: transform, opacity;
}

.facility-scroll .facility-main-visual__content p {
  margin: 0;
  font-size: 18px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.facility-scroll .facility-main-visual__content p strong {
  font-size: 22px;
}

.facility-scroll .facility-main-visual__content p + p {
  margin-top: 18px;
}


/* ==================================================
   FACILITY SCROLL ANIMATION
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .facility-scroll {
    height: 180vh;
  }

  .facility-scroll__sticky {
    height: 100svh;
  }

  .facility-scroll .facility-main-visual__image img {
    object-position: center;
  }

  .facility-scroll .facility-main-visual__content {
    top: auto;
    right: auto;
    bottom: 8%;
    left: 7%;
    width: 86%;
    opacity: var(--facility-text-progress);
    transform:
      translateY(
        calc(
          (1 - var(--facility-text-progress)) * 45vh
        )
      );
  }

  .facility-scroll .facility-main-visual__content p {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .facility-scroll .facility-main-visual__content p strong {
    font-size: 15px;
  }

  .facility-scroll .facility-main-visual__content p + p {
    margin-top: 10px;
  }

  .facility-scroll .facility-main-visual__content br {
    display: block;
  }

}


/* ==================================================
   FACILITY GALLERY
   PC
================================================== */

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: min(calc(100% - 80px), 1400px);
  margin: 150px auto 0;
}

.facility-gallery__item {
  aspect-ratio: 680 / 430;
  overflow: hidden;
}

.facility-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==================================================
   FACILITY GALLERY
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .facility-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 30px);
    margin-top: 55px;
  }

  .facility-gallery__item {
    aspect-ratio: 750 / 500;
  }

}


/* ==================================================
   FACILITY LAYOUT
   PC
================================================== */

.facility-layout {
  width: min(calc(100% - 80px), 1100px);
  margin: 100px auto 0;
}

.facility-layout__image {
  width: 100%;
}

.facility-layout__image img {
  width: 100%;
  height: auto;
}


/* ==================================================
   FACILITY LAYOUT
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .facility-layout {
    width: calc(100% - 40px);
    margin-top: 55px;
  }

}


/* ==================================================
   FACILITY SINGLE VISUAL
   PC
================================================== */

.facility-single-visual {
  width: min(calc(100% - 80px), 1400px);
  margin: 70px auto 0;
}

.facility-single-visual__image {
  width: 100%;
  aspect-ratio: 1400 / 820;
  overflow: hidden;
}

.facility-single-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-single-visual__caption {
  margin: 0;
  padding-top: 28px;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: center;
}


/* ==================================================
   FACILITY SINGLE VISUAL
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .facility-single-visual {
    width: calc(100% - 30px);
    margin-top: 40px;
  }

  .facility-single-visual__image {
    aspect-ratio: 750 / 580;
  }

  .facility-single-visual__caption {
    padding-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

}


/* ==================================================
   SECTION HEADING WITH CHARACTERS
   PC
================================================== */

.section-heading--characters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 35px;
  width: min(calc(100% - 80px), 1000px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--characters .section-heading__character {
  flex: 0 0 auto;
  width: 120px;
}

.section-heading--characters .section-heading__text {
  flex: 0 1 auto;
}

.section-heading--characters .section-heading__title {
  white-space: nowrap;
}


/* ==================================================
   RESTING SPACE HEADING
   PC
================================================== */

.section-heading--resting {
  width: min(calc(100% - 80px), 760px);
  gap: 28px;
  padding-top: 80px;
  padding-bottom: 45px;
  border-bottom: 0;
}

.section-heading--resting .section-heading__character {
  width: 95px;
}

.section-heading--resting .section-heading__title {
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.1;
  letter-spacing: 0.18em;
}

.section-heading--resting .section-heading__subtitle {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-align: center;
}


/* ==================================================
   RESTING SPACE HEADING
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .section-heading--characters {
    gap: 10px;
    width: calc(100% - 30px);
  }

  .section-heading--characters .section-heading__character {
    width: 58px;
  }

  .section-heading--characters .section-heading__title {
    white-space: normal;
  }

  .section-heading--characters .section-heading__subtitle {
    font-size: 12px;
  }

  .section-heading--resting {
    width: calc(100% - 30px);
    gap: 10px;
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .section-heading--resting .section-heading__character {
    width: 54px;
  }

  .section-heading--resting .section-heading__title {
    font-size: clamp(20px, 6.4vw, 28px);
    letter-spacing: 0.12em;
  }

  .section-heading--resting .section-heading__subtitle {
    margin-top: 8px;
    font-size: 12px;
  }

}


/* ==================================================
   INFORMATION SECTION
   PC
================================================== */

.information-section {
  position: relative;
  padding: 140px 0;
}

.information-section__inner {
  width: min(calc(100% - 80px), 1400px);
  margin: 0 auto;
  border: 1px solid #fff;
}

.information-section__title {
  margin: 0 0 70px;
  padding-top: 70px;
  font-family: var(--mincho);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
}


/* ==================================================
   INFORMATION COLUMNS
   PC
================================================== */

.information-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.information-columns__item {
  display: flex;
  flex-direction: column;
  gap: 36px;
}


/* ==================================================
   INFORMATION BLOCK
   PC
================================================== */

.information-block {
  padding: 38px 40px 42px;
  border: 1px solid #111;
}

.information-block__title {
  margin: 0 0 26px;
  color: #ffff00;
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.information-block__text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.information-block__text p {
  margin: 0;
}

.information-block__text p + p {
  margin-top: 24px;
}

.information-block__subtitle {
  margin: 24px 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.information-block__subtitle:first-child {
  margin-top: 0;
}


/* ==================================================
   INFORMATION SECTION
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  .information-section {
    padding: 85px 0;
  }

  .information-section__inner {
    width: calc(100% - 30px);
  }

  .information-section__title {
    margin-bottom: 42px;
    padding-top: 42px;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .information-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .information-columns__item {
    gap: 24px;
  }

  .information-block {
    padding: 26px 22px 30px;
  }

  .information-block__title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .information-block__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }

  .information-block__text p + p {
    margin-top: 20px;
  }

  .information-block__subtitle {
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.7;
  }

}


/* ==================================================
   FEE BOX
   PC
================================================== */

#spa-fee {
  position: relative;
  padding: 120px 0 150px;
}

.fee-box {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  width: min(calc(100% - 80px), 1080px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.fee-box__label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 30px 18px;
  color: #111;
  background: #bdbdbd;
}

.fee-box__title {
  margin: 0;
  font-family: var(--mincho);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.fee-box__content {
  padding: 34px 52px 30px;
}

.fee-box__group + .fee-box__group {
  margin-top: 26px;
}

.fee-box__group p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.fee-box__group p + p {
  margin-top: 22px;
}

.fee-box__heading {
  margin: 0 0 20px;
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

#spa-fee .information-section__character {
  position: absolute;
  right: max(5vw, 35px);
  bottom: 125px;
  width: 90px;
  margin: 0;
  pointer-events: none;
}

#spa-fee .information-section__character img {
  width: 100%;
  height: auto;
}


/* ==================================================
   FEE BOX
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  #spa-fee {
    padding: 75px 0 120px;
  }

  .fee-box {
    grid-template-columns: 54px minmax(0, 1fr);
    width: calc(100% - 30px);
  }

  .fee-box__label {
    padding: 22px 10px;
  }

  .fee-box__title {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }

  .fee-box__content {
    padding: 26px 18px 28px;
  }

  .fee-box__group + .fee-box__group {
    margin-top: 24px;
  }

  .fee-box__group p {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0;
  }

  .fee-box__group p + p {
    margin-top: 18px;
  }

  .fee-box__heading {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  #spa-fee .information-section__character {
    right: 18px;
    bottom: 30px;
    width: 68px;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  .page-hero__title::after,
  .page-hero__title-text,
  .page-hero__subtitle-text {
    animation: none;
  }

  .page-hero__title::after {
    transform: scaleX(1);
  }

  .page-hero__title-text,
  .page-hero__subtitle-text {
    opacity: 1;
    transform: none;
  }

  .facility-scroll {
    height: auto;
  }

  .facility-scroll__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .facility-scroll .facility-main-visual {
    height: auto;
  }

  .facility-scroll .facility-main-visual__image {
    height: auto;
    aspect-ratio: 1920 / 1080;
  }

  .facility-scroll .facility-main-visual__content {
    --facility-text-progress: 1;
  }

}

/* ==================================================
   FACILITIES PAGE
================================================== */

#facilities-page {
  background-color: #0f0f0f;
  color: #fff;
}

#facilities-page img {
  display: block;
  width: 100%;
  height: auto;
}

#facilities-page figure,
#facilities-page picture {
  margin: 0;
}


/* ==================================================
   FACILITIES HERO
================================================== */

#facilities-page .page-hero__heading {
  width: 680px;
}

#facilities-page .page-hero__title {
  font-size: clamp(58px, 5vw, 88px);
  letter-spacing: 0;
}


/* ==================================================
   INTRO
================================================== */

.facilities-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}

.facilities-intro .page-intro__title {
  margin-bottom: 0;
  font-size: clamp(38px, 3.4vw, 56px);
  letter-spacing: 0.18em;
}


/* ==================================================
   FACILITIES COMMON
================================================== */

.facilities-section {
  position: relative;
  padding: 110px 0;
}

.facilities-section__inner {
  width: min(calc(100% - 100px), 1280px);
  margin: 0 auto;
}

.facilities-section__inner--wide {
  width: min(calc(100% - 100px), 1400px);
}

.facilities-section__inner--narrow {
  width: min(calc(100% - 100px), 1040px);
}


/* ==================================================
   FACILITIES HEADING
================================================== */

.facilities-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100%, 540px);
  margin: 0 auto 70px;
}

.facilities-heading--center {
  justify-content: center;
}

.facilities-heading__icon {
  flex: 0 0 auto;
  width: 88px;
}

.facilities-heading__title {
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


/* ==================================================
   FLOOR MAP
================================================== */

.facilities-floor-map {
  padding-top: 70px;
  padding-bottom: 120px;
}

.facilities-floor-map__picture {
  display: block;
  width: min(100%, 1220px);
  margin: 0 auto;
}

.facilities-floor-map__picture img {
  width: 100%;
  height: auto;
}


/* ==================================================
   BANQUET
================================================== */

.facilities-banquet {
  padding-top: 105px;
  padding-bottom: 140px;
}

.facilities-banquet__lead {
  margin: -25px auto 75px;
  font-family: var(--mincho);
  font-size: 19px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.facilities-banquet__lead p {
  margin: 0;
}

.facilities-banquet__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 24px;
}

.facilities-banquet-card {
  min-width: 0;
}

.facilities-banquet-card__image {
  aspect-ratio: 380 / 225;
  overflow: hidden;
}

.facilities-banquet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilities-banquet-card__title {
  margin: 16px 0 0;
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}


/* 最終段の2件を中央寄せ */
.facilities-banquet-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 1 / 2;
  transform: translateX(50%);
}

.facilities-banquet-card:last-child:nth-child(3n + 2) {
  grid-column: 2 / 3;
  transform: translateX(50%);
}


/* ==================================================
   TABLE SECTION
================================================== */

.facilities-table-section {
  padding-top: 95px;
  padding-bottom: 95px;
}

.facilities-table-section__title {
  margin: 0 0 24px;
  font-family: var(--mincho);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.facilities-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.facilities-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #111;
  background-color: #fff;
  font-family: var(--mincho);
}

.facilities-table th,
.facilities-table td {
  padding: 17px 14px;
  border: 1px solid #555;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  vertical-align: middle;
}

.facilities-table thead tr:first-child th {
  background-color: #dceef3;
}

.facilities-table thead tr:first-child th:first-child {
  background-color: #e3efd2;
}

.facilities-table thead tr:nth-child(2) th {
  background-color: #f7dddd;
}

.facilities-table tbody th {
  background-color: #fff;
}

.facilities-table--room-rates th:nth-child(1) {
  width: 9%;
}

.facilities-table--room-rates th:nth-child(2) {
  width: 17%;
}

.facilities-table--room-rates th:nth-child(3) {
  width: 12%;
}

.facilities-table--room-rates th:nth-child(4),
.facilities-table--room-rates th:nth-child(5) {
  width: 12%;
}

.facilities-table--room-rates th:nth-child(6),
.facilities-table--room-rates th:nth-child(7) {
  width: 19%;
}

.facilities-table-section__date {
  padding: 28px 0 0;
  font-family: var(--mincho);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: right;
}

.facilities-table-section__note {
  padding: 28px 0 0;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}


/* ==================================================
   EQUIPMENT TABLE
================================================== */

.facilities-table--equipment {
  min-width: 720px;
}

.facilities-table--equipment th {
  width: 72%;
  background-color: #fff;
}

.facilities-table--equipment td {
  width: 28%;
}

.facilities-table--equipment th,
.facilities-table--equipment td {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 22px;
}


/* ==================================================
   GUIDANCE
================================================== */

.facilities-guidance {
  padding-top: 90px;
  padding-bottom: 130px;
}

.facilities-guidance__block {
  font-family: var(--mincho);
  text-align: center;
}

.facilities-guidance__block + .facilities-guidance__block {
  margin-top: 65px;
}

.facilities-guidance__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.18em;
}

.facilities-guidance__list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: 0.04em;
}

.facilities-guidance__list > li + li {
  margin-top: 3px;
}

.facilities-guidance__sub-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.facilities-guidance__sub-list li + li {
  margin-top: 4px;
}


/* ==================================================
   FACILITIES LIST
================================================== */

.facilities-list {
  padding-top: 105px;
  padding-bottom: 150px;
}

.facilities-list__title {
  margin: 0 0 65px;
  font-family: var(--mincho);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: center;
}

.facilities-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.facilities-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 1.05fr);
  align-items: stretch;
  min-height: 245px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.facilities-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*padding: 30px 20px 30px 32px;*/
	padding: 30px 5px 30px 28px;
}

.facilities-card__title {
  margin: 0 0 14px;
  font-family: var(--mincho);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
	font-feature-settings: "palt";
}

.facilities-card__text {
  margin: 0;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.03em;
	font-feature-settings: "palt";
}

.facilities-card__image {
  margin: 12px;
  overflow: hidden;
	padding: 14px 14px 14px 0px;
}

.facilities-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1024px) {

  .facilities-section__inner,
  .facilities-section__inner--wide,
  .facilities-section__inner--narrow {
    width: calc(100% - 60px);
  }

  .facilities-banquet__gallery {
    gap: 45px 22px;
  }

  .facilities-banquet-card__title {
    font-size: 19px;
  }

  .facilities-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(190px, 1.1fr);
  }

  .facilities-card__content {
    padding: 24px 16px 24px 24px;
  }

  .facilities-card__title {
    font-size: 22px;
  }

  .facilities-card__text {
    font-size: 14px;
  }

}


/* ==================================================
   SMARTPHONE
================================================== */

@media screen and (max-width: 767px) {

  #facilities-page .page-hero__heading {
    width: min(82vw, 340px);
  }

  #facilities-page .page-hero__title {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .facilities-intro {
    padding-top: 65px;
    padding-bottom: 55px;
  }

  .facilities-intro .page-intro__title {
    font-size: 26px;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }

  .facilities-section {
    padding: 70px 0;
  }

  .facilities-section__inner,
  .facilities-section__inner--wide,
  .facilities-section__inner--narrow {
    width: calc(100% - 30px);
  }

  .facilities-heading {
    gap: 16px;
    width: auto;
    margin-bottom: 42px;
    justify-content: center;
  }

  .facilities-heading__icon {
    width: 62px;
  }

  .facilities-heading__title {
    font-size: 26px;
    /*letter-spacing: 0.1em;*/
    letter-spacing: 0em;
  }


  /* FLOOR MAP */

  .facilities-floor-map {
    padding-top: 55px;
    padding-bottom: 75px;
  }

  .facilities-floor-map__picture {
    width: 100%;
  }


  /* BANQUET */

  .facilities-banquet {
    padding-top: 65px;
    padding-bottom: 85px;
  }

  .facilities-banquet__lead {
    margin: -10px 5px 45px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .facilities-banquet__lead br {
    display: none;
  }

  .facilities-banquet__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 14px;
  }

  .facilities-banquet-card:nth-last-child(2):nth-child(3n + 1),
  .facilities-banquet-card:last-child:nth-child(3n + 2) {
    grid-column: auto;
    transform: none;
  }

  .facilities-banquet-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    margin: 0 auto;
  }

  .facilities-banquet-card__image {
    aspect-ratio: 4 / 3;
  }

  .facilities-banquet-card__title {
    margin-top: 10px;
    font-size: 15px;
  }


  /* TABLE */

  .facilities-table-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .facilities-table-section__title {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .facilities-table-scroll {
    padding-bottom: 8px;
  }

  .facilities-table {
    min-width: 850px;
  }

  .facilities-table th,
  .facilities-table td {
    padding: 12px 9px;
    font-size: 14px;
    line-height: 1.45;
  }

  .facilities-table-section__date {
    margin-top: 18px;
    font-size: 12px;
  }

  .facilities-table-section__note {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  .facilities-table--equipment {
    min-width: 620px;
  }

  .facilities-table--equipment th,
  .facilities-table--equipment td {
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 15px;
  }


  /* GUIDANCE */

  .facilities-guidance {
    padding-top: 65px;
    padding-bottom: 85px;
  }

  .facilities-guidance__block {
    text-align: left;
  }

  .facilities-guidance__block + .facilities-guidance__block {
    margin-top: 45px;
  }

  .facilities-guidance__title {
    margin-bottom: 18px;
    font-size: 22px;
    text-align: center;
  }

  .facilities-guidance__list {
    padding-left: 1.4em;
    list-style-position: outside;
    font-size: 13px;
    line-height: 1.9;
  }

  .facilities-guidance__list > li + li {
    margin-top: 10px;
  }

  .facilities-guidance__sub-list {
    margin-top: 8px;
    margin-left: -1.4em;
  }


  /* FACILITIES LIST */

  .facilities-list {
    padding-top: 65px;
    padding-bottom: 95px;
  }

  .facilities-list__title {
    margin-bottom: 38px;
    font-size: 27px;
  }

  .facilities-list__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .facilities-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(145px, 1.1fr);
    min-height: 190px;
  }

  .facilities-card__content {
    padding: 20px 10px 20px 18px;
  }

  .facilities-card__title {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .facilities-card__text {
    font-size: 11px;
    line-height: 1.65;
    letter-spacing: 0.01em;
  }

  .facilities-card__image {
    margin: 8px;
  }

}


/* ==================================================
   VERY SMALL SMARTPHONE
================================================== */

@media screen and (max-width: 390px) {

  .facilities-banquet__gallery {
    grid-template-columns: 1fr;
  }

  .facilities-banquet-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .facilities-card {
    grid-template-columns: 1fr;
  }

  .facilities-card__content {
    padding: 22px 20px 16px;
  }

  .facilities-card__text {
    font-size: 13px;
  }

  .facilities-card__image {
    aspect-ratio: 16 / 9;
    margin: 0 10px 10px;
  }

}

/* ==================================================
  FLOOR MAP
================================================== */

.facilities-floor-map {
  padding: 100px 30px;
}

.facilities-floor-map__inner {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.facilities-floor-map__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 7vw, 120px);
  align-items: start;
}

.facilities-floor-map__building {
  min-width: 0;
}

.facilities-floor-map__heading {
  width: min(100%, 230px);
  margin: 0 0 55px;
  padding: 10px 20px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.facilities-floor-map__heading--east {
  background: #0075b5;
}

.facilities-floor-map__heading--west {
  background: #ed1c24;
}

.facilities-floor-map__list {
  display: grid;
  gap: 65px;
}

.facilities-floor-map__item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
}

.facilities-floor-map__floor-wrap {
  min-width: 0;
}

.facilities-floor-map__floor {
  margin: 10px 0 0;
  color: #fff;
  font-family: "Times New Roman", "Yu Mincho", "游明朝", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.facilities-floor-map__floor-note {
  margin: 8px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
}

.facilities-floor-map__image-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  appearance: none;
}

.facilities-floor-map__image-button img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@media (hover: hover) {

  .facilities-floor-map__image-button:hover img {
    opacity: 0.82;
    transform: scale(1.015);
  }
}

.facilities-floor-map__image-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

.facilities-floor-map__guide {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 30px;
  align-items: end;
  width: min(100%, 500px);
  margin: 70px 0 0 100px;
}

.facilities-floor-map__character,
.facilities-floor-map__legend {
  margin: 0;
}

.facilities-floor-map__character img,
.facilities-floor-map__legend img {
  display: block;
  width: 100%;
  height: auto;
}

.facilities-floor-map__click-note {
  margin: 70px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}


/* ==================================================
  FLOOR MAP LIGHTBOX
================================================== */

.facilities-floor-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.facilities-floor-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(3px);
}

.facilities-floor-lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 30px 40px;
}

.facilities-floor-lightbox__title {
  flex: 0 0 auto;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
  text-align: center;
}

.facilities-floor-lightbox__image-wrap {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.facilities-floor-lightbox__image {
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.facilities-floor-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 25px;
  right: 30px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.facilities-floor-lightbox__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 2px;
  background: #fff;
}

.facilities-floor-lightbox__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.facilities-floor-lightbox__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.facilities-floor-lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}


/* ==================================================
  TABLET
================================================== */

@media (max-width: 1100px) {

  .facilities-floor-map__columns {
    gap: 50px;
  }

  .facilities-floor-map__item {
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 15px;
  }

  .facilities-floor-map__guide {
    margin-left: 75px;
  }
}


/* ==================================================
  SMARTPHONE
================================================== */

@media (max-width: 767px) {

  .facilities-floor-map {
    padding: 70px 20px;
  }

  .facilities-floor-map__columns {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .facilities-floor-map__heading {
    width: min(60%, 220px);
    margin-bottom: 45px;
    padding: 9px 15px;
  }

  .facilities-floor-map__list {
    gap: 48px;
  }

  .facilities-floor-map__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .facilities-floor-map__floor {
    margin-top: 5px;
    font-size: 25px;
  }

  .facilities-floor-map__floor-note {
    font-size: 10px;
    white-space: normal;
  }

  .facilities-floor-map__guide {
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 20px;
    width: calc(100% - 58px);
    margin: 55px 0 0 58px;
  }

  .facilities-floor-map__click-note {
    margin-top: 55px;
    font-size: 12px;
  }

  .facilities-floor-lightbox__inner {
    padding: 70px 15px 25px;
  }

  .facilities-floor-lightbox__close {
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
  }

  .facilities-floor-lightbox__close span {
    width: 32px;
  }

  .facilities-floor-lightbox__title {
    margin-bottom: 15px;
    font-size: 16px;
  }
}


/* ==================================================
  FLOOR MAP LIGHTBOX ARROWS
================================================== */

.facilities-floor-lightbox__arrow {
  position: fixed;
  z-index: 3;
  top: 50%;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transform: translateY(-50%);
  appearance: none;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
}

.facilities-floor-lightbox__arrow--prev {
  left: 25px;
}

.facilities-floor-lightbox__arrow--next {
  right: 25px;
}

.facilities-floor-lightbox__arrow span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.facilities-floor-lightbox__arrow--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.facilities-floor-lightbox__arrow--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

@media (hover: hover) {

  .facilities-floor-lightbox__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.facilities-floor-lightbox__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 767px) {

  .facilities-floor-lightbox__arrow {
    width: 44px;
    height: 44px;
  }

  .facilities-floor-lightbox__arrow--prev {
    left: 8px;
  }

  .facilities-floor-lightbox__arrow--next {
    right: 8px;
  }

  .facilities-floor-lightbox__arrow span {
    width: 12px;
    height: 12px;
  }
}
/* ==================================================
  FLOOR MAP HEIGHT BALANCE
================================================== */

.facilities-floor-map__columns {
  --floor-map-unit-height: clamp(190px, 15vw, 260px);
  --floor-map-row-gap: 65px;
}

.facilities-floor-map__list {
  gap: var(--floor-map-row-gap);
}

.facilities-floor-map__item {
  min-height: var(--floor-map-unit-height);
}

.facilities-floor-map__item--double {
  min-height:
    calc(
      var(--floor-map-unit-height) * 2
      + var(--floor-map-row-gap)
    );
}

.facilities-floor-map__image-button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.facilities-floor-map__image-button img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* キャラクター・凡例を通常フロア1段分の高さにする */
.facilities-floor-map__guide--floor-height {
  height: var(--floor-map-unit-height);
}

.facilities-floor-map__guide--floor-height
.facilities-floor-map__character,
.facilities-floor-map__guide--floor-height
.facilities-floor-map__legend {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.facilities-floor-map__guide--floor-height img {
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {

  .facilities-floor-map__item,
  .facilities-floor-map__item--double {
    min-height: 0;
  }

  .facilities-floor-map__guide--floor-height {
    height: auto;
  }

  .facilities-floor-map__image-button {
    height: auto;
  }
}

/* ==================================================
  スマートフォン調整
================================================== */

@media (max-width: 767px) {
#facilities-page img {
    display: block;
    width: 100%;
   height: 100%;
	margin: auto;

  object-fit: cover;

}
	
#facilities-page .facilities-card__image img{
    display: block;
    width: 80%;
   height: 90%;
	margin: auto;

  object-fit: cover;
	}
	.facilities-card__image{
		width: 100%;
		padding: 0;
		margin: auto;
	}
	

}