/* ===========================================================
   Loading Screen
   =========================================================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy, #1a2f52);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__text {
  font-family: var(--font-display-en, "Cormorant Garamond", serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: baseline;
}
.loading__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: loadChar 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.07s + 0.2s);
}
.loading__space {
  width: 0.35em;
}
@keyframes loadChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  color-scheme: light;  /* OSダークモードによる自動フィルター防止 */
  --color-surface: #f7f9ff;
  --color-on-surface: #181c20;
  --color-on-surface-variant: #44474d;
  --color-surface-container: #ebeef4;
  --color-surface-container-low: #f1f4fa;
  --color-surface-container-high: #e5e8ee;
  --color-primary-container: #0d1b33;
  --color-on-primary: #ffffff;
  --color-secondary: #775a19;
  --color-on-secondary: #ffffff;
  --color-on-secondary-fixed: #261900;
  --color-secondary-fixed-dim: #e9c176;
  --color-primary-fixed: #d7e2ff;
  --color-outline-variant: #c5c6ce;
  --font-headline: "Shippori Mincho B1", "Noto Serif JP", serif;
  --font-body: "Archivo", "Manrope", sans-serif;
  --shadow-editorial: 0 40px 60px -20px rgba(24, 28, 32, 0.06);
  --bp-md: 768px;

  /* New editorial-luxury tokens */
  --ink: #0a0d14;
  --ink-deep: #05070c;
  --bone: #f2ebe0;
  --bone-dim: #c9c2b6;
  --brass: #c9c2b6;
  --brass-bright: #f2ebe0;
  --navy: #1a2f52;
  --navy-bright: #3d5a8c;
  --smoke: #3a3d44;
  --line: rgba(242, 235, 224, 0.14);
  --line-strong: rgba(242, 235, 224, 0.32);
  --font-display-en: "Fraunces", "Times New Roman", serif;
  --font-display-jp: "Shippori Mincho B1", "Noto Serif JP", serif;
  --font-sans: "Archivo", "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bone);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
}

::selection {
  background: var(--bone-dim);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 200,
    "GRAD" 0,
    "opsz" 24;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.75rem;
}
@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 4.5rem; }
}
.container--xl {
  max-width: 1280px;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
  /* 透明領域はクリックを下のコンテンツへ通す。
     実コンテンツ（.site-nav__brand / .site-nav__actions）側で pointer-events を再有効化する。 */
  pointer-events: none;
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.7) 0%, rgba(5, 7, 12, 0.15) 80%, transparent 100%);
  pointer-events: none;
}

.site-nav__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.6rem 1.75rem;
  /* 余白部分は透過（クリックを下に通す）。子要素で個別に pointer-events:auto。 */
  pointer-events: none;
}
.site-nav__brand,
.site-nav__actions {
  pointer-events: auto;
}
@media (min-width: 768px) {
  .site-nav__inner { padding: 1.8rem 3rem; }
}
@media (min-width: 1024px) {
  .site-nav__inner { padding: 2rem 4.5rem; }
}

.site-nav__brand {
  font-family: var(--font-display-en);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  color: var(--bone);
  text-transform: uppercase;
}
.site-nav__brand::first-letter {
  color: var(--navy-bright);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.btn--secondary {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
  padding: 0.7rem 1.6rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone-dim);
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
}
.btn--secondary > * { position: relative; z-index: 1; }
.btn--secondary:hover {
  color: var(--ink);
  border-color: var(--navy);
}
.btn--secondary:hover::before {
  transform: translateX(0);
}

/* ---------- Hero ---------- */
/* ===========================================================
   HERO — editorial luxury, dark ink, brass accent
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-sans);
}
@media (max-width: 768px) {
  .hero {
    min-height: 36vh;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-bg-drift 24s ease-in-out infinite alternate;
}

@keyframes hero-bg-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.2%, -1.2%, 0);
  }
}

/* Warm brass glow from bottom-right */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 20, 35, 0.35) 0%, rgba(10, 20, 35, 0.08) 30%, rgba(10, 20, 35, 0.08) 70%, rgba(10, 20, 35, 0.42) 100%);
  pointer-events: none;
}

/* Fine grain overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
}

.hero__content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  padding: 7rem 1.75rem 5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 3rem;
  max-width: 1480px;
  margin: 0 auto;
}

/* Top meta bar */
.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0;
  animation: hero-reveal 1s 0.1s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}
.hero__topbar span + span::before {
  content: "／";
  margin: 0 0.65em;
  color: var(--navy);
  opacity: 0.7;
}
.hero__topbar-num {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--navy-bright);
}

/* Main display block */
.hero__main {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 2.75rem;
}

.hero__eyebrow {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--navy-bright);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: hero-reveal 1.1s 0.35s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}
.hero__eyebrow::before {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: var(--bone-dim);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display-jp);
  font-weight: 800;
  font-size: clamp(3.4rem, 9.4vw, 9.5rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(5, 7, 12, 0.55), 0 1px 3px rgba(5, 7, 12, 0.35);
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-rise 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero__title-line:nth-child(1) .hero__title-line-inner {
  animation-delay: 0.45s;
}
.hero__title-line:nth-child(2) .hero__title-line-inner {
  animation-delay: 0.6s;
  padding-left: 1.2em;
}
.hero__title-accent {
  color: var(--navy-bright);
  font-style: normal;
  font-family: var(--font-display-en);
  font-weight: 400;
  font-size: 0.78em;
  vertical-align: 0.08em;
  margin-left: 0.1em;
}

.hero__rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0;
  animation: hero-reveal 1.2s 0.85s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}
.hero__rule::before,
.hero__rule::after {
  content: "";
  height: 1px;
  background: var(--line-strong);
}
.hero__rule span em {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--navy-bright);
  margin: 0 0.25em;
}

/* Bottom row: scroll + side quote */
.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  opacity: 0;
  animation: hero-reveal 1.2s 1.1s cubic-bezier(0.2, 0.7, 0.1, 1) forwards;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero__scroll-line {
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--bone-dim) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateX(-100%);
  animation: hero-scroll-pulse 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes hero-scroll-pulse {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.hero__aside {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  line-height: 1.6;
  border-left: 1px solid var(--line);
  padding: 0.85rem 0 0.85rem 0.85rem;
}
.hero__aside b {
  color: var(--navy-bright);
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-display-jp);
}

@keyframes hero-reveal {
  to { opacity: 1; }
}
@keyframes hero-rise {
  to { transform: translateY(0); }
}

@media (min-width: 768px) {
  .hero__content {
    padding: 8rem 3rem 4rem;
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 8rem 4.5rem 4.5rem;
  }
}


/* ===========================================================
   SECTION PRIMITIVES — shared editorial section system
   =========================================================== */
.section--ink {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  isolation: isolate;
}
.section--ink::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 0;
}
.section--ink > * { position: relative; z-index: 1; }

.section--bone {
  background: var(--bone);
  color: var(--ink);
  position: relative;
}

.eyebrow {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

/* ===========================================================
   PHILOSOPHY — N°02, fullscreen parallax statement
   =========================================================== */
.philosophy-parallax {
  position: relative;
  min-height: clamp(520px, 80vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.philosophy-parallax__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.philosophy-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 13, 20, 0.72) 0%,
    rgba(10, 13, 20, 0.45) 100%
  );
}
.philosophy-parallax__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 8rem) clamp(1.5rem, 5vw, 4rem);
}
.philosophy-parallax__inner .section-num {
  margin-bottom: -1rem;
}
.philosophy-parallax__headline {
  font-family: var(--font-display-jp);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 2rem;
}
.philosophy-parallax__lead {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  max-width: 36ch;
  margin-bottom: 3rem;
}
.philosophy-parallax__statement {
  position: relative;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: clamp(1.25rem, 2vw, 2rem);
}
.philosophy-parallax__statement-mark {
  position: absolute;
  top: -1.8rem;
  left: -0.4rem;
  font-family: var(--font-display-en);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
}
.philosophy-parallax__statement p {
  font-family: var(--font-display-jp);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
}

/* ===========================================================
   METHOD — N°03, ink, 4 numbered steps
   =========================================================== */
.method {
  padding: 2rem 0 2rem;
  background: var(--ink);
  color: var(--bone);
  position: relative;
}
.method__header {
  max-width: 1480px;
  margin: 0 auto 5rem;
  padding: 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) { .method__header { padding: 0 3rem; } }
@media (min-width: 1024px) { .method__header { padding: 0 4.5rem; } }

.method__eyebrow {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.method__eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: var(--bone-dim);
}
.method__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0;
  line-height: 1;
}

