@charset "UTF-8";
/* ===========================================
   ACCESS PAGE - Page-Specific Styles
   =========================================== */
/*
 * 機能：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;
}

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

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-purple-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

/* Hero Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 38, 64, 0.2) 0%, rgba(42, 38, 64, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero:not(.page-header__bgimage-wrapper) > * {
  position: relative;
}

/* Hero Typography */
.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  margin-top: 0;
}

.hero p {
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.95;
  max-width: 600px;
  line-height: 2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero .label {
  color: var(--color-accent);
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-jp);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  opacity: 0.95;
  line-height: 2;
}

.hero-sub {
  display: block;
  font-family: var(--font-en-sub);
  font-size: 0.9em;
  margin-top: 0.5rem;
  opacity: 0.85;
  letter-spacing: 0.15em;
}

/* ===========================================
   HERO MODIFIERS
   =========================================== */
/* Small Hero (for subpages) */
.hero--small {
  min-height: 60vh;
  min-height: 60dvh;
}

/* Tall Hero */
.hero--tall {
  min-height: 80vh;
  min-height: 80dvh;
}

/* Light Hero */
.hero--light {
  background-color: var(--bg-primary);
  color: var(--color-text);
}

.hero--light::before {
  background: linear-gradient(to bottom, rgba(253, 252, 248, 0.3) 0%, rgba(253, 252, 248, 0.5) 100%);
}

.hero--light h1 {
  color: var(--color-purple-deep);
  text-shadow: none;
}

.hero--light p {
  text-shadow: none;
  opacity: 0.8;
}

/* Dark Hero (darker overlay) */
.hero--dark::before {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 600px) {
  .hero:not(.page-header__bgimage-wrapper) {
    padding: var(--space-lg) var(--space-sm);
    padding-top: calc(var(--space-lg) + 120px);
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .hero--small {
    min-height: 50vh;
  }
}
/* ===========================================
   Snow Monkey標準CSS修正
   =========================================== */
.c-page-header__title {
  color: white;
}

.page-header__bgimage-wrapper {
  --hero-wrapper-scale: 1.1;
  height: 100%;
  transform: scale(var(--hero-wrapper-scale));
  transform-origin: center center;
  will-change: transform;
}
.page-header__bgimage-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent), linear-gradient(to right, transparent, black 30%, black 70%, transparent);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
  .page-header__bgimage-wrapper::after {
    display: none;
  }
}

.page-header__bgimage-wrapper img {
  --hero-image-translate-y: 0px;
  --hero-image-scroll-factor: 0.3;
  --hero-image-translate-transition-duration: 0;
  --hero-image-translate-transition-ease: linear;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(var(--hero-image-translate-y));
  transition: transform var(--hero-image-translate-transition-duration) var(--hero-image-translate-transition-ease);
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.c-page-header[data-has-image=true] {
  height: min(100dvh, 960px);
}

.c-page-header__title-en {
  text-align: left;
  font-family: var(--font-en-main);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: lighter;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: capitalize;
}

.c-page-header__title {
  font-size: 1rem;
}

.c-page-header[data-has-image=true] .c-page-header__content {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: 80px;
  left: 80px;
}

@media (max-width: 1024px) {
  .c-page-header[data-has-image=true] {
    height: clamp(320px, 68vh, 620px);
  }
  .c-page-header__title-en {
    font-size: clamp(3rem, 10vw, 4.8rem);
  }
  .c-page-header[data-has-image=true] .c-page-header__content {
    left: 48px;
    bottom: 56px;
    width: min(100% - 96px, -moz-max-content);
    width: min(100% - 96px, max-content);
  }
}
@media (max-width: 767px) {
  .c-page-header[data-has-image=true] {
    height: clamp(260px, 70svh, 500px);
  }
  .page-header__bgimage-wrapper {
    --hero-wrapper-scale: 1.02;
  }
  .c-page-header[data-has-image=true] .c-page-header__content {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-lg);
    width: auto;
  }
  .c-page-header__title-en {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
    letter-spacing: 0.08em;
    line-height: 1.15;
  }
  .c-page-header__title {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .page-header__bgimage-wrapper {
    --hero-wrapper-scale: 1;
  }
  .c-page-header[data-has-image=true] .c-page-header__content {
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
  }
  .c-page-header__title-en {
    font-size: clamp(1.8rem, 12vw, 2.6rem);
    letter-spacing: 0.06em;
  }
}
/* Section Headings */
.section-heading {
  font-family: var(--font-jp);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subheading {
  font-family: var(--font-en-sub);
  font-size: 1rem;
  text-align: center;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

/* Section Text */
.section-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.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);
}

/* ============================================
   ACCESS SECTION
   ============================================ */
.access {
  background-color: var(--color-bg);
  padding: 8rem 2rem;
  color: var(--color-text);
}

.access-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.access-header {
  text-align: center;
  margin-bottom: 4rem;
}

.access-sub {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 1.5rem;
  line-height: 2;
}

.access-map-link-wrap {
  margin-top: 1.5rem;
}

.access-map-link-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #535353;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(83, 83, 83, 0.65);
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), opacity 0.24s var(--ease);
  text-decoration: none;
}

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

.access-map-link-wrap a:hover {
  opacity: 0.72;
  border-color: rgba(83, 83, 83, 0.85);
}

.access-map-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.access-map-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.access-map-img {
  padding: 75px 0 100px 0;
  scale: 1.1;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 4rem;
  width: 100%;
}

.access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(42, 38, 64, 0.1);
  padding-bottom: 1.5rem;
}

.access-from {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-jp);
}

.access-time {
  font-family: var(--font-en-main);
  font-size: 1.5rem;
  color: var(--color-purple-deep);
  font-style: italic;
}

/* ============================================
RESPONSIVE - SMALL MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  .access {
    padding: 5rem 1.5rem;
  }
  .access-map-wrapper {
    margin-bottom: 3rem;
    max-height: 300px;
  }
  .access-map-img {
    padding: 25px 0 75px 0;
    scale: 1.1;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .access-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
  }
  .access-time {
    font-size: 1rem;
  }
}
/* ============================================
RESPONSIVE - VERY SMALL MOBILE (max-width: 380px)
============================================ */
@media (max-width: 380px) {
  .access-from {
    font-size: 0.75rem;
  }
  .access-time {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=access.css.map */