@charset "UTF-8";
/*
 * 機能：clamp関数の文字列を返す
 * 引数：$size-at-min-width サイズ(フォントサイズなど)の最小値(pxやremなどの単位は必須)
 * 　　　$size-at-max-width サイズ(フォントサイズなど)の最大値(pxやremなどの単位は必須)
 * 　　　$min-width [省略可]サイズが最小値に到達する画面幅
 * 　　　$max-width [省略可]サイズが最大値に到達する画面幅
 * 使用方法：
 *　　デフォルトの最小画面幅$min-width-defaultと最大画面幅$max-width-defaultを事前に指定しておく
 *　　最小幅と最大幅をデフォルト以外にしたい場合は、引数にそれぞれ単位付きの画面幅を入れる
 */
/* ブレイクポイント
 =============================================== */
@media screen and (min-width: 960px) {
  .pc {
    display: inherit !important;
  }
}
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tab {
    display: inherit !important;
  }
}
@media screen and (max-width: 480px) {
  .tab {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp {
    display: inherit !important;
  }
}

@media screen and (max-width: 480px) {
  .pctab {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .tabsp {
    display: none !important;
  }
}

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  /* Original Colors */
  --bg-primary: #fdfcf8;
  --bg-secondary: #fbf9f4;
  --text-primary: #1a1a1a;
  --text-secondary: #2d2d2d;
  --text-tertiary: #888888;
  --accent: #b7a993;
  --accent-light: #d4c9b8;
  --accent-dark: #8b7d68;
  --purple: #2a2640;
  --purple-light: #3d3859;
  --white: #ffffff;
  /* Typography */
  --font-jp: "Noto Serif JP", serif;
  --font-en-main: "Cormorant Infant", "Noto Serif JP", serif;
  --font-en-sub: "Marcellus", "Noto Serif JP", serif;
  /* Spacing - Generous whitespace */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --space-3xl: 15rem;
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  /* Layout */
  --nav-height: 80px;
  --max-width: 1400px;
}

@media (max-width: 1024px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
    --nav-height: 72px;
  }
}
@media (max-width: 767px) {
  :root {
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
    --nav-height: 64px;
  }
}
:root {
  --accent-color: var(--purple);
  --dark-accent-color: _dark(var(--purple));
  --light-accent-color: _light(var(--purple));
  --lighter-accent-color: _lighter(var(--purple));
  --lightest-accent-color: _lightest(var(--purple));
}

.c-site-branding__title {
  font-size: inherit;
}
.c-site-branding__title a {
  font-family: var(--font-en-sub);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--color-purple-deep);
  text-transform: uppercase;
  font-weight: 400;
}

.c-navbar__item {
  font-family: var(--font-en-main);
}
.c-navbar__item a,
.c-navbar__item span {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 1.2em;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1254901961);
}

body:not(.home):not(.page-template-my-template):not(.my-has-eyecatch) .c-header-content .btn:not(.btn--dark),
body:not(.home):not(.page-template-my-template):not(.my-has-eyecatch) .c-header__content .btn:not(.btn--dark),
body.page-template-blank-content .c-header-content .btn:not(.btn--dark),
body.page-template-blank-content .c-header__content .btn:not(.btn--dark) {
  color: var(--text-primary);
  border-color: var(--text-primary);
}
body:not(.home):not(.page-template-my-template):not(.my-has-eyecatch) .p-global-nav .menu-item a,
body.page-template-blank-content .p-global-nav .menu-item a {
  color: var(--text-primary);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-jp);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
}

/* Primary Button */
.btn--primary {
  background: var(--color-purple-deep);
  border-color: var(--color-purple-deep);
  color: var(--color-white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-purple-deep);
}

/* Outline Button */
.btn--outline {
  background: transparent;
  border-color: var(--color-purple-deep);
  color: var(--color-purple-deep);
}

.btn--outline:hover {
  background: var(--color-purple-deep);
  color: var(--color-white);
}

/* Light Button (for dark backgrounds) */
.btn--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn--light:hover {
  background: var(--color-white);
  color: var(--color-purple-deep);
}

.btn--dark {
  background-color: var(--purple);
  color: var(--color-white);
  border: none;
}

.btn--dark:hover {
  background-color: color-mix(in srgb, var(--purple) 90%, white);
  color: var(--color-purple-deep);
}

/* Small Button */
.btn--sm {
  padding: 0.75rem 2.5rem;
  font-size: 0.8rem;
  backdrop-filter: blur(2px);
  font-weight: 400;
}

/* Large Button */
.btn--lg {
  padding: 1.2rem 3.5rem;
  font-size: 0.8rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 3rem;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--purple);
  text-decoration: none;
  background: transparent;
  border: 1px solid #a5a5a5;
  transition: opacity 0.3s var(--ease-out);
}
.arrow-link:hover {
  opacity: 0.7;
}
.arrow-link:hover svg {
  transform: translateX(4px);
}
.arrow-link svg {
  transition: transform 0.3s var(--ease-out);
}
.arrow-link svg path {
  stroke: #a5a5a5;
}
@media (max-width: 767px) {
  .arrow-link {
    font-size: 0.8em;
  }
}

.reserve-cta {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.reserve-bg-fixed {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
}
.reserve-bg-fixed img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(var(--reserve-bg-translate-y, 0%));
  will-change: transform;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 64, 0.7);
}

.reserve-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: var(--space-xl);
}

.reserve-label {
  display: block;
  font-family: var(--font-en-sub);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.reserve-title {
  margin-bottom: var(--space-md);
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
}
.reserve-text {
  font-size: 1rem;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.reserve-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-en-sub);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #FFFFFF;
}

.btn-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-out);
}
.reserve-button:hover .btn-line {
  width: 100%;
}