.method__grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) { .method__grid { padding: 0 3rem; } }
@media (min-width: 1024px) {
  .method__grid {
    padding: 0 4.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.method__step {
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: background 0.6s ease;
  overflow: hidden;
}
.method__step:last-child { border-bottom: none; }
@media (min-width: 1024px) {
  .method__step {
    padding: 3.5rem 2rem;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .method__step:last-child { border-right: none; padding-right: 0; }
  .method__step:first-child { padding-left: 0; }
}
.method__step:hover { background: rgba(201, 194, 182, 0.03); }

.method__step-icon {
  display: block;
  font-size: 2.75rem !important;
  color: var(--navy-bright);
  opacity: 0.45;
  font-variation-settings: "FILL" 0, "wght" 200, "opsz" 48;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.method__number {
  position: absolute;
  top: 0.5rem;
  right: 0;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem);
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 640px) {
  .method__number { font-size: clamp(5rem, 18vw, 8rem); }
}

.method__step-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.method__icon {
  color: var(--navy);
  font-size: 1.75rem !important;
  font-variation-settings: "FILL" 0, "wght" 200, "opsz" 24;
}
.method__step-title {
  font-family: var(--font-display-en);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--bone);
}
.method__step-text {
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--bone-dim);
  max-width: 28ch;
}

/* ===========================================================
   EXPERIENCE — N°04, bone, roman numerals
   =========================================================== */
.experience {
  padding: 9rem 0 10rem;
  background: var(--bone);
  color: var(--ink);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .experience__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }
}
.experience__text-col { order: 2; }
.experience__img-col { order: 1; position: relative; }
@media (min-width: 900px) {
  .experience__text-col { order: 1; padding-top: 2rem; }
  .experience__img-col { order: 2; }
}

.experience__items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-top: 1px solid rgba(10, 13, 20, 0.16);
  padding-top: 3rem;
}
.experience__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(10, 13, 20, 0.12);
}
.experience__item:last-child { border-bottom: none; padding-bottom: 0; }
.experience__num {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--navy);
}
.experience__item-title {
  font-family: var(--font-display-en);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.experience__item-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(10, 13, 20, 0.72);
  max-width: 36ch;
}

.experience__img-col img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.02);
  display: block;
  margin: 0 auto;
}
.experience__quote {
  margin-top: -3rem;
  margin-left: 2rem;
  background: var(--ink);
  color: var(--bone);
  padding: 2.25rem 2rem 2.25rem 3.5rem;
  max-width: 26rem;
  position: relative;
}
.experience__quote::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-family: var(--font-display-en);
  font-size: 4rem;
  color: var(--navy);
  line-height: 1;
}
.experience__quote p {
  font-family: var(--font-display-jp);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ===========================================================
   EXPERTS — N°05, ink, editorial portraits
   =========================================================== */
.experts {
  padding: 5rem 0 6rem;
  background: var(--ink);
  color: var(--bone);
}
.experts__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.experts__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.01em;
  color: var(--bone);
  line-height: 1;
  margin: 0;
}
.experts__lead {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--bone-dim);
  max-width: 48ch;
}

.experts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .experts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.expert {
  display: grid;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.expert__img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #15181f;
}
.expert__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 7, 12, 0.55) 100%);
  pointer-events: none;
}
.expert__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.05) brightness(0.95);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.expert:hover .expert__img-wrap img { transform: scale(1.04); }

.expert__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.expert__role {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
}
.expert__name {
  font-family: var(--font-display-en);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--bone);
  line-height: 1.1;
}
.expert__desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--bone-dim);
  max-width: 42ch;
}
.expert__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.tag {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line-strong);
  padding: 0.4rem 0.85rem;
}

/* ===========================================================
   TRIAL — N°06, bone, brass glowing card
   =========================================================== */
.trial {
  padding: 5rem 0 6rem;
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.trial__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60rem;
  height: 60rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 194, 182, 0.15) 0%, rgba(201, 194, 182, 0.04) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.trial__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.trial__eyebrow {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.trial__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0.5rem 0 3rem;
}
.trial__card {
  background: var(--ink);
  color: var(--bone);
  padding: 4rem 3rem;
  max-width: 38rem;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--bone-dim);
  box-shadow: 0 60px 90px -40px rgba(201, 194, 182, 0.24);
}
.trial__card::before,
.trial__card::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--bone-dim);
}
.trial__card::before { top: -0.5rem; left: -0.5rem; border-right: none; border-bottom: none; }
.trial__card::after { bottom: -0.5rem; right: -0.5rem; border-left: none; border-top: none; }

.trial__price {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--bone);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trial__price span {
  font-size: 0.28em;
  letter-spacing: 0.22em;
  color: var(--navy-bright);
  font-style: italic;
  margin-left: 0.4em;
}
.trial__lead {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy-bright);
  font-weight: 500;
  margin-bottom: 1rem;
}
.trial__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 22rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.trial__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display-jp);
  font-size: 0.94rem;
  color: var(--bone);
  font-weight: 400;
}
.trial__list .material-symbols-outlined {
  color: var(--navy);
  font-size: 1.2rem !important;
}
.trial__cta {
  margin-top: 1.5rem;
  background: var(--bone-dim);
  color: var(--ink);
  border: 1px solid var(--bone-dim);
  padding: 1.1rem 3rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
}
.trial__cta:hover {
  background: transparent;
  color: var(--navy-bright);
}

/* ===========================================================
   VOICE — N°07, ink, editorial quotes
   =========================================================== */
.voice {
  padding: 5rem 0 6rem;
  background: var(--ink);
  color: var(--bone);
}
.voice__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.voice__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--bone);
  letter-spacing: 0.01em;
  line-height: 1;
}
.voice__subtitle {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--navy);
}

.voice__carousel { position: relative; }
.voice__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .voice__grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
/* Mobile carousel */
@media (max-width: 767px) {
  .voice__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .voice__grid::-webkit-scrollbar { display: none; }
  .voice-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
.voice__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .voice__nav { display: flex; }
}
.voice__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(26,47,82,0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.voice__nav-btn:hover { background: rgba(26,47,82,0.06); border-color: rgba(26,47,82,0.4); }
.voice__dots {
  display: flex;
  gap: 0.5rem;
}
.voice__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.2;
  transition: opacity 0.3s;
  cursor: pointer;
}
.voice__dot.is-active { opacity: 0.8; }

.voice-item {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
/* テキスト掴み・HTML5ドラッグ・選択ハイライトを完全無効化
   （カード全体が指/マウスで動いてしまう問題への根本対策）
   既存のテーマCSSで user-select が auto に上書きされるケースがあるため !important で確実化 */
.voice-item,
.voice-item * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
}
.voice-item {
  -webkit-tap-highlight-color: transparent;
}
.voice-item img {
  pointer-events: none; /* 画像の右クリック・ドラッグ防止 */
}
.voice-item::before {
  content: none;
}
.voice-item__img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.voice-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
}
.voice-item__quote {
  font-family: var(--font-display-jp);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--bone);
}
.voice-item__meta {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* ===========================================================
   FAQ — N°08, bone, minimal accordions
   =========================================================== */
.faq {
  padding: 0 0 10rem;
  background: var(--bone);
  color: var(--ink);
}
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(10, 13, 20, 0.16);
}
.faq__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1;
}
.faq__header p {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--navy);
}

.faq__list { max-width: 58rem; }
.faq-item {
  border-bottom: 1px solid rgba(10, 13, 20, 0.14);
  padding: 1.75rem 0;
}
.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  gap: 2rem;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: var(--font-display-jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.faq-item__icon {
  color: var(--navy);
  font-size: 1.5rem !important;
  transition: transform 0.35s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item__body {
  padding-top: 1.25rem;
  max-width: 52rem;
  font-size: 0.92rem;
  line-height: 1.95;
  color: rgba(10, 13, 20, 0.72);
}

/* ===========================================================
   ACCESS — N°09, ink, editorial map + info
   =========================================================== */
.access {
  padding: 5rem 0 4rem;
  background: var(--ink);
  color: var(--bone);
}
.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .access__grid { grid-template-columns: minmax(220px, 360px) 1fr; gap: 2rem; }
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.access__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--bone);
  letter-spacing: 0.01em;
  line-height: 1;
}
.access__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.access__items > div {
  display: grid;
  gap: 0.6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.access__items > div:last-child { border-bottom: none; padding-bottom: 0; }
.access__label {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
}
.access__value {
  font-family: var(--font-display-jp);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bone);
}
.access__value--sm {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.access__sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.access__note-wrap {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.access__note {
  font-family: var(--font-display-jp);
  font-size: 0.94rem;
  line-height: 2;
  color: var(--bone-dim);
}
.access__map {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.access__map::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  pointer-events: none;
}
.access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.65) contrast(1.15);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--ink-deep);
  color: var(--bone-dim);
  padding: 3rem 1.75rem 5rem;
  position: relative;
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer__brand-col { max-width: 28rem; }
.site-footer__brand {
  font-family: var(--font-display-en);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.75rem;
}
.site-footer__tagline {
  font-family: var(--font-display-jp);
  font-size: 0.82rem;
  line-height: 1.95;
  color: var(--bone-dim);
  opacity: 0.6;
}
.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}
.site-footer__legal a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--bone-dim);
  opacity: 0.6;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.site-footer__legal a:hover { color: #ffffff; opacity: 1; }
.site-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  opacity: 0.4;
}

