/* ==============================
  Fonts
============================== */

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/MPLUSRounded1c-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/MPLUSRounded1c-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/MPLUSRounded1c-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/MPLUSRounded1c-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "M PLUS 1p";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/MPLUS1p-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Yosugara";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/yosugaraver1_2.ttf") format("truetype");
}

@font-face {
  font-family: "Shunkashuto BB";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/春夏秋冬ⅡＢＢ.ttf") format("truetype");
}

@font-face {
  font-family: "JNRfont";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/JNRfont_n.ttf") format("truetype");
}

/* ==============================
  Base
============================== */

:root {
  --color-cyan: #85cbcc;
  --color-cyan-light: #a8dee0;
  --color-yellow: #f9e2ae;
  --color-orange: #fbc78d;
  --color-green: #a7d676;
  --color-white: #ffffff;
  --color-off-white: #f8f9fa;
  --color-text: #4a4a4a;

  --color-base: #faf8f4;
  --color-bg: var(--color-off-white);
  --color-bg-warm: #fef8ec;

  --color-accent: #d8c7a3;
  --color-accent-light: #f5efe4;
  --color-accent-medium: #ead8b8;
  --color-accent-dark: #8a7656;
  --color-accent-deep: #75684f;
  --color-accent-soft: rgba(216, 199, 163, 0.18);
  --color-accent-border: rgba(216, 199, 163, 0.34);
  --color-accent-strong: #75684f;
  --color-accent-green: var(--color-green);

  --color-sub: #85cbcc;
  --color-sub-light: #a8dee0;
  --color-sub-dark: #57b7ba;
  --color-sub-soft: rgba(133, 203, 204, 0.14);

  --color-main: var(--color-accent);
  --color-main-light: var(--color-accent-light);
  --color-main-dark: var(--color-accent-dark);

  --color-muted: #7a7a7a;
  --color-border: rgba(216, 199, 163, 0.34);
  --color-line: rgba(216, 199, 163, 0.28);

  --gradient-sky: linear-gradient(135deg, var(--color-cyan-light) 0%, var(--color-white) 100%);
  --gradient-sunrise: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-white) 100%);
  --gradient-warm: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
  --gradient-fresh: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan-light) 100%);
  --gradient-soft: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
  --gradient-hero: linear-gradient(135deg, #e8f7f7 0%, #ffffff 52%, #effafa 100%);
  --gradient-cta: linear-gradient(135deg, #d8c7a3 0%, #ead8b8 100%);
  --gradient-label: linear-gradient(90deg, #d8c7a3 0%, #ead8b8 100%);
  --gradient-card: linear-gradient(145deg, var(--color-white) 0%, var(--color-off-white) 70%, rgba(168, 222, 224, 0.18) 100%);
  --gradient-section: linear-gradient(180deg, rgba(168, 222, 224, 0.14) 0%, var(--color-white) 100%);
  --gradient-footer: linear-gradient(135deg, #9f865f 0%, #9f865f 100%);

  --shadow-rgb: 138, 118, 86;
  --shadow-soft: 0 20px 50px rgba(var(--shadow-rgb), 0.1);
  --shadow-card: 0 18px 45px rgba(var(--shadow-rgb), 0.08);

  --font-ja: "M PLUS Rounded 1c", "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-heading: "M PLUS 1p", "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --font-script: "Italianno", "Segoe Script", "Brush Script MT", cursive;

  --font-en: "M PLUS Rounded 1c", "Noto Sans JP", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --inner: 1180px;
  --header-height: 96px;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background: var(--color-base);
  font-weight: 500;
  letter-spacing: 0.03em;
}

html.is-menu-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  transition:
    color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

img {
  width: 100%;
}

.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0;
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--inner));
  margin: 0 auto;
}

.section__head {
  max-width: 720px;
  margin-bottom: 54px;
}

.section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  color: #8fa872;
  font-family: var(--font-en);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.section__label::before,
.section__label::after {
  content: "";
  display: none;
  flex-shrink: 0;
  width: clamp(22px, 4vw, 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 118, 86, 0.42));
}

.section__label::after {
  background: linear-gradient(90deg, rgba(138, 118, 86, 0.42), transparent);
}