@media (max-width: 1024px) {
  .reserve-cta {
    min-height: 0;
  }
  .reserve-content {
    max-width: 680px;
    padding: var(--space-2xl) var(--space-2xl);
  }
  .reserve-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }
  .reserve-text {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: var(--space-lg);
  }
  .reserve-button {
    letter-spacing: 0.16em;
    padding: 0.75rem 1.4rem;
  }
}
@media (max-width: 767px) {
  .reserve-bg-fixed {
    position: absolute;
    height: 120%;
    top: -10%;
  }
  .reserve-bg-fixed img {
    -o-object-position: center 58%;
       object-position: center 58%;
  }
  .reserve-content {
    width: 100%;
    max-width: none;
    padding: 10rem var(--space-sm);
  }
  .reserve-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    margin-bottom: var(--space-sm);
  }
  .reserve-title {
    margin-bottom: var(--space-md);
    font-size: clamp(1.35rem, 7.2vw, 1.9rem);
    line-height: 1.35;
  }
  .reserve-text {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
  }
  .reserve-button {
    gap: 0.5rem;
    letter-spacing: 0.14em;
    padding: 0.7rem 1.2rem;
  }
  .btn-line {
    width: 46px;
  }
}
.cross-links {
  position: relative;
  background-color: var(--bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cross-links__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cross-links__heading {
  text-align: center;
  font-family: var(--font-en-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.1em;
}

.cross-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cross-links__item {
  position: relative;
  flex: 1 1 400px;
  max-width: 600px;
  height: 350px;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.cross-links__item:hover .cross-links__img-wrapper img {
  transform: scale(1.05);
}
.cross-links__item:hover .cross-links__overlay {
  background: rgba(42, 38, 64, 0.5);
}

.cross-links__img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cross-links__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}

.cross-links__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 64, 0.4);
  transition: background 0.6s var(--ease-out);
}

.cross-links__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white);
  padding: var(--space-lg);
  text-align: center;
}

.cross-links__subtitle {
  font-family: var(--font-en-sub);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}

.cross-links__title {
  font-family: var(--font-en-main);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .cross-links {
    padding: var(--space-xl) 0;
  }
  .cross-links__item {
    height: 250px;
  }
}
.cross-links__secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.cross-links__secondary-item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-primary);
  border: 1px solid rgba(42, 38, 64, 0.15);
  box-shadow: none;
  text-decoration: none;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cross-links__secondary-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--purple, #6B5B95);
  transform: translateY(105%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}
.cross-links__secondary-item:hover::before {
  transform: translateY(0);
}
.cross-links__secondary-item:hover .cross-links__secondary-subtitle,
.cross-links__secondary-item:hover .cross-links__secondary-title {
  color: var(--white);
}

.cross-links__secondary-subtitle {
  position: relative;
  z-index: 1;
  font-family: var(--font-en-sub);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  transition: color 0.5s var(--ease-out);
}

.cross-links__secondary-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-en-main);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: color 0.5s var(--ease-out);
}

* {
  --_font-size: 18px;
}
@media (max-width: 767px) {
  * {
    --_font-size: 16px;
  }
}

body {
  font-weight: 300;
  background-color: var(--bg-primary);
  font-family: var(--font-jp);
  letter-spacing: 0.13rem;
  line-height: 2;
}