/* ===========================================================
   Legal Page
   =========================================================== */
.legal-page {
  padding: 6rem 1.5rem 4rem;
  background: #ffffff;
  color: var(--navy);
  min-height: 60vh;
}
.container--narrow { max-width: 720px; margin: 0 auto; }
.legal-page__title {
  font-family: var(--font-display-jp);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26,47,82,0.12);
}
.legal-page__content {
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(26,47,82,0.75);
}
.legal-page__content h2,
.legal-page__content h3 {
  font-family: var(--font-display-jp);
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.legal-page__content h2 { font-size: 1.15rem; }
.legal-page__content h3 { font-size: 1rem; }
.legal-page__content p { margin-bottom: 1.25rem; }
.legal-page__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.legal-page__content th,
.legal-page__content td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26,47,82,0.12);
  text-align: left;
  font-size: 0.88rem;
}
.legal-page__content th {
  background: rgba(26,47,82,0.04);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  width: 30%;
}
.legal-page__back {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,47,82,0.12);
}
.legal-page__back a {
  color: var(--navy-bright);
  font-size: 0.88rem;
  text-decoration: none;
}
.legal-page__back a:hover { text-decoration: underline; }

/* =========================================================
   404 Not Found
   ========================================================= */
.error-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(80px, 12vw, 160px) 1.5rem;
	background-color: var(--bone, #f4efe6);
	color: var(--ink, #181c20);
}
.error-404__inner {
	text-align: center;
}
.error-404__code {
	font-family: var(--font-display, var(--font-body));
	font-size: clamp(5rem, 16vw, 10rem);
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--navy, #0d1b33);
	margin: 0 0 1rem;
	opacity: 0.85;
}
.error-404__title {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 600;
	margin: 0 0 1.25rem;
	color: var(--navy, #0d1b33);
}
.error-404__lead {
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--color-on-surface-variant, #44474d);
	margin: 0 0 2rem;
}
.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}
.error-404__btn {
	display: inline-block;
	padding: 0.85rem 1.6rem;
	border-radius: 999px;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.error-404__btn--primary {
	background-color: var(--navy, #0d1b33);
	color: #fff;
}
.error-404__btn--primary:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}
.error-404__btn--secondary {
	background-color: transparent;
	color: var(--navy, #0d1b33);
	border: 1px solid var(--navy, #0d1b33);
}
.error-404__btn--secondary:hover {
	background-color: var(--navy, #0d1b33);
	color: #fff;
}

/* =========================================================
   Section: Results (Before / After)
   ========================================================= */
.results {
	position: relative;
	background-color: var(--ink);
	color: var(--bone);
	padding: clamp(60px, 8vw, 100px) 0;
	overflow: hidden;
}
.results::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(180deg, rgba(201, 194, 182, 0.03) 0%, transparent 40%),
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	pointer-events: none;
	z-index: 0;
}
.results > .container { position: relative; z-index: 1; }

.results__header {
	max-width: 820px;
	margin: 0 auto clamp(60px, 7vw, 96px);
	text-align: center;
}
.results__eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--navy-bright);
	margin-bottom: 22px;
}
.results__title {
	font-family: var(--font-display-jp);
	font-weight: 700;
	font-size: clamp(30px, 4.4vw, 54px);
	line-height: 1.35;
	letter-spacing: 0.02em;
	margin-bottom: 26px;
}
.results__title em {
	font-style: normal;
	font-family: var(--font-display-en);
	font-weight: 400;
	color: var(--navy-bright);
	font-size: 0.88em;
	letter-spacing: 0.01em;
	border-bottom: 1px solid rgba(201, 194, 182, 0.32);
	padding-bottom: 2px;
}
.results__lead {
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1.95;
	color: var(--bone-dim);
	max-width: 640px;
	margin: 0 auto;
}

.results__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 44px);
}
@media (max-width: 860px) {
	.results__grid { grid-template-columns: 1fr; }
}

.result-card {
	position: relative;
	background: linear-gradient(180deg, rgba(242, 235, 224, 0.03) 0%, rgba(242, 235, 224, 0.015) 100%);
	border: 1px solid var(--line);
	padding: clamp(26px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 28px;
	transition: border-color 0.4s ease, transform 0.4s ease;
}
.result-card:hover {
	border-color: var(--line-strong);
}
.result-card::before {
	content: none;
}

.result-card__head {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}
.result-card__num {
	font-family: var(--font-display-en);
	font-weight: 300;
	font-size: 34px;
	line-height: 1;
	color: var(--navy-bright);
	letter-spacing: 0.02em;
}
.result-card__label {
	display: block;
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--bone-dim);
	margin-bottom: 6px;
}
.result-card__jp {
	font-family: var(--font-display-jp);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.04em;
	color: var(--bone);
	margin: 0;
}

.result-card__compare {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 16px;
	align-items: start;
}

.result-card__figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.result-card__placeholder {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(242, 235, 224, 0.025) 0 10px,
			rgba(242, 235, 224, 0.05) 10px 20px
		);
	border: 1px dashed rgba(242, 235, 224, 0.22);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 12px;
}
.result-card__placeholder--after {
	border-color: rgba(201, 194, 182, 0.32);
	background:
		repeating-linear-gradient(
			135deg,
			rgba(201, 194, 182, 0.03) 0 10px,
			rgba(201, 194, 182, 0.06) 10px 20px
		);
}
.result-card__tag {
	font-family: var(--font-display-en);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--bone-dim);
	padding: 4px 10px;
	border: 1px solid var(--line-strong);
	background: rgba(5, 7, 12, 0.6);
}
.result-card__placeholder--after .result-card__tag {
	color: #fff;
	border-color: rgba(201, 194, 182, 0.35);
}
.result-card__caption {
	font-family: var(--font-sans);
	font-size: 12px;
	line-height: 1.75;
	color: var(--bone-dim);
}

.result-card__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: calc((100% * 4 / 3) / 2 - 18px);
	color: var(--navy-bright);
}
.result-card__arrow .material-symbols-outlined {
	font-size: 24px;
	font-variation-settings: "wght" 300;
}

.result-card__metric {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	margin-top: auto;
}
.result-card__metric-label {
	font-family: var(--font-sans);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--bone-dim);
}
.result-card__metric-value {
	font-family: var(--font-display-en);
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 0.02em;
	color: var(--navy-bright);
}

.results__disclaimer {
	margin-top: clamp(40px, 5vw, 64px);
	text-align: center;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--bone-dim);
	opacity: 0.7;
}


/* =========================================================
   Results cards: uniform 2-col grid, no hover effects
   ========================================================= */
@media (min-width: 861px) {
  .results__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(24px, 3vw, 40px) !important;
  }
  .result-card {
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile: Before/After side-by-side, no hover lift */
@media (max-width: 860px) {
  .result-card__compare {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
  }
  .result-card__figure {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
  }
  .result-card__placeholder {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    min-height: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .result-card__arrow { display: none !important; }
  .result-card,
  .result-card:hover {
    transform: none !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04) !important;
    transition: none !important;
  }
}

/* Results carousel — mobile horizontal scroll */
.results__nav { display: none; }
@media (max-width: 860px) {
  .results__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .results__grid::-webkit-scrollbar { display: none; }
  .result-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-right: 1rem;
  }
  .result-card:last-child { margin-right: 0; }
  .results__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
  }
}
.results__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26,47,82,0.2);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.results__nav-btn:hover {
  background: rgba(26,47,82,0.06);
}
.results__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.results__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.2s;
}
.results__dot.is-active {
  opacity: 0.8;
}

/* =========================================================
   Founder's Message (single-expert layout)
   ========================================================= */
