:root {
  /* ---- Base ---- */
  --bp-sp: 375px;
  --bp-pc: 1200px;
  --fz-h2-large:  clamp(2rem,    1.603rem + 1.697vw, 2.875rem);   /* 32px 〜 46px */
  --fz-h2-small:  clamp(1.625rem, 1.341rem + 1.212vw, 2.25rem);   /* 26px 〜 36px */
  --fz-subhead:   clamp(1.25rem,  1.136rem + 0.485vw, 1.5rem);    /* 20px 〜 24px */
  --fz-text:      clamp(0.875rem, 0.818rem + 0.242vw, 1rem);      /* 14px 〜 16px */

  /* ---- Layout width ---- */
  --w-main: 1200px;
  --w-main-sp: 90%;

  /* ---- Spacing scale ---- */
  --space-sm: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-md: clamp(2rem, 1.6rem + 2vw, 3rem);
  --space-lg: clamp(5rem, 4rem + 3vw, 7rem);

  /* ---- color ---- */
  --color-brown: #3a3029;
  --color-gray:#dddddd;
  --color-right-gray:#eeeeee;
  --color-beige:#c6bfb1;
  --color-dark-gray:#393737;
}

/* ==========================================================================
   共通
   ========================================================================== */

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

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

body {
  margin: 0;
  color: var(--color-dark-gray);
  background: #fff;
  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
  font-size: var(--fz-text);
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}

main {
  display: block;
}

section {
  position: relative;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img,
video,
iframe {
  height: auto;
}

picture {
  display: block;
}

figure,
p,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

address {
  font-style: normal;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}




/* ==========================================================================
   共通レイアウト
========================================================================== */

.main-width {
  width: min(var(--w-main), var(--w-main-sp));
  margin-inline: auto;
}



/* ==========================================================================
   共通見出し
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-header__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--color-brown);
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.section-header__title {
  margin: 0;
  color: var(--color-dark-gray);
  font-family:
    "Cormorant Garamond",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: var(--fz-h2-large);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.section-header__lead {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   共通CTA
   ========================================================================== */

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 20rem);
  min-height: 5.5rem;
  padding: 0.625rem 0.625rem 0.625rem 1.5rem;
  border: 1px solid currentColor;
  border-radius: 9999px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.cta-pill:hover {
  transform: translateY(-2px);
}

.cta-pill__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex: 1 1 auto;
}

.cta-pill__eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.cta-pill__main {
  display: block;
  font-size: var(--fz-subhead);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.cta-pill__arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.cta-pill__arrow svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 767px) {
  .cta-pill {
    min-height: 4.75rem;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  }

  .cta-pill__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}
/* ==========================================================================
   言語切り替え
   ========================================================================== */