html {
  font-size: var(--_font-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
}

a:where(:not(.wp-element-button)) {
  text-decoration: inherit;
}

.label {
  text-align: center;
  font-family: var(--font-en-sub);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.l-footer {
  border-top: none;
}

[data-scrolled=true] .l-header--sticky-overlay-colored-lg {
  background-color: var(--bg-primary);
}

.p-global-nav .c-navbar__submenu {
  background-color: var(--purple);
}

.p-global-nav .c-navbar__item[aria-haspopup=true]:before {
  border-bottom-color: var(--purple);
}

.c-page-effect {
  background-color: var(--bg-primary);
}

.l-contents__inner:first-child {
  padding-top: var(--space-2xl);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===========================================
   UTILITY CLASSES (フォント汎用クラス)
   =========================================== */
.u-font-cormorant,
.u-cormorant-garamond,
.u-cormorant-infant {
  font-family: var(--font-en-main) !important;
}

/* ===========================================
   Multilingual Support (TranslatePress)
   =========================================== */
html[lang^=en] .u-hide-on-en {
  display: none !important;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.landing-page {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-page img {
  max-width: 100%;
  height: auto;
  display: block;
}
.landing-page a {
  text-decoration: none;
  color: inherit;
}
.landing-page ul {
  list-style: none;
}

@media (max-width: 1024px) {
  .landing-page {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
    --nav-height: 72px;
  }
}
@media (max-width: 767px) {
  .landing-page {
    font-size: 15px;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
    --nav-height: 64px;
  }
}
/* Page Transition */
.page-transition.loaded .transition-line {
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Selection */
::-moz-selection {
  background: var(--purple);
  color: var(--white);
}
::selection {
  background: var(--purple);
  color: var(--white);
}

/* Selection in dark backgrounds (e.g., footer main tone) */
.thepasona-footer.is-main-tone ::-moz-selection, .is-main-tone ::-moz-selection {
  background: var(--accent-light);
  color: var(--purple);
}
.thepasona-footer.is-main-tone ::selection,
.is-main-tone ::selection {
  background: var(--accent-light);
  color: var(--purple);
}

.thepasona-footer.is-main-tone ::-moz-selection,
.is-main-tone ::-moz-selection {
  background: var(--accent-light);
  color: var(--purple);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes verticalProgress {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  100% {
    height: 100%;
    top: 100%;
  }
}
[data-scrolled=false] .l-header--sticky-overlay-colored-lg {
  transition: background-color 0.2s;
}

[data-scrolled=true] .l-header--sticky-overlay-colored-lg {
  transition: background-color 0.5s;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-en-sub);
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  color: var(--white);
  transition: color 0.4s;
}
.nav.scrolled .nav-logo {
  color: var(--purple);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.nav.scrolled .nav-link {
  color: var(--text-primary);
}
.nav-link:hover {
  opacity: 1;
}

.link-num {
  font-family: var(--font-en-sub);
  font-size: 0.65rem;
  color: var(--accent);
}

.link-text {
  font-family: var(--font-en-sub);
  text-transform: uppercase;
}

.nav-reserve {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-en-sub);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s;
}
.nav.scrolled .nav-reserve {
  border-color: var(--purple);
  color: var(--purple);
}
.nav-reserve:hover {
  background: var(--white);
  color: var(--purple);
}
.nav.scrolled .nav-reserve:hover {
  background: var(--purple);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.toggle-line {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .toggle-line {
  background: var(--purple);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-link {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}
.mobile-nav.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.active .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav.active .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-nav.active .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-nav.active .mobile-link:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-nav.active .mobile-link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-num {
  font-family: var(--font-en-sub);
  font-size: 0.75rem;
  color: var(--accent);
}

.mobile-text {
  font-family: var(--font-en-main);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--purple);
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-reserve {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
.section-label {
  display: block;
  font-family: var(--font-en-sub);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-en-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--purple);
}
.section-title--concept {
  font-family: var(--font-jp);
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--purple);
  text-shadow: 1px 1px 1.5px white;
}

.section-title-visual {
  display: inline;
}

.section-title--scatter .section-title-char {
  display: inline-block;
  opacity: 1;
  filter: blur(0);
  margin-inline: -0.13em;
}

.section-title-char--space {
  min-width: 0.35em;
}

.section-title--scatter.is-scatter-ready:not(.is-scatter-revealed) .section-title-char {
  opacity: 0;
  filter: blur(8px);
}

.section-title--scatter.is-scatter-revealed .section-title-char {
  will-change: opacity, filter;
  animation: section-title-char-reveal 1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  animation-delay: var(--char-delay, 0s);
}

@keyframes section-title-char-reveal {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-title--scatter .section-title-char {
    animation: none;
    opacity: 1;
    filter: blur(0);
  }
}
.has-section-separator {
  --section-separator-height: 600px;
  --section-separator-color: var(--bg-primary);
  position: relative;
}
.has-section-separator .section-separator {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--section-separator-height);
  z-index: 1;
  pointer-events: none;
}
.has-section-separator .section-separator--top {
  top: calc(var(--section-separator-height) * -1);
  background: linear-gradient(to bottom, color-mix(in srgb, var(--section-separator-color) 0%, transparent) 0%, color-mix(in srgb, var(--section-separator-color) 90%, transparent) 55%, var(--section-separator-color) 70%, var(--section-separator-color) 80%, color-mix(in srgb, var(--section-separator-color) 90%, transparent) 85%, color-mix(in srgb, var(--section-separator-color) 0%, transparent) 100%);
  transform: translateY(var(--separator-top-y, 0));
}
.has-section-separator .section-separator--bottom {
  bottom: calc(var(--section-separator-height) * -1);
  background: linear-gradient(to top, color-mix(in srgb, var(--section-separator-color) 0%, transparent) 0%, color-mix(in srgb, var(--section-separator-color) 90%, transparent) 55%, var(--section-separator-color) 70%, var(--section-separator-color) 80%, color-mix(in srgb, var(--section-separator-color) 90%, transparent) 85%, color-mix(in srgb, var(--section-separator-color) 0%, transparent) 100%);
  transform: translateY(var(--separator-bottom-y, 0));
}

.section-hero {
  position: relative;
  width: 100%;
  height: 230vh;
  overflow: hidden;
}
.section-hero .section-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.section-hero .section-hero-image img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transform: scale(var(--scale, 1)) translateY(var(--translate-y, 0%));
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
.section-hero .section-hero-title {
  position: absolute;
  top: 50vh;
  left: 50%;
  z-index: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.section-hero .section-hero-title.is-pinned-active {
  opacity: 1;
  visibility: visible;
}
.section-hero .section-hero-title h2 {
  margin: 0;
  font-family: var(--font-en-main);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: lighter;
  letter-spacing: 0.11em;
  color: var(--white);
  text-transform: capitalize;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.section-hero .section-hero-title .section-hero-title__jp {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .section-hero {
    height: 160vh;
  }
  .section-hero .section-hero-title {
    top: 55vh;
  }
  .section-hero .section-hero-title h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
}
@media (max-width: 767px) {
  .section-hero {
    height: 250vh;
  }
  .section-hero .section-hero-title {
    top: 50vh;
    padding: 0 var(--space-sm);
  }
  .section-hero .section-hero-title h2 {
    font-size: clamp(1.4rem, 10vw, 2.3rem);
    letter-spacing: 0.08em;
  }
  .section-hero .section-hero-title .section-hero-title__jp {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-hero {
    height: 100vh;
  }
  .section-hero .section-hero-image {
    --scale: 1;
    --translate-y: 0%;
    animation: none !important;
    transition: none !important;
  }
  .section-hero .section-hero-image img {
    animation: none !important;
    transition: none !important;
  }
  .section-hero .section-hero-title {
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.hero {
  position: relative;
  height: 200vh;
  height: 200svh;
  min-height: 800px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 0;
}

.hero-image-wrapper {
  --hero-wrapper-scale: 1.2;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(var(--hero-wrapper-scale));
  transform-origin: center center;
  transition: transform 0s linear;
  will-change: transform;
}
.hero-image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  --hero-image-translate-y: 0px;
  --hero-image-scroll-factor: 0.3;
  --hero-image-translate-transition-duration: 0;
  --hero-image-translate-transition-ease: linear;
  --hero-image-object-position: center 66%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--hero-image-object-position);
     object-position: var(--hero-image-object-position);
  transform: translateY(var(--hero-image-translate-y));
  transition: transform var(--hero-image-translate-transition-duration) var(--hero-image-translate-transition-ease);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(213, 206, 255, 0.2) 0%, rgba(54, 54, 57, 0.4) 100%);
}

.hero-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-subtitle {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.subtitle-line {
  font-family: var(--font-en-sub);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: var(--space-md);
  font-size: 100px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.6;
}

.hero-description {
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero-vertical {
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}

.vertical-text {
  font-family: var(--font-en-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}

.vertical-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.vertical-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  animation: verticalProgress 2s ease-in-out infinite;
}

.hero-corner {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-en-sub);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.6;
}
.hero-corner.hero-corner-tl {
  top: calc(var(--nav-height) + var(--space-md));
  left: var(--space-lg);
}
.hero-corner.hero-corner-br {
  bottom: var(--space-lg);
  right: var(--space-lg);
}

.hero-news {
  position: absolute;
  z-index: 1;
  bottom: calc(100svh + var(--space-md));
  left: var(--space-lg);
  padding: 1em 1.2em;
  max-width: min(600px, 100vw - 4rem);
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.3764705882);
}

.hero-news-link {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-jp, sans-serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  overflow: hidden;
  text-shadow: 0 0 6px #373737;
}
.hero-news-link:hover .hero-news-title {
  opacity: 0.7;
}

.hero-news-date {
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.7;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding-top: 0.35em;
}

.hero-news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5647058824);
}

@media (max-width: 1024px) {
  .hero {
    height: 130vh;
    min-height: 680px;
  }
  .hero-content {
    top: calc(var(--nav-height) + 4rem);
    width: min(92vw, 760px);
    padding: 0 var(--space-md);
    transform: translateX(-50%);
  }
  .hero-title {
    font-size: clamp(2.6rem, 9vw, 4.25rem);
    letter-spacing: 0.08em;
    line-height: 1.35;
  }
  .hero-description {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }
  .hero-vertical {
    right: var(--space-sm);
    gap: var(--space-sm);
  }
  .hero-news {
    bottom: calc(30vh + var(--space-lg));
  }
}
@media (max-width: 767px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: auto;
  }
  .hero-image-wrapper {
    --hero-wrapper-scale: 1.05;
  }
  .hero-image {
    --hero-image-object-position: center center;
  }
  .hero-subtitle {
    gap: 0.25rem;
    margin-bottom: var(--space-sm);
  }
  .subtitle-line {
    font-size: 0.56rem;
    letter-spacing: 0.24em;
  }
  .hero-title {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.9rem, 11.5vw, 3rem);
    letter-spacing: 0.05em;
    line-height: 1.28;
    word-break: keep-all;
  }
  .hero-description {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .hero-vertical {
    display: none;
  }
  .hero-corner {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }
  .hero-corner.hero-corner-tl {
    top: calc(var(--nav-height) + var(--space-sm));
    left: var(--space-sm);
  }
  .hero-corner.hero-corner-br {
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
  .hero-news {
    bottom: calc(20vh + var(--space-md));
    left: var(--space-sm);
    right: var(--space-sm);
    max-width: 100%;
    padding: 1em 0.9em;
  }
  .hero-news-link {
    font-size: 0.8rem;
    gap: 0.75em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero {
    height: 100vh;
  }
  .hero-image-wrapper,
  .hero-image,
  .hero-vertical,
  .vertical-progress {
    animation: none !important;
    transition: none !important;
  }
  .hero-title,
  .hero-subtitle {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .hero-vertical {
    opacity: 1 !important;
  }
}
.hero-grand-open {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.hero-grand-open-text {
  display: block;
  font-family: var(--font-en-main, "Outfit", "Inter", sans-serif);
  font-size: 8.6vw;
  font-weight: 300;
  color: var(--white, #ffffff);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.hero-grand-open-text .hero-grand-open-date {
  display: inline-block;
  margin-right: 0.25em;
}
.hero-grand-open-text .hero-grand-open-label {
  display: inline-block;
}

@media (max-width: 767px) {
  .hero-grand-open {
    bottom: 5vh;
  }
  .hero-grand-open-text {
    white-space: normal;
  }
  .hero-grand-open-text .hero-grand-open-date {
    display: block;
    margin-right: 0;
    font-size: 15vw;
    line-height: 60px;
    margin-bottom: 0.15em;
  }
  .hero-grand-open-text .hero-grand-open-label {
    display: block;
    font-size: 15vw;
    line-height: 60px;
    white-space: nowrap;
  }
}
.hero-logo-container {
  position: absolute;
  top: 20vh;
  left: 48%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.hero-logo-container .hero-logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white, #ffffff);
}
.hero-logo-container .hero-logo-img {
  width: clamp(240px, 40vw, 480px);
  max-width: 480px;
  height: auto;
  display: block;
}
.hero-logo-container .hero-logo-text {
  font-family: var(--font-en-main, "Outfit", "Inter", sans-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-logo-container .hero-logo-subtext {
  font-family: var(--font-en-sub, sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .hero-logo-container {
    top: 12vh;
  }
  .hero-logo-container .hero-logo-text {
    font-size: 1.6rem;
    letter-spacing: 0.25em;
  }
  .hero-logo-container .hero-logo-subtext {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
}
.home .c-site-branding,
.home .nav-logo,
.home .l-header .c-site-branding {
  opacity: 0 !important;
  pointer-events: none !important;
}

.concept {
  background: var(--bg-secondary);
  position: relative;
  padding: 25vh 0;
}

.concept-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
}
.concept-wrapper--intro {
  display: block;
  margin-bottom: 20em;
}
@media (max-width: 767px) {
  .concept-wrapper--intro {
    margin-bottom: 8em;
  }
}
.concept-wrapper--intro .concept-header {
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .concept-wrapper--intro .concept-header {
    margin-bottom: 20px;
  }
}
.concept-wrapper--intro .section-label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0;
  color: red;
  font-weight: 700;
}
@media (max-width: 767px) {
  .concept-wrapper--intro .section-label {
    font-size: 1.1rem;
  }
}
.concept-wrapper--intro .section-title--concept {
  font-size: 4rem;
  color: red;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .concept-wrapper--intro .section-title--concept {
    font-size: 2.2rem;
  }
}
.concept-wrapper--intro .concept-en {
  display: block;
  text-align: center;
  color: red;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .concept-wrapper--intro .concept-en {
    font-size: 1rem;
  }
}
.concept-wrapper--philosophy .concept-header {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .concept-wrapper--philosophy .concept-header {
    margin-bottom: 16px;
  }
}
.concept-wrapper--philosophy .section-title--concept {
  font-weight: 700;
}
.concept-wrapper--philosophy .concept-text-wrapper {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .concept-wrapper--philosophy .concept-text-wrapper {
    margin-bottom: 12px;
  }
}
.concept-wrapper--philosophy .concept-text {
  font-weight: 700;
  font-size: 1.5em;
}
@media (max-width: 767px) {
  .concept-wrapper--philosophy .concept-text {
    font-size: 1.1em;
    letter-spacing: 2px;
  }
}

.concept-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.concept-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

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

.title-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 2;
  color: var(--purple);
}

.concept-body {
  margin-bottom: var(--space-xl);
}

.concept-lead {
  font-family: var(--font-en-main);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple);
  margin-bottom: var(--space-md);
}

.concept-text {
  line-height: 2.2;
}

.concept-en {
  font-family: var(--font-en-main);
  font-size: 1.8rem;
  font-weight: 300;
  color: #97918a;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .concept-inner {
    max-width: min(560px, 90vw);
    padding: var(--space-md);
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .concept {
    padding: 20vh 0 25vh;
  }
  .concept-inner {
    max-width: calc(100vw - var(--space-sm) * 2);
    padding: var(--space-sm);
  }
  .concept-header {
    margin-bottom: var(--space-md);
  }
  .title-jp {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
    line-height: 1.7;
  }
  .concept-body {
    margin-bottom: var(--space-sm);
    text-shadow: 0.5px 0.5px 0.5px white;
  }
  .concept-lead {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
  }
  .concept-text {
    font-size: 0.9rem;
    line-height: 2;
  }
  .concept-en {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.all-inclusive {
  background: var(--bg-secondary);
  position: relative;
  padding: 5vh 0 20vh;
}
.all-inclusive .landing-service-header__jp {
  font-size: 1.2em;
}

.all-inclusive-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.all-inclusive-slider {
  margin-bottom: var(--space-xl);
  min-width: 0;
}
.all-inclusive-slider .splide__track {
  overflow: visible;
}
.all-inclusive-slider .splide__slide {
  height: auto;
  width: var(--pc-width, 560px);
}
@media (max-width: 767px) {
  .all-inclusive-slider .splide__slide {
    width: var(--sp-width, 260px);
  }
}

.all-inclusive-card {
  height: 100%;
}

.all-inclusive-card__image {
  margin: 0;
  height: 560px;
}
@media (max-width: 767px) {
  .all-inclusive-card__image {
    height: 260px;
  }
}
.all-inclusive-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}

.all-inclusive-header.landing-service-header {
  margin-bottom: -24px;
}

.all-inclusive-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-lg);
}

.all-inclusive-subtitle {
  font-family: var(--font-jp);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--purple);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.all-inclusive-text {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .all-inclusive {
    padding: 0vh 0 20vh;
  }
  .all-inclusive-header.landing-service-header {
    padding: 0 var(--space-md);
    margin-bottom: 16px;
  }
  .all-inclusive-content {
    padding: 0 var(--space-md);
  }
}
.rooms {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-secondary);
}

.rooms-slider {
  max-width: min(1600px, 100%);
  margin: var(--space-2xl) auto 0;
}
.rooms-slider .splide__slide {
  --parallax-progress: 0;
}
.rooms-slider .splide__track {
  overflow: visible;
}
.rooms-slider .splide__arrow {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  opacity: 1;
}
.rooms-slider .splide__arrow svg {
  fill: var(--purple);
}
.rooms-slider .splide__arrow:disabled {
  opacity: 0.35;
}

.rooms-slide {
  margin: 0;
}
.rooms-slide .rooms-slide-visual {
  overflow: hidden;
}
.rooms-slide img {
  width: 100%;
  height: min(76vh, 760px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.18) translateX(calc(var(--parallax-progress, 0) * -20%));
  transform-origin: center;
  will-change: transform;
}

.rooms-slide-caption {
  margin-top: 0.85rem;
  padding: 0 0.2rem;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.stay-feature {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
@media (max-width: 1024px) {
  .stay-feature {
    flex-direction: column;
    gap: 0;
  }
}
.stay-feature--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .stay-feature--reverse {
    flex-direction: column;
  }
}
.stay-feature--mt {
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .stay-feature--mt {
    margin-top: 4rem;
  }
}

.stay-feature__visual {
  flex: 1.2;
}

.stay-feature__img {
  height: 60vh;
  min-height: 400px;
  width: 100%;
}
.stay-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stay-feature__content {
  flex: 1;
  padding: var(--space-lg) 0;
}
@media (max-width: 1024px) {
  .stay-feature__content {
    padding: var(--space-lg) 0 0;
  }
}

.stay-feature__label {
  font-family: var(--font-en-sub);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.7;
  display: block;
  margin-bottom: var(--space-md);
}

.stay-feature__title {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--purple);
  margin-bottom: var(--space-md);
}

.stay-feature__desc {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.stay-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.stay-feature__list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.stay-feature__list li strong {
  font-family: var(--font-en-sub);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple);
  opacity: 0.5;
  line-height: 1;
}
.stay-feature__list li span {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .rooms {
    padding: var(--space-2xl) var(--space-md);
  }
  .rooms-slider .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .rooms-slider img {
    height: min(58vh, 520px);
  }
}
@media (max-width: 767px) {
  .rooms {
    padding: 10rem var(--space-md);
  }
  .rooms-slider .splide__arrow {
    width: 2rem;
    height: 2rem;
  }
  .rooms-slide img {
    height: min(48vh, 380px);
    transform: scale(1.12) translateX(calc(var(--parallax-progress, 0) * -16%));
  }
  .rooms-slide-caption {
    font-size: 0.88rem;
  }
  .stay-feature__title {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }
  .stay-feature__img {
    aspect-ratio: 1/1;
    height: auto;
    min-height: 0;
  }
}
.dining {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-secondary);
}

.dining-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dining-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.dining-text {
  padding: var(--space-lg);
}

.dining-subtitle {
  font-family: var(--font-en-main);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--purple);
  margin-bottom: var(--space-md);
}

.dining-desc {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.dining-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}

.dining-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.dining-image-1 {
  overflow: hidden;
  height: 65vh;
}

.dining-image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transform-origin: top;
}

.dining-image-2 {
  margin-top: var(--space-xl);
}
.dining-image-2 img {
  height: 50vh;
}

@media (max-width: 1024px) {
  .dining {
    padding: var(--space-2xl) var(--space-md);
  }
  .dining-content {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-lg);
  }
  .dining-text {
    padding: 0;
  }
  .dining-desc {
    line-height: 2;
  }
  .dining-image-1 {
    height: 55vh;
  }
  .dining-image-2 img {
    height: 40vh;
  }
}
@media (max-width: 767px) {
  .dining {
    padding: var(--space-2xl) var(--space-md) 10em;
  }
  .dining-content {
    gap: var(--space-xl);
  }
  .dining-subtitle {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }
  .dining-desc {
    font-size: 0.92rem;
    line-height: 1.9;
  }
  .dining-visuals {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .dining-image-1 {
    height: min(48vh, 320px);
  }
  .dining-image-2 {
    display: none;
    margin-top: 0;
  }
  .dining-image-2 img {
    height: min(40vh, 260px);
  }
}
.wellness-program {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-secondary);
}

.wellness-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.wellness-header.landing-service-header {
  margin-bottom: -24px;
}
@media (max-width: 767px) {
  .wellness-header.landing-service-header {
    margin-bottom: 16px;
  }
}

.wellness-overview {
  max-width: var(--max-width);
  margin: 0 auto 6rem;
  padding: 0 var(--space-md);
}

.wellness-overview-text {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}
.wellness-overview-text p {
  font-size: 1.05rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.wellness-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 1024px) {
  .wellness-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .wellness-list {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 var(--space-sm);
  }
}
.wellness-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
@media (min-width: 1023px) and (max-width: 1537px) {
  .wellness-card br {
    display: none;
  }
}

.card-image {
  width: 100%;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-num {
  display: block;
  font-family: var(--font-en-sub);
  font-size: 1.25rem;
  color: var(--accent);
}

.card-title {
  font-family: var(--font-en-main);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.4;
}

.card-text {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 16px;
}

@media (max-width: 1024px) {
  .wellness-program {
    padding: var(--space-2xl) var(--space-md);
  }
  .card-title {
    font-size: 1.45rem;
  }
}
@media (max-width: 767px) {
  .wellness-program {
    padding: 10rem var(--space-md);
  }
  .wellness-overview {
    margin-bottom: 4rem;
    padding: 0;
  }
  .wellness-overview-text {
    margin-bottom: var(--space-xl);
  }
  .wellness-overview-text p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .card-num {
    font-size: 1rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .card-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }
}
.panoramic-section {
  padding: var(--space-lg) var(--space-lg);
  background: var(--bg-secondary);
}

.panoramic-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.panoramic-visual {
  width: 100%;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.panoramic-visual img {
  width: 100%;
  aspect-ratio: 20/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.panoramic-visual--grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-2xl);
  height: 580px;
}
.panoramic-visual--grid .panoramic-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.panoramic-visual--grid .panoramic-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.panoramic-visual--grid .panoramic-grid-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
}
.panoramic-visual--grid .panoramic-grid-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.panoramic-visual--grid .panoramic-grid-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.panoramic-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-2xl);
  align-items: start;
}

.panoramic-catch h3 {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--purple);
}

.panoramic-info p {
  line-height: 2.2;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.08em;
}
.panoramic-info p:has(+ .panoramic-signature) {
  margin-bottom: 0.5rem;
}
.panoramic-info .panoramic-signature {
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
}

.panoramic-link {
  display: inline-flex;
  align-items: center;
  color: var(--purple);
  transition: opacity 0.3s var(--ease);
}
.panoramic-link:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .panoramic-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .panoramic-visual img {
    aspect-ratio: 16/9;
  }
  .panoramic-visual--grid {
    height: 480px;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .panoramic-section {
    padding: var(--space-2xl) var(--space-md);
  }
  .panoramic-visual {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  .panoramic-visual img {
    aspect-ratio: 3/2;
  }
  .panoramic-visual--grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  .panoramic-visual--grid .panoramic-grid-item:nth-child(1), .panoramic-visual--grid .panoramic-grid-item:nth-child(2), .panoramic-visual--grid .panoramic-grid-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .panoramic-visual--grid .panoramic-grid-item img {
    aspect-ratio: 3/2;
    height: auto;
  }
  .panoramic-catch h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }
  .panoramic-info p {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: var(--space-lg);
  }
}
.landing-service-header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.landing-service-header__index {
  color: var(--accent);
  font-family: var(--font-en-sub) !important;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.5rem;
}

.landing-service-header__en {
  font-family: var(--font-en-main) !important;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.landing-service-header--font-jp {
  font-family: var(--font-jp) !important;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.landing-service-header__jp {
  margin: 0;
  font-family: var(--font-en-main) !important;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 400;
}

h2.landing-section-title,
.landing-service-header .landing-section-title,
.landing-service-header__en.landing-section-title,
.landing-service-header--font-jp.landing-section-title {
  font-size: 4em;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  h2.landing-section-title,
  .landing-service-header .landing-section-title,
  .landing-service-header__en.landing-section-title,
  .landing-service-header--font-jp.landing-section-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 16px;
  }
}

p.landing-section-lead,
.landing-section-lead {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  p.landing-section-lead,
  .landing-section-lead {
    font-size: 1.4em;
    margin-bottom: 20px;
  }
}

p.landing-section-sublead,
.landing-section-sublead {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 767px) {
  p.landing-section-sublead,
  .landing-section-sublead {
    font-size: 1.1em;
  }
}

.landing-section-title__accent {
  color: red;
  font-size: 1.05em;
  font-weight: 600;
  display: inline-block;
}
.landing-section-title__accent--bi {
  font-size: 1.1em;
  margin-left: -0.15em;
}

.landing-section-title--spaced {
  letter-spacing: 0.3em;
}
html[lang^=en] .landing-section-title--spaced {
  letter-spacing: 0.1em;
}

.landing-section-description {
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 2em;
}

.landing-section-more {
  display: flex;
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .landing-section-more {
    margin-top: 2.5rem;
  }
}
.landing-section-more--wellness {
  margin-top: 8rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .landing-section-more--wellness {
    margin-top: 4rem;
  }
}
.landing-section-more--news {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.landing-section-more--rooms, .landing-section-more--dining {
  margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
  .landing-service-header {
    margin-bottom: 4.5em;
  }
}
.my-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden;
}
.my-splash-screen.is-removed {
  display: none !important;
  pointer-events: none;
}

.my-splash-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  transform-origin: top;
  will-change: transform;
}

.my-splash-screen__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.my-splash-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  /* Text and loader bar gap */
}

.my-splash-screen__logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.my-splash-screen__logo {
  font-family: var(--font-en-sub);
  font-size: 1.25rem;
  color: var(--purple-light);
  letter-spacing: 0.08em;
  display: flex;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .my-splash-screen__logo {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}

.my-splash-screen__sublogo {
  font-family: var(--font-en-sub);
  font-size: 0.5rem;
  color: var(--purple-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  margin-top: 0;
  white-space: nowrap;
  line-height: 1;
}
@media (min-width: 768px) {
  .my-splash-screen__sublogo {
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    margin-top: 0;
  }
}

.my-splash-screen__char {
  display: inline-block;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(100%);
}

.my-splash-screen__progress {
  width: 120px;
  height: 1px;
  background-color: rgba(61, 56, 89, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@media (min-width: 768px) {
  .my-splash-screen__progress {
    width: 200px;
  }
}

.my-splash-screen__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--purple-light);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

body #trp-floater-ls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
body .trp-floating-switcher {
  --left: 4vw !important;
}

.l-footer {
  padding: 0;
  border-top: 0;
  background: transparent;
}

.l-footer > .l-footer__body,
.l-footer > .l-footer__footer {
  display: none;
}

.thepasona-footer {
  --footer-intro-bg: var(--bg-secondary);
  --footer-main-bg: var(--purple);
  --footer-main-border: rgba(255, 255, 255, 0.14);
  --footer-main-text: rgb(241, 242, 249);
  --footer-main-muted: rgb(241, 242, 249);
  --footer-intro-text: #666;
  --footer-intro-link: #535353;
  --footer-heading: var(--accent);
  --footer-hover: #fff;
  --footer-main-max: 1360px;
  --footer-current-bg: var(--footer-intro-bg);
  --footer-current-text: var(--footer-intro-text);
  --footer-current-muted: #5f5f5f;
  --footer-current-link: var(--footer-intro-link);
  --footer-current-border: rgba(83, 83, 83, 0.24);
  --footer-current-heading: color-mix(in srgb,
          var(--footer-heading) 80%,
          #8b7d68);
  --footer-current-hover: #171717;
  --footer-current-icon: #171717;
  --footer-current-arrow: rgba(23, 23, 23, 0.8);
  font-family: var(--font-jp);
  letter-spacing: 0.06em;
  background: var(--footer-current-bg);
  transition: background-color 0.65s var(--ease-out), color 0.45s var(--ease);
}

.thepasona-footer.is-main-tone {
  --footer-current-bg: var(--footer-main-bg);
  --footer-current-text: var(--footer-main-text);
  --footer-current-muted: var(--footer-main-muted);
  --footer-current-link: var(--footer-main-text);
  --footer-current-border: var(--footer-main-border);
  --footer-current-heading: var(--footer-heading);
  --footer-current-hover: var(--footer-hover);
  --footer-current-icon: var(--footer-main-text);
  --footer-current-arrow: rgba(255, 255, 255, 0.86);
}

.thepasona-footer__intro {
  background: transparent;
  text-align: center;
  padding: clamp(10rem, 12vw, 12rem) 1.5rem;
}

.thepasona-footer__logo {
  width: clamp(140px, 18vw, 240px);
  margin: 0 auto;
}

.thepasona-footer__lead {
  margin-top: clamp(4rem, 7vw, 8rem);
  display: grid;
  gap: 0.45rem;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.95;
}

.thepasona-footer__lead span {
  display: block;
}

.thepasona-footer__access {
  margin-top: clamp(4rem, 7vw, 8rem);
  display: grid;
  gap: 0.4rem;
  font-size: clamp(0.85rem, 1.1vw, 1.04rem);
  line-height: 1.95;
}

.thepasona-footer__map-link-wrap {
  margin-top: 0.35rem;
}

.thepasona-footer__map-link-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--footer-current-link);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--footer-current-link) 65%, transparent);
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), opacity 0.24s var(--ease);
}