.experts__grid--single {
  display: grid !important;
  grid-template-columns: 1fr !important;
  max-width: 960px;
  margin: 0 auto;
}
.expert--featured {
  display: grid !important;
  grid-template-columns: minmax(220px, 280px) 1fr !important;
  gap: 3rem !important;
  align-items: start;
}
.expert--featured .expert__img-wrap {
  aspect-ratio: 4 / 5 !important;
  width: 100% !important;
  max-width: 280px;
}
.expert--featured .expert__img-wrap img {
  filter: none !important;
}
.expert--featured:hover .expert__img-wrap img {
  transform: none !important;
}
.expert__message {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.expert__message p {
  font-size: 1rem;
  line-height: 1.95;
  color: #000;
  max-width: 56ch;
  margin: 0;
}
@media (max-width: 860px) {
  .expert--featured {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .expert--featured .expert__img-wrap {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ============================================
   Booking Section  ― モノクロ / 白背景 × 黒文字
   ============================================ */
.booking {
  /* 紺×白：サイトトンマナ準拠 */
  --bk-bg:         #ffffff;
  --bk-surface:    #ffffff;
  --bk-surface-2:  #f3f6fb;
  --bk-ink:        #0d1b33;  /* 本文・見出し：深い紺 */
  --bk-ink-dim:    #445c82;  /* セカンダリテキスト */
  --bk-ink-mute:   #8a9bb6;  /* 補助情報 */
  --bk-line:       #dbe3ef;  /* 罫線：淡い紺 */
  --bk-line-2:     #0d1b33;  /* 強調罫線 */
  --bk-accent:     #0d1b33;  /* アクセント：紺 */
  --bk-accent-ink: #ffffff;
  --font-display-en: "Fraunces", "Times New Roman", serif;
  --font-display-jp: "Shippori Mincho B1", "Noto Serif JP", serif;
  --font-sans:     "Archivo", "Manrope", sans-serif;

  padding: 7rem 0 7rem;
  background: var(--bk-bg);
  color: var(--bk-ink);
  position: relative;
  overflow: hidden;
}

.booking__bg {
  display: none;
}

.booking__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.booking__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.booking__eyebrow {
  font-family: var(--font-display-en) !important;
  font-style: italic !important;
  font-weight: 300;
  font-size: 1rem;
  color: var(--bk-ink-dim) !important;
  letter-spacing: 0.06em;
}

.booking__title {
  font-family: var(--font-display-jp) !important;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bk-ink) !important;
  letter-spacing: 0.12em;
  line-height: 1;
}

.booking__lead {
  font-family: var(--font-sans) !important;
  font-size: 0.9375rem;
  color: var(--bk-ink-dim) !important;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

/* 店舗切替タブ */
.booking__shops {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--bk-line-2);
  background: var(--bk-surface);
}
.booking__shop-tab {
  appearance: none;
  background: var(--bk-surface);
  color: var(--bk-ink);
  border: none;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-display-jp);
  font-size: 0.9375rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.booking__shop-tab + .booking__shop-tab {
  border-left: 1px solid var(--bk-line-2);
}
.booking__shop-tab:hover {
  background: var(--bk-surface-2);
}
.booking__shop-tab.is-active {
  background: var(--bk-ink);
  color: var(--bk-accent-ink);
}

/* パネル（タブ非選択時は完全に隠す） */
.booking__panel[hidden] {
  display: none !important;
}

/* iframe 埋め込み（1ショートコード/ページ制限の回避） */
.booking__frame-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  background: var(--bk-surface);
  border: 1px solid var(--bk-line);
}
.booking__frame {
  display: block;
  width: 100%;
  /* 初期高さのみ確保。postMessage 経由で iframe 側の実コンテンツ高さに収束する。 */
  height: 520px;
  border: 0;
  background: var(--bk-surface);
  transition: height 0.25s ease;
}

.booking__calendar {
  width: 100%;
  max-width: 860px;
  background: var(--bk-surface);
  border: 1px solid var(--bk-line);
  padding: 2.5rem;
  color: var(--bk-ink);
}

/* ---- Booking Package plugin override (モノクロ) ---- */
.booking__calendar .start_booking_package,
.booking__calendar .start_booking_package * {
  font-family: var(--font-sans);
  color: var(--bk-ink);
}

/* カレンダーヘッダ（月送り） */
.booking__calendar .calendarHeader {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  color: var(--bk-ink) !important;
  padding: 0.5rem 0 1.25rem !important;
  border: none !important;
  border-bottom: 1px solid var(--bk-line) !important;
  margin-bottom: 0.5rem;
}
.booking__calendar .calendarData {
  font-family: var(--font-display-en) !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.12em;
  color: var(--bk-ink) !important;
  background: transparent !important;
}
.booking__calendar .arrowLeft,
.booking__calendar .arrowRight {
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  color: var(--bk-ink) !important;
  background: transparent !important;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.booking__calendar .arrowLeft span,
.booking__calendar .arrowRight span,
.booking__calendar .arrowFont {
  color: var(--bk-ink) !important;
}

/* カレンダーグリッド */
.booking__calendar .calendar {
  background: transparent !important;
  gap: 1px;
  padding: 0 !important;
  background-color: var(--bk-line) !important; /* gap lines */
}

/* 曜日ヘッダ */
.booking__calendar .week_slot {
  background: var(--bk-surface) !important;
  color: var(--bk-ink-dim) !important;
  font-family: var(--font-display-en) !important;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 0 !important;
  text-align: center;
  border: none !important;
}

/* 日付セル（デフォルト） */
.booking__calendar .day_slot {
  background: var(--bk-surface) !important;
  border: none !important;
  color: var(--bk-ink) !important;
  padding: 0.6rem 0.4rem !important;
  min-height: 72px;
  transition: background 0.15s ease;
  cursor: default;
  position: relative;
}
.booking__calendar .dateField {
  color: inherit !important;
  background: transparent !important;
  font-family: var(--font-display-en) !important;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 !important;
  text-align: center;
}

/* 予約可能な日 */
.booking__calendar .day_slot.available_day {
  background: var(--bk-surface) !important;
  color: var(--bk-ink) !important;
  cursor: pointer;
}
.booking__calendar .day_slot.available_day:hover {
  background: var(--bk-surface-2) !important;
}
.booking__calendar .day_slot.available_day:hover .dateField {
  font-weight: 700;
}

/* 過去日・無効日 */
.booking__calendar .day_slot.pastDay,
.booking__calendar .day_slot.unavailable_day,
.booking__calendar .day_slot.closingDay {
  background: var(--bk-surface-2) !important;
  color: var(--bk-ink-mute) !important;
  cursor: default;
}
.booking__calendar .day_slot.pastDay .dateField,
.booking__calendar .day_slot.unavailable_day .dateField,
.booking__calendar .day_slot.closingDay .dateField {
  color: var(--bk-ink-mute) !important;
}

/* 本日 */
.booking__calendar .day_slot.today .dateField {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 選択中 */
.booking__calendar .day_slot.selected,
.booking__calendar .day_slot.select_day,
.booking__calendar .day_slot.selected_day_slot {
  background: var(--bk-ink) !important;
  color: var(--bk-accent-ink) !important;
}
.booking__calendar .day_slot.selected .dateField,
.booking__calendar .day_slot.select_day .dateField,
.booking__calendar .day_slot.selected_day_slot .dateField {
  color: var(--bk-accent-ink) !important;
}

/* タイトル／タブ */
.booking__calendar .titlePanel,
.booking__calendar .title {
  color: var(--bk-ink) !important;
  background: transparent !important;
  font-family: var(--font-display-jp) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
}
.booking__calendar .menuList {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--bk-line);
  margin-bottom: 1.5rem;
  padding: 0;
  background: transparent !important;
}
.booking__calendar .menuItem {
  color: var(--bk-ink-dim) !important;
  background: transparent !important;
  padding: 0.75rem 1.25rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  transition: color 0.15s, border-color 0.15s;
}
.booking__calendar .menuItem.active,
.booking__calendar .menuItem:hover {
  color: var(--bk-ink) !important;
  border-bottom-color: var(--bk-ink) !important;
}

/* フォーム入力 */
.booking__calendar select,
.booking__calendar input[type="text"],
.booking__calendar input[type="email"],
.booking__calendar input[type="tel"],
.booking__calendar input[type="number"],
.booking__calendar input[type="password"],
.booking__calendar textarea {
  background: var(--bk-surface) !important;
  border: 1px solid var(--bk-line) !important;
  color: var(--bk-ink) !important;
  padding: 0.75rem 1rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.9375rem !important;
  border-radius: 0 !important;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.booking__calendar select:focus,
.booking__calendar input:focus,
.booking__calendar textarea:focus {
  border-color: var(--bk-ink) !important;
}
.booking__calendar select option {
  background: var(--bk-surface) !important;
  color: var(--bk-ink) !important;
}

/* ラベル */
.booking__calendar label {
  color: var(--bk-ink-dim) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.4rem;
}

/* ボタン（予約確定・次へなど） */
.booking__calendar .button,
.booking__calendar .button-primary,
.booking__calendar input[type="submit"],
.booking__calendar button[type="submit"] {
  background: var(--bk-ink) !important;
  color: var(--bk-accent-ink) !important;
  border: 1px solid var(--bk-ink) !important;
  padding: 1rem 2.5rem !important;
  font-family: var(--font-display-en) !important;
  font-weight: 500;
  font-size: 0.8125rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.booking__calendar .button:hover,
.booking__calendar .button-primary:hover,
.booking__calendar input[type="submit"]:hover {
  background: var(--bk-surface) !important;
  color: var(--bk-ink) !important;
}

/* 副ボタン（戻る・キャンセル） */
.booking__calendar .returnButton,
.booking__calendar .left_arrow_button,
.booking__calendar .right_arrow_button {
  background: var(--bk-surface) !important;
  color: var(--bk-ink) !important;
  border: 1px solid var(--bk-line-2) !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.booking__calendar .returnButton:hover,
.booking__calendar .left_arrow_button:hover,
.booking__calendar .right_arrow_button:hover {
  background: var(--bk-ink) !important;
  color: var(--bk-accent-ink) !important;
}

/* 見出し */
.booking__calendar h1,
.booking__calendar h2,
.booking__calendar h3,
.booking__calendar h4,
.booking__calendar h5 {
  color: var(--bk-ink) !important;
  font-family: var(--font-display-jp) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem !important;
}

/* 時間スロット（スケジュール選択） */
.booking__calendar .schedule,
.booking__calendar .schedule_list,
.booking__calendar .time_slot,
.booking__calendar .selectable_time_slot {
  background: var(--bk-surface) !important;
  border: 1px solid var(--bk-line) !important;
  color: var(--bk-ink) !important;
  padding: 0.75rem 1rem !important;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin: 0.25rem 0 !important;
}
.booking__calendar .schedule:hover,
.booking__calendar .time_slot:hover,
.booking__calendar .selectable_time_slot:hover {
  background: var(--bk-surface-2) !important;
  border-color: var(--bk-line-2) !important;
}
.booking__calendar .schedule.selected,
.booking__calendar .time_slot.selected,
.booking__calendar .selectedTimeSlotPanel {
  background: var(--bk-ink) !important;
  color: var(--bk-accent-ink) !important;
  border-color: var(--bk-ink) !important;
}

/* 選択された日付の表示 */
.booking__calendar .selectedDate {
  color: var(--bk-ink) !important;
  font-family: var(--font-display-en) !important;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* エラー／通知パネル */
.booking__calendar .booking_package_nonce_error,
.booking__calendar .member_login_error,
.booking__calendar .login_error {
  color: var(--bk-ink) !important;
  background: var(--bk-surface-2) !important;
  border-left: 2px solid var(--bk-ink) !important;
  padding: 0.75rem 1rem !important;
}

/* Material Icons */
.booking__calendar .material-icons {
  color: var(--bk-ink) !important;
}
.booking__calendar .noTime,
.booking__calendar .noPerson {
  color: var(--bk-ink-mute) !important;
}

@media (max-width: 768px) {
  .booking {
    padding: 6rem 0 7rem;
  }
  .booking__calendar {
    padding: 1.5rem 1rem;
  }
}

/* ===========================================================
   METHOD VALUE — バリュー統合サブセクション
   =========================================================== */
.method__value-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 5rem 0 3.5rem;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 3.05rem;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.method__value-divider::before,
.method__value-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.method__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .method__values { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.method__value-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.method__value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.method__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.75rem !important;
  color: #ffffff;
  opacity: 0.7;
  font-variation-settings: "FILL" 0, "wght" 300, "opsz" 24;
}
.method__value-num {
  display: block;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.method__value-title {
  font-family: var(--font-display-jp);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 0.85rem;
}
.method__value-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Method carousel — mobile horizontal scroll with progress bar */
@media (max-width: 767px) {
  .method__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: none;
    padding: 0 !important;
  }
  .method__grid::-webkit-scrollbar { display: none; }
  .method__step {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-bottom: none;
    border-right: none;
    padding: 2rem 1.75rem;
    position: relative;
  }
  .method__step:last-child { border-bottom: none; }
}

/* Scroll hint arrow */
.method__scroll-hint {
  display: none;
}
@media (max-width: 767px) {
  .method__step { overflow: visible; }
  .method__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(26, 47, 82, 0.08);
    color: var(--navy);
    opacity: 0.5;
    animation: method-hint-pulse 1.8s ease-in-out infinite;
    z-index: 2;
  }
  .method__scroll-hint .material-symbols-outlined {
    font-size: 1.25rem;
    font-weight: 600;
  }
  @keyframes method-hint-pulse {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-50%) translateX(5px); opacity: 0.8; }
  }
}

/* ===========================================================
   STICKY CTA BAR
   =========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink-deep);
  border-top: 1px solid var(--bone-dim);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.sticky-cta.is-shown {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sticky-cta__inner { padding: 1rem 3rem; }
}
.sticky-cta__copy {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--bone-dim);
  margin: 0;
  line-height: 1.4;
}
.sticky-cta__copy strong {
  color: var(--bone);
  font-size: 1.25rem;
  font-family: var(--font-display-en);
  font-weight: 600;
  margin: 0 0.25em;
}
.sticky-cta__copy span {
  font-size: 0.75rem;
  opacity: 0.65;
}
.sticky-cta__btn {
  display: inline-block;
  background: var(--bone-dim);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.75rem;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.sticky-cta__btn:hover {
  background: var(--bone);
  transform: translateY(-1px);
}

/* ===========================================================
   TRIAL — Full-width CTA banner redesign
   =========================================================== */
.trial {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--ink-deep);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

/* 背景グラジェントメッシュ */
.trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201, 194, 182, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(29, 47, 82, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(5, 7, 12, 0.7) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* グレインオーバーレイ */
.trial::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
  pointer-events: none;
  z-index: 0;
}

/* 装飾ライン */
.trial__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--bone-dim) 30%, var(--bone) 50%, var(--bone-dim) 70%, transparent 100%);
  z-index: 1;
}

.trial__inner {
  position: relative;
  z-index: 2;
}

.trial__eyebrow {
  display: block;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 1.25rem;
}

.trial__title {
  font-family: var(--font-display-en);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 3rem;
  line-height: 1.1;
}

.trial__card {
  display: inline-block;
  background: rgba(242, 235, 224, 0.05);
  border: 1px solid var(--line-strong);
  padding: 3rem 3.5rem 3.5rem;
  max-width: 480px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.trial__price {
  font-family: var(--font-display-en);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 600;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.trial__price span {
  font-size: 0.35em;
  font-weight: 300;
  color: var(--bone-dim);
  letter-spacing: 0.08em;
  vertical-align: 0.5em;
  margin-left: 0.2em;
}

.trial__lead {
  font-size: 0.85rem;
  color: var(--bone-dim);
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
}

.trial__list {
  text-align: left;
  margin-bottom: 2.5rem;
}
.trial__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bone);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}
.trial__list li:first-child { border-top: 1px solid var(--line); }
.trial__list .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--bone-dim);
  flex-shrink: 0;
}