.lang-switch {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: #fff;
  cursor: pointer;
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-size: var(--fz-text);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.lang-switch:active {
  transform: translateY(1px);
}

.lang-switch:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lang-switch__divider {
  opacity: 0.75;
}

.lang-switch__ja,
.lang-switch__en {
  transition: opacity 0.25s ease;
}

html[data-lang="ja"] .lang-switch__ja,
html[data-lang="en"] .lang-switch__en {
  opacity: 1;
}

html[data-lang="ja"] .lang-switch__en,
html[data-lang="en"] .lang-switch__ja {
  opacity: 0.42;
}

@media (min-width: 768px) {
  .lang-switch {
    padding: 0.6rem 0.95rem;
    font-size: var(--fz-text);
    letter-spacing: 0.08em;
  }
}


[hidden] {
  display: none !important;
}

/* ==========================================================================
   ユーティリティ
   ========================================================================== */

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.u-text-center {
  text-align: center;
}

/* ==========================================================================
   埋め込み系 共通
   ========================================================================== */

.google-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   スクロール演出 共通
   ========================================================================== */

.scrollin {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}

.js-enabled .scrollin {
  opacity: 0;
  transform: translateY(24px);
}

.js-enabled .scrollin.active {
  opacity: 1;
  transform: none;
}

.scrollin.is-show,
.scrollin.is-active,
.scrollin.active {
  opacity: 1;
  transform: none;
}


/* ==========================================================================
   FV
   ========================================================================== */

.fv {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.fv__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__video--pc {
  display: none;
}

.fv__video--sp {
  display: block;
}

.fv__header {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: #fff;
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-size: var(--fz-text);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.lang-switch__divider {
  opacity: 0.9;
}

.sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
}

.sns-icon svg {
  width: 2rem;
  height: 2rem;
}

.fv__overlay {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding:
    max(6.5rem, env(safe-area-inset-top))
    1.25rem
    max(2rem, env(safe-area-inset-bottom))
    1.25rem;
}

.fv__catch {
  margin: 0 0 clamp(9rem, 18vw, 12rem);
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
  font-size: var(--fz-subhead);
  font-weight: 200;
  line-height: 2;
  letter-spacing: 0.3em;
}
.fv__catch [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
}

.fv__cta {
  width: min(100%, 40rem);
  color: #fff;
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.fv__cta .cta-pill__inner {
  align-items: center;
  text-align: center;
}

.fv__cta .cta-pill__eyebrow {
  color: #fff;
  font-size: var(--fz-text);
  font-weight:100;
  letter-spacing: 0.08em;
}

.fv__cta .cta-pill__main {
  color: #fff;
  font-size: var(--fz-subhead);
  font-weight: 200;
  letter-spacing: 0.1em;
}

.fv__cta .cta-pill__arrow {
  border-color: rgba(255, 255, 255, 0.92);
  color: #fff;
  background: transparent;
}

.fv__cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Tablet / PC
   ========================================================================== */

@media (min-width: 768px) {
  .fv__video--pc {
    display: block;
  }

  .fv__video--sp {
    display: none;
  }

  .fv__header {
    top: 2rem;
    right: 2.5rem;
    gap: 1.75rem;
  }

  .lang-switch {
    font-size: var(--fz-text);
    letter-spacing: 0.08em;
  }

  .sns-icon svg {
    width: 2.4rem;
    height: 2.4rem;
  }

  .fv__overlay {
    align-items: flex-start;
    justify-content: flex-end;
    padding:
    max(7rem, env(safe-area-inset-top))
    6rem
    7rem
    6rem;
  }
  .fv__catch {
    margin: 0 0 1.75rem;
    width: 100%;
    text-align: left;
  }
  .fv__catch [data-lang="ja"] {
    font-size: var(--fz-subhead);
    line-height: 1.9;
  }

  .fv__catch [data-lang="en"] {
    font-size: clamp(2.25rem, 1.55rem + 1.2vw, 3.25rem);
    line-height: 1.35;
  }

  .fv__cta {
    width: min(34rem, 42vw);
    margin-top: 0;
  }

  .fv__cta .cta-pill__inner {
    align-items: center;
    text-align: center;
  }

  .fv__cta .cta-pill__main {
    font-size: var(--fz-subhead);
  }
}

/* ==========================================================================
   Large PC
   ========================================================================== */

@media (min-width: 1200px) {
  .fv__overlay {
    padding-left: 6rem;
    padding-right: 6rem;
    padding-bottom: 8rem;
  }

  .fv__catch {
    margin-bottom: 2.25rem;
  }

  .fv__cta {
    width: 32rem;
  }
}








/* ==========================================================================
   intro
   ========================================================================== */

.intro {
  background: #fff;
  color: var(--color-dark-gray);
  overflow: hidden;
}

.intro .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* ----------------------------------
   logo
---------------------------------- */

.intro__logo {
  width: clamp(4.5rem, 4rem + 2vw, 6rem);
  margin-inline: auto;
}

.intro__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------
   lead / title
---------------------------------- */

.intro__lead {
  display: flex;
  justify-content: center;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.intro__title {
  margin: 0;
}

/* 日本語 */
.intro__title-group[data-lang="ja"] {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(0.8rem, 0.6rem + 0.8vw, 1.5rem);
}

.intro__title-group[data-lang="ja"] .intro__title-line {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--fz-subhead);
  font-weight: 200;
  line-height: 1.7;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* 3行の行頭ずらし */
.intro__title-group[data-lang="ja"] .intro__title-line--1 {
  margin-top: 0;
}

.intro__title-group[data-lang="ja"] .intro__title-line--2 {
  margin-top: clamp(3rem, 2.4rem + 1.6vw, 4.8rem);
}

.intro__title-group[data-lang="ja"] .intro__title-line--3 {
  margin-top: clamp(5rem, 4rem + 2vw, 7rem);
}

/* 英語 */
.intro__title-group[data-lang="en"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  text-align: center;
}

.intro__title-group[data-lang="en"] .intro__title-line {
  display: block;
  font-size: var(--fz-subhead);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.intro__title-group[data-lang="en"] .intro__title-line--1,
.intro__title-group[data-lang="en"] .intro__title-line--2,
.intro__title-group[data-lang="en"] .intro__title-line--3 {
  margin-top: 0;
}

/* ----------------------------------
   images
---------------------------------- */

.intro__image {
  margin: 0;
}

.intro__image img {
  display: block;
  width: 100%;
  height: auto;
}

.intro__image--day {
  width: min(72%, 28rem);
  margin-left: 0;
  margin-right: auto;
}

.intro__image--night {
  width: min(68%, 16rem);
  margin-top: var(--space-lg);
  margin-left: auto;
  margin-right: 0;
}

/* ----------------------------------
   text
---------------------------------- */

.intro__text {
  width: min(74%, 24rem);
  margin: var(--space-lg) auto 0;
}

.intro__text p {
  font-size: var(--fz-text);
  line-height: 2.4;
  letter-spacing: 0.08em;
}

.intro__text p + p {
  margin-top: var(--space-md);
}

/* ----------------------------------
   cta
---------------------------------- */

.intro .cta__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  justify-self: stretch;
  margin-top: var(--space-lg);
}

.intro .cta-pill {
  display: flex;
  width: min(100%, 20rem);
  max-width: 20rem;
}

/* ==========================================================================
   Tablet / PC
   ========================================================================== */

@media (min-width: 768px) {
  .intro .main-width {
    display: grid;
    grid-template-columns: minmax(18rem, 30rem) minmax(14rem, 22rem);
    justify-content: center;
    column-gap: clamp(2rem, 3vw, 4rem);
    padding-top: calc(var(--space-lg) + 1rem);
    padding-bottom: calc(var(--space-lg) + 1rem);
  }

  .intro__logo {
    grid-column: 1 / -1;
    justify-self: center;
    width: clamp(5rem, 4.6rem + 1.2vw, 6.2rem);
  }

  .intro__lead {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: var(--space-sm);
    margin-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .intro__title-group[data-lang="ja"] {
    gap: clamp(1.2rem, 1rem + 1vw, 2rem);
  }

  .intro__title-group[data-lang="ja"] .intro__title-line {
    line-height: 1.75;
    letter-spacing: 0.16em;
  }

  .intro__title-group[data-lang="ja"] .intro__title-line--1 {
    margin-top: 0;
  }

  .intro__title-group[data-lang="ja"] .intro__title-line--2 {
    margin-top: clamp(2.5rem, 2rem + 1vw, 4rem);
  }

  .intro__title-group[data-lang="ja"] .intro__title-line--3 {
    margin-top: clamp(5.5rem, 4.5rem + 2vw, 8rem);
  }

  .intro__title-group[data-lang="en"] .intro__title-line {
    line-height: 1.15;
  }

  .intro__image--day {
    grid-column: 1;
    width: 100%;
    max-width: 30rem;
    margin: 0;
    justify-self: start;
    align-self: start;
  }

  .intro__text {
    grid-column: 2;
    width: 100%;
    max-width: 22rem;
    margin: 1rem 0 0;
    justify-self: start;
    align-self: start;
  }

  .intro__text p {
    line-height: 2.5;
  }

  .intro__image--night {
    grid-column: 1 / -1;
    width: min(100%, 16rem);
    justify-self: center;
    margin-top: calc(var(--space-lg) - 0.5rem);
    margin-left: 0;
    margin-right: 0;
    transform: translateX(2rem);
  }
  .intro .cta__inner {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* ==========================================================================
   Large PC
   ========================================================================== */

@media (min-width: 1200px) {
  .intro .main-width {
    grid-template-columns: 30rem 22rem;
    column-gap: 4rem;
  }

  .intro__image--night {
    transform: translateX(3rem);
  }
}



/* =========================================
   scene
   ========================================= */
.scene {
  background: var(--color-brown);
  color: #fff;
  overflow: hidden;
}

.scene .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* -----------------------------------------
   header
   ----------------------------------------- */
.scene .section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.scene .section-header__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.scene .section-header__title {
  color: #fff;
}

.scene .section-header__lead {
  color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------
   content area
   ----------------------------------------- */
.scene__content {
  display: grid;
  gap: var(--space-lg);
}

.scene__block {
  position: relative;
}

.scene__image,
.scene__hero {
  margin: 0;
}

.scene__image img,
.scene__hero img,
.scene__recommend-icon {
  display: block;
}

.scene__image img,
.scene__hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.scene__text {
  font-size: var(--fz-text);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.scene__text p {
  margin: 0;
}

.scene__text [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   friends
   ----------------------------------------- */
.scene__block--friends {
  display: grid;
  gap: var(--space-lg);
}

.scene__block--friends .scene__image--main {
  width: min(90%, 28rem);
  margin-left: 0;
  margin-right: auto;
}

.scene__block--friends .scene__text {
  width: min(62%, 16rem);
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}

/* -----------------------------------------
   couple
   ----------------------------------------- */
.scene__block--couple {
  display: grid;
  gap: var(--space-lg);
}

.scene__block--couple .scene__image--wide {
  width: min(88%, 34rem);
  margin-left: auto;
  margin-right: 0;
}

.scene__block--couple .scene__image--sub {
  width: min(46%, 14rem);
  margin-left: 0;
  margin-right: auto;
  margin-top: calc(var(--space-sm) * -0.3);
}

.scene__block--couple .scene__text {
  width: min(64%, 17rem);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* -----------------------------------------
   quiet
   ----------------------------------------- */
.scene__block--quiet {
  display: grid;
  gap: var(--space-lg);
}

.scene__images--overlap {
  position: relative;
  min-height: clamp(16rem, 14rem + 10vw, 24rem);
}

.scene__block--quiet .scene__image--small {
  position: absolute;
  top: 0;
  left: 0;
  width: min(42%, 13rem);
  z-index: 1;
}

.scene__block--quiet .scene__image--square {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(64%, 18rem);
}

.scene__block--quiet .scene__text {
  width: min(62%, 16rem);
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  display:flex;
  flex-direction:column;
  gap:var(--space-md);
}

/* -----------------------------------------
   hero / footer
   ----------------------------------------- */
.scene__hero {
  margin-top: var(--space-lg);
}

.scene__footer {
  margin-top: var(--space-lg);
  text-align: center;
}

.scene__footer p {
  margin: 0;
  font-size: var(--fz-text);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.scene__footer [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   recommend
   ----------------------------------------- */
.scene__recommend {
  margin-top: var(--space-lg);
  padding:
    clamp(2.5rem, 2rem + 2vw, 4rem)
    clamp(1.5rem, 1rem + 2vw, 3rem);
  background: var(--color-gray);
  color: var(--color-dark-gray);
  position: relative;
  overflow: visible;
}

.scene__recommend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: clamp(3rem, 2.4rem + 1vw, 4.5rem);
  background: rgba(255, 255, 255, 0.9);
  z-index: 2;
  pointer-events: none;
}

.scene__recommend-heading {
  text-align: center;
  margin-bottom: var(--space-md);
  margin-bottom:var(--space-md);
}

.scene__recommend-heading p {
  margin: 0;
  font-size: var(--fz-subhead);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-dark-gray);
}

.scene__recommend-heading [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.scene__recommend-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  max-width:300px;
}

.scene__recommend-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  column-gap: 0.75rem;
}

.scene__recommend-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.scene__recommend-item span {
  display: block;
  font-size: var(--fz-text);
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--color-dark-gray);
}

.scene__recommend-item [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .scene .main-width {
    padding-top: calc(var(--space-lg) + 1rem);
    padding-bottom: calc(var(--space-lg) + 1rem);
  }

  .scene .section-header {
    margin-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .scene__content {
    gap: calc(var(--space-lg) + 1rem);
    max-width: 920px;
    margin: 0 auto;
  }

  /* friends */
  .scene__block--friends {
    grid-template-columns: minmax(18rem, 31rem) minmax(12rem, 18rem);
    align-items: center;
    column-gap: clamp(2rem, 2vw, 3rem);
  }

  .scene__block--friends .scene__image--main {
    width: 100%;
    margin: 0;
  }

  .scene__block--friends .scene__text {
    width: 100%;
    margin: 0;
  }

  /* couple */
  .scene__block--couple {
    grid-template-columns: minmax(13rem, 18rem) minmax(20rem, 34rem);
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 2vw, 3rem);
    align-items: start;
  }

  .scene__block--couple .scene__text {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
    align-self: center;
  }

  .scene__block--couple .scene__image--wide {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    margin: 0;
  }

  .scene__block--couple .scene__image--sub {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 14rem);
    margin: 0;
    align-self: end;
  }

  /* quiet */
  .scene__block--quiet {
    grid-template-columns: minmax(20rem, 34rem) minmax(12rem, 18rem);
    align-items: center;
    column-gap: clamp(2rem, 2vw, 3rem);
  }

  .scene__images--overlap {
    min-height: clamp(20rem, 16rem + 12vw, 30rem);
  }

  .scene__block--quiet .scene__image--small {
    width: min(42%, 14rem);
  }

  .scene__block--quiet .scene__image--square {
    width: min(68%, 22rem);
  }

  .scene__block--quiet .scene__text {
    width: 100%;
    margin: 0;
  }

  /* message */
  .scene__message p {
    font-size: var(--fz-h2-large);
    line-height: 2;
  }


  /* recommend */

  .scene__recommend::before {
    height: clamp(2.5rem, 2rem + 1vw, 4rem);
  }

  .scene__recommend-heading {
    margin-bottom: var(--space-md);
    text-align: center;
  }

  .scene__recommend-list {
    gap: clamp(1.75rem, 1.4rem + 1vw, 2.5rem);
  }

  .scene__recommend-item {
    grid-template-columns: 2.75rem 1fr;
    column-gap: 1rem;
  }

  .scene__recommend-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .scene__content {
    max-width: 920px;
    margin: 0 auto;
    gap: calc(var(--space-lg) + 2rem);
  }

  .scene__block--friends {
    grid-template-columns: 1.15fr 0.85fr;
    column-gap: 3.5rem;
    align-items: center;
  }

  .scene__block--couple {
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 3.5rem;
    align-items: start;
  }

  .scene__block--quiet {
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 3.5rem;
    align-items: center;
  }

  .scene__block--friends .scene__image--main,
  .scene__block--friends .scene__text,
  .scene__block--couple .scene__image--wide,
  .scene__block--couple .scene__image--sub,
  .scene__block--couple .scene__text,
  .scene__block--quiet .scene__text {
    width: 100%;
    margin: 0;
  }
}



/* =========================================
   place
   ========================================= */
.place {
  background: #f2f2f2;
  color: var(--color-dark-gray);
  overflow: hidden;
}

.place .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* -----------------------------------------
   header
   ----------------------------------------- */
.place .section-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.place .section-header__eyebrow {
  color: rgba(57, 55, 55, 0.72);
}

.place .section-header__title {
  color: var(--color-dark-gray);
}

.place .section-header__lead {
  color: var(--color-dark-gray);
}

/* -----------------------------------------
   intro
   SP: タイトル → テキスト → 写真
   PC: 写真左 / テキスト右
   ----------------------------------------- */
.place__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-md);
}

.place__intro-image,
.spot-card__image {
  margin: 0;
}

.place__intro-image {
  width: 100%;
  max-width: 32rem;
}

.place__intro-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.place__intro-text {
  order: 1;
  width: 100%;
  max-width: 26rem;
}

.place__intro-text p {
  margin: 0;
  font-size: var(--fz-text);
  line-height: 2.25;
  letter-spacing: 0.08em;
  color: var(--color-dark-gray);
}

.place__intro-text [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   divider
   ----------------------------------------- */
.place__divider {
  width: 100%;
  height: 1px;
  margin: var(--space-lg) auto;
  background: rgba(57, 55, 55, 0.28);
}

/* -----------------------------------------
   spots
   ----------------------------------------- */
.place__spots {
  margin-top: 0;
}

.place__spots-header {
  margin-bottom: var(--space-md);
}

.place__spots-title {
  margin: 0;
  text-align: center;
  font-size: var(--fz-subhead);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--color-dark-gray);
  font-weight:normal;
}

.place__spots-title [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.place__spots-list {
  display: grid;
  gap: var(--space-md);
}

/* -----------------------------------------
   spot card
   ----------------------------------------- */
.spot-card {
  background: #fff;
  padding: clamp(2rem, 1.5rem + 1vw, 2.5rem);
  box-shadow: 0 0 0 1px rgba(57, 55, 55, 0.04);
}

.spot-card__body {
  display: flex;
  flex-direction: column;
}

.spot-card__label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color:var(--color-beige);
}

.spot-card__title {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.125rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-dark-gray);
}

.spot-card__title[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.03em;
}

.spot-card__text {
  margin: 0;
  font-size: var(--fz-text);
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-dark-gray);
}

.spot-card__text[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.spot-card__image {
  margin-top: 1.25rem;
}

.spot-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .place .main-width {
    padding-top: calc(var(--space-lg) + 0.5rem);
  }

  .place .section-header {
    margin-bottom: calc(var(--space-md) + 0.5rem);
  }

  .place__intro {
    display: grid;
    grid-template-columns: minmax(16rem, 26rem) minmax(16rem, 24rem);
    justify-content: center;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
  }

  .place__intro-image {
    order: initial;
    max-width: none;
    width: 100%;
  }

  .place__intro-text {
    order: initial;
    max-width: none;
    width: 100%;
  }

  .place__intro-text p {
    line-height: 2.3;
  }

  .place__divider {
    width: 100%;
    margin: calc(var(--space-lg) * 0.9) auto var(--space-lg);
  }

  .place__spots-header {
    margin-bottom: calc(var(--space-md) + 0.5rem);
  }

  .place__spots-list {
    gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  }

  .spot-card {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) minmax(12rem, 16rem);
    align-items: flex-start;
    column-gap: clamp(1.5rem, 2vw, 2.5rem);
    padding: clamp(2.25rem, 1.8rem + 1.2vw, 3rem);
  }

  .spot-card__image {
    margin-top: 0;
  }

  .spot-card__image img {
    width: 100%;
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .place__intro {
    grid-template-columns: 19rem 20rem;
    column-gap: 5.5rem;
  }

  .place__spots-list {
    max-width: 52rem;
    margin: 0 auto;
  }

  .spot-card {
    grid-template-columns: 1fr 13rem;
    column-gap: 2.5rem;
  }

  .spot-card__body {
    padding-left: 0.25rem;
  }
}





/* =========================================
   place-map
   ========================================= */
.place-map {
  position: relative;
  padding-top: clamp(4.5rem, 4rem + 4vw, 8rem);
  padding-bottom: var(--space-lg);
  background: #fff;
  overflow: hidden;
}

.place-map .main-width {
  position: relative;
  z-index: 1;
}

/* -----------------------------------------
   marquee
   ----------------------------------------- */
.place-map__marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.place-map__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: place-map-marquee 22s linear infinite;
  will-change: transform;
}

.place-map__marquee-text {
  display: block;
  flex: 0 0 auto;
  padding-right: 0.02em;
  font-family:"Cormorant Unicase", serif;
  font-size: clamp(6.75rem, 15vw, 12rem);
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: var(--color-beige);
  opacity: 0.72;
  user-select: none;
  font-weight:100;
}

@keyframes place-map-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -----------------------------------------
   main map
   ----------------------------------------- */
.place-map__main,
.place-map__access {
  margin: 0;
}

.place-map__main {
  width: min(100%, 31rem);
  margin: 0 auto;
}

.place-map__main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -----------------------------------------
   access image
   ----------------------------------------- */
.place-map__access {
  width: min(100%, 31rem);
  margin: auto;
  margin-top:var(--space-lg);
}

.place-map__access img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .place-map {
    padding-top: clamp(5rem, 4rem + 4vw, 8.5rem);
  }

  .place-map__marquee-text {
    letter-spacing: -0.05em;
    opacity: 0.7;
  }

  .place-map__main {
    width: min(100%, 39rem);
  }

  .place-map__access {
    width: min(100%, 39rem);
    margin: auto;
    margin-top:var(--space-lg);
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .place-map {
    padding-top: 6rem;
    padding-bottom: calc(var(--space-lg) + 1rem);
  }

  .place-map__marquee-text {
    font-size: 8rem;
  }

  .place-map__main {
    width: 41rem;
  }

  .place-map__access {
    width: 41rem;
  }
}

/* -----------------------------------------
   reduced motion
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .place-map__marquee-track {
    animation: none;
  }
}




/* -----------------------------------------
   cta
   ----------------------------------------- */
.cta{
  background-color:var(--color-beige);
  padding:var(--space-lg) 0;
}
.cta__inner{
  margin:0 auto;
  text-align:center;
  display:flex;
  align-items:center;
  flex-direction:column;
}




/* =========================================
   service
   ========================================= */
.service {
  background: var(--color-dark-gray);
  color: #fff;
  overflow: hidden;
}

.service .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* -----------------------------------------
   heading
   ----------------------------------------- */
.section-header__title_common {
  margin: 0 0 var(--space-md);
  text-align: center;
  font-size: var(--fz-h2-small);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
}

.section-header__title_common::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0.9rem auto 0;
  background: rgba(255, 255, 255, 0.65);
}

.section-header__title_common [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   layout
   SP: gallery first
   PC: text left / gallery right
   ----------------------------------------- */
.service .flex-box {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-md);
}

/* left text block */
.service .flex-box > div:first-child h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--fz-subhead);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #fff;
}