.thepasona-footer__map-link-wrap a::after {
  content: "▸";
  font-size: 0.72rem;
  translate: 0 0.04rem;
}

.thepasona-footer__map-link-wrap a:hover {
  opacity: 0.72;
  border-color: color-mix(in srgb, var(--footer-current-link) 85%, transparent);
}

.thepasona-footer__social {
  margin-top: clamp(4rem, 7vw, 8rem);
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
}

.thepasona-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-current-icon);
  transition: color 0.45s var(--ease), opacity 0.24s var(--ease);
}

.thepasona-footer__social a:hover {
  opacity: 0.66;
}

.thepasona-footer__social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.thepasona-footer__main {
  background: transparent;
  color: inherit;
}

.thepasona-footer__main-inner {
  max-width: var(--footer-main-max);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.2rem, 5vw, 3rem) clamp(3.8rem, 6vw, 5.6rem);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(260px, 1.12fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  min-height: 800px;
}

.thepasona-footer__contact {
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 2;
  color: var(--footer-current-muted);
  transition: color 0.45s var(--ease);
}

.thepasona-footer__contact a {
  color: inherit;
}

.thepasona-footer__contact a:hover {
  color: var(--footer-hover);
}

.thepasona-footer__menu-groups {
  display: flex;
  flex-direction: column;
  gap: clamp(1.3rem, 2.5vw, 2.2rem);
}