.trial__cta {
  display: block;
  width: 100%;
  background: var(--bone-dim);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.trial__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.trial__cta:hover::before { transform: translateX(0); }
.trial__cta span { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .trial { padding: 6rem 0 7rem; }
  .trial__card { padding: 2rem 1.5rem 2.5rem; }
}

/* ===========================================================
   SCROLL REVEAL — js-reveal animation system
   =========================================================== */

/* 初期状態：非表示 */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* 左から */
.js-reveal--left {
  transform: translateX(-36px);
}

/* 右から */
.js-reveal--right {
  transform: translateX(36px);
}

/* スケールアップ */
.js-reveal--scale {
  transform: scale(0.94);
  transform-origin: center bottom;
}

/* 表示状態 */
.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* JS が読み込まれていない場合は常時表示 */
html:not(.js) .js-reveal {
  opacity: 1;
  transform: none;
}

/* スタガーユーティリティ（子要素への連鎖遅延） */
.js-stagger > *:nth-child(1)  { --reveal-delay:  60ms; }
.js-stagger > *:nth-child(2)  { --reveal-delay: 140ms; }
.js-stagger > *:nth-child(3)  { --reveal-delay: 220ms; }
.js-stagger > *:nth-child(4)  { --reveal-delay: 300ms; }
.js-stagger > *:nth-child(5)  { --reveal-delay: 380ms; }
.js-stagger > *:nth-child(6)  { --reveal-delay: 460ms; }

/* カウントアップ対象 */
.js-count {
  display: inline-block;
}

/* ===========================================================
   LIGHT THEME — 白地 × 紺
   Hero と Trial だけ暗いまま。他は白背景 + navy テキスト。
   =========================================================== */

/* ---- 基本 ---- */
body {
  background: #ffffff;
  color: var(--navy);
}

/* ---- Nav ---- */
.site-nav {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}
.site-nav::before { display: none !important; }
.site-nav__brand { color: var(--navy) !important; }
.site-nav__brand::first-letter { color: var(--navy-bright) !important; }
.btn--secondary {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  background: transparent !important;
}
.btn--secondary::before { background: var(--navy) !important; }
.btn--secondary:hover { color: #fff !important; }

/* ---- Results ---- */
.results {
  background: #ffffff;
  color: var(--navy);
}
.results__eyebrow { color: var(--navy-bright); }
.results__title { color: var(--navy); }
.results__title em { color: var(--navy-bright); }
.results__lead { color: rgba(26,47,82,0.65); }
.result-card {
  background: #f4f7fc;
  color: var(--navy);
  border-color: rgba(26,47,82,0.08);
  box-shadow: 0 8px 32px -8px rgba(26,47,82,0.08);
}
/* result-card hover removed */
.result-card__num { color: var(--navy-bright); }
.result-card__label { color: var(--navy-bright); }
.result-card__jp { color: var(--navy); }
.result-card__caption { color: rgba(26,47,82,0.65); }
.result-card__metric { border-top-color: rgba(26,47,82,0.1); }
.result-card__metric-label { color: rgba(26,47,82,0.5); }
.result-card__metric-value { color: var(--navy); }
.result-card__arrow .material-symbols-outlined { color: var(--navy-bright); }
.result-card__tag { background: var(--navy); color: #fff; }
.results__disclaimer { color: rgba(26,47,82,0.45); }

/* ---- Voice ---- */
.voice {
  background: #f4f7fc;
  color: var(--navy);
}
.voice__header { border-bottom-color: rgba(26,47,82,0.1); }
.voice__title { color: var(--navy); }
.voice__subtitle { color: var(--navy-bright); }
.voice-item { background: #ffffff; border: 1px solid rgba(26,47,82,0.08); box-shadow: 0 4px 20px -4px rgba(26,47,82,0.08); }
.voice-item__quote { color: var(--navy); }
.voice-item__meta { color: rgba(26,47,82,0.55); }

/* ---- Philosophy ---- */

/* ---- Method ---- */
.method {
  background: #ffffff;
  color: var(--navy);
}
.method__eyebrow { color: var(--navy-bright); }
.method__eyebrow::before { background: var(--navy-bright); }
.method__title { color: var(--navy); }
.method__header { border-bottom-color: rgba(26,47,82,0.1); }
.method__step { border-color: rgba(26,47,82,0.1); }
.method__step:hover { background: #f4f7fc; }
.method__number { color: rgba(26,47,82,0.07); }
.method__icon { color: var(--navy-bright); }
.method__step-title { color: var(--navy); }
.method__step-text { color: rgba(26,47,82,0.65); }
.method__value-divider { color: var(--navy-bright); }
.method__value-divider::before,
.method__value-divider::after { background: rgba(26,47,82,0.12); }
.method__value-item { background: rgba(26,47,82,0.04); border-color: rgba(26,47,82,0.08); }
.method__value-item:hover { background: rgba(26,47,82,0.07); border-color: rgba(26,47,82,0.15); }
.method__value-icon { background: rgba(26,47,82,0.06); color: var(--navy-bright); opacity: 0.7; }
.method__value-num { color: var(--navy-bright); opacity: 0.35; }
.method__value-title { color: var(--navy) !important; font-weight: 800 !important; font-size: clamp(1.3rem, 2vw, 1.75rem) !important; }
.method__value-text { color: rgba(26,47,82,0.65) !important; }
.method__progress-label { color: rgba(26,47,82,0.4); }
.method__progress-track { background: rgba(26,47,82,0.1); }
.method__progress-fill { background: var(--navy); opacity: 0.5; }
.method__value-title { color: var(--navy); }
/* (method__value-text override moved above) */

/* ---- Experts ---- */
.experts {
  background: #f4f7fc;
  color: var(--navy);
}
.experts__title { color: var(--navy); }
.experts__lead { color: rgba(26,47,82,0.65); }
.expert__role { color: var(--navy-bright); }
.expert__name { color: var(--navy); }
.expert__message p { color: rgba(26,47,82,0.75); }
.tag { background: rgba(26,47,82,0.08); color: var(--navy); border-color: rgba(26,47,82,0.15); }

/* ---- Trial (ここだけ暗いまま — コントラスト) ---- */
.trial { /* keep dark */ }
.trial__price { color: #ffffff; }
.trial__card { border-color: rgba(255,255,255,0.15); }
.trial__cta { background: #ffffff !important; color: var(--navy) !important; }
.trial__cta::before { background: #f4f7fc !important; }

/* ---- Booking ---- */
.booking {
  background: #ffffff;
  color: var(--navy);
}
.booking__eyebrow { color: var(--navy-bright); }
.booking__title { color: var(--navy); }
.booking__lead { color: rgba(26,47,82,0.65); }
.booking__shop-tab { color: var(--navy); border-color: rgba(26,47,82,0.2); }
.booking__shop-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---- FAQ ---- */
.faq {
  background: #f4f7fc;
  color: var(--navy);
}
.faq__title { color: var(--navy); }
.faq__list p { color: rgba(26,47,82,0.7); }
.faq-item { border-color: rgba(26,47,82,0.1); }
.faq-item__summary { color: var(--navy); }
.faq-item__body { color: rgba(26,47,82,0.75); }

/* ---- Access ---- */
.access {
  background: #ffffff;
  color: var(--navy);
}
.access__title { color: var(--navy); }
.access__label { color: var(--navy-bright); }
.access__value { color: var(--navy); }
.access__sub { color: rgba(26,47,82,0.55); }
.access__note { color: rgba(26,47,82,0.65); }

/* ---- Sticky CTA ---- */
.sticky-cta {
  background: var(--navy) !important;
  border-top: none !important;
}
.sticky-cta__copy { color: rgba(255,255,255,0.75); }
.sticky-cta__copy strong { color: #ffffff; }
.sticky-cta__copy span { color: rgba(255,255,255,0.5); }
.sticky-cta__btn {
  background: #ffffff !important;
  color: var(--navy) !important;
}
.sticky-cta__btn:hover { background: #f4f7fc !important; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.8) !important;
  border-top: none;
}
.site-footer__brand { color: #ffffff !important; }
.site-footer a { color: rgba(255,255,255,0.55) !important; }
.site-footer a:hover { color: #ffffff !important; }

/* ---- 汎用セレクション色 ---- */
::selection { background: var(--navy); color: #fff; }

/* ================================================
   セクション見出し 日本語化 & 中央揃え統一
   ================================================ */

/* --- 共通: ヘッダーブロックを中央揃え --- */
.results__header,
.voice__header,
.method__header,
.experts__header,
.faq__header,
.booking__header {
  text-align: center !important;
  align-items: center !important;
}

/* アクセスは左右レイアウトのため見出しのみ中央 */
.access__title { text-align: center; }

/* トライアルは既に中央 */

/* --- 日本語フォント適用 & ウェイト調整 --- */
.voice__title,
.method__title,
.experts__title,
.trial__title,
.faq__title,
.access__title {
  font-family: var(--font-display-jp) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

/* eyebrow（英語サブラベル）は細めのサンセリフで統一 */
.voice__subtitle,
.method__eyebrow,
.experts__lead,
.faq__header p,
.results__eyebrow {
  font-family: var(--font-display-en) !important;
  font-style: italic !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.08em !important;
  opacity: 0.6;
}

/* method__eyebrow の装飾ラインは中央に */
.method__eyebrow {
  display: flex !important;
  justify-content: center !important;
}

/* access header (全幅・中央) */
.access__header {
  text-align: center;
  margin-bottom: 3rem;
}
.access__title { text-align: center; }

/* ================================================
   h2 サイズ縮小（日本語は同サイズで大きく見えるため）
   ================================================ */
.voice__title,
.method__title,
.experts__title,
.faq__title,
.access__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
}
.trial__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  letter-spacing: 0.06em !important;
}

/* ================================================
   FAQ リスト 中央配置
   ================================================ */
.faq__list {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item__summary,
.faq-item__body {
  text-align: center;
}
/* アイコンは右端固定 */
.faq-item__summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

/* ================================================
   Access — タブ & iframeマップ
   ================================================ */
.access__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(26,47,82,0.2);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.access__tab {
  background: transparent;
  border: none;
  padding: 0.65rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.access__tab + .access__tab {
  border-left: 1px solid rgba(26,47,82,0.2);
}
.access__tab.is-active {
  background: var(--navy);
  color: #ffffff;
}
.access__panel {
  display: none;
}
.access__panel.is-active {
  display: block;
}
.access__map iframe {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  display: block;
}

/* ================================================
   ヘッダー: 固定追従・透明→スクロールで背景付き
   ================================================ */
.site-nav {
  position: fixed !important;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: background 0.4s ease, backdrop-filter 0.4s ease !important;
}
.site-nav.is-scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}
.site-nav::before { display: none !important; }
.site-nav__brand {
  color: #ffffff !important;
  transition: color 0.4s ease !important;
}
.site-nav__brand::first-letter {
  color: #ffffff !important;
  transition: color 0.4s ease !important;
}
.site-nav.is-scrolled .site-nav__brand { color: var(--navy) !important; }
.site-nav.is-scrolled .site-nav__brand::first-letter { color: var(--navy-bright) !important; }
.site-nav__actions { display: none !important; }

/* ================================================
   ライティングリライト対応スタイル
   ================================================ */

/* Hero — サブコピー & CTAボタン */
.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin: 1.25rem 0 2rem;
  line-height: 1.7;
}
.hero__cta {
  display: inline-block;
  background: #ffffff;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero__cta:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Results — 悩み共感ブロック */
.results__empathy {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  border-left: 3px solid var(--navy-bright);
  text-align: left;
}
.results__empathy-pain {
  font-family: var(--font-display-jp);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.results__empathy-insight {
  font-size: 0.95rem;
  color: rgba(26,47,82,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.results__empathy-solution {
  font-family: var(--font-display-jp);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--navy);
  line-height: 1.7;
}

/* (philosophy points — removed) */

/* (Footer remind block removed) */

/* Hero タイトル — 長文対応でサイズ縮小 */
.hero__title {
  font-size: clamp(2rem, 5.5vw, 5.5rem) !important;
  line-height: 1.15 !important;
}

/* ================================================
   Trial — 3プラン価格表
   ================================================ */
.trial__subtitle {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}
.trial__subtitle strong { color: #ffffff; }

.trial__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media (max-width: 640px) {
  /* スマホは縦3段（1列）でゆったり表示 */
  .trial__plans {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .trial__plan {
    padding: 1.5rem 1.25rem !important;
  }
  .trial__plan-name {
    font-size: 1.05rem !important;
  }
  .trial__plan-duration {
    font-size: 0.85rem !important;
    margin-bottom: 0.85rem !important;
  }
  .trial__plan-regular {
    font-size: 1rem !important;
  }
  .trial__plan-trial {
    font-size: 1.85rem !important;
  }
  .trial__plan-badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.7rem !important;
    top: -0.6rem !important;
  }
}

.trial__plan {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.trial__plan--popular {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}
.trial__plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.85rem;
  border-radius: 99px;
  white-space: nowrap;
}
.trial__plan-name {
  font-family: var(--font-display-jp);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.trial__plan-duration {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}
.trial__plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.trial__plan-regular {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  letter-spacing: 0.02em;
}
.trial__plan-trial {
  font-family: var(--font-display-en);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.trial__common {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.trial__common-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

/* ================================================
   Trial — 背景・フォント・カードサイズ調整
   ================================================ */

/* 背景：さわやかな明るいグラデーション */
.trial {
  background: linear-gradient(135deg, #e8f0f8 0%, #f0f5fb 50%, #dde8f4 100%) !important;
  color: var(--navy) !important;
}
.trial::before {
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(26,47,82,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 60%, rgba(26,47,82,0.05) 0%, transparent 65%) !important;
}
.trial::after { display: none !important; }
.trial__glow {
  background: linear-gradient(90deg, transparent 0%, rgba(26,47,82,0.15) 30%, rgba(26,47,82,0.3) 50%, rgba(26,47,82,0.15) 70%, transparent 100%) !important;
}
.trial__title { color: var(--navy) !important; }
.trial__subtitle { color: rgba(26,47,82,0.65) !important; }
.trial__subtitle strong { color: var(--navy) !important; }

/* 価格カード */
.trial__plan {
  background: rgba(255,255,255,0.7) !important;
  border-color: rgba(26,47,82,0.12) !important;
}
.trial__plan--popular {
  background: rgba(255,255,255,0.92) !important;
  border-color: var(--navy) !important;
}
.trial__plan-badge {
  background: var(--navy) !important;
  color: #ffffff !important;
}
.trial__plan-name { color: var(--navy) !important; }
.trial__plan-duration { color: rgba(26,47,82,0.5) !important; }
.trial__plan-regular { color: rgba(26,47,82,0.4) !important; }
.trial__plan-trial { color: var(--navy) !important; }
.trial__yen { font-size: 0.7em; vertical-align: baseline; }

/* フォント：シンプルなサンセリフ */
.trial__plan-trial {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* PC限定: カードを大きく */
@media (min-width: 900px) {
  .trial__plans { gap: 1.75rem !important; }
  .trial__plan { padding: 2.75rem 2rem !important; }
  .trial__plan-trial { font-size: clamp(2.25rem, 3.5vw, 3rem) !important; }
  .trial__plan-name { font-size: 1.15rem !important; }
  .trial__plan-duration { font-size: 0.9rem !important; margin-bottom: 1rem !important; }
}

/* 共通内容・CTAの色調整 */
.trial__common-label { color: rgba(26,47,82,0.4) !important; }

/* ================================================
   Trial — プラン施術範囲（上半身/下半身/全身 ＋ 気になる箇所）
   ================================================ */
.trial__plan-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  margin: 0 auto 1.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(26,47,82,0.05);
  border: 1px solid rgba(26,47,82,0.1);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--navy);
  max-width: max-content;
}
.trial__plan--popular .trial__plan-scope {
  background: rgba(26,47,82,0.08);
  border-color: rgba(26,47,82,0.18);
}
.trial__plan-scope-main {
  font-weight: 600;
}
.trial__plan-scope-plus {
  color: rgba(26,47,82,0.45);
  font-weight: 400;
}
/* アップセルの肝：「気になる箇所」を蛍光ペン風ハイライトで強調 */
.trial__plan-scope-extra {
  position: relative;
  display: inline-block;
  padding: 0 0.18em;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(255, 211, 92, 0.75) 55%,
    rgba(255, 211, 92, 0.75) 100%
  );
}

@media (min-width: 900px) {
  .trial__plan-scope {
    font-size: 0.85rem;
    padding: 0.65rem 1.1rem;
    margin-bottom: 1.75rem;
  }
}

/* スマホは1列のためピル表示を保つ（PCと同じ横並び） */
@media (max-width: 640px) {
  .trial__plan-scope {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
  }
}
.trial__list li { color: var(--navy) !important; }

/* ================================================
   Section Numbers — editorial typographic anchor
   ================================================ */
.section-num {
  display: block;
  font-family: var(--font-display-en);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(26,47,82,0.06);
  letter-spacing: -0.04em;
  margin-bottom: -1.5rem;
  user-select: none;
  pointer-events: none;
}
.section-num--light {
  color: rgba(255,255,255,0.1) !important;
}

/* ================================================
   Results — split layout (image × empathy text)
   ================================================ */
.results__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 55vw, 680px);
  overflow: hidden;
}
.results__split-img {
  overflow: hidden;
}
.results__split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s ease;
}
.results__split-img:hover img {
  transform: scale(1.03);
}
.results__split-text {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7f5f1;
}
.results__split-text .section-num {
  margin-bottom: -2rem;
}
.results__split-text .results__empathy-pain {
  font-family: var(--font-display-jp);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.results__split-text .results__empathy-insight,
.results__split-text .results__empathy-solution {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(26,47,82,0.7);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.results__split-text .results__empathy-solution {
  margin-bottom: 0;
}
.results__split-text strong {
  color: var(--navy);
  font-weight: 700;
}
@media (max-width: 768px) {
  .results__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .results__split-img {
    height: clamp(260px, 65vw, 400px);
  }
  .results__split-text {
    padding: 2.5rem 1.5rem;
  }
}

/* ================================================
   Method — full-width image banner
   ================================================ */
.method__img-banner {
  width: 100%;
  height: clamp(260px, 42vw, 540px);
  overflow: hidden;
  margin-bottom: 4rem;
  border-radius: 3px;
}
.method__img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.8s ease;
}
.method__img-banner:hover img {
  transform: scale(1.02);
}
.method__header .section-num {
  margin-bottom: -2rem;
}

/* ================================================
   Experts — UK proof photo
   ================================================ */
.experts__uk-proof {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 3px;
}
.experts__uk-proof img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s ease;
}
.experts__uk-proof:hover img {
  transform: scale(1.02);
}
.experts__uk-caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(26,47,82,0.45);
  letter-spacing: 0.06em;
  margin-top: 0.6rem;
}
.experts__header .section-num {
  margin-bottom: -2rem;
  text-align: center;
}

/* ================================================
   Trial — room photo strip
   ================================================ */
.trial__heading-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.trial__heading-wrap .section-num {
  text-align: center;
  margin-bottom: -1.5rem;
}
.trial__room-strip {
  width: 100%;
  height: clamp(200px, 35vw, 460px);
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 3px;
  position: relative;
}
.trial__room-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
.trial__room-strip:hover img {
  transform: scale(1.02);
}

/* (philosophy parallax — styles consolidated in main block) */
.trial__list .material-symbols-outlined { color: var(--navy-bright) !important; }

/* ================================================
   Hero — クリーン化 (overlay除去、ワードマークのみ)
   ================================================ */
.hero {
  background: transparent !important;
  isolation: auto !important;
}
.hero::before,
.hero::after { display: none !important; }
.hero__bg img {
  transform: none !important;
  animation: none !important;
  object-position: center 30% !important;
}

.hero__content { display: none !important; }

.hero__logo-block {
  position: absolute;
  bottom: clamp(1.5rem, 3vh, 3rem);
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 5;
  background: var(--navy);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 2rem);
}
.hero__logo-text {
  font-family: var(--font-display-en);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

/* ================================================
   Results split — 左に呼吸、テキストパネルが画像に重なる
   ================================================ */
.results__split {
  display: flex !important;
  align-items: stretch !important;
  min-height: clamp(380px, 50vw, 620px) !important;
  margin: 3rem 0 0 clamp(1.5rem, 4vw, 4rem) !important;
  overflow: visible !important;
}
.results__split-img {
  width: 58% !important;
  flex-shrink: 0 !important;
  overflow: hidden;
  border-radius: 3px 0 0 3px;
}
.results__split-text {
  position: relative !important;
  z-index: 2 !important;
  width: 46% !important;
  margin-left: -4% !important;
  background: #ffffff !important;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.07) !important;
  align-self: center !important;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem) !important;
}
@media (max-width: 768px) {
  .results__split {
    flex-direction: column !important;
    margin: 0 !important;
    min-height: auto !important;
  }
  .results__split-img {
    width: 100% !important;
    height: clamp(260px, 65vw, 380px) !important;
    border-radius: 0 !important;
  }
  .results__split-text {
    width: calc(100% - 2rem) !important;
    margin-left: 1rem !important;
    margin-top: -2.5rem !important;
    border-radius: 3px !important;
    align-self: auto !important;
  }
}

/* ================================================
   Method — パララックス背景ブロック
   ================================================ */
.method__parallax-block {
  position: relative;
  height: clamp(240px, 35vw, 420px);
  overflow: hidden;
  margin-bottom: 0;
}
.method__parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.method__parallax-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.75rem, 5vw, 4rem);
  background: none;
  z-index: 1;
}
.method__parallax-content .section-num {
  margin-bottom: -1.5rem;
  color: rgba(255, 255, 255, 0.12) !important;
}
.method__title--on-img {
  font-family: var(--font-display-jp) !important;
  font-size: clamp(2rem, 6vw, 5rem) !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25) !important;
  margin: 0 !important;
}

/* ================================================
   Trial room strip — 左右に余白
   ================================================ */
.trial__room-strip {
  margin-left: clamp(1rem, 3vw, 3rem) !important;
  margin-right: clamp(1rem, 3vw, 3rem) !important;
  border-radius: 4px !important;
  height: clamp(180px, 28vw, 380px) !important;
}

/* ================================================
   Font weight contrast — 細字/太字の落差を強調
   ================================================ */
/* Section見出し — 細くして写真の重さとコントラスト */
.results__title,
.method__title,
.experts__title,
.trial__title {
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
}
/* Section numbers — やや濃く強調 */
.section-num {
  color: rgba(26, 47, 82, 0.1) !important;
  font-weight: 800 !important;
}
/* 共感テキスト — 細字で余白感 */
.results__split-text .results__empathy-pain {
  font-weight: 300 !important;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem) !important;
  line-height: 2 !important;
}
/* UK proof caption */
.experts__uk-caption {
  font-weight: 300 !important;
}

/* ================================================
   Problem — 共感・問題提起セクション
   ================================================ */
.problem {
  background: #ffffff;
  padding-top: clamp(3rem, 5vw, 5rem);
}
.problem__headline {
  font-family: var(--font-display-jp);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 -1.5rem clamp(1.5rem, 4vw, 4rem);
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .problem__headline {
    margin-bottom: -1rem;
    padding-right: 1.5rem;
  }
}
.problem__split {
  display: flex;
  align-items: stretch;
  min-height: clamp(380px, 50vw, 620px);
  margin: 0 0 0 clamp(1.5rem, 4vw, 4rem);
  overflow: visible;
}
.problem__split-img {
  width: 58%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px 0 0 3px;
}
.problem__split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.problem__split-img:hover img { transform: scale(1.03); }
.problem__split-text {
  position: relative;
  z-index: 2;
  width: 46%;
  margin-left: -4%;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.07);
  align-self: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
}
.problem__pain {
  font-family: var(--font-display-jp);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.problem__insight {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.9;
  color: rgba(26, 47, 82, 0.75);
  margin-bottom: 1rem;
}
.problem__solution {
  font-family: var(--font-display-jp);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--navy);
  line-height: 1.7;
}
.problem__split-text strong {
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 768px) {
  .problem__split {
    flex-direction: column;
    margin: 0;
    min-height: auto;
  }
  .problem__split-img {
    width: 100%;
    height: clamp(260px, 65vw, 380px);
    border-radius: 0;
  }
  .problem__split-text {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-top: -2.5rem;
    border-radius: 3px;
    align-self: auto;
  }
}

/* Bridge — Problem → Method 接続 */
.problem__bridge {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 800px;
  margin: 0 auto;
}
.problem__bridge-line {
  flex: 1;
  height: 1px;
  background: rgba(26, 47, 82, 0.15);
}
.problem__bridge-text {
  font-family: var(--font-display-jp);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
  white-space: nowrap;
}
.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .problem__bridge-text { white-space: normal; }
}

/* ================================================
   Benefits — 施術後の生活変化
   ================================================ */
.benefits {
  background: #ffffff;
  padding: 5rem 0 6rem;
}
.benefits__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.benefits__eyebrow {
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy-bright);
  margin-bottom: 0.75rem;
}
.benefits__title {
  font-family: var(--font-display-jp);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 3.5vw, 3.5rem);
  }
}
.benefits__item {
  position: relative;
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(26, 47, 82, 0.12);
}
.benefits__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(26, 47, 82, 0.08);
  box-shadow: 0 0 0 20px rgba(26, 47, 82, 0.03);
  pointer-events: none;
  z-index: 0;
}
.benefits__item::after {
  content: none;
}
.benefits__icon {
  display: block;
  font-size: 2.5rem !important;
  color: var(--navy-bright);
  opacity: 0.35;
  font-variation-settings: "FILL" 0, "wght" 200, "opsz" 48;
  margin-bottom: 0.75rem;
}
.benefits__keyword {
  display: block;
  font-family: var(--font-display-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(26, 47, 82, 0.4);
  margin-bottom: 1rem;
}
.benefits__item-title {
  font-family: var(--font-display-jp);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.benefits__item-text {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.9;
  color: rgba(26, 47, 82, 0.7);
  letter-spacing: 0.02em;
}