.service .flex-box > div:first-child h3 [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   dl
   下線が左右でつながるように修正
   ----------------------------------------- */
.service dl {
  --service-label-width: 5.6rem;
  --service-col-gap: 1rem;

  margin: 0;
  display: grid;
  grid-template-columns: var(--service-label-width) 1fr;
  row-gap: 1rem;
  column-gap: var(--service-col-gap);
}

.service dt,
.service dd {
  position: relative;
  margin: 0;
  padding-bottom: 0.85rem;
}

.service dt {
  font-size: 0.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.service dd {
  font-size: var(--fz-text);
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #fff;
}

.service dd::after {
  content: "";
  position: absolute;
  left: calc(-1 * (var(--service-label-width) + var(--service-col-gap)));
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.service dd span span {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75em;
  line-height: 1.7;
  opacity: 0.82;
}

.service dt [data-lang="en"],
.service dd [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.02em;
}

.service dd [data-lang="en"] span {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
}

.service dl > dd:last-of-type::after {
  display: none;
}

/* -----------------------------------------
   gallery
   ----------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  align-items: start;
}

.gallery__main {
  grid-column: 1 / -1;
  margin: 0;
}

.gallery__main img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery__thumbnail {
  position: relative;
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.gallery__thumbnail img:first-child {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery__thumbnail:hover img:first-child {
  transform: scale(1.04);
  opacity: 0.95;
}

.gallery__thumbnail:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.gallery__zoom-icon {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.gallery__zoom-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -----------------------------------------
   modal
   ----------------------------------------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  max-height: 88vh;
  padding: 3rem 1rem 1rem;
  background: #111;
}


.gallery-modal__content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(88vh - 4rem);
  object-fit: contain;
  margin: 0 auto;
}

.gallery-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  appearance: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* -----------------------------------------
   other service
   ----------------------------------------- */
.other-service {
  margin-top: calc(var(--space-lg) * 0.9);
}

.other-service > h3 {
  margin: 0 0 var(--space-md);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #fff;
}


.other-service > h3 [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.03em;
}

.other-service-card {
  margin-top: var(--space-md);
}

.other-service-card h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #fff;
}

.other-service-card h4::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.other-service-card h4 span {
  flex: 0 0 auto;
}

.other-service-card h4 [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.03em;
}

.other-service-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  object-fit: cover;
}

.other-service-card p {
  margin: var(--space-sm) 0 0;
  font-size: var(--fz-text);
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: #fff;
}

.other-service-card p[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.other-service-caption {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--color-dark-gray);
}

.other-service-caption ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}