.thepasona-footer__menu-label {
  margin: 0;
  font-family: var(--font-en-sub);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--footer-current-heading);
  transition: color 0.45s var(--ease);
}

.thepasona-footer__menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.thepasona-footer__menu a {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--footer-current-text);
  transition: color 0.45s var(--ease);
}

.thepasona-footer__menu-en {
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-en-main);
  text-transform: uppercase;
}

.thepasona-footer__menu-ja {
  font-size: clamp(0.55rem, 0.7vw, 0.65rem);
  margin-top: 0.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--footer-current-muted);
}

.thepasona-footer__menu a:hover,
.thepasona-footer__menu a:hover .thepasona-footer__menu-ja {
  color: var(--footer-hover);
}

.thepasona-footer__menu ul > li.has-submenu-toggle {
  position: relative;
  padding-right: 2.5rem;
}

.thepasona-footer__menu ul > li > .children-expander,
.thepasona-footer__submenu-toggle {
  position: absolute;
  top: 0rem;
  right: 0;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 1px solid var(--footer-current-border);
  border-radius: 50%;
  background: transparent;
  color: var(--footer-current-text);
  cursor: pointer;
  transition: border-color 0.24s var(--ease), opacity 0.24s var(--ease);
}

.thepasona-footer__submenu-toggle::before,
.thepasona-footer__menu ul > li > .children-expander::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  width: 0.46rem;
  height: 0.46rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.thepasona-footer__submenu-toggle[aria-expanded=true]::before,