.section__title,
.station-intro__title {
  color: #3f3f3f;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.section__lead {
  margin-top: 20px;
  color: #5f5a52;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

/* PC: 見出し下リード文・サブタイトルを1行表示 */
@media (min-width: 721px) {
  .section__head {
    max-width: none;
  }

  .section__lead,
  .staff-page-message__subtitle {
    white-space: nowrap;
  }

  .staff-page-message__subtitle {
    max-width: none;
  }

  /* 以下は複数行表示のまま */
  .hero__text,
  .station-intro__text p,
  .philosophy .section__lead,
  .contact-form-section .section__lead,
  .contact-form-section__lead,
  .flow-page-support__lead {
    white-space: normal;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .section__lead,
  .staff-page-message__subtitle {
    font-size: clamp(12px, 1.45vw, 16px);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.button--primary,
.contact-submit button,
.form-submit,
.submit-button {
  background: var(--color-accent);
  color: #5f513d;
  box-shadow: 0 14px 30px rgba(138, 118, 86, 0.22);
}

.button--primary:hover,
.contact-submit button:hover,
.form-submit:hover,
.submit-button:hover {
  transform: translateY(-3px);
  background: #c8b28a;
  color: #5f513d;
  box-shadow: 0 18px 38px rgba(138, 118, 86, 0.28);
}

.button--secondary {
  border: 1px solid rgba(216, 199, 163, 0.52);
  background: var(--color-white);
  color: #8a7656;
  box-shadow: none;
}

.button--secondary:hover {
  transform: translateY(-2px);
  background: var(--color-accent-light);
  border-color: #d8c7a3;
  color: #75684f;
  box-shadow: 0 10px 24px rgba(138, 118, 86, 0.12);
}

.button--accent {
  background: #ffffff;
  color: var(--color-main-dark);
  box-shadow: 0 16px 34px rgba(138, 118, 86, 0.12);
}

.button--accent:hover {
  transform: translateY(-3px);
  background: var(--color-bg-warm);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-main-dark);
  border: 1px solid rgba(216, 199, 163, 0.34);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(216, 199, 163, 0.52);
}

/* ==============================
  Learn More — Section Link Button
============================== */

.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  width: 12rem;
  height: 3rem;
  font-size: 15px;
  font-family: var(--font-ja);
}

.learn-more--wide {
  width: 14.5rem;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #d8c7a3;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #75684f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.learn-more:hover .circle,
.learn-more:focus-visible .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow,
.learn-more:focus-visible .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text,
.learn-more:focus-visible .button-text {
  color: #fff;
}

.learn-more:focus-visible {
  outline: 2px solid rgba(143, 168, 114, 0.65);
  outline-offset: 4px;
  border-radius: 1.625rem;
}

.station-intro__content .learn-more {
  margin-top: clamp(28px, 3.5vw, 38px);
}

@media (prefers-reduced-motion: reduce) {
  .learn-more .circle,
  .learn-more .circle .icon,
  .learn-more .button-text {
    transition: none;
  }
}

.subpage-next-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 56px);
}

.subpage-next-button {
  gap: 10px;
  min-width: 220px;
  height: 52px;
  padding: 0 30px;
  border: 1px solid #ead8b8;
  background: #ffffff;
  color: #5f543f;
  box-shadow: 0 10px 24px rgba(138, 118, 86, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.subpage-next-button span {
  color: #d8c7a3;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.subpage-next-button:hover {
  transform: translateY(-1px);
  border-color: #d8c7a3;
  background: #f5efe4;
  color: #5f543f;
  box-shadow: 0 14px 30px rgba(138, 118, 86, 0.12);
}

.subpage-next-button:hover span {
  transform: translateX(3px);
}

/* ==============================
  Header
============================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translateY(0);
  border-radius: 0;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: var(--header-height);
  margin: 0;
  padding: 0 0 0 22px;
}

.site-logo {
  position: relative;
  z-index: 1002;
  align-self: center;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 28px;
  line-height: 1;
}

.site-logo__image {
  display: block;
  width: 252px;
  height: auto;
}

.site-logo__image[src$="logo-icon2.png"] {
  width: 72px;
}

.site-logo__sub {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.site-logo__main {
  color: var(--color-text);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.global-nav {
  align-self: center;
  display: flex;
  min-width: 0;
  margin-left: auto;
  margin-right: 24px;
}

.global-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.global-nav__list a {
  position: relative;
  display: inline-block;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.global-nav__list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.global-nav__list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav__list a.is-current {
  color: var(--color-accent-dark, #8a7656);
}

.global-nav__list a.is-current::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ==============================
  Header Contact (PC)
============================== */

.header-contact {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  flex-shrink: 0;
  margin-left: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.header-contact__tel {
  display: flex;
  align-items: flex-start;
  align-self: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border: none;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: background 0.25s ease;
}

.header-contact__tel:hover {
  background: #fffdf9;
}

.header-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-contact__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.header-contact__icon--tel {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0.05em;
  color: #57a99b;
}

.header-contact__icon--tel img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-contact__tel-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header-contact__number {
  color: #3f3f3f;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-contact__hours {
  color: #7a746c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-contact__note {
  color: #b42318;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-contact__inquiry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 128px;
  padding: 0 8px;
  border-radius: 0;
  background: #b8a27a;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease;
}

.header-contact__inquiry:hover {
  background: #a28b65;
  color: #ffffff;
}

.header-contact__icon--mail svg {
  width: 26px;
  height: 26px;
}

.header-contact__inquiry-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (min-width: 961px) {
  .menu-button {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .header-contact {
    display: none;
  }
}

/* ==============================
  Header Menu Button
============================== */

.menu-button {
  position: relative;
  z-index: 1002;
  justify-self: end;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 110px;
  height: 48px;
  margin-left: 0;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: #5f513d;
  box-shadow: 0 12px 28px rgba(138, 118, 86, 0.22);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.menu-button:hover {
  transform: translateY(-2px);
  background: #c8b28a;
  color: #5f513d;
  box-shadow: 0 16px 34px rgba(138, 118, 86, 0.28);
}

.menu-button__text {
  color: #5f513d;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-button__lines {
  position: relative;
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-button__lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

/* ==============================
  Drawer Menu
============================== */

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(74, 74, 74, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.sp-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sp-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(400px, 92vw);
  min-height: 640px;
  height: auto;
  max-height: calc(100svh - 28px);
  margin: 0;
  padding: 40px 36px 40px;
  border-radius: 0 0 0 72px;
  background:
    radial-gradient(circle at 86% 14%, rgba(245, 239, 228, 0.14), transparent 30%),
    linear-gradient(135deg, #75684f 0%, #8a7656 100%);
  color: #ffffff;
  box-shadow: -18px 18px 52px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  overflow-y: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-menu.is-open .sp-menu__panel {
  transform: translateX(0);
}

.sp-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.sp-menu__logo img {
  display: block;
  width: 168px;
  height: auto;
}

.sp-menu__close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 92px;
  height: 44px;
  padding: 0 19px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateY(-6px);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.sp-menu.is-open .sp-menu__close {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.sp-menu__close i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 8px;
  transform: rotate(-90deg) scale(0.7);
  opacity: 0;
  will-change: transform, width;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.sp-menu.is-open .sp-menu__close i {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition-delay: 0.42s;
}

.sp-menu__close i::before,
.sp-menu__close i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  will-change: transform, width;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.36s ease,
    background 0.3s ease;
}

.sp-menu__close i::before {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.sp-menu__close i::after {
  transform: translate(-50%, -50%) rotate(0deg) scaleX(0);
}

.sp-menu.is-open .sp-menu__close i::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
  transition-delay: 0.5s;
}

.sp-menu.is-open .sp-menu__close i::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
  transition-delay: 0.58s;
}

@media (hover: hover) {
  .sp-menu.is-open .sp-menu__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    transition-delay: 0s;
  }

  .sp-menu.is-open .sp-menu__close:hover i {
    transform: rotate(90deg) scale(1);
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.18s ease;
  }

  .sp-menu.is-open .sp-menu__close:hover i::before,
  .sp-menu.is-open .sp-menu__close:hover i::after {
    width: 18px;
    transition:
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.18s ease,
      background 0.18s ease;
  }

  .sp-menu.is-open .sp-menu__close:hover i,
  .sp-menu.is-open .sp-menu__close:hover i::before,
  .sp-menu.is-open .sp-menu__close:hover i::after {
    transition-delay: 0s !important;
  }
}

.sp-menu.is-open .sp-menu__close:active {
  transform: translateY(0);
  transition-delay: 0s !important;
}

.sp-menu.is-open .sp-menu__close:active i {
  transform: rotate(90deg) scale(0.86);
  transition-delay: 0s !important;
  transition-duration: 0.12s !important;
}

@media (prefers-reduced-motion: reduce) {
  .sp-menu__close,
  .sp-menu__close i,
  .sp-menu__close i::before,
  .sp-menu__close i::after {
    transition: none !important;
    animation: none !important;
  }

  .sp-menu__close,
  .sp-menu.is-open .sp-menu__close {
    opacity: 1;
    transform: none;
  }

  .sp-menu__close i,
  .sp-menu.is-open .sp-menu__close i {
    opacity: 1;
    transform: none;
  }

  .sp-menu__close i::before,
  .sp-menu.is-open .sp-menu__close i::before {
    transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
  }

  .sp-menu__close i::after,
  .sp-menu.is-open .sp-menu__close i::after {
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
  }
}

.sp-menu__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 28px;
  min-height: 0;
}

.sp-menu__nav ul {
  display: grid;
  gap: 14px;
}

.sp-menu__nav li {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.sp-menu.is-open .sp-menu__nav li {
  opacity: 1;
  transform: translateY(0);
}

.sp-menu.is-open .sp-menu__nav li:nth-child(1) { transition-delay: 0.18s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(2) { transition-delay: 0.22s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(3) { transition-delay: 0.26s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(4) { transition-delay: 0.30s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(5) { transition-delay: 0.34s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(6) { transition-delay: 0.38s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(7) { transition-delay: 0.42s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(8) { transition-delay: 0.46s; }
.sp-menu.is-open .sp-menu__nav li:nth-child(9) { transition-delay: 0.50s; }

.sp-menu__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.sp-menu__nav a:hover {
  opacity: 0.78;
}

.sp-menu__contact-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px !important;
  min-width: 186px;
  height: 52px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #75684f !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.sp-menu__contact-button span {
  color: #8a7656;
  font-size: 22px;
  line-height: 1;
}

.sp-menu__side {
  display: grid;
  justify-items: stretch;
  gap: 18px;
  width: 100%;
  max-width: 320px;
  min-width: 0;
  margin-top: auto;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.sp-menu.is-open .sp-menu__side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

.sp-menu__card {
  width: 100%;
  min-width: 0;
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #4a4a4a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.sp-menu__card-title {
  margin-bottom: 8px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 600 !important;
  text-align: center;
}

.sp-menu__phone {
  display: block;
  color: #8daa55;
  font-size: 26px;
  font-weight: 700 !important;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.sp-menu__card-note {
  margin-top: 8px;
  color: #6b6258;
  font-size: 12px;
  font-weight: 500 !important;
  line-height: 1.55;
  text-align: center;
}

.sp-menu__card-text {
  margin-top: 8px;
  color: #6b6258;
  font-size: 12.5px;
  font-weight: 500 !important;
  line-height: 1.75;
  text-align: center;
}

.sp-menu__sns-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.sp-menu__sns-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #6b6258;
  font-size: 13.5px;
  font-weight: 500 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.sp-menu__sns-list a:hover {
  transform: translateY(-2px);
}

@media (min-width: 961px) {
  .sp-menu__panel {
    top: 0;
    right: 0;
  }
}

/* ==============================
  Hero
============================== */

.hero {
  position: relative;
  /* PC: ビューポートいっぱいまで表示 */
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: var(--gradient-hero);
}

.hero + .section {
  margin-top: -1px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  opacity: 1;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 24px 24px;
}

.hero__bg-image--pc {
  display: block;
}

.hero__bg-image--sp {
  display: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: auto -8% -22% -8%;
  height: 46%;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(circle at 22% 48%, rgba(168, 222, 224, 0.18), transparent 36%),
    radial-gradient(circle at 72% 34%, rgba(133, 203, 204, 0.14), transparent 32%);
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  width: min(100% - 48px, var(--inner));
  min-height: 100%;
  height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-height) + 24px) 0 clamp(48px, 5vw, 80px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1120px);
  max-width: 1120px;
  text-align: center;
  transform: none;
}

.hero__brand-logo {
  display: block;
  width: clamp(220px, 24vw, 360px);
  height: auto;
  margin: 0 auto clamp(16px, 2vw, 26px);
  filter: brightness(0.82) contrast(1.04) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

.hero__label {
  display: block;
  margin: clamp(10px, 1.4vw, 16px) 0 0;
  color: #ffffff;
  font-family: var(--font-script);
  font-size: clamp(22px, 2.5vw, 34px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.hero__label::before,
.hero__label::after {
  display: none;
}

.hero__title {
  max-width: min(100%, 1100px);
  margin: 0;
  color: #4f4943;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  white-space: normal;
}

.hero__title-image {
  display: block;
  width: min(92vw, 1100px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.hero__title-break {
  display: block;
  margin-top: 0.12em;
}

.hero__text {
  max-width: min(100%, 860px);
  margin: 24px auto 0;
  color: #5e574f;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.65vw, 24px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.hero__actions .button--hero {
  min-width: 0;
  height: 42px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__actions .button--primary {
  box-shadow: 0 6px 18px rgba(138, 118, 86, 0.22);
}

.hero__actions .button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(138, 118, 86, 0.28);
}

.hero__actions .button--ghost:hover {
  transform: translateY(-1px);
}

/* ==============================
  Hero Bridge Text
============================== */

.hero-bridge {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 132px) 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 222, 224, 0.16), transparent 42%),
    #faf8f4;
  text-align: center;
}

.hero-bridge--mobile {
  display: none;
}

.hero-bridge__inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.hero-bridge__text {
  margin: 0;
  color: #5f5a52;
  font-family: "Yosugara", var(--font-heading);
  font-size: clamp(20px, 2.35vw, 30px);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.06em;
  perspective: 600px;
}

.hero-bridge__line {
  display: block;
}

.hero-bridge__line + .hero-bridge__line {
  margin-top: 0.35em;
}

.hero-bridge__char {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-bridge__accent,
.hero-bridge__accent .hero-bridge__char,
.hero-bridge__char.is-accent {
  color: #c0392b !important;
  -webkit-text-fill-color: #c0392b;
}

.hero-bridge.is-ready .hero-bridge__char {
  opacity: 0;
  transform: translate3d(0, 1.1em, 0) rotateX(48deg);
  filter: blur(8px);
}

.hero-bridge.is-in .hero-bridge__char {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg);
  filter: blur(0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bridge.is-ready .hero-bridge__char,
  .hero-bridge.is-in .hero-bridge__char {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.contact-cta {
  position: relative;
  width: min(100%, 400px);
  padding: 34px 6px 2px;
}

.contact-cta__campaign {
  position: absolute;
  top: 15px;
  left: 18px;
  z-index: 4;
  margin: 0;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.contact-cta__ribbon {
  position: absolute;
  top: 20px;
  left: 2px;
  z-index: 3;
  display: inline-block;
  padding: 7px 20px;
  border-radius: 2px;
  background: linear-gradient(135deg, #ef7720 0%, #f59335 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transform: rotate(-4deg);
  transform-origin: left center;
}

.contact-cta__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 16px 58px 16px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #f08a24 0%, #f5b93a 52%, #f8d04a 100%) border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  color: #2b2b2b;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-cta__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.contact-cta__link:active {
  transform: translateY(0);
}

.contact-cta__link:focus-visible {
  outline: 3px solid rgba(240, 138, 36, 0.45);
  outline-offset: 4px;
}

.contact-cta__text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

.contact-cta__icon {
  position: absolute;
  top: 50%;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8d04a 0%, #f39a28 100%);
  color: #ffffff;
  transform: translateY(-50%);
}

.contact-cta__icon-svg {
  display: block;
  width: 10px;
  height: 10px;
}

.contact-cta--hero {
  position: absolute;
  right: clamp(48px, 5vw, 78px);
  bottom: clamp(48px, 6vw, 78px);
  z-index: 4;
  width: min(400px, calc(100% - 96px));
  margin-top: 0;
}

@media (max-width: 900px) {
  .contact-cta--hero {
    right: 24px;
    bottom: 32px;
    width: min(380px, calc(100% - 48px));
  }

  .contact-cta__link {
    min-height: 54px;
    padding: 14px 52px 14px 20px;
  }

  .contact-cta__campaign {
    top: 14px;
    left: 16px;
    font-size: 12px;
    transform: rotate(-4deg);
  }

  .contact-cta__ribbon {
    top: 18px;
    left: 0;
    padding: 6px 16px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .contact-cta--hero {
    right: 20px;
    bottom: 28px;
    width: min(340px, calc(100% - 40px));
    padding-top: 30px;
  }

  .contact-cta__campaign {
    top: 12px;
    left: 12px;
    font-size: 11px;
    transform: rotate(-3deg);
  }

  .contact-cta__ribbon {
    top: 16px;
    left: -2px;
    padding: 6px 14px;
    font-size: 10px;
    transform: rotate(-3deg);
  }

  .contact-cta__link {
    min-height: 52px;
    padding: 14px 48px 14px 16px;
  }

  .contact-cta__text {
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .contact-cta__icon {
    right: 10px;
    width: 24px;
    height: 24px;
  }
}


.hero__scroll {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: #ffffff;
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  35% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  70% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ==============================
  About
============================== */

.intro {
  background: var(--color-white);
}

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

.about-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 222, 224, 0.24), transparent 34%),
    var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.about-card--blue {
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 222, 224, 0.3), transparent 34%),
    linear-gradient(145deg, var(--color-white) 0%, rgba(168, 222, 224, 0.16) 100%);
}

.about-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(168, 222, 224, 0.18);
}

.about-card__body {
  position: relative;
  z-index: 1;
  padding: 46px;
}

.about-card__label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
  margin-bottom: 18px;
  color: #8fa872;
}

.about-card__word {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(28px, 3.2vw, 38px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.about-card__lang {
  display: block;
  color: #6f7f5c;
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.about-card__label::before,
.about-card__label::after {
  display: none;
  color: rgba(133, 203, 204, 0.72);
  font-family: var(--font-en);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.about-card__label::before {
  content: "/";
}

.about-card__label::after {
  content: "/";
}

.about-card__title {
  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.about-card__text {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
}

/* ==============================
  Philosophy
============================== */

.philosophy {
  background: #faf8f4;
  overflow: visible;
  z-index: 2;
}

.section.philosophy {
  overflow: visible;
}

.philosophy.is-expanded {
  z-index: 6;
}

.philosophy .section__inner {
  position: relative;
  overflow: visible;
}

.philosophy-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.philosophy-card-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: 12px;
  align-content: start;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 30px 26px 30px;
  border: none;
  border-radius: 18px;
  box-shadow: none;
  color: #ffffff;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: default;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-card--01 {
  background: #8fa872;
}

.philosophy-card--02 {
  background: #c4a57a;
}

.philosophy-card--03 {
  background: #76b5b0;
}

.philosophy-card--04 {
  background: #b8c48e;
}

.philosophy-card__number {
  grid-row: 1;
  align-self: start;
  display: block;
  font-family: var(--font-en);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #ffffff;
  opacity: 1;
}

.philosophy-card h3 {
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: #ffffff;
  font-size: clamp(19px, 1.42vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.philosophy-card p {
  grid-row: 3;
  align-self: start;
  margin: 0;
  padding: 2px 0 4px;
  color: #ffffff;
  font-size: clamp(15px, 1.02vw, 15.5px);
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.02em;
}

.philosophy-card:hover,
.philosophy-card:focus-visible {
  transform: none;
  filter: none;
}

.philosophy-card:focus-visible {
  outline: none;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .philosophy-card-wrap:hover {
    transform: translateY(-4px);
  }

  .philosophy-card-wrap:hover .philosophy-card {
    box-shadow: 0 18px 42px rgba(138, 118, 86, 0.15);
  }
}

@supports not (grid-template-rows: subgrid) {
  .philosophy-card {
    grid-template-rows: auto auto auto;
  }

  .philosophy-card h3 {
    min-height: calc(2 * 1.5em);
  }
}

.philosophy__action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(38px, 4.5vw, 48px);
}

.philosophy-detail-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(216, 199, 163, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #75684f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.philosophy-detail-close:hover {
  background: #ffffff;
  border-color: rgba(143, 168, 114, 0.55);
}

.philosophy-detail-close span[aria-hidden="true"] {
  font-size: 16px;
  line-height: 1;
}

.philosophy-card-wrap.is-dimmed {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.philosophy-list.is-focus-mode .philosophy-card-wrap.is-dimmed {
  pointer-events: none;
}

.philosophy-expand-layer {
  position: absolute;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.philosophy-expand-layer.is-size-animating {
  overflow: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.philosophy-expand-layer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.philosophy-expand-layer__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: auto;
  max-height: none;
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.4vw, 32px);
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(74, 64, 52, 0.2);
  box-sizing: border-box;
}

.philosophy-expand-layer__card.is-tone-01 {
  background: linear-gradient(160deg, #8fa872 0%, #7d9565 100%);
}

.philosophy-expand-layer__card.is-tone-02 {
  background: linear-gradient(160deg, #c4a57a 0%, #b39268 100%);
}

.philosophy-expand-layer__card.is-tone-03 {
  background: linear-gradient(160deg, #76b5b0 0%, #5fa19c 100%);
}

.philosophy-expand-layer__card.is-tone-04 {
  background: linear-gradient(160deg, #b8c48e 0%, #a3b076 100%);
}

.philosophy-expand-layer__card.is-image-bg {
  background-color: #4a4034;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.philosophy-expand-layer__card.is-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      160deg,
      rgba(42, 36, 28, 0.72) 0%,
      rgba(42, 36, 28, 0.58) 45%,
      rgba(42, 36, 28, 0.7) 100%
    );
  pointer-events: none;
}

.philosophy-expand-layer__card.is-image-bg > * {
  position: relative;
  z-index: 1;
}

.philosophy-expand-layer__card.is-image-bg > .philosophy-expand-layer__close {
  position: absolute;
  z-index: 3;
}

.philosophy-expand-layer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.philosophy-expand-layer__close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: transparent;
}

.philosophy-expand-layer__close .philosophy-detail-close__label {
  display: none;
}

.philosophy-expand-layer__close span[aria-hidden="true"] {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.philosophy-expand-layer__body {
  flex: 0 1 auto;
  min-height: auto;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.philosophy-expand-layer__body .philosophy-detail-card {
  padding: 8px 4px 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}

.philosophy-expand-layer__body .philosophy-detail-card::after {
  display: none;
}

.philosophy-expand-layer__body .philosophy-detail-card__number {
  background: rgba(255, 255, 255, 0.22);
}

.philosophy-expand-layer__body .philosophy-detail-card h4,
.philosophy-expand-layer__body .philosophy-detail-card__intro,
.philosophy-expand-layer__body .philosophy-detail-card__items h5,
.philosophy-expand-layer__body .philosophy-detail-card__items p {
  color: #ffffff;
}

.philosophy-expand-layer__body .philosophy-detail-card h4 {
  margin-top: 14px;
  margin-right: 96px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.philosophy-expand-layer__body .philosophy-detail-card__intro {
  max-width: none;
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.75;
}

.philosophy-expand-layer__body .philosophy-detail-card__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.philosophy-expand-layer__body .philosophy-detail-card__items section {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 16px 18px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.philosophy-expand-layer__body .philosophy-detail-card__items h5 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
}

.philosophy-expand-layer__body .philosophy-detail-card__items p {
  font-size: 13.5px;
  line-height: 1.75;
}

.philosophy-expand-layer__body .philosophy-detail-card__items p + p {
  margin-top: 8px;
}

.philosophy-card-wrap.is-expanding .philosophy-card {
  opacity: 0;
  pointer-events: none;
}

.philosophy {
  position: relative;
}

/* Keep legacy detail card visuals for all patterns */
.philosophy-detail-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(216, 199, 163, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(133, 203, 204, 0.12), transparent 28%),
    rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 44px rgba(138, 118, 86, 0.1);
}

.philosophy-detail-card::after {
  content: "";
  position: absolute;
  right: -64px;
  top: -72px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(143, 168, 114, 0.12);
  pointer-events: none;
}

.philosophy-detail-card--01 {
  border-color: rgba(143, 168, 114, 0.34);
}

.philosophy-detail-card--02 {
  border-color: rgba(196, 165, 122, 0.36);
}

.philosophy-detail-card--02::after {
  background: rgba(196, 165, 122, 0.14);
}

.philosophy-detail-card--03 {
  border-color: rgba(118, 181, 176, 0.36);
}

.philosophy-detail-card--03::after {
  background: rgba(118, 181, 176, 0.16);
}

.philosophy-detail-card--04 {
  border-color: rgba(184, 196, 142, 0.38);
}

.philosophy-detail-card--04::after {
  background: rgba(184, 196, 142, 0.16);
}

.philosophy-detail-card__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #8fa872;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.philosophy-detail-card--02 .philosophy-detail-card__number {
  background: #c4a57a;
}

.philosophy-detail-card--03 .philosophy-detail-card__number {
  background: #76b5b0;
}

.philosophy-detail-card--04 .philosophy-detail-card__number {
  background: #b8c48e;
}

.philosophy-detail-card h4 {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.philosophy-detail-card__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.philosophy-detail-card__items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.philosophy-detail-card__items section {
  padding: 22px 24px;
  border: 1px solid rgba(216, 199, 163, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.philosophy-detail-card__items h5 {
  margin: 0 0 12px;
  color: #5f543f;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.035em;
}

.philosophy-detail-card__items p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
  letter-spacing: 0.025em;
}

.philosophy-detail-card__items p + p {
  margin-top: 10px;
}

.philosophy__button {
  min-width: 220px;
  height: 50px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 700;
}

.philosophy__button span {
  margin-left: 8px;
  font-size: 16px;
  line-height: 1;
}

.flow-item__number {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(216, 199, 163, 0.55);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(138, 118, 86, 0.09);
  color: #8a7656;
  font-family: var(--font-en);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-item__number::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px dashed rgba(133, 203, 204, 0.3);
  border-radius: 18px;
  pointer-events: none;
}

/* ==============================
  Service
============================== */

.service {
  background: var(--color-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card-wrap,
.strength-card-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.service-card:focus-visible {
  outline: 3px solid rgba(133, 203, 204, 0.55);
  outline-offset: 4px;
}

.service-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(168, 222, 224, 0.35), rgba(133, 203, 204, 0.18)),
    var(--color-off-white);
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.service-card__image--placeholder {
  width: 100%;
}

.contact-form-section__notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(216, 199, 163, 0.16);
  color: #c0392b;
  font-size: 14px;
  line-height: 1.85;
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 26px 24px 30px;
}

.service-card__body h3 {
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.service-card__body p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

/* ==============================
  Strength
============================== */

.strength {
  background: #faf8f4;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.strength-item-wrap {
  min-width: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(138, 118, 86, 0.06);
  text-align: center;
  box-sizing: border-box;
  cursor: grab;
  touch-action: pan-y;
  transform-origin: center;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  transition: box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.strength-item.is-card-dragging {
  z-index: 2;
  cursor: grabbing;
  box-shadow: 0 14px 34px rgba(138, 118, 86, 0.14);
}

.strength-item.is-card-settling {
  transition:
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .strength-item-wrap:hover {
    transform: translateY(-4px);
  }

  .strength-item-wrap:hover .strength-item {
    box-shadow: 0 18px 42px rgba(138, 118, 86, 0.15);
  }
}

.strength-item__number {
  display: block;
  margin-bottom: 8px;
  color: #8fa872;
  font-family: var(--font-en);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.strength-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 3.2vw, 40px);
  height: clamp(34px, 3.2vw, 40px);
  margin-bottom: 8px;
  color: #8fa872;
}

.strength-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.strength-item h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 700;
  line-height: 1.45;
}

.strength-item p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: clamp(11.5px, 1.05vw, 13px);
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .strength-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .strength-item {
    max-width: 240px;
  }
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.strength-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 32px;
  border: 1px solid rgba(216, 199, 163, 0.34);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-white) 0%, rgba(168, 222, 224, 0.1) 100%);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(138, 118, 86, 0.12);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.strength-card:focus-visible {
  outline: 3px solid rgba(133, 203, 204, 0.55);
  outline-offset: 4px;
}

.strength-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: var(--radius-pill);
  background: var(--gradient-label);
}

.strength-card h3 {
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.strength-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

/* ==============================
  Flow
============================== */

.flow {
  background: var(--color-white);
}

.flow-list {
  display: grid;
  gap: 18px;
}

.flow-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 34px;
  border: 1px solid rgba(216, 199, 163, 0.34);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-white) 0%, rgba(168, 222, 224, 0.08) 100%);
  box-shadow: 0 12px 34px rgba(138, 118, 86, 0.12);
}

.flow-item h3 {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.flow-item p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.insurance-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.insurance-box > div {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(168, 222, 224, 0.18) 0%, var(--color-white) 100%);
}

.insurance-box h3 {
  color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
}

.insurance-box p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

/* ==============================
  Station Intro + Philosophy Bridge
============================== */

.station-philosophy-bridge {
  position: relative;
  overflow: visible;
}

.station-philosophy-bridge:has(.philosophy.is-expanded) {
  z-index: 6;
}

.station-philosophy-bridge .station-intro,
.station-philosophy-bridge .philosophy {
  position: relative;
  z-index: 1;
}

.station-philosophy-bridge__watermark-slot {
  position: relative;
  height: 0;
  z-index: 5;
  pointer-events: none;
}

.station-philosophy-bridge__watermark {
  position: absolute;
  top: 0;
  right: max(24px, calc(50% - min(566px, 50vw - 24px)));
  z-index: 5;
  width: clamp(210px, 28vw, 340px);
  aspect-ratio: 1;
  background: url("../images/logo-icon2.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-58%);
  will-change: opacity, filter;
}

@media (prefers-reduced-motion: reduce) {
  .station-philosophy-bridge__watermark {
    opacity: 0.1;
    filter: none;
    will-change: auto;
  }
}

/* ==============================
  Station Intro
============================== */

.station-intro {
  overflow: hidden;
  background: #faf8f4;
  padding-top: clamp(88px, 8vw, 128px);
}

.station-intro__inner {
  max-width: 1180px;
}

.station-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(40px, 5.5vw, 76px);
  align-items: center;
}

.station-intro__visual {
  position: relative;
  margin-top: 0;
}

.station-intro__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: clamp(540px, 54vw, 660px);
  min-height: clamp(540px, 54vw, 660px);
  border-radius: 0 clamp(56px, 8vw, 96px) 0 0;
  background:
    linear-gradient(145deg, rgba(168, 222, 224, 0.34) 0%, rgba(143, 168, 114, 0.18) 48%, rgba(245, 239, 228, 0.9) 100%),
    var(--color-bg-warm);
  box-shadow: 0 24px 48px rgba(138, 118, 86, 0.1);
}

.station-intro__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.station-intro__content {
  position: relative;
  align-self: center;
  padding: 0 0 clamp(96px, 11vw, 136px);
  transform: translateY(clamp(-28px, -3vw, -44px));
}

.station-intro__label {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #8fa872;
  font-family: var(--font-en);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.station-intro__title {
  position: relative;
  z-index: 1;
  margin: 0;
}

.station-intro__title-line {
  white-space: nowrap;
}

.station-intro__text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 34px);
}

.station-intro__text p {
  margin: 0;
  color: #5f5a52;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.station-intro__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 54px;
  margin-top: clamp(28px, 3.5vw, 38px);
  padding: 0 30px;
  border: 1px solid rgba(216, 199, 163, 0.55);
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #8a7656;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(138, 118, 86, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.station-intro__button span {
  font-size: 18px;
  line-height: 1;
}

.station-intro__button:hover {
  transform: translateY(-2px);
  border-color: #d8c7a3;
  box-shadow: 0 14px 28px rgba(138, 118, 86, 0.12);
}

/* ==============================
  Message
============================== */

.message {
  overflow: hidden;
  background: var(--color-white);
}

.message__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.message__image {
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(168, 222, 224, 0.26), rgba(133, 203, 204, 0.12)),
    var(--color-bg-warm);
  box-shadow: var(--shadow-soft);
}

.message__image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.message__content {
  padding: 20px 0;
}

.message__text {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.message__text p {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2.15;
}

/* ==============================
  Staff
============================== */

.staff {
  background: var(--color-off-white);
}

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

.staff-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.staff-card__image {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(168, 222, 224, 0.22), rgba(133, 203, 204, 0.12)),
    var(--color-bg-warm);
}

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

.staff-card__body {
  padding: 34px;
}

.staff-card__role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #8a7656;
  font-family: var(--font-en);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.staff-card__role::before,
.staff-card__role::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 118, 86, 0.42));
}

.staff-card__role::after {
  background: linear-gradient(90deg, rgba(138, 118, 86, 0.42), transparent);
}

.staff-card h3 {
  color: var(--color-text);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}

.staff-card p:not(.staff-card__role):not(.staff-card__qual-text) {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.staff__note {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ==============================
  Private Service
============================== */

.private-service {
  background: #faf8f4;
}

.private-service__inner {
  display: grid;
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
}

.private-service-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4.5vw, 48px);
  border: 1px solid rgba(216, 199, 163, 0.34);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(138, 118, 86, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.private-service-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c75b5b 0%, #e8a07a 48%, rgba(249, 226, 174, 0.9) 100%);
  pointer-events: none;
}

.private-service-panel::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: min(280px, 48vw);
  height: min(280px, 48vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 91, 91, 0.08) 0%,
    rgba(249, 226, 174, 0.1) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.private-service__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(22px, 2.8vw, 28px);
}

.private-service__head .section__label {
  justify-content: center;
}

.private-service__head .section__title {
  color: #c75b5b;
}

.private-service__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(120px, 36%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 91, 91, 0.45),
    transparent
  );
  transform: translateX(-50%);
}

.private-service-panel__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f5a52;
  font-size: clamp(15px, 1.15vw, 16px);
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: 0.03em;
}

.private-service-panel__note {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(199, 91, 91, 0.18);
  border-left: 3px solid #c75b5b;
  border-radius: 0 16px 16px 0;
  background: #faf6f2;
}

.private-service-panel__note p {
  margin: 0;
  color: #6a4f32;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

@media (min-width: 961px) {
  .private-service-panel__note p {
    white-space: nowrap;
  }
}

.private-service .subpage-next-action,
.service-page-section--dx .subpage-next-action {
  margin-top: clamp(36px, 4.5vw, 48px);
}

/* ==============================
  Area / Hours
============================== */

.area {
  background: var(--color-white);
}

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

.info-card {
  padding: 46px;
  border-radius: var(--radius-xl);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
}

.info-card--blue {
  background: linear-gradient(145deg, var(--color-white) 0%, rgba(168, 222, 224, 0.14) 100%);
}

.info-card h2,
.info-card__title {
  color: var(--color-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.info-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(216, 199, 163, 0.34);
}

.info-list dt {
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 700;
}

.info-list dd {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.area-text {
  margin-top: 28px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.9;
}

.area-note {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

/* ==============================
  Access
============================== */

.access {
  background: #ffffff;
  padding-bottom: clamp(140px, 11vw, 156px);
}

.access__inner {
  max-width: 1080px;
}

.access__head {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.access__head .section__label {
  margin-bottom: 12px;
}

.access__head .section__lead {
  margin-top: 10px;
}

.about-page .section__head > .section__lead,
.flow-page .section__head > .section__lead,
.service-page .section__head > .section__lead {
  margin-top: 10px;
}

.service-page .section__head > .service-page-section__subtitle {
  margin-top: 10px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  justify-content: space-between;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.access-info {
  max-width: 420px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.access-blocks {
  display: grid;
  gap: 22px;
}

.access-block {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 199, 163, 0.28);
}

.access-block--hours,
.access-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.access-block__title {
  margin: 0 0 10px;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.access-block__body p {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.access-block__body p + p {
  margin-top: 4px;
}

.access-block__note {
  margin-top: 10px !important;
  color: var(--color-muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.9 !important;
}

.access-block__list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.access-block__list div {
  display: grid;
  gap: 4px;
}

.access-block__list dt {
  margin: 0;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.access-block__list dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

.access-map--illustration .learn-more {
  margin-top: 26px;
  margin-inline: auto;
  align-self: center;
}

.access-map {
  overflow: hidden;
  min-height: auto;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}

.access-map--illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  align-self: start;
}

.access-map--illustration img {
  display: block;
  align-self: stretch;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

@media (min-width: 961px) {
  .access-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-rows: auto auto;
    column-gap: clamp(24px, 3.2vw, 44px);
    row-gap: 0;
  }

  .access-info {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
  }

  .access-blocks {
    height: 100%;
    grid-template-rows: auto auto auto;
    align-content: space-between;
    gap: 0;
  }

  .access-map--illustration {
    display: contents;
  }

  .access-map--illustration img {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: center;
    width: min(100%, 560px);
    max-width: 100%;
  }

  .access-map--illustration .learn-more {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: center;
  }
}

.access-info h3 {
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.7;
}

/* ==============================
  Contact
============================== */

.contact {
  background: var(--color-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: start;
}

.contact__content {
  position: sticky;
  top: 120px;
}

.contact-buttons {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-button {
  display: grid;
  gap: 6px;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(138, 118, 86, 0.12);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(138, 118, 86, 0.16);
}

.contact-button span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-button strong {
  color: var(--color-accent-dark);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form {
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--color-white) 0%, rgba(168, 222, 224, 0.08) 100%);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field + .form-field {
  margin-top: 22px;
}

.form-field label {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  border: 1px solid rgba(216, 199, 163, 0.34);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-row__field input[type="text"]:focus,
.form-row__field input[type="email"]:focus,
.form-row__field input[type="tel"]:focus,
.form-row__field textarea:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d8c7a3;
  box-shadow: 0 0 0 4px rgba(216, 199, 163, 0.22);
}

.form-field input {
  height: 54px;
  padding: 0 18px;
}

.form-field textarea {
  padding: 16px 18px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0aec0;
}

.form-submit {
  width: 100%;
  margin-top: 28px;
}

.form-note {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
}

/* ==============================
  Footer
============================== */

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 72px 0 0;
  overflow: hidden;
  border-radius: 96px 96px 0 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 32%),
    #9f865f;
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 32%),
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.site-footer__inner {
  --footer-content-width: 1280px;
  --footer-inline-padding: clamp(16px, 2vw, 32px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto max-content max-content auto;
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(32px, 3.2vw, 64px);
  row-gap: 40px;
  box-sizing: border-box;
  width: min(
    100%,
    calc(
      var(--footer-content-width) + var(--footer-inline-padding) +
        var(--footer-inline-padding)
    )
  );
  padding-inline: var(--footer-inline-padding);
  margin: 0 auto;
  --footer-side-height: 169px;
}

.footer-brand {
  display: contents;
}

.footer-logo {
  display: block;
  width: auto;
  min-width: max-content;
  height: var(--footer-side-height);
  justify-self: start;
  align-self: center;
  flex-shrink: 0;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-info {
  min-width: max-content;
  width: max-content;
  max-width: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.footer-info p {
  white-space: nowrap;
}

.footer-info p + p {
  margin-top: 10px;
}

.footer-area {
  width: max-content;
  max-width: none;
  min-width: 0;
  line-height: 1.8;
}

.footer-station-name {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  justify-self: start;
  align-self: center;
  width: max-content;
  min-width: 0;
  max-width: 100%;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 36px clamp(28px, 2.8vw, 48px);
  justify-content: start;
  align-items: start;
  width: max-content;
  margin: 0;
}

.footer-nav ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.footer-nav a:hover {
  opacity: 0.72;
}

.footer-documents-btn.Documents-btn {
  display: none !important;
}

.footer-documents-btn .folderContainer {
  width: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.footer-documents-btn .fileBack {
  z-index: 1;
  width: 80%;
  height: auto;
}

.footer-documents-btn .filePage {
  width: 50%;
  height: auto;
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-out;
}

.footer-documents-btn .fileFront {
  width: 85%;
  height: auto;
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  transform-origin: bottom;
  transition: all 0.3s ease-out;
}

.footer-documents-btn .text {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-documents-btn:hover .filePage {
  transform: translateY(-5px);
}

.footer-documents-btn:hover {
  opacity: 1;
  background-color: rgb(58, 58, 94);
}

.footer-documents-btn:active {
  transform: scale(0.95);
}

.footer-documents-btn:hover .fileFront {
  transform: rotateX(30deg);
}

.footer-card {
  min-height: 0;
  padding: 28px 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #75684f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.footer-card__title {
  margin-bottom: 12px;
  color: #75684f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.footer-card--tel {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  min-height: var(--footer-side-height);
  height: auto;
  padding: 28px 32px;
  justify-self: end;
  align-self: center;
}

.footer-card--tel .footer-phone {
  display: block;
  color: #8daa55;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.footer-card__note {
  margin-top: 12px;
  color: #75684f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-card__note + .footer-card__note {
  margin-top: 6px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  padding: 24px 0;
  background: #8f7653;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.about-cta,
.flow-cta {
  padding-bottom: 96px;
}

.contact-form-section {
  padding-bottom: 96px;
}

@media (min-width: 961px) {
  .footer-card--tel {
    min-height: 0;
    height: var(--footer-side-height);
    padding: 16px 28px;
  }

  .footer-card--tel .footer-card__title {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.35;
  }

  .footer-card--tel .footer-phone {
    font-size: clamp(28px, 2.2vw, 34px);
  }

  .footer-card--tel .footer-card__note {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-card--tel .footer-card__note + .footer-card__note {
    margin-top: 3px;
  }
}

@media (min-width: 1600px) {
  .site-footer__inner {
    --footer-content-width: 1440px;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    column-gap: clamp(36px, 3.6vw, 72px);
  }
}

@media (min-width: 961px) and (max-width: 1599px) {
  .site-footer__inner {
    grid-template-columns: max-content minmax(0, 1fr);
    justify-content: stretch;
    column-gap: clamp(24px, 2.4vw, 44px);
    row-gap: 28px;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-info {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    min-width: max-content;
    width: max-content;
    max-width: none;
  }

  .footer-center {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .footer-card--tel {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: max-content;
    max-width: 100%;
    height: auto;
    padding: 24px 28px;
  }
}

@media (max-width: 960px) {
  .site-footer {
    padding-top: 64px;
    border-radius: 64px 64px 0 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
    width: min(100% - 48px, 1280px);
    padding-inline: 0;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo {
    width: auto;
    height: 160px;
    justify-self: start;
  }

  .footer-info {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .footer-info p {
    white-space: normal;
  }

  .footer-area {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .footer-center {
    justify-self: stretch;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    gap: 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, max-content);
    gap: 28px clamp(32px, 6vw, 48px);
    width: max-content;
    max-width: 100%;
  }

  .footer-nav a {
    white-space: nowrap;
  }

  .footer-card--tel {
    min-width: 0;
    max-width: none;
    padding: 24px 20px;
    justify-self: stretch;
    align-self: stretch;
  }

  .footer-card--tel .footer-phone {
    font-size: clamp(26px, 7.2vw, 36px);
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 56px;
    border-radius: 46px 46px 0 0;
  }

  .site-footer__inner {
    gap: 28px;
    width: min(100% - 32px, 1280px);
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-logo {
    width: auto;
    height: 160px;
  }

  .footer-info {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .footer-station-name {
    font-size: 18px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    width: 100%;
  }

  .footer-nav ul {
    gap: 14px;
    padding: 0;
    border-top: none;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-card--tel {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 10px;
  }

  .footer-card--tel .footer-card__title {
    font-size: 19px;
  }

  .footer-card--tel .footer-phone {
    font-size: clamp(26px, 7.2vw, 36px);
    white-space: nowrap;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 20px;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.7;
  }
}

/* ==============================
  Section Background Decor
  （大きな下部の波 + 上部の淡いグラデーション）
============================== */

.intro::before,
.intro::after,
.philosophy::before,
.philosophy::after,
.service::before,
.service::after,
.strength::before,
.strength::after,
.flow::before,
.flow::after,
.message::before,
.message::after,
.staff::before,
.staff::after,
.private-service::before,
.private-service::after,
.area::before,
.area::after,
.access::before,
.access::after,
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* 上部 — 淡い丸いグラデーション */
.intro::before,
.philosophy::before,
.service::before,
.strength::before,
.flow::before,
.message::before,
.staff::before,
.private-service::before,
.area::before,
.access::before,
.contact::before {
  top: -10%;
  right: -14%;
  width: min(920px, 115vw);
  height: min(640px, 72vw);
  border-radius: 50%;
}

/* 下部 — 大きな波（参考サイト風） */
.intro::after,
.philosophy::after,
.service::after,
.strength::after,
.flow::after,
.message::after,
.staff::after,
.private-service::after,
.area::after,
.access::after,
.contact::after {
  bottom: 0;
  left: 50%;
  width: 158%;
  height: clamp(240px, 44%, 520px);
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 16% 16% 0 0;
}

/* About */
.intro::before {
  background: radial-gradient(ellipse at 58% 42%, rgba(133, 203, 204, 0.22) 0%, rgba(133, 203, 204, 0) 70%);
}

.intro::after {
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.4) 0%, rgba(168, 222, 224, 0.22) 100%);
}

/* Philosophy */
.philosophy::before {
  background: radial-gradient(ellipse at 62% 38%, rgba(168, 222, 224, 0.22) 0%, rgba(168, 222, 224, 0) 72%);
}

.philosophy::after {
  border-radius: 48% 52% 0 0 / 18% 18% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.38) 0%, rgba(168, 222, 224, 0.22) 100%);
}

/* Service */
.service::before {
  background: radial-gradient(ellipse at 60% 40%, rgba(133, 203, 204, 0.18) 0%, rgba(133, 203, 204, 0) 70%);
}

.service::after {
  border-radius: 52% 48% 0 0 / 15% 15% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.36) 0%, rgba(168, 222, 224, 0.2) 100%);
}

/* Strength */
.strength::before {
  right: auto;
  left: -12%;
  background: radial-gradient(ellipse at 40% 42%, rgba(133, 203, 204, 0.16) 0%, rgba(133, 203, 204, 0) 72%);
}

.strength::after {
  border-radius: 50% 50% 0 0 / 17% 17% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.36) 0%, rgba(168, 222, 224, 0.2) 100%);
}

/* Flow */
.flow::before {
  background: radial-gradient(ellipse at 58% 40%, rgba(133, 203, 204, 0.18) 0%, rgba(133, 203, 204, 0) 70%);
}

.flow::after {
  border-radius: 46% 54% 0 0 / 16% 16% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.38) 0%, rgba(168, 222, 224, 0.22) 100%);
}

/* Message */
.message::before {
  background: radial-gradient(ellipse at 65% 35%, rgba(133, 203, 204, 0.22) 0%, rgba(133, 203, 204, 0) 72%);
}

.message::after {
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.4) 0%, rgba(168, 222, 224, 0.24) 100%);
}

/* Staff */
.staff::before {
  background: radial-gradient(ellipse at 60% 40%, rgba(168, 222, 224, 0.2) 0%, rgba(168, 222, 224, 0) 72%);
}

.staff::after {
  border-radius: 52% 48% 0 0 / 16% 16% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.32) 0%, rgba(168, 222, 224, 0.16) 100%);
}

/* Private Service */
.private-service::before {
  background: radial-gradient(ellipse at 58% 42%, rgba(133, 203, 204, 0.2) 0%, rgba(133, 203, 204, 0) 70%);
}

.private-service::after {
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.36) 0%, rgba(168, 222, 224, 0.2) 100%);
}

/* Area */
.area::before {
  background: radial-gradient(ellipse at 62% 38%, rgba(168, 222, 224, 0.22) 0%, rgba(168, 222, 224, 0) 72%);
}

.area::after {
  border-radius: 48% 52% 0 0 / 17% 17% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.36) 0%, rgba(168, 222, 224, 0.2) 100%);
}

/* Access */
.access::before {
  right: auto;
  left: -14%;
  background: radial-gradient(ellipse at 38% 40%, rgba(133, 203, 204, 0.18) 0%, rgba(133, 203, 204, 0) 72%);
}

.access::after {
  border-radius: 50% 50% 0 0 / 15% 15% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.38) 0%, rgba(168, 222, 224, 0.22) 100%);
}

/* Contact */
.contact::before {
  background: radial-gradient(ellipse at 60% 38%, rgba(133, 203, 204, 0.22) 0%, rgba(133, 203, 204, 0) 72%);
}

.contact::after {
  border-radius: 52% 48% 0 0 / 18% 18% 0 0;
  background: linear-gradient(180deg, rgba(168, 222, 224, 0.34) 0%, rgba(168, 222, 224, 0.18) 100%);
}

@media (max-width: 960px) {
  .intro::after,
  .philosophy::after,
  .service::after,
  .strength::after,
  .flow::after,
  .message::after,
  .staff::after,
  .private-service::after,
  .area::after,
  .access::after,
  .contact::after {
    width: 180%;
    height: clamp(200px, 38%, 400px);
  }

  .intro::before,
  .philosophy::before,
  .service::before,
  .strength::before,
  .flow::before,
  .message::before,
  .staff::before,
  .private-service::before,
  .area::before,
  .access::before,
  .contact::before {
    width: min(760px, 130vw);
    height: min(520px, 80vw);
    opacity: 0.88;
  }
}

@media (max-width: 720px) {
  .intro::after,
  .philosophy::after,
  .service::after,
  .strength::after,
  .flow::after,
  .message::after,
  .staff::after,
  .private-service::after,
  .area::after,
  .access::after,
  .contact::after {
    width: 200%;
    height: clamp(180px, 34%, 320px);
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  }

  .intro::before,
  .philosophy::before,
  .service::before,
  .strength::before,
  .flow::before,
  .message::before,
  .staff::before,
  .private-service::before,
  .area::before,
  .access::before,
  .contact::before {
    top: -6%;
    right: -20%;
    opacity: 0.78;
  }

  .strength::before,
  .access::before {
    left: -22%;
  }
}

/* ==============================
  Top Page — clean backgrounds
============================== */

body.home .philosophy,
body.home .area {
  background: #faf8f4;
}

body.home .service,
body.home .message {
  background: #faf8f4;
}

body.home .philosophy::before,
body.home .service::before,
body.home .message::before,
body.home .area::before,
body.home .access::before,
body.home .philosophy::after,
body.home .service::after,
body.home .message::after,
body.home .area::after,
body.home .access::after {
  z-index: -1;
}

body.home .philosophy::before,
body.home .service::before,
body.home .message::before,
body.home .area::before,
body.home .access::before {
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  width: min(680px, 88vw);
  height: min(420px, 52vw);
  opacity: 0.28;
}

body.home .philosophy::before {
  top: -8%;
  right: -12%;
  background: radial-gradient(ellipse at 60% 42%, rgba(133, 203, 204, 0.12) 0%, transparent 72%);
}

body.home .service::before {
  top: -6%;
  left: -10%;
  background: radial-gradient(ellipse at 40% 42%, rgba(133, 203, 204, 0.1) 0%, transparent 72%);
}

body.home .area::before {
  top: -8%;
  right: -14%;
  background: radial-gradient(ellipse at 62% 40%, rgba(168, 222, 224, 0.1) 0%, transparent 72%);
}

body.home .message::before,
body.home .access::before {
  display: none;
}

body.home .philosophy::after,
body.home .service::after,
body.home .message::after,
body.home .area::after,
body.home .access::after {
  display: none;
}

body.home .section__inner,
body.home .philosophy-list,
body.home .service-grid,
body.home .info-grid,
body.home .access-grid,
body.home .message__inner {
  position: relative;
  z-index: 2;
}

body.home .philosophy-card {
  position: relative;
  z-index: 2;
  border: none;
  box-shadow: none;
}

body.home .philosophy-card--01 {
  background: #8fa872;
}

body.home .philosophy-card--02 {
  background: #c4a57a;
}

body.home .philosophy-card--03 {
  background: #76b5b0;
}

body.home .philosophy-card--04 {
  background: #b8c48e;
}

body.home .service-card,
body.home .info-card,
body.home .info-card--blue {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(216, 199, 163, 0.34);
  box-shadow: 0 10px 28px rgba(138, 118, 86, 0.08);
}

body.home .service-card__body {
  background: #ffffff;
}

body.home .service-card__image {
  background: #f3f0ea;
}

body.home .access {
  background: #ffffff;
}

body.home .access-info,
body.home .access-map--illustration {
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  body.home .philosophy::before,
  body.home .service::before,
  body.home .area::before {
    display: none;
  }
}

/* ==============================
  Scroll animation (GSAP ScrollTrigger)
============================== */

@media (prefers-reduced-motion: reduce) {
  [data-jalan-scroll="pending"] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* ==============================
  Page Loader
============================== */

body.is-loading.home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

body.is-loading:not(.home) {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition:
    opacity 1.3s ease,
    visibility 1.3s ease;
}

.page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.is-hidden {
  display: none;
}

@media (max-width: 720px) {
  .page-loader {
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.page-loader__inner {
  --page-loader-logo-width: min(600px, 90vw);
  flex: none;
  width: var(--page-loader-logo-width);
  height: calc(var(--page-loader-logo-width) * 568 / 2048);
  margin: 0;
  contain: layout size style;
  transform: none !important;
  translate: none !important;
  scale: none !important;
  rotate: none !important;
  animation: none !important;
}

@media (max-width: 720px) {
  .page-loader__inner {
    --page-loader-logo-width: min(320px, 72vw);
  }
}

.page-loader__logo {
  display: block;
  flex: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  translate: none !important;
  scale: none !important;
  rotate: none !important;
  animation: none !important;
  transition: opacity 0.6s ease;
}

.page-loader.is-logo-in .page-loader__logo {
  opacity: 1;
}

body.is-loading .site-header {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

body.home.is-loaded:not(.is-header-reveal-ready) .site-header {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

body.home.is-loaded.is-header-reveal-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loading .hero__bg,
body.is-loading .hero__overlay,
body.is-loading .contact-cta--hero,
body.is-loading .hero__scroll {
  opacity: 0;
}

body.is-loaded .hero__bg {
  opacity: 1;
  transition: opacity 1.4s ease 0.2s;
}

body.is-loaded .hero__overlay,
body.is-loaded .contact-cta--hero,
body.is-loaded .hero__scroll {
  opacity: 1;
  transition: opacity 1.4s ease 0.2s;
}

body.is-loading .hero__brand-logo,
body.is-loading .hero__label,
body.is-loading .hero__title,
body.is-loading .hero__text,
body.is-loading .hero__actions {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded:not(.is-hero-content-in) .hero__brand-logo,
body.is-loaded:not(.is-hero-content-in) .hero__label,
body.is-loaded:not(.is-hero-content-in) .hero__title,
body.is-loaded:not(.is-hero-content-in) .hero__text,
body.is-loaded:not(.is-hero-content-in) .hero__actions {
  opacity: 0;
  transform: translateY(24px);
}

.hero__brand-logo,
.hero__label,
.hero__title,
.hero__text,
.hero__actions {
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
}

body.is-hero-content-in .hero__brand-logo {
  opacity: 0.86;
  transform: translateY(0);
  transition-delay: 0s;
}

body.is-hero-content-in .hero__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

body.is-hero-content-in .hero__title {
  opacity: 0.86;
  transform: translateY(0);
  transition-delay: 0.18s;
}

body.is-hero-content-in .hero__text {
  opacity: 0.82;
  transform: translateY(0);
  transition-delay: 0.44s;
}

body.is-hero-content-in .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.66s;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader__logo,
  body.is-loaded .site-header,
  body.is-loaded .hero__bg,
  body.is-loaded .hero__overlay,
  body.is-loaded .contact-cta--hero,
  body.is-loaded .hero__scroll,
  .hero__brand-logo,
  .hero__label,
  .hero__title,
  .hero__text,
  .hero__actions {
    transition: none;
  }

  .page-loader__logo {
    opacity: 1;
  }
}

/* ==============================
  Responsive
============================== */

@media (max-width: 1200px) {
  .site-logo__image {
    width: 214px;
  }

  .global-nav__list {
    gap: 22px;
  }

  .global-nav__list a {
    font-size: 14px;
  }

  .header-contact__tel {
    padding-inline: 12px 14px;
  }

  .header-contact__number {
    font-size: 18px;
  }

  .header-contact__hours,
  .header-contact__note {
    font-size: 10px;
  }

  .header-contact__inquiry {
    min-width: 112px;
  }
}

@media (max-width: 1280px) {
  .sp-menu__panel {
    width: min(380px, 90vw);
    padding: 36px 32px 36px;
  }

  .sp-menu__body {
    gap: 28px;
  }

  .sp-menu__phone {
    font-size: 24px;
  }

  .sp-menu__card {
    padding: 20px 18px;
  }

  .sp-menu__side {
    max-width: 300px;
  }
}

@media (max-width: 1080px) {
  .philosophy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 14px;
  }

  .philosophy-expand-layer__body .philosophy-detail-card__items {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .staff-card__image {
    min-height: 260px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .site-header__inner {
    height: 78px;
    padding: 0 18px;
  }

  .site-logo__image {
    width: 194px;
  }

  .site-logo__image[src$="logo-icon2.png"] {
    width: 58px;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    min-width: 96px;
    height: 42px;
    margin-left: auto;
  }

  .sp-menu__panel {
    width: min(100%, 400px);
    max-height: 100svh;
    min-height: 100svh;
    padding: 36px 28px 40px;
    border-radius: 0 0 0 56px;
  }

  .sp-menu__head {
    margin-bottom: 34px;
  }

  .sp-menu__logo img {
    width: 155px;
  }

  .sp-menu__body {
    gap: 28px;
  }

  .sp-menu__nav ul {
    gap: 12px;
  }

  .sp-menu__nav a {
    font-size: 17px;
  }

  .sp-menu__side {
    gap: 14px;
    max-width: 100%;
  }

  .sp-menu__phone {
    font-size: 24px;
    white-space: nowrap;
  }

  .site-logo__sub {
    font-size: 10px;
  }

  .site-logo__main {
    font-size: 26px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: center;
    justify-items: center;
    padding: calc(var(--header-height) + 32px) 0 clamp(40px, 5vw, 72px);
  }

  .hero__content {
    max-width: min(100%, 920px);
    transform: none;
  }

  .hero__brand-logo {
    width: min(42vw, 300px);
    margin-bottom: 20px;
  }

  .hero__label {
    margin: clamp(10px, 1.5vw, 14px) 0 0;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .hero__title {
    max-width: min(100%, 920px);
    white-space: normal;
  }

  .hero__title-image {
    width: min(94vw, 920px);
  }

  .hero__text {
    max-width: min(100%, 760px);
    margin-top: 20px;
    font-size: clamp(19px, 1.55vw, 22px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .hero__scroll {
    display: none;
  }

  .about-grid,
  .station-intro__grid,
  .message__inner,
  .info-grid,
  .access-grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__content {
    position: static;
  }

  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .message__image,
  .message__image img {
    min-height: 420px;
  }

  .station-intro__image {
    height: clamp(440px, 58vw, 480px);
    min-height: 440px;
    border-radius: 0 56px 0 0;
  }

  .station-intro__image img {
    object-position: center 34%;
  }

  .station-intro__content {
    transform: translateY(clamp(-20px, -2.5vw, -32px));
    padding-bottom: clamp(80px, 10vw, 116px);
  }

  .station-philosophy-bridge__watermark {
    width: clamp(180px, 25vw, 270px);
    opacity: 0.08;
    transform: translateY(-54%);
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  :root {
    --header-height: 74px;
  }

  .site-header__inner {
    height: 74px;
    padding: 0 16px;
  }

  .site-logo__image {
    width: 172px;
  }

  .site-logo__image[src$="logo-icon2.png"] {
    width: 50px;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    min-width: 86px;
    height: 40px;
    padding: 0 14px;
    margin-left: auto;
  }

  .menu-button__text {
    font-size: 13px;
  }

  .menu-button__lines {
    width: 16px;
    gap: 3px;
  }

  .menu-button__lines span {
    width: 16px;
  }

  .hero,
  .hero__bg,
  .hero__bg-image,
  .hero__overlay {
    border-radius: 0 0 20px 20px;
  }

  .hero {
    height: clamp(460px, 78svh, 700px);
    min-height: 0;
  }

  .hero__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100% - 32px, var(--inner));
    min-height: 100%;
    height: 100%;
    padding: calc(var(--header-height) + 28px) 0 72px;
  }

  .hero__content {
    max-width: min(100%, 100%);
    padding-top: 0;
    transform: none;
  }

  .hero__label {
    margin: clamp(10px, 1.5vw, 14px) 0 0;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .hero__title {
    max-width: 100%;
    white-space: normal;
  }

  .hero__title-image {
    width: min(92vw, 640px);
  }

  .hero__title-break {
    display: block;
    margin-top: 0.1em;
  }

  .hero__text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.035em;
    white-space: normal;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    min-width: auto;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .subpage-next-action {
    margin-top: 36px;
  }

  .subpage-next-button {
    width: min(100%, 300px);
    height: 48px;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero__bg-image--pc {
    display: none;
  }

  .hero__bg-image--sp {
    display: block;
    object-position: 58% center;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .access {
    padding-bottom: 96px;
  }

  .station-intro {
    padding-top: 88px;
  }

  .section__inner {
    width: min(100% - 32px, var(--inner));
  }

  .section__head {
    margin-bottom: 36px;
  }

  .section__label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .section__title,
  .station-intro__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.55;
    letter-spacing: 0.04em;
  }

  .section__lead {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.035em;
    white-space: normal;
  }

  .intro::before,
  .philosophy::before,
  .service::before,
  .strength::before,
  .flow::before,
  .message::before,
  .staff::before,
  .private-service::before,
  .area::before,
  .access::before,
  .contact::before,
  .intro::after,
  .philosophy::after,
  .service::after,
  .strength::after,
  .flow::after,
  .message::after,
  .staff::after,
  .private-service::after,
  .area::after,
  .access::after,
  .contact::after,
  .section::before,
  .section::after {
    opacity: 0.45;
  }

  .bg-blob {
    opacity: 0.42;
  }

  .about-grid,
  .philosophy-list,
  .philosophy-grid,
  .service-grid,
  .strength-grid,
  .flow-list,
  .staff-grid,
  .info-grid,
  .access-grid,
  .contact__inner,
  .station-intro__grid,
  .message__inner,
  .insurance-box {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .philosophy-list {
    grid-template-rows: none;
  }

  .about-card,
  .service-card,
  .strength-card,
  .flow-item,
  .info-card,
  .contact-form,
  .private-service-panel {
    border-radius: 22px;
    padding: 24px;
  }

  .strength-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
  }

  .strength-item {
    max-width: 220px;
    padding: 20px 18px;
    border-radius: 50%;
  }

  .station-intro__content {
    padding-top: 8px;
    padding-bottom: 0;
    transform: none;
  }

  .station-intro__visual {
    margin-top: 0;
  }

  .station-intro__image {
    height: clamp(380px, 62vw, 440px);
    min-height: 380px;
  }

  .station-intro__image img {
    object-position: center 34%;
  }

  .station-intro__button {
    width: 100%;
    max-width: 320px;
  }

  .learn-more {
    width: 11rem;
    height: 2.875rem;
    font-size: 14px;
  }

  .learn-more--wide {
    width: 13rem;
  }

  .learn-more .circle {
    width: 2.875rem;
    height: 2.875rem;
  }

  .learn-more .button-text {
    font-size: 14px;
    margin-left: 1.7rem;
  }

  .station-intro__content .learn-more {
    width: min(100%, 13rem);
  }

  .station-intro__content .learn-more--wide {
    width: min(100%, 14rem);
  }

  .station-philosophy-bridge__watermark-slot {
    display: none;
  }

  .philosophy-card {
    min-height: 0;
    padding: 26px 24px 26px;
    border-radius: 16px;
    row-gap: 10px;
  }

  .philosophy-card__number {
    font-size: 15px;
  }

  .philosophy-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.48;
  }

  .philosophy-card p {
    padding: 2px 0 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
  }

  @supports not (grid-template-rows: subgrid) {
    .philosophy-card h3 {
      min-height: calc(2 * 1.48em);
    }
  }

  .philosophy__action {
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
  }

  .philosophy__action .learn-more,
  .philosophy__action .learn-more--wide {
    width: min(100%, 13rem);
  }

  .philosophy-list {
    grid-template-rows: none;
  }

  .philosophy-card {
    min-height: 0;
  }

  .philosophy-expand-layer__body .philosophy-detail-card__items,
  .philosophy-detail-card__items {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .philosophy-detail-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .philosophy-detail-card h4 {
    font-size: 22px;
  }

  .philosophy-detail-card__items section {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .philosophy-detail-card__items h5 {
    font-size: 18px;
  }

  .philosophy-detail-card__items p {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .staff-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .staff-card__body {
    padding: 24px;
  }

  .staff-card__image {
    min-height: 220px;
  }

  .about-card {
    min-height: auto;
  }

  .about-card__body {
    padding: 0;
  }

  .service-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
  }

  .service-card__body {
    padding: 0;
  }

  .service-card__body h3 {
    font-size: 19px;
    line-height: 1.55;
  }

  .service-card__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-item__number {
    width: 54px;
    height: 54px;
    font-size: 15px;
  }

  .section__label::before,
  .section__label::after,
  .staff-card__role::before,
  .staff-card__role::after {
    width: 18px;
  }

  .flow-item__number::before {
    inset: -5px;
    border-radius: 16px;
  }

  .contact__content {
    position: static;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-info {
    max-width: none;
    order: 2;
    padding: 0;
  }

  .access-map--illustration {
    order: 1;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .access-map--illustration img {
    border-radius: 14px;
  }

  .access-map--illustration .learn-more {
    margin-top: 24px;
    margin-inline: auto;
    align-self: center;
  }

  .contact-button strong {
    font-size: 20px;
  }

  .message__image,
  .message__image img {
    min-height: 320px;
  }

  .sp-menu__panel {
    width: 100%;
    min-height: 100svh;
    max-height: 100svh;
    padding: 28px 22px 32px;
    border-radius: 0 0 0 38px;
    overflow-y: auto;
  }

  .sp-menu__body {
    gap: 24px;
  }

  .sp-menu__logo img {
    width: 138px;
  }

  .sp-menu__nav a {
    font-size: 16px;
  }

  .sp-menu__side {
    max-width: 100%;
  }

  .sp-menu__card {
    min-width: 0;
    padding: 20px 16px;
  }

  .sp-menu__phone {
    font-size: 22px;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .sp-menu__head {
    align-items: flex-start;
  }

  .sp-menu__close {
    min-width: 82px;
    height: 42px;
    padding: 0 16px;
  }

  .sp-menu__nav ul {
    gap: 12px;
  }

  .sp-menu__contact-button {
    min-width: 168px;
    height: 48px;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .intro::before,
  .philosophy::before,
  .service::before,
  .strength::before,
  .flow::before,
  .message::before,
  .staff::before,
  .private-service::before,
  .area::before,
  .access::before,
  .contact::before,
  .intro::after,
  .philosophy::after,
  .service::after,
  .strength::after,
  .flow::after,
  .message::after,
  .staff::after,
  .private-service::after,
  .area::after,
  .access::after,
  .contact::after,
  .section::before,
  .section::after {
    opacity: 0.32;
  }

  .hero__title {
    max-width: 100%;
    white-space: normal;
  }

  .hero__title-image {
    width: min(92vw, 560px);
  }

  .hero__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.035em;
    white-space: normal;
  }

  .section__lead,
  .station-intro__text p,
  .contact-form-section__lead,
  .flow-page-support__lead {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    min-width: 160px;
  }

  .service-card__body,
  .staff-card__body {
    padding: 0;
  }

  .private-service-panel {
    padding: 26px 20px;
  }

  .private-service-panel__note {
    margin-top: 22px;
    padding: 16px 18px;
  }
}

/* ==============================
  Menu Open Fixes
============================== */

body.is-menu-open .site-header .menu-button {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-menu-open .site-header .menu-button * {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-header {
  z-index: 1000;
}

.site-header .menu-button {
  z-index: 1001;
}

.sp-menu {
  z-index: 3000;
}

.sp-menu__panel {
  z-index: 3001;
}

.sp-menu__close {
  z-index: 3002;
}

.sp-menu__nav a {
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}

.sp-menu__contact-button {
  font-weight: 600 !important;
}

.sp-menu__card-title {
  font-weight: 600 !important;
}

.sp-menu__phone {
  font-weight: 700 !important;
}

.sp-menu__card-note,
.sp-menu__card-text,
.sp-menu__sns-list a {
  font-weight: 500 !important;
}

.sp-menu__close {
  font-weight: 600 !important;
}

/* ==============================
  Contact Page
============================== */

.contact-page {
  background: #faf8f4;
  color: #4a4a4a;
}

.contact-form-section {
  padding: 40px 0 110px;
  background: #faf8f4;
}

.contact-form-section__inner {
  width: min(100% - 48px, 800px);
  margin: 0 auto;
}

.contact-form-section .section__head {
  margin-bottom: 28px;
}

.contact-form-section .section__lead {
  color: #6b6258;
}

.contact-form-section__lead {
  margin-bottom: 54px;
  color: #6b6258;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

/* ==============================
  Privacy Page
============================== */

.privacy-page {
  background: #faf8f4;
  color: #4a4a4a;
}

.privacy-content-section {
  padding: 40px 0 110px;
  background: #faf8f4;
}

.privacy-content-section__inner {
  width: min(100% - 48px, 800px);
  margin: 0 auto;
}

.privacy-content-section .section__head {
  margin-bottom: 36px;
}

.privacy-policy__intro {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.privacy-policy__intro p,
.privacy-policy__section p {
  color: #6b6258;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}

.privacy-policy__section {
  padding-top: 32px;
  border-top: 1px solid rgba(107, 98, 88, 0.14);
}

.privacy-policy__section:first-of-type {
  padding-top: 0;
  border-top: none;
}

.privacy-policy__heading {
  margin-bottom: 16px;
  color: #4a4a4a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.privacy-policy__section p + p,
.privacy-policy__section p + ul,
.privacy-policy__section ul + p {
  margin-top: 14px;
}

.privacy-policy__list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
  list-style: disc;
}

.privacy-policy__list li {
  color: #6b6258;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.privacy-policy__contact {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.privacy-policy__contact div {
  display: grid;
  gap: 6px;
}

.privacy-policy__contact dt {
  color: #8a7656;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.privacy-policy__contact dd {
  color: #6b6258;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.privacy-policy__contact a {
  color: #8a7656;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-policy__date {
  margin-top: 48px;
  color: #6b6258;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
}

.privacy-policy__end {
  margin-top: 12px;
  color: #8a7656;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.contact-page-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid rgba(107, 98, 88, 0.16);
}

.form-row:last-of-type {
  border-bottom: 1px solid rgba(107, 98, 88, 0.16);
}

.form-row__label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 8px;
}

.form-row__label label,
.form-row__label span.label-text {
  flex: 1 1 auto;
  min-width: 0;
  color: #6b6258;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.required,
.form-required {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 30px;
  height: 18px;
  margin-top: 3px;
  padding: 0 5px;
  border: 1px solid #d8c7a3;
  border-radius: 3px;
  color: #8a7656;
  background: rgba(216, 199, 163, 0.18);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.form-row__field {
  min-width: 0;
}

.form-row__field input[type="text"],
.form-row__field input[type="email"],
.form-row__field input[type="tel"],
.form-row__field textarea {
  width: 100%;
  border: 1px solid rgba(107, 98, 88, 0.18);
  border-radius: 4px;
  background: #ffffff;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  box-shadow: none;
}

.form-row__field input[type="text"],
.form-row__field input[type="email"],
.form-row__field input[type="tel"] {
  height: 48px;
  padding: 0 16px;
}

.form-row__field textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.form-row__field input::placeholder,
.form-row__field textarea::placeholder {
  color: rgba(107, 98, 88, 0.42);
}

.field-example,
.field-note {
  margin-top: 9px;
  color: #8b8175;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.form-row__field .field-note:first-child {
  margin-top: 0;
  margin-bottom: 9px;
}

.choice-list {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b6258;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.choice-item input {
  width: auto;
  accent-color: #d8c7a3;
}

.other-input {
  margin-top: 14px;
}

.notice-box {
  overflow: hidden;
  border: 1px solid rgba(107, 98, 88, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.notice-box__head {
  padding: 12px 18px;
  background: #e9e1d4;
  color: #6b6258;
  font-size: 14px;
  font-weight: 700;
}

.notice-box__body {
  padding: 18px;
}

.notice-box__body p {
  color: #6b6258;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.notice-box__body .choice-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(107, 98, 88, 0.12);
}

.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 42px;
  color: #6b6258;
  font-size: 14px;
  font-weight: 700;
}

.privacy-check input {
  width: auto;
  accent-color: #d8c7a3;
}

.privacy-check a {
  color: #8a7656;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-submit {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.contact-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 170px;
  height: 58px;
  padding: 0 36px;
  border: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-submit button span[aria-hidden="true"] {
  font-size: 24px;
  line-height: 1;
}

.contact-submit__label {
  font-size: inherit;
  line-height: 1.4;
}

.contact-submit button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.contact-form-honeypot {
  display: none !important;
}

.contact-form-status {
  margin: 22px auto 0;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.contact-form-status[hidden] {
  display: none;
}

.contact-form-status.is-success {
  border: 1px solid rgba(143, 168, 114, 0.35);
  background: rgba(143, 168, 114, 0.12);
  color: #687d4e;
}

.contact-form-status.is-error {
  border: 1px solid rgba(192, 57, 43, 0.28);
  background: rgba(192, 57, 43, 0.08);
  color: #9f3c32;
}

/* ==============================
  Flow Page
============================== */

.flow-page {
  background: #faf8f4;
}

.flow-page-section {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
}

.flow-page-section__inner {
  width: min(100% - 48px, var(--inner));
  margin: 0 auto;
}

.flow-page-list {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.flow-steps {
  --flow-step-gap: clamp(18px, 2.2vw, 24px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--flow-step-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-steps__item {
  position: relative;
  display: flex;
  min-width: 0;
}

.flow-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: calc(var(--flow-step-gap) - 4px);
  margin-top: 2px;
  background: linear-gradient(
    180deg,
    rgba(186, 162, 122, 0.12) 0%,
    rgba(186, 162, 122, 0.34) 50%,
    rgba(186, 162, 122, 0.12) 100%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.flow-step-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(68px, 84px) auto minmax(0, 1fr);
  grid-template-areas:
    "step icon title"
    "step icon text";
  gap: 10px clamp(16px, 2vw, 24px);
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: clamp(20px, 2.1vw, 26px) clamp(22px, 2.6vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(216, 199, 163, 0.58);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
  box-shadow: 0 8px 24px rgba(138, 118, 86, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.flow-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 199, 163, 0.88);
  box-shadow: 0 12px 28px rgba(138, 118, 86, 0.1);
}

.flow-step-card__bg-num {
  position: absolute;
  top: 50%;
  right: clamp(14px, 2vw, 22px);
  bottom: auto;
  z-index: 0;
  color: rgba(117, 104, 79, 0.07);
  font-family: var(--font-en);
  font-size: clamp(56px, 6vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  transform: translateY(-50%);
}

.flow-step-card__head {
  display: contents;
}

.flow-step-card__label {
  grid-area: step;
  grid-row: 1 / -1;
  align-self: center;
  margin: 0;
  color: #8a8378;
  font-family: var(--font-en);
  font-size: clamp(10px, 1vw, 11px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.14em;
}

.flow-step-card__icon {
  grid-area: icon;
  grid-row: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 199, 163, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #8a8378;
}

.flow-step-card__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.flow-step-card__title {
  grid-area: title;
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: clamp(48px, 6vw, 72px);
  color: #3f3f3f;
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.flow-step-card__text {
  grid-area: text;
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: clamp(48px, 6vw, 72px);
  color: #6b6258;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.025em;
}

@media (max-width: 720px) {
  .flow-steps {
    --flow-step-gap: 16px;
  }

  .flow-step-card {
    grid-template-columns: minmax(58px, 68px) auto minmax(0, 1fr);
    grid-template-areas:
      "step icon title"
      "step icon text";
    gap: 8px 12px;
    padding: 18px 18px;
    border-radius: 20px;
  }

  .flow-step-card__bg-num {
    font-size: 48px;
    right: 10px;
  }

  .flow-step-card__icon {
    width: 40px;
    height: 40px;
  }

  .flow-step-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .flow-step-card__title {
    padding-right: 42px;
    font-size: 16px;
  }

  .flow-step-card__text {
    padding-right: 42px;
    font-size: 14px;
    line-height: 1.82;
  }
}

.flow-page-section .insurance-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(48px, 5vw, 64px);
  margin-bottom: clamp(12px, 1.6vw, 20px);
  align-items: stretch;
}

.flow-page-section .insurance-box__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: clamp(32px, 3.4vw, 42px) clamp(26px, 2.6vw, 34px);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(138, 118, 86, 0.05);
}

.flow-page-section .insurance-box__item--care {
  border: 1px solid #ead8b8;
  background: #fffaf1;
}

.flow-page-section .insurance-box__item--medical {
  border: 1px solid #bfe4e4;
  background: #f0fafa;
}

.flow-page-section .insurance-box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.flow-page-section .insurance-box__item--care h3 {
  color: #6a4f32;
}

.flow-page-section .insurance-box__item--medical h3 {
  color: #4a7a7a;
}

.flow-page-section .insurance-box p {
  margin: 14px 0 0;
  color: #6b6258;
  font-size: clamp(13px, 1.05vw, 14px);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

@media (min-width: 721px) {
  .flow-page-section .insurance-box p {
    white-space: nowrap;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .flow-page-section .insurance-box p {
    font-size: 12.5px;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 720px) {
  .flow-page-section .insurance-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-page-section .insurance-box__item {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .flow-page-section .insurance-box p {
    white-space: normal;
    font-size: 14px;
    line-height: 1.9;
  }
}

.flow-cta {
  padding: 90px 0 120px;
  background: #faf8f4;
}

.flow-cta__inner {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 222, 224, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(133, 203, 204, 0.16) 0%, rgba(168, 222, 224, 0.22) 100%);
  box-shadow: 0 22px 60px rgba(138, 118, 86, 0.12);
}

.flow-cta__label {
  margin-bottom: 12px;
  color: #8fa872;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-style: normal;
}

.flow-cta__title {
  color: #4a4a4a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.45;
}

.flow-cta__text {
  margin-top: 18px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.flow-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ==============================
  Service Page
============================== */

.service-page {
  background: #faf8f4;
}

.service-page .service::before,
.service-page .service::after,
.service-page .private-service::before,
.service-page .private-service::after {
  display: none;
}

.service-page .service-page-section,
.service-page .private-service {
  background: #faf8f4;
}

.service-page .private-service.service-page-section--private {
  padding: 90px 0 0;
}

@media (min-width: 721px) {
  .service-page .service-page-section--private .private-service-panel {
    top: 0;
  }
}

.service-page .strength-card {
  background: #ffffff;
}

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

.service-page-section__inner {
  position: relative;
  width: min(100% - 48px, var(--inner));
  margin: 0 auto;
}

.service-page-section.is-expanded {
  z-index: 6;
}

.service-page-section.is-expanded .service-page-section__inner {
  z-index: 6;
}

.service-grid.is-focus-mode .service-card-wrap.is-dimmed,
.strength-grid.is-focus-mode .strength-card-wrap.is-dimmed {
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.service-card-wrap.is-expanding .service-card,
.strength-card-wrap.is-expanding .strength-card {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.service-page-section__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  color: #d85f57;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.service-page-section--support {
  background: #faf8f4;
  padding-top: 90px;
}

.service-page-section--dx {
  background: #faf8f4;
  padding: 0;
}

.service-page .service-page-section--dx {
  padding-top: clamp(72px, 8vw, 100px);
  padding-bottom: 110px;
}

.dx-notice-card {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
  border: 1px solid rgba(216, 199, 163, 0.34);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(138, 118, 86, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.dx-notice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a9ea8 0%, #85cbcc 48%, rgba(168, 222, 224, 0.95) 100%);
  pointer-events: none;
}

.dx-notice-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: min(280px, 48vw);
  height: min(280px, 48vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 158, 168, 0.1) 0%,
    rgba(168, 222, 224, 0.12) 42%,
    transparent 70%
  );
  pointer-events: none;
}

.dx-notice-card__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: clamp(22px, 2.8vw, 28px);
}

.dx-notice-card__head .section__label {
  justify-content: center;
}

.dx-notice-card__head .section__title {
  margin: 0;
  color: #4a9ea8;
}

.dx-notice-card__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(120px, 36%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(74, 158, 168, 0.5),
    transparent
  );
  transform: translateX(-50%);
}

.dx-notice-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dx-notice-card__list > li {
  margin: 0;
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 22px);
  border: 1px solid rgba(74, 158, 168, 0.18);
  border-left: 3px solid #4a9ea8;
  border-radius: 0 16px 16px 0;
  background: #f3f9fa;
}

.dx-notice-card__item-title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(15.5px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.dx-notice-card__item-text {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: clamp(13.5px, 1.05vw, 15px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.service-page-section--private {
  padding: 0;
}

@media (min-width: 961px) {
  .service-page .service-page-section--support,
  .service-page .private-service.service-page-section--private {
    padding-top: 60px;
  }

  .service-page .service-page-section--dx {
    padding-top: 88px;
  }
}

.service-page .service-grid {
  margin-top: 44px;
  gap: 16px;
  align-items: stretch;
}

.service-page .service-card-wrap {
  height: 100%;
}

.service-page .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.service-page .service-card-wrap,
.service-page .strength-card-wrap {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-page .service-card,
.service-page .strength-card {
  transition: box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .service-page .service-card-wrap:not(.is-expanding):hover,
  .service-page .strength-card-wrap:not(.is-expanding):hover {
    transform: translateY(-4px);
  }

  .service-page .service-card-wrap:not(.is-expanding):hover .service-card,
  .service-page .strength-card-wrap:not(.is-expanding):hover .strength-card {
    box-shadow: 0 18px 42px rgba(138, 118, 86, 0.15);
  }
}

.service-page .service-card__image {
  flex: 0 0 auto;
  width: 100%;
}

.service-page .service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  text-align: left;
}

.service-page .service-card__body p {
  flex: 1 1 auto;
}

.service-page .service-card__body h3 {
  text-align: center;
}

.service-page .section.service .service-page-section__inner {
  width: min(100% - 32px, 1280px);
}

@media (max-width: 960px) {
  .service-page .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0;
  }

  .service-page .service-card__body {
    padding: 22px 20px 26px;
  }
}

.service-page .strength-card {
  text-align: left;
}

.service-page .strength-card::before {
  margin-left: auto;
  margin-right: auto;
}

.service-page .strength-card h3 {
  text-align: center;
}

.service-page .strength-card p {
  text-align: left;
}

.service-detail[data-card-expand-source],
.support-detail[data-card-expand-source] {
  display: none !important;
}

.philosophy-expand-layer__body .service-detail-card,
.philosophy-expand-layer__body .support-detail-card {
  padding: 8px 4px 0;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}

.philosophy-expand-layer__body .service-detail-card h3,
.philosophy-expand-layer__body .support-detail-card h3,
.philosophy-expand-layer__body .support-detail-card h4 {
  margin: 14px 48px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 28px);
}

.philosophy-expand-layer__body .support-detail-card h4 {
  margin-top: 10px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.philosophy-expand-layer__body .service-detail-card__intro,
.philosophy-expand-layer__body .service-detail-card__closing,
.philosophy-expand-layer__body .support-detail-card p,
.philosophy-expand-layer__body .support-detail-card__closing {
  max-width: none;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14.5px;
  line-height: 1.75;
}

.philosophy-expand-layer__body .service-detail-card ul,
.philosophy-expand-layer__body .support-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.philosophy-expand-layer__body .service-detail-card li,
.philosophy-expand-layer__body .support-detail-card li {
  position: relative;
  padding: 14px 16px 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.7;
}

.philosophy-expand-layer__body .service-detail-card li::before,
.philosophy-expand-layer__body .support-detail-card li::before {
  content: "";
  position: absolute;
  top: 1.15em;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.service-page-section--support .philosophy-expand-layer__card {
  background: #ffffff;
  color: var(--color-text);
}

.service-page-section--support .philosophy-expand-layer__close {
  color: #75684f;
}

.service-page-section--support .philosophy-expand-layer__close:hover {
  background: rgba(216, 199, 163, 0.18);
}

.service-page-section--support
  .philosophy-expand-layer__close
  span[aria-hidden="true"] {
  text-shadow: none;
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card {
  color: var(--color-text);
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card
  h3 {
  color: var(--color-text);
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card
  h4 {
  color: #75684f;
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card
  p,
.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card__closing {
  color: var(--color-muted);
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card
  li {
  border-color: rgba(216, 199, 163, 0.34);
  background: #faf8f4;
  color: var(--color-muted);
}

.service-page-section--support
  .philosophy-expand-layer__body
  .support-detail-card
  li::before {
  background: var(--color-sub);
}

.service-detail {
  margin-top: clamp(56px, 7vw, 84px);
}

.service-detail__head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.service-detail__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.service-detail__lead {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.service-detail__list {
  display: grid;
  gap: 22px;
}

.service-detail-card {
  scroll-margin-top: calc(var(--header-height, 76px) + 18px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(216, 199, 163, 0.32);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 38px rgba(138, 118, 86, 0.09);
}

.service-detail-card h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.service-detail-card__intro,
.service-detail-card__closing {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding: 14px 16px 14px 34px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #85cbcc;
}

.service-page .strength-grid {
  margin-top: 56px;
}

.support-detail {
  margin-top: clamp(48px, 6vw, 72px);
}

.support-detail__head {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.support-detail__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.support-detail__lead {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.support-detail__list {
  display: grid;
  gap: 22px;
}

.support-detail-card {
  scroll-margin-top: calc(var(--header-height, 76px) + 18px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(216, 199, 163, 0.32);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 38px rgba(138, 118, 86, 0.09);
}

.support-detail-card h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.support-detail-card h4 {
  margin: 14px 0 0;
  color: #75684f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.035em;
}

.support-detail-card p,
.support-detail-card__closing {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.support-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.support-detail-card li {
  position: relative;
  padding: 14px 16px 14px 34px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.025em;
}

.support-detail-card li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #85cbcc;
}

.service-strengths {
  margin-top: clamp(44px, 5vw, 56px);
}

.service-strengths__head {
  margin-bottom: 28px;
}

.service-strengths__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.service-strengths__grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-page .insurance-box {
  margin-top: 48px;
}

.service-page-section__note {
  margin-top: 28px;
  text-align: center;
}

.service-page-section__note a {
  color: #8a7656;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-cta {
  padding: 90px 0 120px;
}

.service-section__action {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 720px) {
  .service-page-section {
    padding: 82px 0;
  }

  .service-page-section__inner {
    width: min(100% - 32px, var(--inner));
  }

  .service-page-section__subtitle {
    margin-top: 14px;
    font-size: 20px;
  }

  .service-detail {
    margin-top: 48px;
  }

  .service-detail__head {
    margin-bottom: 24px;
    text-align: left;
  }

  .service-detail__title {
    font-size: 24px;
  }

  .service-detail-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .service-detail-card h3 {
    font-size: 21px;
  }

  .service-detail-card__intro,
  .service-detail-card__closing {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .service-detail-card li {
    padding: 13px 14px 13px 32px;
    font-size: 14.5px;
    line-height: 1.8;
  }

  .support-detail {
    margin-top: 44px;
  }

  .support-detail__head {
    margin-bottom: 24px;
    text-align: left;
  }

  .support-detail__title {
    font-size: 24px;
  }

  .support-detail-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .support-detail-card h3 {
    font-size: 21px;
  }

  .support-detail-card h4 {
    font-size: 18px;
  }

  .support-detail-card p,
  .support-detail-card__closing {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .support-detail-card li {
    padding: 13px 14px 13px 32px;
    font-size: 14.5px;
    line-height: 1.8;
  }

  .service-page .private-service.service-page-section--private {
    padding: 82px 0 0;
  }

  .service-page .service-page-section--dx {
    padding-bottom: 82px;
  }

}

/* ==============================
  Subpage — first section spacing
============================== */

.about-page > .about-page-section:first-child,
.service-page > .service-page-section:first-child,
.flow-page > .flow-page-section:first-child,
.office-page > .office-info-section:first-child,
.staff-page > .staff-page-section:first-child,
.contact-page > .contact-form-section:first-child,
.privacy-page > .privacy-content-section:first-child {
  padding-top: calc(var(--header-height) + clamp(48px, 7vw, 80px));
}

/* ==============================
  About Page
============================== */

.about-page {
  background: #faf8f4;
}

.about-page-section {
  position: relative;
  padding: 110px 0 clamp(72px, 9vw, 96px);
  background: #faf8f4;
}

.about-page-section__inner {
  width: min(100% - 48px, var(--inner));
  margin: 0 auto;
}

.about-page-message-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(40px, 5vw, 56px);
}

.about-page-section + .about-page-message-section {
  padding-top: 0;
}


.about-message {
  margin-top: 0;
  padding: 40px 38px;
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(138, 118, 86, 0.06);
}

.about-message .section__label {
  text-align: left;
}

.about-message .section__title {
  margin-top: 0;
  text-align: left;
}

.about-message__subtitle {
  max-width: 720px;
  margin: 16px 0 0;
  color: #6a4f32;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.about-message__subtitle + .about-message__text {
  margin-top: 18px;
}

.about-message__text {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-top: 24px;
}

.about-message__text p {
  margin: 0;
  color: #6b6258;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.03em;
}

.about-page-message-section .subpage-next-action {
  margin-top: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(8px, 2vw, 16px);
}

.about-philosophy {
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(32px, 4vw, 44px);
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #ffffff 0%, rgba(168, 222, 224, 0.08) 100%);
  box-shadow: 0 12px 34px rgba(138, 118, 86, 0.08);
}

.about-philosophy .section__label {
  margin-bottom: 12px;
}

.about-philosophy .section__title {
  margin-bottom: 0;
}

.about-philosophy__text {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.about-philosophy__text p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.about-page .about-grid,
.about-page .about-card,
.about-page .about-card__body {
  position: relative;
}

.about-page .about-grid {
  margin-top: 56px;
  grid-template-columns: 1fr;
}

.about-wellbeing-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(168, 222, 224, 0.16), transparent 36%),
    #ffffff;
  box-shadow: var(--shadow-card);
}

.about-wellbeing-card__visual {
  display: block;
  margin: 0;
  width: 100%;
}

.about-wellbeing-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-wellbeing-card__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.about-wellbeing-card__text {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.about-wellbeing-card__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.03em;
}

.about-strength-block {
  margin-top: clamp(56px, 7vw, 80px);
}

.about-strength-block .section__head {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.about-strength-block .section__label,
.about-strength-block .section__title,
.about-strength-block .section__lead {
  text-align: center;
}

.about-strength-block .section__lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.about-page .about-card {
  display: block;
  height: auto;
  min-height: 0;
  padding: clamp(32px, 3.5vw, 46px);
}

.about-page .about-card__body {
  padding: 0;
}

.about-page .about-card__visual {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  width: 100%;
  justify-self: end;
}

.about-page .about-card__visual img {
  display: block;
  width: min(100%, 240px);
  max-width: 240px;
  height: auto;
  aspect-ratio: 3 / 4;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.about-cta {
  padding: 90px 0 120px;
  background: #faf8f4;
}

.about-cta__inner {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(168, 222, 224, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(133, 203, 204, 0.16) 0%, rgba(168, 222, 224, 0.22) 100%);
  box-shadow: 0 22px 60px rgba(138, 118, 86, 0.12);
}

.about-cta__label {
  margin-bottom: 12px;
  color: #8fa872;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-style: normal;
}

.about-cta__title {
  color: #4a4a4a;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.45;
}

.about-cta__text {
  margin-top: 18px;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.about-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ==============================
  Office Page
============================== */

.office-page {
  background: #faf8f4;
  color: #4a4a4a;
}

.office-info-section {
  position: relative;
  overflow: visible;
  padding: 20px 0 108px;
}

.office-info-section .section__head {
  margin-bottom: 40px;
}

.office-info-section__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1050px);
  margin: 0 auto;
}

.office-info-table {
  margin: 0;
}

.office-info-table__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(138, 118, 86, 0.16);
}

.office-info-table__row:first-child {
  border-top: 1px solid rgba(138, 118, 86, 0.16);
}

.office-info-table dt {
  color: #8a7656;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
}

.office-info-table dd {
  margin: 0;
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.office-info-table dd p {
  margin: 0;
}

.office-info-table__note {
  margin-top: 10px !important;
  padding-left: 1em;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
  text-indent: -1em;
}

.office-info-table__access {
  color: #2f7894;
  font-weight: 600;
}

.office-info-table__emergency {
  color: #d43f46;
}

.office-info-table dd a {
  color: #4a4a4a;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.25s ease;
}

.office-info-table dd a:hover {
  opacity: 0.72;
}

.office-map {
  margin-top: 64px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(138, 118, 86, 0.1);
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 720px) {
  .office-info-section {
    padding-bottom: 80px;
  }

  .office-info-section__inner {
    width: min(100% - 32px, 1050px);
  }

  .office-info-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .office-info-table dt {
    font-size: 14px;
    line-height: 1.6;
  }

  .office-info-table dd {
    font-size: 14px;
    line-height: 1.8;
  }

  .office-info-table__desktop-break {
    display: none;
  }

  .office-map {
    margin-top: 48px;
    border-radius: 12px;
  }

  .office-map iframe {
    height: 300px;
  }
}

/* ==============================
  Staff Page
============================== */

.staff-page {
  background: #faf8f4;
}

.staff-page .staff::before,
.staff-page .staff::after {
  display: none;
}

.staff-page .staff-page-section,
.staff-page .staff {
  background: #faf8f4;
}

.staff-page .staff-page-section {
  padding-bottom: 110px;
}

.staff-page-section__inner {
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
}

.staff-page .section__head {
  margin-bottom: 54px;
}

.staff-page-group {
  margin-top: 56px;
}

.staff-page .flow-page-support {
  margin-top: clamp(48px, 6vw, 64px);
}

.staff-page-message {
  margin-top: 0;
  padding: 40px 38px;
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(138, 118, 86, 0.06);
}

.staff-page-message .section__label {
  text-align: left;
}

.staff-page-message .section__title {
  margin-top: 0;
  text-align: left;
}

.staff-page-message__subtitle {
  max-width: 720px;
  margin: 16px 0 0;
  color: #6a4f32;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.staff-page-message__subtitle + .staff-page-message__text {
  margin-top: 18px;
}

.staff-page-message__text {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-top: 24px;
}

.staff-page-message__text p {
  margin: 0;
  color: #6b6258;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.03em;
}

.flow-page-support {
  margin-top: 40px;
  padding: 40px 38px;
  border: 1px solid rgba(216, 199, 163, 0.28);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  box-shadow: 0 8px 28px rgba(138, 118, 86, 0.06);
}

.flow-page-support .section__label,
.flow-page-support .section__title {
  text-align: left;
}

.flow-page-support .section__title {
  margin-top: 0;
}

.flow-page-support__lead {
  margin: 20px 0 0;
  color: #6b6258;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.flow-page-support__grid {
  margin-top: 28px;
}

.staff-page-group__title {
  margin-bottom: 36px;
  color: #4a4238;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
}

.staff-page .staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 0;
  align-items: stretch;
}

.staff-page .staff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 38px 34px 34px;
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(138, 118, 86, 0.07);
}

.staff-page .staff-card__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.staff-page .staff-card__avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-accent-light);
  box-shadow: inset 0 0 0 1px rgba(216, 199, 163, 0.28);
}

.staff-page .staff-card__avatar svg {
  display: block;
  width: 100%;
  height: 100%;
}

.staff-page .staff-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.staff-page .staff-card__identity {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.staff-page .staff-card__role {
  margin: 0 0 8px;
  color: #8a7656;
  font-family: var(--font-ja);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.staff-page .staff-card__role::before,
.staff-page .staff-card__role::after {
  display: none;
}

.staff-page .staff-card__name {
  margin: 0;
  color: #4a4238;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.staff-page .staff-card__name-en {
  margin: 8px 0 0;
  color: #a69b8c;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.staff-page .staff-card__bio {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  min-height: 0;
}

.staff-page .staff-card__bio p {
  margin: 0;
  color: #6b6258;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.74;
  letter-spacing: 0.03em;
}

.staff-page .staff-card__qual {
  display: flex;
  align-items: center;
  column-gap: 14px;
  flex-shrink: 0;
  margin-top: 18px;
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid rgba(216, 199, 163, 0.45);
  border-radius: 10px;
  background: #f7f2ea;
}

.staff-page .staff-card__qual-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 28px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 4px;
  background: rgba(216, 199, 163, 0.42);
  color: #75684f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.staff-page .staff-card__qual-text {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #6b6258;
  font-size: 13px;
  font-weight: 600;
  line-height: 28px;
  height: 28px;
  letter-spacing: 0.03em;
}

.staff-page .staff__note {
  margin-top: 36px;
  margin-bottom: 0;
  color: #9a9288;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 1024px) {
  .staff-page .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .flow-page-section__inner,
  .about-page-section__inner,
  .staff-page-section__inner {
    width: min(100% - 32px, var(--inner));
  }

  .flow-page-section {
    padding: 76px 0;
  }

  .flow-page-list {
    gap: 20px;
    margin-top: 38px;
  }

  .flow-cta {
    padding: 64px 0 88px;
  }

  .flow-cta__inner {
    width: min(100% - 32px, 920px);
    padding: 36px 24px;
    border-radius: 26px;
  }

  .flow-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .flow-cta__actions .button {
    width: min(100%, 260px);
  }

  .about-page-section {
    padding: 76px 0;
  }

  .about-page > .about-page-section:first-child,
  .service-page > .service-page-section:first-child,
  .flow-page > .flow-page-section:first-child,
  .office-page > .office-info-section:first-child,
  .staff-page > .staff-page-section:first-child,
  .contact-page > .contact-form-section:first-child,
  .privacy-page > .privacy-content-section:first-child {
    padding-top: calc(var(--header-height) + 36px);
  }

  .staff-page .staff-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }

  .staff-page-group {
    margin-top: 48px;
  }

  .about-message {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .about-message .section__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .about-message__subtitle {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .about-message__subtitle + .about-message__text {
    margin-top: 16px;
  }

  .about-message__text {
    gap: 16px;
    margin-top: 0;
  }

  .about-message__text p {
    font-size: 14px;
    line-height: 1.85;
  }

  .staff-page-message {
    margin-top: 0;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .staff-page-message .section__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .staff-page-message__subtitle {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .staff-page-message__subtitle + .staff-page-message__text {
    margin-top: 16px;
  }

  .staff-page-message__text {
    max-width: none;
    margin-top: 20px;
    gap: 16px;
  }

  .staff-page-message__text p {
    font-size: 14px;
    line-height: 1.85;
  }

  .flow-page-support {
    margin-top: 40px;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .service-strengths__grid {
    grid-template-columns: 1fr;
  }

  .about-philosophy {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .staff-page-group__title {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .staff-page .staff-card {
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .staff-page .staff-card__head {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .staff-page .staff-card__avatar {
    width: 84px;
    height: 84px;
  }

  .staff-page .staff-card__identity {
    padding-top: 0;
  }

  .staff-page .staff-card__bio {
    margin-top: 16px;
  }

  .staff-page .staff-card__bio p {
    font-size: 14px;
    line-height: 1.78;
  }

  .staff-page .staff-card__qual {
    column-gap: 12px;
    margin-top: 16px;
    height: 48px;
    min-height: 48px;
    padding: 0 14px;
  }

  .staff-page .staff-card__qual-label {
    flex-basis: 52px;
    width: 52px;
    height: 26px;
    font-size: 11px;
  }

  .staff-page .staff-card__qual-text {
    line-height: 26px;
    height: 26px;
    font-size: 13px;
  }

  .staff-page .staff__note {
    margin-top: 40px;
  }

  .about-page .about-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-top: 38px;
  }

  .about-wellbeing-card {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 20px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .about-wellbeing-card__title {
    font-size: 21px;
  }

  .about-wellbeing-card__text {
    gap: 14px;
    margin-top: 14px;
  }

  .about-wellbeing-card__text p {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .about-strength-block {
    margin-top: 48px;
  }

  .about-strength-block .section__head {
    margin-bottom: 28px;
  }

  .about-page .about-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 24px;
  }

  .about-page .about-card__body {
    padding: 0;
  }

  .about-page .about-card__visual {
    order: 1;
    justify-self: start;
  }

  .about-page .about-card__visual img {
    width: min(100%, 200px);
    max-width: 200px;
    aspect-ratio: 3 / 4;
  }

  .about-cta {
    padding: 64px 0 88px;
  }

  .about-cta__inner {
    width: min(100% - 32px, 920px);
    padding: 36px 24px;
    border-radius: 26px;
  }

  .about-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .about-cta__actions .button {
    width: min(100%, 260px);
  }

  .contact-form-section__inner {
    width: min(100% - 32px, 800px);
  }

  .privacy-content-section__inner {
    width: min(100% - 32px, 800px);
  }

  .privacy-content-section {
    padding: 30px 0 82px;
  }

  .privacy-policy__heading {
    font-size: 16px;
  }

  .privacy-policy__intro p,
  .privacy-policy__section p,
  .privacy-policy__list li {
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-form-section {
    padding: 30px 0 82px;
  }

  .contact-form-section__lead {
    margin-bottom: 36px;
    font-size: 15px;
    white-space: normal;
  }

  .station-intro__text p,
  .flow-page-support__lead {
    font-size: 15px;
    white-space: normal;
  }

  .staff-page-message__subtitle {
    white-space: normal;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .form-row__label {
    padding-top: 0;
  }

  .form-row__field input[type="text"],
  .form-row__field input[type="email"],
  .form-row__field input[type="tel"] {
    height: 46px;
  }

  .form-row__field textarea {
    min-height: 150px;
  }

  .privacy-check {
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.8;
  }
}

/* ==============================
  Jalan page reveal animation
============================== */

body.is-reveal-waiting:not(.home) main {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  pointer-events: none;
}

body.is-reveal-ready:not(.home) main {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-reveal-waiting .site-header {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

body.is-header-reveal-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-reveal-waiting .site-logo,
body.is-reveal-waiting .global-nav,
body.is-reveal-waiting .header-contact,
body.is-reveal-waiting .menu-button {
  opacity: 0;
  transform: translateY(-12px);
}

body.is-header-reveal-ready .site-logo,
body.is-header-reveal-ready .global-nav,
body.is-header-reveal-ready .header-contact,
body.is-header-reveal-ready .menu-button {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-header-reveal-ready .site-logo {
  transition-delay: 0.22s;
}

body.is-header-reveal-ready .global-nav {
  transition-delay: 0.42s;
}

body.is-header-reveal-ready .header-contact {
  transition-delay: 0.62s;
}

body.is-header-reveal-ready .menu-button {
  transition-delay: 0.62s;
}

body.is-reveal-waiting.is-hero-content-in .hero__label,
body.is-reveal-waiting.is-hero-content-in .hero__title,
body.is-reveal-waiting.is-hero-content-in .hero__text,
body.is-reveal-waiting.is-hero-content-in .hero__actions {
  transition: none !important;
}

body.is-header-reveal-ready .site-header::before {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-reveal-waiting:not(.is-header-reveal-ready) .site-header::before {
  opacity: 0;
  transform: translateY(-8px);
}

@media (min-width: 721px) {
  .page-loader {
    transition:
      opacity 0.85s ease,
      visibility 0.85s ease;
  }

  body.is-loaded .hero__bg,
  body.is-loaded .hero__overlay,
  body.is-loaded .contact-cta--hero,
  body.is-loaded .hero__scroll {
    transition-duration: 1s;
  }

  body.is-reveal-waiting:not(.home) main {
    transform: translateY(14px);
    filter: none;
  }

  body.is-reveal-ready:not(.home) main {
    transform: translateY(0);
    filter: none;
    transition:
      opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.home.is-loaded.is-header-reveal-ready .site-header,
  body.is-header-reveal-ready .site-header {
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-header-reveal-ready .site-logo,
  body.is-header-reveal-ready .global-nav,
  body.is-header-reveal-ready .header-contact,
  body.is-header-reveal-ready .menu-button {
    transition-duration: 0.7s;
  }

  body.is-header-reveal-ready .site-logo {
    transition-delay: 0.08s;
  }

  body.is-header-reveal-ready .global-nav {
    transition-delay: 0.16s;
  }

  body.is-header-reveal-ready .header-contact,
  body.is-header-reveal-ready .menu-button {
    transition-delay: 0.24s;
  }

  .strength-item {
    will-change: auto;
  }

  .strength-item.is-card-dragging,
  .strength-item.is-card-settling {
    will-change: transform;
  }
}

@media (min-width: 1360px) {
  .global-nav {
    position: static;
    margin-left: auto;
    margin-right: 24px;
    transform: none;
  }

  .header-contact {
    margin-left: 0;
  }

  body.is-reveal-waiting .global-nav {
    transform: translateY(-12px);
  }

  body.is-header-reveal-ready .global-nav {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-reveal-waiting:not(.home) main,
  body.is-reveal-waiting .site-header,
  body.is-reveal-waiting .site-logo,
  body.is-reveal-waiting .global-nav,
  body.is-reveal-waiting .header-contact,
  body.is-reveal-waiting .menu-button {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ==============================
  Card Font Balance
============================== */

.about-card,
.about-card *,
.about-philosophy,
.about-philosophy *,
.about-message,
.about-message *,
.philosophy-card,
.philosophy-card *,
.service-card,
.service-card *,
.strength-card,
.strength-card *,
.flow-item,
.flow-item *,
.insurance-box,
.insurance-box *,
.staff-card,
.staff-card *,
.flow-page-support,
.flow-page-support *,
.access-info,
.access-info *,
.contact-button,
.contact-button *,
.contact-form,
.contact-form *,
.office-info-table,
.office-info-table *,
.privacy-policy,
.privacy-policy * {
  font-family: var(--font-ja);
}

.about-card__word {
  font-family: var(--font-en);
}

.about-card__text,
.about-philosophy__text p,
.about-message__text p,
.service-card__body p,
.strength-card p,
.flow-item p,
.insurance-box p,
.staff-card p:not(.staff-card__role):not(.staff-card__qual-text),
.flow-page-support .strength-card p,
.access-block__list dd,
.contact-button span,
.privacy-policy p,
.office-info-table dd {
  font-weight: 600;
}

.section__lead,
.station-intro__text p,
.contact-form-section__lead,
.flow-page-support__lead {
  font-weight: 700;
}

/* ==============================
  Heading Font
============================== */

main h1,
main h2,
main h3,
.section__title,
.station-intro__title,
.about-card__title,
.philosophy-card h3,
.service-card__body h3,
.strength-card h3,
.flow-item h3,
.insurance-box h3,
.staff-card h3,
.info-card h2,
.info-card__title,
.access-block__title,
.flow-cta__title,
.about-cta__title,
.contact-button strong {
  font-family: var(--font-heading);
}


.philosophy-card h3 {
  font-weight: 800;
}

.station-intro__title,
.service-card__body h3,
.strength-card h3,
.flow-item h3,
.insurance-box h3,
.staff-card h3,
.info-card h2,
.info-card__title,
.access-block__title,
.flow-cta__title,
.about-cta__title,
.contact-button strong {
  font-weight: 700;
}

.about-card__title {
  font-weight: 800;
}

/* ==============================
  Menu Open Overlay
============================== */

body.is-menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  opacity: 0;
  animation: menu-overlay-blur 0.45s ease forwards;
}

@keyframes menu-overlay-blur {
  to {
    opacity: 1;
  }
}

.sp-menu,
.sp-menu__panel,
.sp-menu__panel * {
  filter: none !important;
}

.sp-menu__panel {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ==============================
  Mobile quality pass
  320px - 430px
============================== */

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  html {
    overflow-x: clip;
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
  }

  main {
    overflow-x: clip;
  }

  .site-header {
    border-radius: 0;
  }

  .site-header::before,
  .site-header.is-scrolled::before {
    border-radius: 0;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: var(--header-height);
    height: var(--header-height);
    padding: 0 12px 0 14px;
  }

  .site-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
  }

  .site-logo__image {
    width: clamp(138px, 43vw, 164px);
    max-width: 100%;
  }

  .menu-button {
    width: 84px;
    min-width: 84px;
    height: 44px;
    justify-content: flex-end;
    margin: 0 0 0 auto;
    padding: 0 2px 0 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    touch-action: manipulation;
  }

  .menu-button:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .menu-button__text {
    display: none;
  }

  .menu-button__lines,
  .menu-button__lines span {
    width: 28px;
  }

  .menu-button__lines {
    gap: 5px;
  }

  .menu-button__lines span {
    height: 3px;
  }

  .hero,
  .hero__bg,
  .hero__bg-image,
  .hero__overlay {
    border-radius: 0 0 18px 18px;
  }

  .hero__overlay {
    inset: auto 0 0;
    width: 100%;
    max-width: 100%;
    height: 38%;
    filter: none;
  }

  .hero {
    height: clamp(520px, 82svh, 660px);
  }

  .hero__inner {
    width: min(100% - 32px, var(--inner));
    padding: calc(var(--header-height) + 26px) 0 52px;
    align-items: center;
    justify-content: center;
  }

  .hero__content {
    width: 100%;
    transform: none;
  }

  .hero__brand-logo {
    width: min(58vw, 230px);
    margin-bottom: 16px;
  }

  .hero__label {
    margin: 10px 0 0;
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .hero__title {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero__title-image {
    width: min(92vw, 520px);
  }

  .hero-bridge {
    padding: clamp(56px, 12vw, 88px) 20px 0;
  }

  .hero-bridge__text {
    font-size: clamp(17px, 4.6vw, 22px);
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .hero-bridge__line {
    max-width: 18em;
    margin-inline: auto;
  }

  .hero__bg-image--sp {
    object-position: 60% center;
  }

  .section,
  .flow-page-section,
  .about-page-section,
  .service-page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-page > .about-page-section:first-child,
  .service-page > .service-page-section:first-child,
  .flow-page > .flow-page-section:first-child,
  .office-page > .office-info-section:first-child,
  .staff-page > .staff-page-section:first-child,
  .contact-page > .contact-form-section:first-child,
  .privacy-page > .privacy-content-section:first-child {
    padding-top: calc(var(--header-height) + 28px);
  }

  .section__inner,
  .flow-page-section__inner,
  .about-page-section__inner,
  .service-page-section__inner,
  .staff-page-section__inner,
  .office-info-section__inner,
  .contact-form-section__inner,
  .privacy-content-section__inner {
    width: min(100% - 32px, var(--inner));
  }

  .section__head,
  .staff-page .section__head {
    margin-bottom: 30px;
  }

  .section__label,
  .station-intro__label,
  .flow-cta__label {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.11em;
  }

  .section__title,
  .station-intro__title,
  .about-message .section__title,
  .staff-page-message .section__title {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.45;
    letter-spacing: 0.025em;
    overflow-wrap: anywhere;
  }

  .section__lead,
  .about-page .section__head > .section__lead,
  .flow-page .section__head > .section__lead,
  .service-page .section__head > .section__lead,
  .access__head .section__lead {
    margin-top: 10px;
    font-size: clamp(14px, 4vw, 15px);
    line-height: 1.85;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .button,
  .subpage-next-button,
  .learn-more,
  .learn-more--wide {
    min-height: 46px;
    touch-action: manipulation;
  }

  .learn-more,
  .learn-more--wide {
    width: min(100%, 14rem);
  }

  .learn-more .circle {
    width: 46px;
    height: 46px;
  }

  .station-intro {
    padding-top: 56px;
  }

  .station-philosophy-bridge__watermark-slot {
    display: block;
  }

  .station-philosophy-bridge__watermark {
    top: 18px;
    right: auto;
    left: calc(50% + 20px);
    width: clamp(140px, 40vw, 180px);
    transform: translate(-50%, -50%);
  }

  .station-intro__grid {
    gap: 28px;
  }

  .station-intro__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 0 36px 0 0;
  }

  .station-intro__image img {
    object-position: center 34%;
  }

  .station-intro__content {
    padding-top: 0;
  }

  .station-intro__title-line {
    display: inline;
    white-space: normal;
  }

  .station-intro__text p {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .philosophy-list,
  .service-grid,
  .staff-page .staff-grid {
    gap: 16px;
  }

  .philosophy-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .philosophy-card h3 {
    min-height: 0 !important;
    font-size: 18px;
  }

  .philosophy-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .philosophy-expand-layer {
    padding: 12px 0;
  }

  .philosophy-expand-layer__card {
    border-radius: 20px;
  }

  .philosophy-detail-card,
  .philosophy-detail-card__items section {
    padding: 20px 18px;
  }

  .philosophy-detail-card h4 {
    margin-right: 48px;
    padding-right: 40px;
    font-size: 21px;
  }

  .philosophy-expand-layer__close {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
  }

  .philosophy-expand-layer__close span[aria-hidden="true"] {
    font-size: 26px;
  }

  .philosophy-detail-card__items h5 {
    font-size: 16px;
    line-height: 1.65;
  }

  .philosophy-detail-card__items p {
    font-size: 14px;
    line-height: 1.85;
  }

  .service-card {
    gap: 16px;
    padding: 20px;
  }

  .service-page .service-card {
    gap: 0;
    padding: 0;
  }

  .service-card__image {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .service-card__body h3 {
    font-size: 18px;
  }

  .service-card__body p {
    font-size: 14px;
    line-height: 1.85;
  }

  .service-page-section__subtitle {
    gap: 10px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
  }

  .service-detail,
  .support-detail {
    margin-top: 40px;
  }

  .service-detail-card,
  .support-detail-card {
    padding: 22px 18px;
  }

  .service-detail-card h3,
  .support-detail-card h3 {
    font-size: 20px;
  }

  .service-detail-card li,
  .support-detail-card li {
    padding-right: 10px;
    font-size: 14px;
  }

  .strength-list {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .strength-item {
    width: min(100%, 288px);
    max-width: 288px;
    padding: 30px;
  }

  .strength-item h3 {
    font-size: 17px;
  }

  .strength-item p {
    font-size: 13px;
    line-height: 1.72;
  }

  .flow-page-list {
    margin-top: 30px;
  }

  .flow-steps {
    gap: 18px;
  }

  .flow-step-card {
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-areas:
      "step icon"
      "title title"
      "text text";
    gap: 12px 16px;
    padding: 22px 20px;
  }

  .flow-step-card__bg-num {
    top: 24px;
    right: 76px;
    font-size: 36px;
    transform: none;
  }

  .flow-step-card__label,
  .flow-step-card__icon {
    grid-row: auto;
    align-self: center;
  }

  .flow-step-card__icon {
    justify-self: end;
  }

  .flow-step-card__title {
    padding-right: 0;
    font-size: 16px;
  }

  .flow-step-card__text {
    padding-right: 0;
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-page-section .insurance-box__item,
  .flow-page-support,
  .about-message,
  .staff-page-message,
  .about-philosophy {
    padding: 24px 20px;
  }

  .flow-cta,
  .about-cta {
    padding: 56px 0 72px;
  }

  .flow-cta__inner,
  .about-cta__inner {
    width: min(100% - 32px, 920px);
    padding: 30px 20px;
    border-radius: 22px;
  }

  .flow-cta__title,
  .about-cta__title {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .flow-cta__text,
  .about-cta__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .about-page .about-grid {
    margin-top: 30px;
  }

  .about-page .about-card {
    padding: 22px 20px;
  }

  .about-card__label {
    gap: 8px 12px;
    margin-bottom: 14px;
  }

  .about-card__word {
    font-size: 28px;
  }

  .about-card__lang {
    font-size: 11.5px;
  }

  .about-card__title {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .about-card__text,
  .about-wellbeing-card__text p {
    font-size: 14px;
    line-height: 1.85;
  }

  .about-wellbeing-card {
    padding: 20px 18px;
  }

  .about-wellbeing-card__visual img {
    height: auto;
  }

  .about-strength-block {
    margin-top: 44px;
  }

  .staff-page-group {
    margin-top: 40px;
  }

  .staff-page-group__title {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .staff-page .staff-card {
    padding: 24px 20px;
  }

  .staff-page .staff-card__qual {
    height: auto;
    min-height: 52px;
    padding: 10px 12px;
  }

  .staff-page .staff-card__qual-text {
    height: auto;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .staff-page > .staff-page-section:first-child {
    padding-bottom: 72px;
  }

  .access {
    padding-bottom: 80px;
  }

  .access-grid {
    gap: 24px;
  }

  .access-map--illustration img {
    height: auto;
    object-fit: contain;
  }

  .access-block__body p,
  .access-block__list dd {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .office-info-section {
    padding-bottom: 72px;
  }

  .office-info-section .section__head {
    margin-bottom: 28px;
  }

  .office-info-table__row {
    padding: 18px 0;
  }

  .office-info-table dd,
  .office-info-table dd a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .office-info-table dd a,
  .privacy-policy__contact dd a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .office-map {
    margin-top: 36px;
  }

  .office-map iframe {
    height: 260px;
  }

  .contact-form-section,
  .privacy-content-section {
    padding-bottom: 72px;
  }

  .contact-form-section__notice {
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.75;
  }

  .form-row {
    gap: 12px;
    padding: 20px 0;
  }

  .form-row__label {
    gap: 8px;
  }

  .form-row__label label,
  .form-row__label span.label-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .form-row__field input[type="text"],
  .form-row__field input[type="email"],
  .form-row__field input[type="tel"],
  .form-row__field textarea {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .choice-item,
  .privacy-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 44px;
    padding-block: 8px;
    align-items: start;
  }

  .choice-item input[type="radio"],
  .privacy-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 4px 0 0;
  }

  .privacy-check a {
    display: inline;
    min-height: 0;
  }

  .choice-item span,
  .privacy-check span,
  .notice-box__body {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .notice-box__body {
    padding: 14px;
  }

  .notice-box__body br {
    display: none;
  }

  .privacy-policy__intro p,
  .privacy-policy__section p,
  .privacy-policy__list li,
  .privacy-policy__contact dd {
    font-size: 14px;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .privacy-policy__section {
    padding-top: 26px;
  }

  .sp-menu {
    background: rgba(74, 74, 74, 0.26);
    transition-duration: 0.35s;
  }

  .sp-menu__panel {
    width: 50vw;
    min-width: 0;
    min-height: 100svh;
    max-height: 100svh;
    padding: max(12px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
    border-radius: 0 0 0 24px;
    transition-duration: 0.46s;
    overscroll-behavior: contain;
  }

  .sp-menu__head {
    position: relative;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    margin-bottom: 12px;
  }

  .sp-menu__logo img {
    width: 96px;
  }

  .sp-menu__logo,
  .sp-menu__phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .sp-menu__phone {
    justify-content: center;
  }

  .sp-menu__close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    margin-left: auto;
    padding: 0;
    gap: 0;
    transform: none;
  }

  .sp-menu__close > span {
    display: none;
  }

  .sp-menu__close i {
    width: 18px;
    height: 18px;
    margin-left: 0;
  }

  .sp-menu__close i::before,
  .sp-menu__close i::after {
    width: 18px;
  }

  .sp-menu__body {
    gap: 12px;
  }

  .sp-menu__nav ul {
    gap: 0;
  }

  .sp-menu__nav a {
    display: flex;
    min-height: 44px;
    padding: 6px 2px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .sp-menu__contact-button {
    min-height: 48px;
    margin-top: 14px;
  }

  .sp-menu__side {
    gap: 8px;
    max-width: none;
  }

  .sp-menu__card {
    padding: 12px 8px;
  }

  .sp-menu__card-title {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.5;
  }

  .sp-menu__phone {
    font-size: 19px;
  }

  .sp-menu__card-note {
    margin-top: 4px;
    font-size: 10.5px;
    line-height: 1.5;
  }

  .sp-menu__sns-list a {
    min-height: 44px;
  }

  .site-footer {
    padding-top: 48px;
    border-radius: 36px 36px 0 0;
  }

  .site-footer__inner {
    gap: 24px;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
  }

  .footer-brand,
  .footer-info,
  .footer-station-name,
  .footer-area,
  .footer-center,
  .footer-nav,
  .footer-nav ul,
  .footer-card--tel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-info p,
  .footer-area,
  .footer-station-name,
  .footer-card__note {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-logo {
    height: 112px;
  }

  .footer-info {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-station-name {
    font-size: 17px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .footer-nav ul {
    gap: 0;
    padding: 0;
    border-top: none;
  }

  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    white-space: normal;
  }

  .footer-card--tel {
    padding: 22px 16px;
  }

  .footer-card--tel .footer-card__title {
    font-size: 17px;
  }

  .footer-card--tel .footer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: clamp(25px, 8vw, 32px);
  }

  .footer-card__note {
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  }

  .footer-bottom p {
    font-size: 10.5px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    padding-inline: 10px;
  }

  .site-logo__image {
    width: 132px;
  }

  .site-logo__image[src$="logo-icon2.png"] {
    width: 44px;
  }

  .menu-button {
    width: 78px;
    min-width: 78px;
    padding-inline: 10px;
  }

  .hero {
    min-height: 540px;
  }

  .hero__title-image {
    width: min(94vw, 420px);
  }

  .hero__brand-logo {
    width: min(58vw, 200px);
  }

  .section__inner,
  .flow-page-section__inner,
  .about-page-section__inner,
  .service-page-section__inner,
  .staff-page-section__inner,
  .office-info-section__inner,
  .contact-form-section__inner,
  .privacy-content-section__inner {
    width: min(100% - 24px, var(--inner));
  }

  .strength-item {
    width: min(100%, 272px);
    max-width: 272px;
    padding: 28px;
  }

  .footer-nav {
    gap: 0 10px;
  }
}

@media (max-width: 720px) {
  .service-page .service-page-section--support {
    padding-top: 52px;
  }

  .service-page .service-page-section--dx {
    padding-top: 56px;
    padding-bottom: 70px;
  }

  .dx-notice-card {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .dx-notice-card__list > li {
    border-radius: 0 14px 14px 0;
    padding: 16px 14px;
  }

  .service-page .private-service.service-page-section--private {
    padding-top: 70px;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  .sp-menu__nav li,
  .sp-menu__side,
  .sp-menu__close {
    transition-duration: 0.38s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strength-item {
    cursor: default;
    will-change: auto;
  }

  .sp-menu,
  .sp-menu__panel,
  .sp-menu__nav li,
  .sp-menu__side,
  body.is-menu-open::after {
    transition: none !important;
    animation: none !important;
  }

  .sp-menu.is-open .sp-menu__nav li,
  .sp-menu.is-open .sp-menu__side {
    opacity: 1 !important;
    transform: none !important;
  }

  body.is-menu-open::after {
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__scroll::after {
    animation: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  a:hover,
  button:hover,
  .service-card:hover,
  .contact-button:hover,
  .learn-more:hover .circle {
    transform: none;
  }
}

/* HERO copy: center the text over the visible PC hero image. */
@media (min-width: 721px) {
  .hero__inner {
    width: 100%;
    padding: 0;
  }

  .hero__content {
    position: absolute;
    top: calc(
      var(--header-height) +
      clamp(0px, calc(46.875vw - 450px), 150px)
    );
    left: clamp(30px, 9vw, 175px);
    align-items: flex-start;
    width: min(100% - clamp(60px, 18vw, 350px), 1000px);
    max-width: 1000px;
    text-align: left;
    transform: none;
  }

  .hero__brand-logo {
    position: static;
    width: clamp(224px, 14vw, 244px);
    margin: 0 0 72px;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(40px, 2.2vw, 42px);
    line-height: 1.5;
    white-space: nowrap;
  }

  .hero__title-line {
    white-space: nowrap;
  }

  .hero__text {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    margin-top: 18px;
    font-size: clamp(17px, 1.2vw, 18px);
    line-height: 1.85;
    text-align: left;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .hero__title {
    font-size: clamp(34px, 3.7vw, 40px);
  }

  .hero__text {
    font-size: clamp(14px, 1.65vw, 16px);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 560px;
    height: max(560px, 100svh);
  }

  .hero__bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.48) 0%,
        rgba(255, 255, 255, 0.12) 48%,
        rgba(255, 255, 255, 0.04) 72%,
        rgba(255, 255, 255, 0.26) 100%
      );
  }

  .hero__overlay {
    inset: 0;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 58%,
      rgba(68, 57, 47, 0.08) 100%
    );
  }

  .hero__inner {
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 32px);
    min-height: 100%;
    height: 100%;
    padding: 0;
  }

  .hero__content {
    align-items: flex-start;
    width: min(72vw, 270px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero__brand-logo {
    position: absolute;
    top: calc(var(--header-height) + 16px);
    left: 0;
    z-index: 2;
    width: min(29vw, 108px);
    margin: 0;
  }

  .hero__title {
    max-width: none;
    margin: 0;
    font-size: clamp(21.5px, 6.8vw, 27px);
    line-height: 1.48;
    letter-spacing: 0.035em;
    color: #514a44;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
    white-space: normal;
  }

  .hero__title-line {
    display: block;
    white-space: nowrap;
  }

  .hero__text {
    max-width: none;
    margin: 14px 0 0;
    font-size: clamp(12.5px, 3.55vw, 14px);
    font-weight: 800;
    line-height: 1.9;
    color: #5f574f;
    text-align: left;
    white-space: normal;
  }

  .hero__text--desktop {
    display: none;
  }

  .hero-bridge--mobile {
    display: block;
  }
}

/* ==============================
  Subpage footer spacing
============================== */

/*
 * Match the visual content-to-footer spacing of the home page's access section
 * without changing any subpage section's own padding.
 */
.about-page {
  padding-bottom: calc(
    clamp(140px, 11vw, 156px) - clamp(40px, 5vw, 56px) - 2px
  );
}

.service-page {
  padding-bottom: calc(clamp(140px, 11vw, 156px) - 96px);
}

.flow-page,
.staff-page,
.contact-page,
.privacy-page {
  padding-bottom: calc(clamp(140px, 11vw, 156px) - 110px);
}

.office-page {
  padding-bottom: calc(clamp(140px, 11vw, 156px) - 108px);
}

@media (max-width: 720px) {
  .about-page {
    padding-bottom: 18px;
  }

  .service-page {
    padding-bottom: 8px;
  }

  .flow-page {
    padding-bottom: 26px;
  }

  .office-page {
    padding-bottom: 16px;
  }

  .staff-page {
    padding-bottom: 18px;
  }

  .contact-page {
    padding-bottom: 18px;
  }

  .privacy-page {
    padding-bottom: 16px;
  }
}

/* ==============================
  Mobile footer layout
============================== */

@media (max-width: 960px) {
  .sp-menu__panel {
    width: min(64vw, 520px);
    background:
      radial-gradient(
        circle at 16% 18%,
        rgba(255, 255, 255, 0.06),
        transparent 32%
      ),
      #9f865f;
    color: #ffffff;
  }

  .sp-menu__logo img {
    filter: none !important;
  }

  .sp-menu__nav a {
    color: #ffffff;
  }

  .sp-menu__phone {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    font-size: clamp(21px, 5.6vw, 26px);
    letter-spacing: 0.01em;
  }

  .sp-menu__close,
  .sp-menu__contact-button,
  .sp-menu__card {
    background: #f5efe4;
  }
}

@media (max-width: 720px) {
  .sp-menu__panel {
    width: min(64vw, 420px);
    background:
      radial-gradient(
        circle at 16% 18%,
        rgba(255, 255, 255, 0.06),
        transparent 32%
      ),
      #9f865f;
    color: #ffffff;
  }

  .sp-menu__logo img {
    filter: none !important;
  }

  .sp-menu__nav a {
    color: #ffffff;
  }

  .sp-menu__close,
  .sp-menu__contact-button,
  .sp-menu__card {
    background: #f5efe4;
  }

  .site-footer {
    padding-top: 72px;
    border-radius: 40px 40px 0 0;
    background:
      radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 32%),
      #9f865f;
  }

  .site-footer::before {
    background:
      radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 32%),
      radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.05), transparent 30%);
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(calc(100% - 32px), 560px);
    max-width: none;
    padding-inline: 0;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
  }

  .footer-logo {
    align-self: center;
    width: clamp(128px, 38vw, 168px);
    min-width: 0;
    height: auto;
  }

  .footer-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .footer-info {
    width: 100%;
    font-size: clamp(13px, 3.7vw, 15px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.035em;
  }

  .footer-station-name {
    margin-bottom: 22px;
    font-size: clamp(19px, 5.2vw, 23px);
    line-height: 1.6;
    text-align: center;
  }

  .footer-info p + p {
    margin-top: 10px;
  }

  .footer-area {
    line-height: 1.9;
  }

  .footer-center {
    display: block;
    width: 100%;
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 clamp(20px, 8vw, 52px);
    width: 100%;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  }

  .footer-nav ul {
    display: grid;
    align-content: start;
    gap: 20px;
    width: 100%;
  }

  .footer-nav li {
    width: 100%;
  }

  .footer-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    color: #ffffff;
    font-size: clamp(13px, 3.75vw, 15px);
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
  }

  .footer-card--tel {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-top: 42px;
    padding: 28px 18px 26px;
    border-radius: 12px;
    background: #faf8f4;
    box-shadow: none;
  }

  .footer-card--tel .footer-card__title {
    margin-bottom: 14px;
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.5;
  }

  .footer-card--tel .footer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    font-size: clamp(29px, 9vw, 40px);
    line-height: 1.1;
  }

  .footer-card__note {
    margin-top: 12px;
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.7;
  }

  .footer-bottom {
    margin-top: 34px;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.09);
  }
}

@media (max-width: 359px) {
  .footer-nav {
    gap: 0 14px;
  }
}

/* ==============================
  Mobile phone CTA
============================== */

.phoneBtn {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  padding: 0;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  color: white;
  text-decoration: none;
  background-color: #d8c7a3;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    width 0.3s,
    border-radius 0.3s,
    transform 0.35s ease,
    opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.phoneBtn.is-ready {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phoneSign {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  transition: width 0.3s, padding-left 0.3s;
}

.phoneSign svg {
  width: 25px;
  height: 25px;
}

.phoneText {
  position: absolute;
  right: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  transition: width 0.3s, opacity 0.3s, padding-right 0.3s;
}

.phoneBtn:hover,
.phoneBtn.is-expanded {
  width: 230px;
  border-radius: 40px;
}

.phoneBtn:hover .phoneSign,
.phoneBtn.is-expanded .phoneSign {
  width: 25%;
  padding-left: 10px;
}

.phoneBtn:hover .phoneText,
.phoneBtn.is-expanded .phoneText {
  width: 75%;
  padding-right: 10px;
  opacity: 1;
}

.phoneBtn:active {
  transform: translate(2px, 2px);
}

.phoneBtn:focus-visible {
  outline: 3px solid rgba(159, 134, 95, 0.35);
  outline-offset: 3px;
}

body.is-menu-open .phoneBtn {
  opacity: 0;
  pointer-events: none;
}

body.is-loading .phoneBtn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.phoneBtn.is-footer-visible {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

@media (min-width: 721px) {
  .phoneBtn {
    display: none;
  }
}

/* Keep desktop copy within its container instead of forcing overflow-prone lines. */
@media (min-width: 721px) {
  .section__head {
    width: 100%;
    max-width: 100%;
  }

  .section__lead,
  .staff-page-message__subtitle {
    max-width: min(100%, 960px);
    white-space: normal;
    text-wrap: pretty;
  }

  .section__head--center .section__lead,
  .about-strength-block .section__lead {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phoneBtn,
  .phoneSign,
  .phoneText {
    transition: none !important;
  }
}