.other-service-caption li {
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.other-service-caption [data-lang="en"] li {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
}

.other-service-card:last-child {
  margin-top: calc(var(--space-md) + 0.5rem);
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .service .main-width {
    padding-top: calc(var(--space-lg) + 0.5rem);
    padding-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .section-header__title_common {
    margin-bottom: calc(var(--space-md) + 0.5rem);
  }

  .service .flex-box {
    display: grid;
    grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 27rem);
    column-gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
  }

  .service .flex-box > div:first-child {
    padding-top: 0.4rem;
  }

  .service .flex-box > div:first-child h3 {
    margin-bottom: calc(var(--space-md) * 0.8);
  }

  .service dl {
    --service-label-width: 6rem;
    --service-col-gap: 1rem;

    grid-template-columns: var(--service-label-width) 1fr;
    row-gap: 1.1rem;
  }

  .gallery {
    gap: 0.55rem;
  }

  .gallery__zoom-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .other-service {
    margin-top: calc(var(--space-lg) + 0.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) clamp(1.5rem, 3vw, 3rem);
    align-items: start;
  }

  .other-service > h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .other-service-card {
    margin-top: 0;
  }

  .other-service-card:last-child {
    grid-column: 1;
    margin-top: 0;
    align-self: start;
  }

  .other-service-card:nth-child(3) {
    grid-column: 2;
  }

  .other-service-card:nth-child(4) {
    grid-column: 1;
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .service .flex-box {
    grid-template-columns: 30rem 38rem;
    column-gap: 3rem;
    justify-content: center;
    align-items: start;
  }

  .gallery-modal__content {
    width: min(86vw, 1040px);
  }
}



/* =========================================
   price
   ========================================= */
.price {
  background: var(--color-beige);
  overflow: hidden;
}

.price .main-width {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

/* outer frame */
.price__frame {
  padding: var(--space-sm);
  background: #fff;
}

/* inner beige panel */
.price__inner {
  background: var(--color-beige);
  padding:
    clamp(3rem, 2.4rem + 3vw, 5rem)
    clamp(1.5rem, 1rem + 2vw, 3rem);
  text-align: center;
  color: var(--color-dark-gray);
  position: relative;
}

/* -----------------------------------------
   header
   ----------------------------------------- */
.price .section-header__title_common {
  color: var(--color-dark-gray);
}

.price .section-header__title_common::after {
  background: var(--color-dark-gray);
}

/* -----------------------------------------
   card
   ----------------------------------------- */
.price__card {
  width: min(100%, 30rem);
  margin: 0 auto;
}

.price__label {
  margin: 0;
  padding: clamp(0.9rem, 0.7rem + 0.6vw, 1.15rem) 1rem;
  background: var(--color-dark-gray);
  color: #fff;
  font-size: clamp(1rem, 0.86rem + 0.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.price__label[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  letter-spacing: 0.03em;
}

.price__amount {
  margin-top: 0.75rem;
  padding:
    clamp(1.5rem, 1.2rem + 1vw, 2rem)
    clamp(1rem, 0.8rem + 1vw, 1.5rem);
  background: #fff;
}

.price__value {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  color: var(--color-dark-gray);
  font-family:
    "Times New Roman",
    "Cormorant Garamond",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(2.25rem, 1.8rem + 2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.price__value[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
}

.price__currency {
  font-size: 0.9em;
  line-height: 1;
}

.price__tax {
  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 0.38em;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.price__value[data-lang="en"] .price__tax {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-size: 0.34em;
  letter-spacing: 0.02em;
}

/* -----------------------------------------
   notes
   ----------------------------------------- */
.price__notes {
  width: min(100%, 30rem);
  margin: clamp(1.5rem, 1.2rem + 1vw, 2rem) auto 0;
  text-align: left;
}

.price__notes p {
  margin: 0;
  color: var(--color-dark-gray);
  font-size: var(--fz-text);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.price__notes p + p {
  margin-top: 0.15rem;
}

.price__notes [data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .price .main-width {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  .price__frame {
    padding: var(--space-md);
  }

  .price__inner {
    padding:
      clamp(4rem, 3rem + 3vw, 6rem)
      clamp(3rem, 2rem + 4vw, 6rem);
  }

  .price__card {
    width: min(100%, 32rem);
  }

  .price__amount {
    margin-top: 0.9rem;
  }

  .price__notes {
    width: min(100%, 32rem);
    margin-top: 1.75rem;
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .price__frame {
    padding: 1.2rem;
  }

  .price__inner {
    padding: 5.5rem 6rem 5rem;
  }

  .price__card {
    width: 34rem;
  }

  .price__notes {
    width: 34rem;
  }
}


/* =========================================
   faq
   ========================================= */
.faq {
  background: #f1f1ef;
  color: var(--color-dark-gray);
  overflow: hidden;
}

.faq .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* -----------------------------------------
   header
   ----------------------------------------- */
.faq .section-header__title_common {
  color: var(--color-dark-gray);
}

.faq .section-header__title_common::after {
  background: var(--color-dark-gray);
}

/* -----------------------------------------
   list
   ----------------------------------------- */
.faq__list {
  width: min(100%, 58rem);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 1.7rem + 1vw, 3rem);
}

.faq__item {
  display: grid;
  gap: 0.85rem;
}

/* -----------------------------------------
   question
   ----------------------------------------- */
.faq__question {
  margin: 0;
  font-size: clamp(1.2rem, 1.08rem + 0.45vw, 1.6rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--color-dark-gray);
}

.faq__question[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* -----------------------------------------
   answer
   ----------------------------------------- */
.faq__answer {
  margin: 0;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  column-gap: 0.65rem;
  align-items: start;
  font-size: var(--fz-text);
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--color-dark-gray);
}

.faq__answer[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.faq__answer-label {
  display: block;
  color: #d3cec3;
  font-weight: 700;
}

/* -----------------------------------------
   policy
   ----------------------------------------- */
.faq__policy {
  margin: -0.2rem 0 0 calc(1.5rem + 0.65rem);
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
  color: var(--color-dark-gray);
}

.faq__policy li {
  position: relative;
  padding-left: 1em;
  font-size: var(--fz-text);
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.faq__policy li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.faq__policy[data-lang="en"] li {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .faq .main-width {
    padding-top: calc(var(--space-lg) + 0.5rem);
    padding-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .faq__header {
    margin-bottom: clamp(3rem, 2.4rem + 2vw, 4.5rem);
  }

  .faq__list {
    width: min(100%, 62rem);
    gap: clamp(2.25rem, 1.8rem + 1vw, 3.25rem);
  }

  .faq__item {
    gap: 1rem;
  }

  .faq__question {
    font-size: clamp(1.35rem, 1.1rem + 0.5vw, 1.75rem);
  }

  .faq__answer {
    grid-template-columns: 1.7rem 1fr;
    column-gap: 0.8rem;
    line-height: 2.15;
  }

  .faq__policy {
    margin-left: calc(1.7rem + 0.8rem);
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .faq__list {
    width: min(100%, 64rem);
  }
}



/* =========================================
   access
   ========================================= */
.access {
  background: #fff;
  color: var(--color-dark-gray);
  overflow: hidden;
}

.access .main-width {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* -----------------------------------------
   header
   ----------------------------------------- */
.access .section-header__title_common {
  color: var(--color-dark-gray);
}

.access .section-header__title_common::after {
  background: var(--color-dark-gray);
}

/* -----------------------------------------
   map image
   ----------------------------------------- */
.access__map {
  width: min(100%, 24rem);
  margin: 0 auto;
}

.access__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -----------------------------------------
   address
   ----------------------------------------- */
.access__address {
  width: min(100%, 24rem);
  margin: clamp(2rem, 1.6rem + 1vw, 3rem) auto 0;
  text-align: left;
  color: var(--color-dark-gray);
}

.access__postcode {
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.access__address-text {
  margin: 0;
  font-size: var(--fz-text);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

.access__address-text[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .access .main-width {
    padding-top: calc(var(--space-lg) + 0.5rem);
    padding-bottom: calc(var(--space-lg) + 0.5rem);
  }

  .access__header {
    margin-bottom: clamp(3rem, 2.4rem + 2vw, 4.5rem);
  }

  .access__map {
    width: min(100%, 34rem);
  }

  .access__address {
    width: min(100%, 34rem);
    margin-top: clamp(2.25rem, 1.8rem + 1vw, 3.25rem);
  }
  .access__body {
    display:flex;
    align-items:center;
    justify-content: space-between;
    width:100%;
    margin:0 auto;
    gap:var(--space-md);
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .access__map {
    width: 38rem;
  }

  .access__address {
    width: 38rem;
  }
}





/* =========================================
   GoogleMAP
   ========================================= */
.google-map {
  width: 100%;
}

.google-map__frame {
  width: 100%;
  height: clamp(16rem, 40vw, 28rem);
}

.google-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .google-map__frame {
    height: clamp(20rem, 36vw, 34rem);
  }
}

@media (min-width: 1200px) {
  .google-map__frame {
    height: 32rem;
  }
}








/* =========================================
   stay-cta
   ========================================= */
.stay-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #1f1f1f;
  background-image: url('../img/cta-bg.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.stay-cta__content {
  position: relative;
  z-index: 1;
  width: min(var(--w-main), var(--w-main-sp));
  min-height: clamp(32rem, 90vw, 40rem);
  margin: 0 auto;
  padding:
    clamp(4rem, 3rem + 4vw, 6rem)
    clamp(1.25rem, 1rem + 1vw, 2rem)
    clamp(4rem, 3rem + 4vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
}

.stay-cta__title {
  margin: 0;
}

.stay-cta__title span[data-lang="ja"] {
  display: block;
  font-size: var(--fz-subhead);
  font-weight: 200;
  line-height: 1.65;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.stay-cta__title span[data-lang="en"] {
  display: block;
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-size: var(--fz-subhead);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}


/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .stay-cta__content {
    min-height: 38rem;
    padding:
      clamp(5rem, 4rem + 3vw, 7rem)
      clamp(2rem, 1.5rem + 2vw, 3rem)
      clamp(5rem, 4rem + 3vw, 7rem);
    gap: clamp(2.25rem, 1.8rem + 1vw, 3.25rem);
  }

  .stay-cta__button {
    width: 25rem;
  }
}

/* =========================================
   large pc
   ========================================= */
@media (min-width: 1200px) {
  .stay-cta__content {
    min-height: 42rem;
  }

  .stay-cta__button {
    width: 26rem;
  }
}





/* =========================================
   footer
   ========================================= */
.footer {
  background: var(--color-dark-gray);
  color: #fff;
  overflow: hidden;
}

.footer__inner {
  width: min(var(--w-main), var(--w-main-sp));
  margin: 0 auto;
  padding:
    clamp(3.5rem, 3rem + 2vw, 5rem)
    0
    clamp(4rem, 3.5rem + 2vw, 5.5rem);
  text-align: center;
}

/* -----------------------------------------
   brand
   ----------------------------------------- */
.footer__brand {
  display: grid;
  justify-items: center;
}

.footer__logo {
  margin: 0;
  width: clamp(5.5rem, 5rem + 2vw, 7rem);
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* -----------------------------------------
   address
   ----------------------------------------- */
.footer__address {
  margin-top: clamp(2rem, 1.6rem + 1vw, 2.75rem);
  color: #fff;
  font-style: normal;
}

.footer__postcode {
  margin: 0 0 0.75rem;
  font-size: var(--fz-text);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer__address-text {
  margin: 0;
  font-size: var(--fz-text);
  font-weight: 200;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer__address-text[data-lang="en"] {
  font-family:
    "Cormorant Garamond",
    "EB Garamond",
    "Times New Roman",
    serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* -----------------------------------------
   company
   ----------------------------------------- */
.footer__company{
  padding-top:40px;
  margin: 0;
  font-size: calc(var(--fz-text) - 0.2rem);
  font-weight: 200;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer__company img{
  width:30%;
  max-width:100px;
  margin:0 auto;
}


/* =========================================
   tablet / pc
   ========================================= */
@media (min-width: 768px) {
  .footer__inner {
    padding:
      clamp(4rem, 3.5rem + 2vw, 5.5rem)
      0
      clamp(4.5rem, 4rem + 2vw, 6rem);
  }

  .footer__logo {
    width: clamp(6rem, 5.5rem + 1.5vw, 7.5rem);
  }

  .footer__address {
    margin-top: clamp(2.25rem, 2rem + 0.8vw, 3rem);
  }
}



/* =========================================
   sp-fixed-cta
   ========================================= */
:root {
  --sp-cta-bg: rgba(22, 22, 22, 0.88);
  --sp-cta-border: rgba(255, 255, 255, 0.18);
  --sp-cta-text: #ffffff;
  --sp-cta-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
  background-color:var(--color-dark-gray);
}

.sp-fixed-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 60px;
  padding: 12px 56px 12px 24px;

  color: var(--sp-cta-text);
  text-decoration: none;

  background: var(--sp-cta-bg);
  border: 1px solid var(--sp-cta-border);
  border-radius: 9999px;
  box-shadow: var(--sp-cta-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.sp-fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-fixed-cta:active {
  transform: translateY(1px);
}

.sp-fixed-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  text-align: center;
}

.sp-fixed-cta__eyebrow {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  opacity: 0.72;
  white-space: nowrap;
}

.sp-fixed-cta__main {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
}

.sp-fixed-cta__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;

  opacity: 0.9;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .sp-fixed-cta {
    left: 50%;
    right: auto;
    width: min(520px, calc(100% - 48px));
    transform: translateX(-50%) translateY(14px);
  }

  .sp-fixed-cta.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}