.thepasona-footer__menu ul > li > .children-expander[aria-expanded=true]::before,
.thepasona-footer__menu ul > li > .children-expander[data-is-expanded=true]::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.thepasona-footer__submenu-toggle:hover,
.thepasona-footer__menu ul > li > .children-expander:hover {
  opacity: 0.86;
  border-color: color-mix(in srgb, var(--footer-current-text) 32%, transparent);
}

.thepasona-footer__menu ul > li > ul {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.thepasona-footer__menu ul > li > ul[data-is-hidden=true] {
  display: none;
}

.thepasona-footer__menu ul > li > ul a {
  font-size: 0.8rem;
  font-family: var(--font-en-sub);
  letter-spacing: 0.04em;
  color: var(--footer-current-muted);
}

.thepasona-footer__meta-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thepasona-footer__meta-list a {
  text-decoration: none;
  font-family: var(--font-en-sub);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--footer-current-muted);
  transition: color 0.45s var(--ease), opacity 0.24s var(--ease);
}

.thepasona-footer__meta-list a:hover {
  color: var(--footer-hover);
}

.thepasona-footer__cta > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thepasona-footer__cta > ul > li {
  border-top: 1px solid var(--footer-current-border);
  transition: border-color 0.45s var(--ease);
}

.thepasona-footer__cta > ul > li:last-child {
  border-bottom: 1px solid var(--footer-current-border);
  transition: border-color 0.45s var(--ease);
}

.thepasona-footer__cta > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.95rem, 1.6vw, 1.35rem) 0.75rem;
  color: var(--footer-current-text);
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  letter-spacing: 0.07em;
  line-height: 1.5;
  transition: color 0.45s var(--ease), padding-left 0.24s var(--ease);
}

.thepasona-footer__cta > ul > li > a::after {
  content: "▸";
  font-size: 0.72rem;
  color: var(--footer-current-arrow);
  transition: color 0.45s var(--ease);
}

.thepasona-footer__cta > ul > li > a:hover {
  color: var(--footer-hover);
  padding-left: 1rem;
}

.thepasona-footer__copyright {
  max-width: var(--footer-main-max);
  margin: 0 auto;
  padding: 3rem clamp(1.2rem, 5vw, 3rem) 6rem;
  border-top: 1px solid var(--footer-current-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-size: 0.74rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--footer-current-text) 82%, transparent);
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
}

.thepasona-footer__copyright p {
  margin: 0;
}

@media screen and (max-width: 1181px) {
  .thepasona-footer__main-inner {
    grid-template-columns: 1fr 1fr;
  }
  .thepasona-footer__cta {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 959px) {
  .thepasona-footer__lead,
  .thepasona-footer__access {
    line-height: 1.9;
  }
  .thepasona-footer__main-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 3.4rem;
  }
  .thepasona-footer__cta {
    grid-column: auto;
  }
  .thepasona-footer__cta a {
    font-size: clamp(1rem, 4.8vw, 1.6rem);
  }
  .thepasona-footer__copyright {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .thepasona-footer {
    letter-spacing: 0.04em;
  }
}
.c-copyright {
  display: none;
}

.thepasona-footer__translate {
  margin-top: 3rem;
}

.thepasona-footer__translate-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thepasona-footer__translate-list a {
  text-decoration: none;
  color: var(--footer-current-text);
  transition: color 0.45s var(--ease);
}
.thepasona-footer__translate-list a:hover {
  color: var(--footer-hover);
}

.news .c-entry-summary__title {
  font-family: var(--font-jp);
}
.news .c-entries--text2 .c-entry-summary__meta {
  margin-top: var(--space-sm);
}
.news .c-entry-summary__term {
  font-weight: 500;
}/*# sourceMappingURL=home.css.map */