:root {
  --ink: #1e1e1e;
  --red: #e71f19;
  --paper: #fff;
  --warm: #d8d2cb;
  --warm-light: #eee9e3;
  --line: rgba(30, 30, 30, 0.22);
  --muted: #666;
  --max: 1120px;
  --font-en: "Familjen Grotesk", Arial, sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
  --font-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Fluid-scale the whole 1280 Figma canvas to the viewport (replaces Plan B).
   On >=1280px, js/main.js adds .is-fit and sets --pz = clamp(1, 100vw/1280, 1.5).
   Header + every section scale together, so all Figma proportions are preserved and
   nothing diverges. `zoom` (not transform) so the sticky header keeps working and the
   scaled height reflows automatically. Below 1280px the wrapper is inert (responsive). */
.page-fit.is-fit {
  width: 1280px;
  margin: 0 auto;
  zoom: var(--pz, 1);
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, #f6f1eb 0 10px, #efe8df 10px 20px);
  color: var(--ink);
  font-family: var(--font-jp);
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 82px;
  /* full-bleed bg; content aligned to the centered 1280 frame (Figma: pl-60 / pr-40) */
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: max(60px, calc((100% - 1280px) / 2 + 60px));
  padding-right: max(40px, calc((100% - 1280px) / 2 + 40px));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 0.5px solid var(--ink);
  backdrop-filter: blur(16px);
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

/* Header brand logo — official KAO GYM mark (Figma node 438:3919, 62.437x62 in the
   82px header = 62 + 10/10 padding). Swaps the placeholder "KG" box for the real
   images/logo.svg. Scoped to .site-header and applied through the shared .logo-mark
   class, so every sub-page header updates from this one rule; footer logo unchanged.
   Sized in design px, so it scales correctly under the .page-fit `zoom`. */
.site-header .logo-mark {
  width: 62.437px;
  height: 62px;
  border: 0;
  background: url("../images/logo.svg") center / contain no-repeat;
  font-size: 0; /* hide the "KG" fallback text; aria-label keeps the accessible name */
  color: transparent;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo__mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--red);
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px var(--red);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-logo__text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-logo__text b {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-logo__text small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.global-nav a,
.mini-link,
.view-link {
  position: relative;
}

.global-nav a::after,
.mini-link::after,
.view-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.global-nav a:hover::after,
.mini-link:hover::after,
.view-link:hover::after {
  transform: scaleX(1);
}

.contact-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--ink);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 24px;
  white-space: nowrap;
}

.contact-button {
  min-width: 120px;
  padding: 0 26px;
  background: var(--ink);
  color: #fff;
}

.button {
  min-height: 56px;
  padding: 16px 21px 16px 31px;
}

.button::after {
  width: 22px;
  height: 7px;
  background: currentColor;
  clip-path: polygon(0 42%, 82% 42%, 82% 0, 100% 50%, 82% 100%, 82% 58%, 0 58%);
  content: "";
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  width: min(100%, 1280px);
  height: 750px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 650px;
  min-height: 0;
  margin: 0;
  background: #fff;
}

.hero .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% top;
}

.hero-redband {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: var(--red);
}

.hero-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0 8px 40px;
}

.hero-headline {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-headline .hl-row1 {
  display: block;
  font-size: 96px;
  line-height: 1;
  white-space: nowrap;
}

.hero-headline .accent {
  color: var(--red);
  font-size: 128px;
}

.hero-headline .hl-no {
  font-size: 96px;
}

.hero-headline .hl-row2 {
  display: block;
  margin-top: 1px;
  margin-left: 2px;
  font-size: 85px;
  letter-spacing: 2.55px;
  line-height: 1;
}

.hero-overlay {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 452px;
}

.hero-heading-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.hero-features {
  position: absolute;
  right: 40px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  position: relative;
  display: grid;
  place-items: center;
  width: 165px;
  height: 165px;
  background: url("../images/hero-feature-ring.svg") center top / 165px 169px no-repeat;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.25));
}

.hero-features .feat-text {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1.25;
  text-align: center;
  background: linear-gradient(#1e1e1e, #a89f96);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-features .feat-sm {
  font-size: 28px;
  letter-spacing: 0;
}

.hero-features .feat-xs {
  font-size: 20px;
}

.en-label {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

/* All Figma section eyebrows: Familjen Bold 20px / tracking 1px / leading 20px */
.section-kicker p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
}

.hero .en-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-sub {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
}

.hero-sub .accent {
  color: var(--red);
}

.hero-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 45px;
}

.hero-copy {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 30px;
  color: var(--ink);
}

.hero .button::after {
  width: 20px;
  height: 6px;
  clip-path: none;
  background: currentColor;
  -webkit-mask: url("../images/hero-arrow.svg") no-repeat center / contain;
  mask: url("../images/hero-arrow.svg") no-repeat center / contain;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.image-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent calc(50% - 1px), rgba(30, 30, 30, 0.28), transparent calc(50% + 1px)),
    linear-gradient(45deg, transparent calc(50% - 1px), rgba(30, 30, 30, 0.28), transparent calc(50% + 1px)),
    var(--warm-light);
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot figcaption {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.image-slot.is-missing figcaption {
  display: block;
}

/* PICK UP — Figma node 160:145 (1:1) */
.pickup {
  padding: 50px 0;
  background: var(--warm);
}

.pickup-inner {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.section-kicker span {
  width: 10px;
  height: 30px;
  background: var(--red);
}

.pickup .section-kicker {
  margin-bottom: 39px;
}

.pickup-viewport {
  overflow: hidden;
}

.pickup-track {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}

.pickup-slide {
  position: relative;
  flex: 0 0 665px;
  width: 665px;
  height: 370px;
}

.ps-card {
  position: absolute;
  top: 0;
  left: 51px;
  width: 614px;
  height: 320px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9d9d9;
}

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

.ps-img--news {
  object-position: 50% 47%;
}

.ps-img--salon {
  object-position: 50% 62%;
}

.ps-caption {
  position: absolute;
  top: 212px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 400px;
  padding: 10px 20px;
  background: #a89f96;
}

.ps-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ps-eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--red);
}

.ps-eyebrow p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ps-caption h3 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: #fff;
}

.ps-caption > span {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.pickup-control {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
  margin-top: 39px;
}

.ps-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.ps-arrow::after {
  width: 18px;
  height: 7px;
  background: var(--ink);
  clip-path: polygon(0 42%, 82% 42%, 82% 0, 100% 50%, 82% 100%, 82% 58%, 0 58%);
  content: "";
  transition: background 0.18s ease;
}

.ps-prev::after {
  transform: rotate(180deg);
}

.ps-arrow:hover {
  background: var(--ink);
}

.ps-arrow:hover::after {
  background: #fff;
}

.ps-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.ps-arrow:disabled:hover {
  background: transparent;
}

.ps-arrow:disabled:hover::after {
  background: var(--ink);
}

.section {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

/* LATEST NEWS — Figma node 160:185 */
.news {
  position: relative;
  padding-bottom: 50px;
}

.news .section-kicker {
  margin-bottom: 50px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-list article {
  display: grid;
  gap: 10px;
  align-self: start;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--ink);
}

.news-list h3 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 25px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 15px;
}

.news-meta time {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 1px;
}

.news-meta .bar {
  width: 1px;
  height: 9px;
  background: var(--ink);
}

.news-meta b {
  color: var(--red);
  font-weight: 600;
}

.link-more {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin: 50px 0 0 auto;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.link-more::after {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  content: "→";
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 70px;
  align-items: center;
}

.about.section {
  /* width/centering inherited from the shared .section base
     (min(calc(100% - 160px), var(--max)) => 1120px content, 80px L/R @1280). */
  grid-template-columns: minmax(0, 550px) minmax(0, 1fr);
  align-items: end;
  gap: 120px;
  padding-top: 20px;
  padding-bottom: 100px;
  scroll-margin-top: 96px;
}

.about-copy {
  display: grid;
  align-content: start;
}

/* TOP about: tighten left column so the 450x450 image column (≈597px) drives
   the row height, matching Figma node 160:215 (.two-column is TOP-only). */
.two-column .about-copy {
  row-gap: 8px;
}

.result-block {
  position: relative;
  align-self: end;
}

.about h2,
.why h2,
.skincare h2 {
  margin: 0 0 26px;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
}

.about .section-kicker {
  margin-bottom: 20px;
}

.about h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 55px;
}

.intro {
  display: inline-block;
  margin: 0 0 24px;
  padding: 6px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.about .intro {
  display: block;
  margin: 0 0 30px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 25px;
}

/* highlight = solid black box + white text (Figma node 160:225) */
.about .intro span {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 0 10px 0 15px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 29.25px;
}

.about-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 30px;
  background: var(--ink);
}

.about p:not(.intro),
.skincare p:not(.intro) {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 1px;
}

.about p:not(.intro) {
  margin-bottom: 20px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 25px;
}

.view-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.view-link::before,
.mini-link::before {
  margin-right: 8px;
  color: var(--red);
  content: "VIEW MORE";
}

.view-link {
  font-size: 0;
}

.view-link::after {
  content: "";
}

.about .view-link {
  justify-self: end;
  gap: 18px;
  margin-top: -2px;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

.about .view-link::before {
  margin-right: 0;
  color: var(--ink);
  content: "VIEW MORE";
}

.about .view-link::after {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
  transform: none;
  content: "→";
}

.result-block h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 -23px;
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 85px;
  text-align: right;
}

.result-block .image-slot {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

/* WHY CHOOSE US — Figma node 160:239 */
.why {
  padding: 100px 0 150px;
  background: rgba(255, 255, 255, 0.7);
}

.why-inner {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
}

.why .section-kicker {
  margin-bottom: 20px;
}

.why h2 {
  margin: 0 0 50px;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
}

.reason-grid {
  display: flex;
  justify-content: center;
  gap: 110px;
}

.reason-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.reason-visual {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  color: var(--ink);
}

.reason-icon {
  display: block;
}

.reason-method .reason-icon {
  width: 128px;
  height: auto;
}

.reason-result {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reason-result .reason-icon {
  width: 68px;
  height: auto;
}

.reason-result strong {
  display: block;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
}

.reason-science .reason-icon {
  width: 150px;
  height: 150px;
}

.reason-grid h3 {
  width: 100%;
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.reason-grid h3::after {
  display: block;
  width: 150px;
  height: 1px;
  margin: 10px auto 0;
  background: var(--ink);
  content: "";
}

.reason-grid .reason-catch {
  margin: 0 0 15px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 30px;
  text-align: center;
}

.reason-grid p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 30px;
  text-align: left;
}

/* BEFORE & AFTER — Figma node 160:289 */
.before-after .section-kicker {
  margin-bottom: 50px;
}

.ba-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 0;
}

.ba-case {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 535px;
}

.ba-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 20px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 20px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
}

.ba-badge svg {
  width: 22px;
  height: 23px;
  margin-right: 3px;
  color: #fff;
}

.ba-pair {
  display: flex;
  gap: 15px;
  width: 100%;
}

.ba-pair .portrait {
  position: relative;
  flex: 1;
  aspect-ratio: 260 / 330;
  min-height: 0;
}

.ba-label {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  z-index: 2;
  color: #fff;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
}

.ba-case h3 {
  width: 100%;
  margin: 0;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 45px;
  text-align: center;
}

.ba-case p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-align: center;
}

.center-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

/* CUSTOMER VOICE — Figma node 160:328 */
.voice {
  background: var(--warm);
}

.voice .inner {
  width: min(calc(100% - 160px), var(--max));
  padding-top: 100px;
  padding-bottom: 150px;
}

.voice .section-kicker {
  margin-bottom: 50px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px;
  margin-top: 0;
}

.voice-grid article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 245px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ink);
  border-radius: 8px;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 15px;
}

.voice-meta .slash {
  width: 12px;
  height: 0;
  border-top: 1px solid var(--ink);
  transform: rotate(120deg);
}

.voice-rule {
  width: 100%;
  height: 1px;
  background: var(--ink);
}

.voice-comment {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
}

.voice-button,
.store-button {
  display: flex;
  width: fit-content;
  margin: 50px auto 0;
}

.voice-button {
  min-width: 0;
  min-height: 60px;
  padding: 20px 30px 20px 40px;
  font-size: 18px;
  letter-spacing: 1px;
}

.store-button {
  min-width: 0;
  min-height: 60px;
  margin: 0;
  padding: 20px 30px 20px 40px;
  font-size: 18px;
  letter-spacing: 1px;
}

.heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.heading-row .section-kicker {
  margin-bottom: 34px;
}

.mini-link {
  color: var(--red);
  font-size: 12px;
}

.mini-link::before {
  content: "";
}

/* STORE LIST — Figma node 446:9847 */
.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 100px 0 50px;
}

.stores-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 160px), var(--max));
}

.stores-head .section-kicker {
  margin-bottom: 0;
}

.store-status {
  display: inline-flex;
  align-items: center;
  padding: 2.5px 20.5px;
  border: 0.5px solid var(--red);
  border-radius: 20px;
  color: var(--red);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 24px;
}

.stores-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: min(calc(100% - 160px), var(--max));
}

.store-feature {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.store-feature .store-photo {
  position: relative;
  flex: 0 0 520px;
  width: 520px;
  height: 365px;
  min-height: 0;
}

.store-divider {
  display: block;
  width: 100%;
  height: 0;
  border-top: 0.5px solid rgba(30, 30, 30, 0.5);
}

.store-mini-grid {
  display: flex;
  gap: 96px;
}

.store-mini {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex: 1;
}

.store-mini .store-photo-sm {
  position: relative;
  flex: 0 0 240px;
  width: 240px;
  height: 240px;
  min-height: 0;
}

.store-photo figcaption,
.store-photo.is-missing figcaption,
.store-photo-sm figcaption,
.store-photo-sm.is-missing figcaption {
  display: none !important;
}

.store-en {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 40px;
}

.store-en--sm {
  bottom: 10px;
  left: 9px;
  font-size: 32px;
  letter-spacing: 4px;
  line-height: 30.667px;
}

.store-feature .store-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 500px;
}

.store-name-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0;
}

.store-feature h3 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
}

.store-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 21px;
  border: 1px solid var(--red);
  border-radius: 20px;
  color: var(--red);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
}

.store-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25px;
}

.store-ico {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.store-desc {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-top: 0.5px solid var(--ink);
  border-bottom: 0.5px solid var(--ink);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: var(--ink);
}

.store-mini .store-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 242px;
}

.store-mini-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.store-mini h3 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 30px;
}

.store-mini .store-row {
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.store-mini .store-ico {
  margin-top: 0;
}

/* View more link with circular arrow (HOTPEPPER) */
.store-view {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
}

.store-mini .store-view {
  margin-top: 10px;
}

.vm-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
}

.vm-arrow::after {
  width: 13px;
  height: 5px;
  background: #fff;
  clip-path: polygon(0 42%, 82% 42%, 82% 0, 100% 50%, 82% 100%, 82% 58%, 0 58%);
  content: "";
}

/* COSMETICS PROMOTION — Figma node 160:446 */
.home-skincare {
  width: min(calc(100% - 160px), var(--max));
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-skincare .section-kicker {
  margin-bottom: 50px;
}

.skincare-layout {
  display: flex;
  align-items: flex-start;
  gap: 71px;
  margin-top: 0;
}

.product-image {
  flex: 0 0 584px;
  width: 584px;
  height: 584px;
  aspect-ratio: auto;
  min-height: 0;
  background-color: #eef0ee;
}

.product-image img {
  object-position: center center;
}

.product-image figcaption,
.product-image.is-missing figcaption {
  display: none !important;
}

.skincare-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 465px;
  padding-top: 0;
}

.skincare-copy h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 120px;
}

.skincare-copy .intro {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
  white-space: nowrap;
}

.skincare-copy p:not(.intro) {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 25px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 5px;
}

.tag-row a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: auto;
  padding: 6px 10px 6px 15px;
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 29.25px;
}

.tag-row a::after {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-top: 1.2px solid #fff;
  border-right: 1.2px solid #fff;
  transform: rotate(45deg);
  content: "";
}

/* FAQ — Figma node 160:463 */
.home-faq {
  width: min(calc(100% - 160px), var(--max));
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-faq .section-kicker {
  margin-bottom: 50px;
}

.faq-row {
  display: flex;
  align-items: flex-end;
  gap: 81px;
  width: min(100%, 1069px);
}

.faq-more span {
  white-space: nowrap;
}

.home-faq .faq-list {
  display: flex;
  flex-direction: column;
  flex: 0 0 868px;
  width: 868px;
}

.home-faq details {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 0.5px solid var(--ink);
}

.home-faq details:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.home-faq summary {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 30px;
  cursor: pointer;
  list-style: none;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary span {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-weight: 700;
}

.home-faq summary::after {
  width: 13px;
  height: 13px;
  margin-left: auto;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  /* closed: arrow points down. Opening flips it up (Figma is drawn open). */
  transform: rotate(45deg);
  transition: transform 280ms ease;
  content: "";
}

.home-faq details.is-open summary::after {
  transform: rotate(-135deg);
}

/* Smooth open/close via grid-template-rows 0fr->1fr — no JS height measurement,
   so it stays correct under the .page-fit `zoom` (scrollHeight reads are unreliable
   there). Collapsing is gated on .is-enhanced so the answers stay visible without JS. */
.home-faq .faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.home-faq .faq-list.is-enhanced .faq-answer {
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.home-faq .faq-list.is-enhanced details.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* The clipped child must carry no padding/margin of its own so it can fully
   collapse to 0; the answer's spacing lives on the inner <p>, which is clipped. */
.home-faq .faq-answer-body {
  overflow: hidden;
  min-height: 0;
}

.home-faq details p {
  margin: 0;
  padding: 20px 0 0 35px;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 30px;
}

.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
}

/* RECRUIT — Figma node 160:485 */
.recruit {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.recruit-banner {
  position: relative;
  display: block;
  height: 375px;
  overflow: hidden;
}

.recruit-image {
  position: absolute;
  inset: 0;
  min-height: 0;
}

/* Figma crop (node 327:2959): the 1508x1005 image sits at left -388 / top -630
   inside the 1120x375 frame, i.e. anchored bottom-right at Figma-native scale
   (1120-1508 = -388, 375-1005 = -630). Reproduce with an oversized img pinned to
   the bottom-right: height 268% (1005/375) keeps the image at that scale, width
   auto preserves aspect, and right/bottom 0 give the -388/-630 offset. All values
   are proportional to the frame, so the crop holds under the .page-fit `zoom`. */
.recruit-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 268%;
  max-width: none;
  object-fit: fill;
}

.recruit-row {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1020px;
  max-width: calc(100% - 50px);
  margin: 0 auto;
}

.recruit-copy {
  display: flex;
  flex-direction: column;
  width: 378px;
  color: #fff;
}

.recruit h2 {
  margin: 0 0 -10px;
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 120px;
  text-transform: uppercase;
}

.recruit p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 30px;
}

.recruit-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.recruit-arrow::after {
  width: 32px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 42%, 82% 42%, 82% 0, 100% 50%, 82% 100%, 82% 58%, 0 58%);
  content: "";
}

/* MEDIA — Figma node 449:5184 */
.media {
  padding-top: 50px;
  padding-bottom: 50px;
}

.media .section-kicker {
  margin-bottom: 50px;
}

.media-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 0;
  padding: 0 50px;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 295px;
}

.media-card .media-image {
  aspect-ratio: 295 / 412;
  min-height: 0;
  background: #fff;
}

.media-image figcaption,
.media-image.is-missing figcaption {
  display: none !important;
}

.media-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--ink);
}

.media-meta time {
  display: block;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
  color: var(--ink);
}

.media-meta h3 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 25px;
}

.franchise {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 66px;
  align-items: center;
  width: min(calc(100% - 280px), 1000px);
  margin: 20px auto 150px;
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.72);
}

.franchise h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1.1;
}

.franchise p {
  margin: 4px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
}

.franchise p span {
  color: var(--red);
}

.franchise small {
  display: block;
  max-width: 560px;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.8;
}

.franchise-image {
  min-height: 300px;
  border-radius: 50%;
}

.franchise-button {
  position: absolute;
  right: 112px;
  bottom: 70px;
}

/* FOOTER — Figma node 160:510 */
.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: max(60px, calc((100% - 1280px) / 2 + 60px));
  padding-right: max(60px, calc((100% - 1280px) / 2 + 60px));
  background: rgba(255, 255, 255, 0.8);
  border-top: 0.5px solid var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 18px;
}

.footer-logo {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1px;
  width: 74px;
  height: 73.5px;
  background: var(--red);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--red);
  color: #fff;
  text-align: center;
}

.footer-logo b {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.footer-logo span {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
}

.footer-logo small {
  font-size: 7px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.footer-brand p {
  margin: 12px 0 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 25px;
}

.footer-sns {
  display: flex;
  gap: 16px;
  padding-top: 0.6px;
}

.footer-sns a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(30, 30, 30, 0.3);
}

.footer-sns svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.footer-brand small {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 20px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 42px;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-head {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-head b {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.footer-head span {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.footer-col > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 15px;
  list-style: none;
}

.footer-col ul a {
  display: block;
  color: rgba(30, 30, 30, 0.8);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

/* heading underline (Figma: 130px TOP / 135px others) */
.footer-head::after {
  width: 135px;
  height: 0.5px;
  margin-top: 10px;
  background: var(--ink);
  content: "";
}

.footer-col--top .footer-head::after {
  width: 130px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 27px;
}

.footer-legal a {
  color: #666;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.page-heading {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 50px 80px 48px;
  border-bottom: 1px solid var(--ink);
}

.page-heading .section-kicker {
  margin-bottom: 0;
}

.page-heading .section-kicker span {
  width: 10px;
  height: 10px;
}

.page-heading h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 80px;
  font-size: 16px;
}

.breadcrumb span[aria-hidden="true"] {
  width: 4px;
  height: 11px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 0 78%, 55% 50%, 0 22%);
}

.news-archive {
  display: grid;
  width: min(850px, calc(100% - 48px));
  min-height: 620px;
  margin: 6px auto 60px;
  align-content: start;
}

.archive-post {
  border-bottom: 1px solid rgba(30, 30, 30, 0.75);
}

.archive-post a {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: 50px;
  padding: 4px 24px;
  transition: background 180ms ease;
}

.archive-post a:hover {
  background: rgba(216, 210, 203, 0.22);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.post-meta b {
  min-width: 37px;
  color: var(--red);
  font-weight: 800;
}

.post-meta time {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 1px;
}

.archive-post h2 {
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-arrow {
  justify-self: end;
  width: 8px;
  height: 16px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 0 82%, 65% 50%, 0 18%);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 80px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.page-circle {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.page-circle::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  content: "←";
}

.page-circle.next::before {
  content: "→";
}

.page-circle.disabled {
  border-color: rgba(216, 210, 203, 0.9);
  color: rgba(216, 210, 203, 0.9);
  pointer-events: none;
}

.page-divider {
  width: 1px;
  height: 25px;
  background: var(--ink);
}

.page-number {
  width: 50px;
  color: var(--warm);
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}

.page-number.current {
  color: var(--ink);
}

.detail-breadcrumb {
  padding-top: 20px;
  padding-bottom: 20px;
}

.news-detail {
  width: min(1089px, calc(100% - 96px));
  margin: 70px auto 72px;
}

.detail-header {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-left: 5px;
  color: #9c9c9c;
  font-size: 10px;
}

.detail-category {
  padding: 2px 7px;
  background: #a89f96;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  line-height: 1.2;
}

.detail-title-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.detail-title-row time {
  padding-right: 16px;
  border-right: 1px solid #352304;
  color: #9c9c9c;
  font-size: 14px;
  line-height: 54px;
}

.detail-title-row h1 {
  margin: 0;
  color: #352304;
  font-size: 28px;
  font-weight: 500;
  line-height: 54px;
}

.detail-main-image {
  min-height: 523px;
  margin-bottom: 72px;
}

.detail-content {
  padding: 0 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.detail-content p {
  margin: 0 0 28px;
}

.detail-content h2 {
  margin: 92px 0 28px;
  padding: 5px 25px;
  border-top: 1px solid #352304;
  border-bottom: 1px solid #352304;
  color: #352304;
  font-size: 25px;
  font-weight: 500;
  line-height: 54px;
}

.detail-post-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 80px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.post-nav-link,
.post-nav-back {
  display: flex;
  align-items: center;
  min-height: 80px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}

.post-nav-link {
  gap: 24px;
  padding: 20px 58px 20px 86px;
}

.post-nav-link.next {
  justify-content: flex-end;
  padding-right: 58px;
  padding-left: 58px;
}

.post-nav-link.prev {
  border-right: 1px solid var(--line);
}

.post-nav-link.next {
  border-left: 1px solid var(--line);
}

.post-nav-back {
  justify-content: center;
  padding: 0 74px;
  white-space: nowrap;
}

.post-nav-link .page-circle {
  flex: 0 0 auto;
}

.about-page {
  background: rgba(255, 255, 255, 0.45);
}

/* ABOUT (Figma 607:5476) background — scoped to about.html via .abt so about-gut.html
   is untouched. Figma: content area is a uniform very-light gray = the p0126 paper
   texture (607:5477) at 30% opacity over white (sampled ≈ rgb(248,248,248)); the
   footer sits on white. Replaces the global warm striped gradient for this page only. */
body:has(.about-page.abt) {
  background: #fff;
}

.about-page.abt {
  position: relative;
  background: #fff;
}

.about-page.abt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/about-bg-texture.png") top center / 100% auto repeat-y;
  opacity: 0.3;
  pointer-events: none;
}

.about-page.abt > * {
  position: relative;
  z-index: 1;
}

.about-breadcrumb {
  border-bottom: 1px solid var(--line);
}

.about-tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 46px 24px 24px;
}

.about-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 46px;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-tabs a.is-active {
  background: var(--ink);
  color: #fff;
}

.about-overview,
.about-section,
.flow-section,
.about-faq,
.about-final-cta {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 76px;
  align-items: center;
  padding: 72px 0 110px;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.about-copy h1,
.about-section h2,
.flow-section h2,
.about-faq h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.25;
}

.about-copy p,
.commitment-text p,
.flow-step p,
.about-faq p {
  margin: 0;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 2;
}

.about-lead {
  color: var(--ink);
  font-size: 20px !important;
  font-weight: 800;
  line-height: 1.8 !important;
}

.about-copy .button {
  width: fit-content;
  margin-top: 14px;
}

.about-main-image {
  min-height: 560px;
  border-radius: 0 0 180px 180px;
}

.about-section {
  padding: 94px 0;
  border-top: 1px solid var(--line);
}

.about-section > .section-kicker,
.flow-section > .section-kicker,
.about-faq > .section-kicker {
  margin-bottom: 26px;
}

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

.comparison-card {
  min-height: 310px;
  padding: 36px 40px;
  background: var(--warm-light);
  border: 1px solid var(--line);
}

.comparison-card.highlight {
  background: #fff;
  border: 2px dashed var(--red);
}

.comparison-label,
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comparison-card h3,
.commitment-text h3,
.flow-step h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.45;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.8;
}

.comparison-card li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

/* ============================================================================
   ABOUT PAGE — 1:1 Figma rebuild (node 607:5476 "about｜顔ジムとは").
   Built at the 1280 design canvas (sections pad 80px → 1120 content), so all
   px/hex/font values are literal Figma values and scale under the .page-fit zoom.
   Namespaced `abt-` so about-gut.html (which reuses the older .about-* / .comparison-*
   classes) is untouched. Tokens: --ink #1e1e1e, --red #e71f19, --warm #d8d2cb.
   ========================================================================= */

/* shared eyebrow (red tick + Latin label) */
.abt-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.abt-tick {
  width: 10px;
  height: 30px;
  background: var(--red);
  flex: none;
}

.abt-eyebrow p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

/* shared dark button (START TRAINING / 店舗を探す) */
.abt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 16px 21px 16px 31px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.abt-btn span {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
}

.abt-btn img {
  width: 20px;
  height: 5.5px;
}

/* ---- Breadcrumb (607:5522) ---- */
.abt-crumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 80px;
}

.abt-crumbs a,
.abt-crumb-current {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ink);
}

.abt-crumb-sep {
  width: 6px;
  height: 6px;
  border-top: 1.25px solid #343a40;
  border-right: 1.25px solid #343a40;
  transform: rotate(45deg);
  flex: none;
}

/* ---- Tabs (607:5528) ---- */
.abt-tabs {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.abt-tabs-track {
  display: inline-flex;
  padding: 5px;
  border-radius: 50px;
  background: rgba(216, 210, 203, 0.2);
}

.abt-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 80px;
  border-radius: 50px;
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  color: #a89f96;
  white-space: nowrap;
}

.abt-tab.is-active {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  line-height: 24px;
}

/* ---- ABOUT intro + comparison (607:5534) ---- */
.abt-intro {
  display: flex;
  flex-direction: column;
  gap: 78px;
  padding: 80px;
}

.abt-intro-top {
  display: flex;
  align-items: flex-start;
  gap: 67px;
}

.abt-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 465px;
  flex: none;
}

.abt-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-h1 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
  color: var(--ink);
}

.abt-intro-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.abt-intro-text p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
  color: var(--ink);
}

.abt-intro-image {
  position: relative;
  margin: 0;
  width: 588px;
  height: 441px;
  flex: none;
  overflow: hidden;
}

.abt-intro-image img {
  position: absolute;
  width: 906px;
  height: 604px;
  max-width: none;
  left: -136px;
  top: -81px;
  object-fit: cover;
}

.abt-compare {
  display: flex;
  align-items: stretch;
}

.abt-cmp-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 560px;
  flex: none;
  padding: 50px;
  border: 1px dashed var(--ink);
}

.abt-cmp-gym {
  background: #fff;
}

.abt-cmp-esthe {
  background: var(--warm);
  border-left: 0;
}

.abt-cmp-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.abt-cmp-gym .abt-cmp-head {
  border-bottom: 1px solid var(--ink);
}

.abt-cmp-esthe .abt-cmp-head {
  border-bottom: 1px solid #5e5e5e;
}

.abt-cmp-head h2 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
  text-align: center;
}

.abt-cmp-esthe .abt-cmp-head h2 {
  color: #5e5e5e;
}

.abt-cmp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 460px;
}

.abt-cmp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.abt-cmp-gym .abt-cmp-list li + li {
  border-top: 1px dashed var(--ink);
}

.abt-cmp-esthe .abt-cmp-list li + li {
  border-top: 1px dashed #5e5e5e;
}

.abt-cmp-num {
  flex: none;
  font-family: var(--font-jp);
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
}

.abt-cmp-gym .abt-cmp-num {
  color: var(--red);
}

.abt-cmp-list li span:last-child {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.abt-cmp-esthe .abt-cmp-list li,
.abt-cmp-esthe .abt-cmp-num {
  color: #5e5e5e;
}

/* ---- WHY FACE GYM heading (607:5590) ---- */
.abt-why-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 80px;
}

.abt-why-title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
  color: var(--ink);
}

/* ---- こだわり blocks shared (607:5595) ---- */
.abt-k {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px;
}

.abt-k-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 2px solid var(--ink);
}

.abt-k-num {
  width: 100px;
  flex: none;
  text-align: center;
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 700;
  line-height: 40px;
}

.abt-k-tag {
  flex: none;
  padding: 3px 15px;
  border: 2px solid var(--ink);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
}

.abt-k-sub {
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.abt-chip {
  display: inline-block;
  width: fit-content;
  margin-right: 8px;
  padding: 0 15px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 29.25px;
  letter-spacing: 1px;
}

/* 01 — RAFOS */
.abt-k01-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.abt-k01-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 550px;
  flex: none;
}

.abt-k01-title {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.abt-k01-en {
  font-family: var(--font-jp);
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 3px;
}

.abt-k01-jp {
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 3px;
}

.abt-k01-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abt-k01-body p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
  color: var(--ink);
}

/* RAFOS body: the dark label chips (超深部加温 / 中層部アプローチ) sit on their own
   line above the paragraph they introduce (Figma 607:5609/5615 stacked, gap 10). */
.abt-k01-body .abt-chip {
  display: block;
  margin: 0 0 6px;
}

.abt-trinity-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.abt-trinity-cap,
.abt-trinity-foot {
  margin: 0;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 3px;
}

.abt-trinity-cap {
  font-size: 24px;
  line-height: 35px;
}

.abt-trinity-foot {
  font-size: 36px;
  line-height: 60px;
}

.abt-trinity-foot span {
  color: var(--red);
}

.abt-trinity {
  position: relative;
  width: 332px;
  height: 321px;
}

.abt-tri-node {
  position: absolute;
  width: 139px;
  height: 139px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.abt-tri-img {
  background: url("../images/about-k01-trinity-ellipse.png") center / contain no-repeat;
}

.abt-tri-css {
  background: rgba(216, 210, 203, 0.3);
  border: 0.5px dashed var(--ink);
}

.abt-tri-node b {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.abt-tri-node i {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  font-style: normal;
}

/* 02 — 手技 */
.abt-k02-split {
  display: flex;
  align-items: center;
  gap: 70px;
}

.abt-k02-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 550px;
  flex: none;
}

.abt-k02-title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
}

.abt-k02-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
}

.abt-k02-emph {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 3px;
}

.abt-k02-emph span {
  color: var(--red);
}

.abt-k02-photo {
  position: relative;
  margin: 0;
  width: 500px;
  height: 400px;
  flex: none;
  background: #fff;
  overflow: hidden;
}

.abt-k02-photo img {
  position: absolute;
  width: 645px;
  height: 430px;
  max-width: none;
  left: -44px;
  top: -15px;
  object-fit: cover;
}

/* term-row (筋膜とは？ / スキンケアが大切な理由) */
.abt-term {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 50px;
  border: 1px solid var(--ink);
  border-radius: 10px;
}

.abt-term-label {
  width: 120px;
  flex: none;
  text-align: center;
}

.abt-term-label span {
  display: block;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
}

.abt-term-label small {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.abt-term-divider {
  width: 1px;
  height: 50px;
  background: var(--ink);
  flex: none;
}

.abt-term-text {
  flex: 1;
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.abt-term-text p {
  margin: 0;
}

.abt-term-text strong {
  color: var(--red);
  font-weight: 700;
}

.abt-term-wide .abt-term-label {
  width: 156px;
}

.abt-term-wide .abt-term-label span {
  line-height: 40px;
}

.abt-term-wide .abt-term-text,
.abt-term-wide .abt-term-text p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 3px;
}

/* fascia mechanism diagram */
.abt-fascia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.abt-fascia-diagram {
  width: 540px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.abt-comp-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 20px;
  background: rgba(168, 159, 150, 0.1);
}

.abt-comp-cell {
  width: 130px;
  flex: none;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px;
}

.abt-comp-poly {
  width: 18px;
  height: 11px;
  flex: none;
}

.abt-mech {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.abt-mech-card {
  position: relative;
  width: 220px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.abt-mech-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #a89f96;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-mech-icon img {
  width: 48px;
  height: 48px;
}

.abt-mech-b .abt-mech-icon img {
  width: 36px;
  height: 41.6px;
}

.abt-mech-body {
  margin-top: -31px;
  padding: 50px 20px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid #a89f96;
}

.abt-mech-a .abt-mech-body {
  background: rgba(168, 159, 150, 0.1);
}

.abt-mech-body p {
  margin: 0;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
}

.abt-mech-a .abt-mech-body p {
  font-weight: 700;
}

.abt-mech-b .abt-mech-body p {
  font-weight: 500;
}

.abt-mech-union {
  width: 13.7px;
  height: 7.8px;
}

.abt-mech-arrow {
  width: 45.255px;
  height: 14.728px;
  margin-top: 10px;
}

/* Figma 607:5708 / 607:5726 — the two cards' arrows angle DOWN-INWARD toward the
   centred conclusion: left card ↘ rotate(45deg), right card ↙ rotate(135deg)+flipY. */
.abt-mech-a .abt-mech-arrow {
  transform: rotate(45deg);
}

.abt-mech-b .abt-mech-arrow {
  transform: rotate(135deg) scaleY(-1);
}

.abt-mech-conclusion {
  display: flex;
  align-items: center;
  gap: 20px;
}

.abt-mech-rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
}

.abt-mech-conclusion p {
  margin: 0;
  white-space: nowrap;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.abt-mech-conclusion p span {
  color: var(--red);
  letter-spacing: 1px;
}

.abt-fascia-photo {
  position: relative;
  margin: 0;
  width: 370px;
  height: 370px;
  flex: none;
  overflow: hidden;
}

.abt-fascia-photo img {
  position: absolute;
  width: 308.85%;
  height: 125.09%;
  max-width: none;
  left: -208.85%;
  top: -18.16%;
  object-fit: cover;
}

.abt-fascia-photo figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  line-height: 15px;
}

/* 03 — スキンケア */
.abt-k03-split {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.abt-k03-media {
  margin: 0;
  width: 500px;
  height: 320px;
  flex: none;
  overflow: hidden;
}

.abt-k03-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.abt-k03-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-k03-title {
  margin: 0;
  width: 508px;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
}

.abt-k03-copy > p {
  margin: 0;
  width: 588px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
}

.abt-checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 550px;
  height: 287px;
  padding: 20px 40px;
  background: rgba(216, 210, 203, 0.5);
}

.abt-checklist-title {
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 0.5px solid #000;
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;
}

.abt-checklist-row {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
}

.abt-checklist-num {
  width: 25px;
  flex: none;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
}

.abt-checklist-row span:last-child {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1px;
}

.abt-k03-media-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 500px;
  flex: none;
}

/* Figma 607:5777 — product collage shown in an aspect-488/321 window, image zoomed
   to 102.46% × 124.66% offset (-1.23%, -12.26%) so all three panels stay visible. */
.abt-k03-imgcrop {
  width: 100%;
  aspect-ratio: 488 / 321;
  position: relative;
  overflow: hidden;
}

.abt-k03-imgcrop img {
  position: absolute;
  left: -1.23%;
  top: -12.26%;
  width: 102.46%;
  height: 124.66%;
  max-width: none;
  object-fit: cover;
}

.abt-k03-product {
  margin: 0;
  width: 100%;
}

.abt-k03-product-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abt-chip-block {
  display: block;
  width: fit-content;
  margin-right: 0;
  text-align: center;
}

.abt-k03-product-text > p:last-child {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
}

.abt-k03-product-text strong {
  color: var(--red);
  font-weight: 700;
}

/* ---- FLOW (607:5853) ---- */
.abt-flow {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 80px;
}

.abt-flow-title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
}

.abt-flow-list {
  display: flex;
  flex-direction: column;
}

.abt-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 20px 0;
}

.abt-flow-step + .abt-flow-step {
  border-top: 1px solid var(--ink);
}

.abt-flow-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-flow-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.abt-flow-num {
  width: 50px;
  flex: none;
  text-align: center;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
}

.abt-flow-name {
  margin-left: 30px;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.abt-flow-en {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
}

.abt-flow-text {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 100px;
}

.abt-flow-text p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
}

.abt-flow-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px 15px;
}

.abt-flow-chips span {
  padding: 3px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.abt-flow-img {
  position: relative;
  margin: 0;
  width: 414px;
  height: 307px;
  flex: none;
  overflow: hidden;
}

.abt-flow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-flow-img-blank {
  background: #fff;
}

.abt-flow-img-01 img {
  position: absolute;
  width: 126.39%;
  height: 113.68%;
  max-width: none;
  left: -15.8%;
  top: -13.68%;
}

.abt-flow-img-04 img {
  position: absolute;
  width: 173.39%;
  height: 155.95%;
  max-width: none;
  left: -48.74%;
  top: -37.68%;
}

/* ---- BEFORE & AFTER (607:5869) ---- */
.abt-ba {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 100px 80px;
}

.abt-ba .abt-eyebrow {
  width: 100%;
}

.abt-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 35px;
  row-gap: 65px;
  width: 1120px;
}

.abt-ba-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.abt-ba-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 21px;
  border: 1px solid var(--ink);
  border-radius: 20px;
}

.abt-ba-pill img {
  width: 23px;
  height: 24px;
}

.abt-ba-desc {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
}

.abt-ba-desc b {
  font-family: var(--font-jp);
  font-weight: 400;
  letter-spacing: 2px;
}

.abt-ba-desc i {
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: 1px;
  font-style: normal;
}

.abt-ba-imgarea {
  display: flex;
  align-items: center;
}

.abt-ba-half {
  position: relative;
  width: 175px;
  height: 215px;
  overflow: hidden;
}

.abt-ba-half img {
  position: absolute;
  top: 0;
  height: 215px;
  width: auto;
  max-width: none;
}

.abt-ba-before img {
  left: 0;
}

.abt-ba-after img {
  right: 0;
}

.abt-ba-label {
  position: absolute;
  bottom: 0;
  padding: 4px 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.abt-ba-before .abt-ba-label {
  left: 0;
}

.abt-ba-after .abt-ba-label {
  right: 0;
}

.abt-ba-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt-ba-tags span {
  padding: 1px 15px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 2px;
}

/* ---- FAQ (607:5999) ---- */
.abt-faq {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 80px;
}

.abt-faq-headblock {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-faq-title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 3px;
}

.abt-faq-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
}

.abt-faq-body {
  display: flex;
  align-items: flex-end;
  width: 1085px;
}

.abt-faq-list {
  width: 868px;
  flex: none;
  display: flex;
  flex-direction: column;
}

.abt-faq-item + .abt-faq-item {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 0.5px solid var(--ink);
}

.abt-faq-q {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.abt-faq-marker {
  flex: none;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.abt-faq-q p {
  flex: 1;
  margin: 0;
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;
}

.abt-faq-toggle {
  width: 16px;
  height: 8px;
  flex: none;
  transition: transform 0.35s ease;
}

/* closed state → chevron flips ˄ → ˅ (open is the Figma default state) */
.abt-faq-item.is-closed .abt-faq-toggle {
  transform: rotate(180deg);
}

/* Smooth accordion: animate grid row 1fr→0fr (collapses height with ease).
   Open by default (Figma shows answers expanded, ˄). js/main.js toggles .is-closed. */
.abt-faq-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

.abt-faq-item.is-closed .abt-faq-a {
  grid-template-rows: 0fr;
}

.abt-faq-a-in {
  overflow: hidden;
  min-height: 0;
}

.abt-faq-a p {
  margin: 0;
  padding: 20px 10px 0 35px;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 2px;
}

.abt-faq-more {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: none;
  margin-left: auto;
}

.abt-faq-more span {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.abt-faq-more img {
  width: 30px;
  height: 30px;
}

/* ---- Final CTA (607:6034) ---- */
.abt-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px;
}

.abt-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 50px 75px;
}

.abt-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 460px;
}

.abt-cta-head {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 56px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.abt-cta-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 3px;
}

.abt-cta-btn {
  width: 166px;
}

.gut-page .about-tabs {
  padding-bottom: 58px;
}

.gut-overview {
  grid-template-columns: minmax(0, 1fr) 535px;
  gap: 67px;
  padding-top: 0;
  padding-bottom: 78px;
}

.gut-overview .about-copy {
  gap: 20px;
}

.gut-copy-block {
  display: grid;
  gap: 0;
}

.gut-copy-block p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7;
}

.gut-main-image {
  min-height: 441px;
  background-color: #eee9e3;
}

.gut-comparison-section {
  padding-top: 0;
  padding-bottom: 74px;
  border-top: 0;
}

.gut-comparison {
  gap: 0;
  margin-top: 0;
}

.gut-comparison .comparison-card {
  min-height: 365px;
  padding: 50px;
}

.gut-comparison .comparison-card.highlight {
  border: 1px dashed var(--ink);
}

.gut-comparison .comparison-card.muted {
  background: var(--warm);
  border-top: 1px dashed var(--ink);
  border-right: 1px dashed var(--ink);
  border-bottom: 1px dashed var(--ink);
  border-left: 0;
  color: #5e5e5e;
}

.gut-comparison .comparison-label {
  width: fit-content;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: none;
}

.gut-comparison .comparison-card li {
  padding: 15px 0 15px 32px;
  border-bottom: 1px dotted rgba(30, 30, 30, 0.35);
  font-size: 16px;
  line-height: 1.9;
}

.gut-comparison .comparison-card.muted li {
  border-bottom-color: rgba(94, 94, 94, 0.35);
}

.gut-comparison .comparison-card li::before {
  top: 25px;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  background: transparent;
}

.gut-comparison .comparison-card.highlight li::after {
  position: absolute;
  top: 28px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.about-photo-cta {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 160px), var(--max));
  min-height: 380px;
  margin: 0 auto 66px;
  padding: 78px 75px 50px;
  overflow: hidden;
  color: #fff;
}

.about-photo-cta::after {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.45);
  content: "";
}

.cta-background {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-color: #1e1e1e;
  filter: grayscale(1);
}

.cta-background figcaption {
  color: var(--ink);
}

.photo-cta-copy,
.about-photo-cta .actions {
  position: relative;
  z-index: 1;
}

.photo-cta-copy {
  display: grid;
  gap: 10px;
  max-width: 590px;
}

.photo-cta-copy p {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 56px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.35;
}

.photo-cta-copy h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 2.05;
}

.about-photo-cta .button-light {
  min-width: 166px;
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.about-photo-cta .button-light.ghost {
  min-width: 200px;
  background: transparent;
  color: #fff;
}

.company-heading {
  padding-top: 50px;
  padding-bottom: 50px;
}

.company-section {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 80px 0;
}

/* Section 2: 想い (left) + 著書 (right), two 522px columns (Figma 607:8550) */
.company-section--split {
  display: grid;
  grid-template-columns: 522px 522px;
  justify-content: space-between;
  align-items: start;
}

.company-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Heading: outlined badge sitting on a 2px baseline (Figma .description) */
.company-section-heading {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.company-section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 25px;
}

/* --- Section 1: overview table --- */
.company-overview {
  display: grid;
  grid-template-columns: 300px 700px;
  justify-content: space-between;
  align-items: start;
  margin-top: 80px;
}

.company-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 25px;
}

.company-table {
  display: grid;
  width: 700px;
  margin: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.company-table > div {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.company-table dt {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 30px;
}

.company-table dd {
  min-width: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.company-table a {
  color: inherit;
}

.company-biz {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-biz li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 24px;
}

.company-biz li::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--ink);
  content: "";
}

/* --- Section 2a: 那賀洋子の想い --- */
.company-omoi {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}

.company-omoi-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.company-portrait {
  position: relative;
  flex-shrink: 0;
  width: 184px;
  height: 225px;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.company-portrait img {
  position: absolute;
  left: -69px;
  top: 0;
  width: 253px;
  height: 301px;
  max-width: none;
  object-fit: cover;
}

.company-omoi-name {
  display: flex;
  flex-direction: column;
}

.company-en-name {
  margin: 0;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
  text-transform: uppercase;
}

.company-jp-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 25px;
}

.company-omoi-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-omoi-body p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 20px;
}

/* --- Section 2b: 那賀洋子の著書 --- */
.company-books {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 8px;
}

.company-book {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.company-book-cover {
  width: 100%;
  margin: 0;
  aspect-ratio: 590 / 824;
  overflow: hidden;
  background: #fff;
}

.company-book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-book-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--ink);
}

.company-book-date {
  margin: 0;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 20px;
}

.company-book-title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.form-row span {
  padding-top: 15px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(30, 30, 30, 0.24);
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0.8px;
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
}

.form-submit::after {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 17px;
  content: "→";
}

.faq-heading p {
  margin: -8px 0 0;
  font-size: 16px;
  letter-spacing: 3px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 228px minmax(0, 850px);
  gap: 42px;
  align-items: start;
  width: min(calc(100% - 160px), var(--max));
  margin: 80px auto 0;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--ink);
}

.faq-categories {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.faq-categories p {
  width: fit-content;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 16px;
}

.faq-categories a {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: var(--warm);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.222;
}

.faq-categories a::before {
  width: 10px;
  height: 10px;
  background: transparent;
  content: "";
}

.faq-categories a.is-active,
.faq-categories a:hover {
  color: var(--ink);
  font-weight: 700;
}

.faq-categories a.is-active::before,
.faq-categories a:hover::before {
  background: var(--red);
}

.faq-content {
  display: grid;
  gap: 100px;
}

.faq-group {
  display: grid;
  gap: 41px;
  scroll-margin-top: 110px;
}

.faq-group-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.faq-group-heading span {
  width: 10px;
  height: 10px;
  background: var(--red);
}

.faq-group-heading h2,
.faq-group-heading p {
  margin: 0;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
}

.faq-group-heading h2 {
  font-size: 24px;
  line-height: 1.25;
}

.faq-group-heading p {
  font-size: 16px;
  line-height: 1.5;
}

.faq-content .faq-list {
  display: grid;
  gap: 0;
}

/* Divider sits between Q&A items only (centred in a 50px gap), never after the last. */
.faq-item + .faq-item {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(30, 30, 30, 0.5);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  gap: 15px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: var(--font-en);
  font-weight: 800;
  text-align: center;
}

.faq-item summary::after {
  width: 16px;
  height: 9px;
  background: url(../images/faq-toggle.svg) center / contain no-repeat;
  transition: transform 0.3s ease;
  content: "";
}

/* Figma: open = up chevron (∧); closed = down chevron (∨). */
.faq-item:not([open]) summary::after {
  transform: rotate(180deg);
}

.faq-item > p,
.faq-item > div {
  margin: 20px 0 0;
  padding-left: 35px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.875;
}

.faq-item > div p {
  margin: 0 0 12px;
}

.faq-item > div p:last-child {
  margin-bottom: 0;
}

.faq-contact-cta {
  position: relative;
  display: grid;
  place-items: center;
  width: min(calc(100% - 160px), var(--max));
  min-height: 300px;
  margin: 80px auto 90px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.faq-contact-cta::after {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.42);
  content: "";
}

.faq-contact-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background-color: #837b73;
  filter: grayscale(1);
}

.faq-contact-cta > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 36px;
}

.faq-contact-cta p {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.faq-contact-cta h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2.5px;
  line-height: 1.8;
}

.faq-contact-cta .button-light {
  min-width: 154px;
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

/* ===== Staff / Recruit page — Figma node 241:4089 ===== */
/* Figma eyebrow is a 10x30 red band (node 260:1642); restore it for this page
   without touching the shared .page-heading rule. */
.staff-heading .section-kicker span {
  width: 10px;
  height: 30px;
}

.staff-heading p {
  margin: -8px 0 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 25px;
}

.staff-section {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 80px 0;
}

.staff-section h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
}

/* --- 求める人物像 --- */
.persona-grid {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 50px;
}

.persona-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 300px;
}

.persona-icon {
  height: 100px;
  width: auto;
}

.persona-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 295px;
}

.persona-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 45px;
  text-align: center;
}

.persona-card p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 30px;
}

/* --- 募集要項 --- */
.staff-section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 50px;
}

.staff-section-title span {
  width: fit-content;
  padding: 6px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 22px;
}

.job-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.job-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 460px;
  padding: 30px;
  border: 1px solid var(--ink);
}

.job-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.job-meta span {
  padding: 0 14px;
  background: var(--ink);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 22px;
}

.job-meta p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
}

.job-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.job-body h3 {
  width: 100%;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 45px;
}

.job-desc {
  width: 100%;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.job-requirements {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.job-requirements h4 {
  width: fit-content;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.job-requirements ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-requirements li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 22px;
}

.job-requirements li::before {
  content: "";
  flex: none;
  width: 11.236px;
  height: 7.418px;
  background: url("../images/staff-check.svg") no-repeat center / contain;
}

.job-link,
.staff-submit {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.job-link::after,
.staff-submit::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  background: url("../images/staff-arrow-btn.svg") no-repeat center / contain;
}

/* --- 選考フロー --- */
.staff-flow {
  background: var(--warm);
}

.staff-flow .flow-list {
  display: flex;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.staff-flow .flow-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 280px;
}

.flow-num {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border: 1px dashed var(--ink);
  border-radius: 55px;
  font-family: var(--font-en);
  font-weight: 700;
  text-align: center;
}

.flow-num small {
  font-size: 18px;
  line-height: 24px;
}

.flow-num b {
  font-size: 40px;
  line-height: 32px;
}

.staff-flow .flow-list li:not(:last-child) .flow-num::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 55px;
  width: 170px;
  height: 1px;
  background: url("../images/staff-flow-line.svg") repeat-x left center;
  background-size: 85px 1px;
}

.flow-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 0 30px;
}

.staff-flow .flow-list h3 {
  width: 190px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: center;
}

.staff-flow .flow-list p {
  width: 220px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 30px;
  text-align: left;
}

/* --- 応募フォーム --- */
.staff-apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 190px;
  background: rgba(216, 210, 203, 0.2);
}

.staff-form-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.staff-form-heading span {
  padding: 0 14px;
  background: var(--ink);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 22px;
}

.staff-form-heading h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 60px;
  text-align: center;
}

.staff-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 80px 100px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.staff-form-fields {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.staff-form-row {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.staff-form-row > span:first-child,
.staff-upload > span,
.staff-message > span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 30px;
}

.staff-form-row > span:first-child {
  flex: none;
  width: 200px;
}

.staff-form-field {
  flex: 1 1 0;
  min-width: 0;
}

.staff-form input,
.staff-form select,
.staff-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 1px;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.staff-form input,
.staff-form select {
  padding: 11px 21px;
  font-size: 14px;
  line-height: 22px;
}

.staff-form ::placeholder {
  color: rgba(30, 30, 30, 0.5);
  opacity: 1;
}

.staff-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background: url("../images/staff-select-arrow.svg") no-repeat right 21px center;
  background-size: 11px 5px;
}

.staff-upload,
.staff-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.staff-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.staff-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 33px;
  border: 1px dashed var(--ink);
}

.staff-upload-area .file-icon {
  width: 16px;
  height: 20px;
}

.staff-upload-area strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.staff-upload-area small {
  color: rgba(30, 30, 30, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 15px;
  text-align: center;
}

.staff-form textarea {
  min-height: 122px;
  padding: 13px 17px;
  font-size: 16px;
  line-height: 24px;
  resize: vertical;
}

.franchise-heading {
  gap: 18px;
}

/* franchise heading eyebrow: red bar is 10x30 in Figma; the shared
   .page-heading rule flattens it to 10x10, so restore it here. */
.franchise-heading .section-kicker span {
  height: 30px;
}

.franchise-lead {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.franchise-lead p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.56;
}

.franchise-section {
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 80px 0 120px;
}

/* section tag: bordered box around the label + a full-width 2px baseline */
.franchise-section-label {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.franchise-section-label span {
  padding: 3px 10px;
  border: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.partner-card {
  display: flex;
  flex-direction: column;
}

/* number, title and body are indented 80px; the borders span the full card */
.partner-num {
  padding-left: 80px;
  color: #a89f96;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.partner-card h2 {
  margin: 0;
  padding: 5px 0 20px 80px;
  border-bottom: 1px solid var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.85;
}

.partner-card p {
  flex: 1;
  margin: 0;
  padding: 20px 0 20px 80px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  line-height: 2.14;
}

.partner-card a {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
}

.partner-card a::after {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  content: "→";
}

.opening-flow {
  background: #d8d2cb;
  color: var(--ink);
}

.opening-list {
  display: grid;
  gap: 90px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* zig-zag: 01/03 sit left, 02/04 are shifted right (Figma node offsets) */
.opening-list li {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.step-left {
  margin-left: 65px;
}

.step-right {
  margin-left: 315px;
}

.step-num {
  position: relative;
  flex: none;
  width: 179px;
  padding-top: 30px;
}

.step-label {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-label i {
  font-style: normal;
}

.step-num b {
  display: block;
  padding-left: 65px;
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.65;
}

.step-body {
  padding-top: 4px;
}

.step-body h3 {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.5;
}

.step-body p {
  max-width: 460px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2.14;
}

/* full-width tinted band; inner column is the centered 900px form area */
.franchise-form-section {
  width: 100%;
  padding: 80px 0;
  background: rgba(216, 210, 203, 0.2);
}

.franchise-form-inner {
  display: grid;
  gap: 80px;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.franchise-form-heading {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.franchise-form-heading h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.94;
}

.franchise-form-heading p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 2px;
}

.franchise-form {
  display: grid;
  padding: 80px 100px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.franchise-form-row,
.franchise-form-msg {
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.franchise-form-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.franchise-form-msg {
  display: grid;
  gap: 8px;
}

.franchise-form-row > span,
.franchise-form-msg > span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 21px;
  border: 1px solid var(--ink);
  border-radius: 1px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.franchise-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4 4.5-4' fill='none' stroke='%231e1e1e' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 21px center;
}

.franchise-form textarea {
  min-height: 122px;
  padding: 13px 17px;
  font-size: 16px;
  line-height: 24px;
  resize: vertical;
}

.franchise-form .form-submit {
  justify-self: end;
  margin-top: 30px;
}

.policy-content {
  display: grid;
  gap: 70px;
  width: min(850px, calc(100% - 160px));
  margin: 60px auto 100px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.9;
}

.policy-content p,
.policy-content ul,
.policy-content address {
  margin: 0;
}

.policy-content ul {
  padding-left: 1.5em;
}

.policy-content li + li {
  margin-top: 4px;
}

.policy-intro {
  display: grid;
  gap: 18px;
  padding-left: 35px;
}

.policy-section {
  display: grid;
  gap: 32px;
}

.policy-section header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.policy-section header span {
  width: 10px;
  height: 10px;
  background: var(--red);
}

.policy-section h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.5;
}

.policy-item {
  display: grid;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.policy-item h3 {
  display: flex;
  gap: 15px;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.5;
}

.policy-item h3 span {
  font-family: var(--font-en);
  white-space: nowrap;
}

.policy-item h4 {
  margin: 10px 0 -8px;
  font-size: 16px;
  font-weight: 800;
}

.policy-item p,
.policy-item ul,
.policy-section > p,
.policy-section address {
  padding-left: 35px;
}

.policy-section address {
  font-style: normal;
}

.salon-heading {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* SALON — store list (Figma node 212:748 / Store Grid Section 212:1364) */
.salon-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin: 0;
  padding: 80px 0;
  border-bottom: 1px solid var(--ink);
}

/* divider between stores — w-1120 (Line 19/20) */
.salon-divider {
  width: 1120px;
  max-width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* .split-section: image 500 + gap 80 + content 500 = 1080 */
.salon-item {
  display: grid;
  grid-template-columns: 500px 500px;
  gap: 80px;
  align-items: start;
  width: 1080px;
  max-width: 100%;
  padding: 0;
  border: 0;
}

.salon-image {
  width: 500px;
  height: 317px;
  min-height: 0;
  margin: 0;
}

.salon-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

/* store name heading — Noto Sans JP Bold 36 / tracking 3 / line 70 */
.salon-content h2,
.salon-title-row h2 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 70px;
  color: var(--ink);
}

.salon-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* 新店舗 badge — border #e71f19, rounded 20, red 16 medium */
.salon-title-row span {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  padding: 3px 21px;
  border: 1px solid var(--red);
  border-radius: 20px;
  color: var(--red);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
  white-space: nowrap;
}

/* info rows + description share the 15px-gap group */
.salon-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.salon-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  color: var(--ink);
}

.salon-ic {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: block;
}

.salon-note {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-top: 0.5px solid var(--ink);
  border-bottom: 0.5px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 30px;
  color: var(--ink);
}

.salon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.reservation-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 15px;
  color: var(--ink);
}

.reservation-link::after {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 16px;
  content: "→";
}

.reservation-link.accent {
  color: var(--red);
}

.reservation-link.accent::after {
  background: var(--red);
}

/* bottom CTA — section p-80 + split px-75 py-50 → 130 top/bottom, 155 sides */
.salon-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 130px 75px;
}

.salon-cta p {
  margin: 0 0 10px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 120px;
  white-space: nowrap;
  color: var(--ink);
}

.salon-cta h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 50px;
  white-space: nowrap;
  color: var(--ink);
}

/* salon heading eyebrow: red bar is 10x30 in Figma; the shared
   .page-heading rule flattens it to 10x10, so restore it for salon. */
.salon-page .page-heading .section-kicker span {
  height: 30px;
}

/* ===== voice.html — お客様の声 (Figma node 607:8942) =====
   Simple testimonial cards: a black age/gender label that straddles the top
   border of a bordered comment box, with a large quote mark at the top-right.
   6 cards stacked, gap 24, content width 1000 (140px margins @1280). */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(1000px, calc(100% - 160px));
  margin: 80px auto;
}

.voice-card {
  display: flex;
  flex-direction: column;
}

/* Header row sits above the box and is pulled down 13px so the label/quote
   overlap the box's top border (Figma mb-[-13px], z-2 over the box's z-1). */
.voice-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -13px;
}

.voice-card-label {
  padding: 6px 24px;
  background: var(--ink);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  white-space: nowrap;
}

.voice-card-quote {
  width: 32px;
  height: 24px;
  background: url("../images/voice-quote.svg") center / contain no-repeat;
}

.voice-card-body {
  position: relative;
  z-index: 1;
  padding: 20px 32px;
  border: 1px solid var(--ink);
}

.voice-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 30px;
}

/* Voice heading eyebrow: red bar is 10x30 in Figma (607:8989). The shared
   .page-heading override flattens it to 10x10, so restore it for voice. */
.voice-page .page-heading .section-kicker span {
  height: 30px;
}

/* .case-profile / .case-images / .case-tags / .case-menu below are retained
   for voice-detail.html, which still uses them. */
.case-profile {
  width: fit-content;
  min-height: 34px;
  padding: 4px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.case-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-images .image-slot {
  min-height: 215px;
}

.case-images span {
  position: absolute;
  bottom: 0;
  padding: 4px 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-images span:first-of-type {
  left: 0;
}

.case-images span:last-of-type {
  right: 0;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 1px 15px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 2px;
}

.case-menu {
  display: grid;
  gap: 5px;
}

.case-menu p {
  width: fit-content;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  line-height: 1.7;
}

.case-menu span {
  font-size: 14px;
  line-height: 1.6;
}

/* Voice pagination matches Figma 607:9040: gap 80, circular arrow buttons
   (prev = warm/disabled, next = ink), 01/02/03 in Familjen Medium. */
.voice-pagination {
  gap: 80px;
  margin-top: 0;
}

.voice-pagination .page-circle {
  border: 0;
  background: center / contain no-repeat;
}

.voice-pagination .page-circle::before {
  content: none;
}

.voice-pagination .page-circle.disabled {
  background-image: url("../images/voice-page-prev.svg");
  transform: rotate(180deg);
}

.voice-pagination .page-circle.next {
  background-image: url("../images/voice-page-next.svg");
}

.voice-pagination .page-number {
  font-weight: 500;
  line-height: 30px;
}

.voice-detail-heading {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 50px 80px;
  border-bottom: 1px solid var(--ink);
}

.voice-detail-heading h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.9;
}

.detail-tags span {
  min-height: 36px;
  padding: 6px 31px;
  font-size: 20px;
  line-height: 1.1;
}

.voice-detail-body {
  display: grid;
  justify-items: center;
  gap: 80px;
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 80px 0 90px;
}

.detail-case-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 350px);
}

.detail-case-images .image-slot {
  min-height: 430px;
}

.detail-case-images span {
  position: absolute;
  bottom: 0;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.detail-case-images span:first-of-type {
  left: 0;
}

.detail-case-images span:last-of-type {
  right: 0;
}

.voice-detail-text {
  display: grid;
  gap: 22px;
  width: min(1000px, 100%);
  padding: 0 60px;
}

.voice-detail-text > p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.7;
}

.detail-menu p,
.detail-menu span {
  font-size: 16px;
}

.skincare-hero {
  display: grid;
  grid-template-columns: 500px minmax(0, 564px);
  gap: 56px;
  align-items: start;
  width: 100%;
  padding: 80px;
  border-bottom: 1px solid var(--ink);
}

.skincare-hero-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}

.outline-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  padding: 1px 15px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.skincare-hero h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.95;
}

.skincare-hero p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.6;
}

.skincare-hero-image {
  min-height: 380px;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 30px 24px 28px;
}

.product-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  padding: 15px 32px;
  background: rgba(216, 210, 203, 0.2);
  border-radius: 999px;
  color: #a89f96;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

.product-tabs a.is-active {
  background: var(--ink);
  color: #fff;
}

.product-section {
  display: grid;
  gap: 80px;
  width: min(calc(100% - 160px), var(--max));
  margin: 0 auto;
  padding: 50px 0 80px;
}

.product-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.product-section-heading h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.95;
}

.product-section-heading p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.6;
}

.product-section-heading > span {
  font-size: 24px;
  line-height: 1;
}

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

.product-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-card-image {
  aspect-ratio: 1;
  min-height: auto;
}

.product-card-body {
  display: grid;
  gap: 10px;
}

.product-card-body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 16px;
  border: 1px solid var(--ink);
  border-radius: 1px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.product-card-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 2.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.online-product-grid {
  grid-template-rows: auto;
}

.online-shop-button {
  display: flex;
  justify-content: center;
}

.online-shop-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 80px;
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

@media (max-width: 1060px) {
  .site-header {
    padding: 10px 22px;
  }

  .global-nav,
  .contact-button {
    display: none;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .global-nav.is-open {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .global-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  }

  .two-column,
  .skincare,
  .franchise {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .hero {
    height: auto;
    background: #fff;
  }

  .hero-stage {
    position: relative;
    inset: auto;
  }

  .hero .hero-photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .hero-redband {
    display: none;
  }

  .hero-title {
    position: static;
    gap: 22px;
    padding: 28px 30px 36px;
  }

  .hero-headline .hl-row1,
  .hero-headline .hl-no {
    font-size: 56px;
  }

  .hero-headline .accent {
    font-size: 76px;
  }

  .hero-headline .hl-row2 {
    font-size: 50px;
  }

  .hero-overlay {
    width: 100%;
    max-width: 480px;
  }

  .hero-sub {
    font-size: 30px;
    line-height: 1.35;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.6;
  }

  .section,
  .franchise {
    width: min(calc(100% - 48px), var(--max));
  }

  .about.section {
    grid-template-columns: 1fr;
    align-items: stretch;
    width: min(calc(100% - 48px), var(--max));
    gap: 40px;
  }

  .about .result-block {
    order: -1;
  }

  .care-compare,
  .rehab-split,
  .fascia-split,
  .hsp-split,
  .term-row,
  .flow-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .care-compare {
    gap: 40px;
  }

  .flow-text {
    padding-left: 0;
  }

  .term-label::after {
    display: none;
  }

  .kodawari-catch strong {
    font-size: 26px;
  }

  .result-block h3 {
    margin-top: 0;
    margin-bottom: -26px;
    font-size: clamp(58px, 14vw, 96px);
  }

  .result-block {
    top: 0;
  }

  .pickup {
    padding: 48px 0;
  }

  .pickup-inner {
    width: calc(100% - 48px);
  }

  .news-list,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 30px 48px;
  }

  .store-feature,
  .store-mini-grid,
  .store-mini {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .stores-head,
  .stores-body {
    width: min(calc(100% - 48px), var(--max));
  }

  .store-feature .store-photo,
  .store-mini .store-photo-sm {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 365;
  }

  .store-feature .store-info,
  .store-mini .store-info {
    width: 100%;
  }

  .ba-grid {
    flex-direction: column;
    align-items: center;
  }

  .ba-case {
    width: 100%;
    max-width: 535px;
  }

  .why-inner {
    width: min(calc(100% - 48px), var(--max));
  }

  .reason-grid,
  .media-grid {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .media-grid {
    padding: 0;
  }

  .recruit {
    width: min(calc(100% - 48px), var(--max));
    padding: 72px 0;
  }

  .recruit-banner {
    height: 280px;
  }

  .recruit h2 {
    font-size: clamp(56px, 12vw, 96px);
    line-height: 1.1;
  }

  .recruit-arrow {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .hero-features {
    position: static;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 30px 36px;
    padding: 0;
  }

  .hero-features li {
    width: 124px;
    height: 124px;
    background-size: 124px 127px;
  }

  .hero-features .feat-text {
    font-size: 30px;
  }

  .hero-features .feat-sm {
    font-size: 21px;
  }

  .hero-features .feat-xs {
    font-size: 15px;
  }

  .why {
    padding-top: 78px;
    padding-bottom: 100px;
  }

  .why h2 {
    font-size: 38px;
  }

  .reason-grid {
    gap: 72px;
    margin-top: 70px;
  }

  .voice .inner {
    width: min(calc(100% - 48px), var(--max));
    padding-top: 78px;
    padding-bottom: 100px;
  }

  .voice-grid {
    gap: 24px;
    margin-top: 44px;
  }

  .voice-grid article {
    width: min(100%, 520px);
    min-height: auto;
    margin: 0 auto;
  }

  .voice-button {
    margin-top: 44px;
  }

  .stores {
    padding-top: 78px;
  }

  .store-grid .store-image {
    aspect-ratio: 16 / 10;
  }

  .store-description {
    min-height: auto;
  }

  .home-skincare,
  .home-faq {
    width: min(calc(100% - 48px), var(--max));
  }

  .skincare-layout {
    flex-direction: column;
    gap: 42px;
  }

  .product-image {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .skincare-copy {
    width: 100%;
  }

  .skincare-copy .intro {
    white-space: normal;
  }

  .skincare-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(56px, 12vw, 92px);
    line-height: 1.1;
  }

  .faq-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    width: 100%;
  }

  .home-faq .faq-list {
    flex-basis: auto;
    width: 100%;
  }

  .reason-grid article {
    max-width: 520px;
    margin: 0 auto;
  }

  .ba-grid {
    gap: 62px;
  }

  .ba-case {
    max-width: 690px;
    margin: 0 auto;
  }

  .franchise {
    margin-bottom: 80px;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 18px 28px;
  }

  .franchise-button {
    position: static;
    width: fit-content;
  }

  .page-heading,
  .breadcrumb {
    padding-right: 24px;
    padding-left: 24px;
  }

  .archive-post a {
    grid-template-columns: 1fr 24px;
    gap: 6px 18px;
    min-height: 76px;
  }

  .post-meta {
    grid-column: 1 / 2;
  }

  .archive-post h2 {
    grid-column: 1 / 2;
    white-space: normal;
  }

  .post-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .news-detail {
    width: min(calc(100% - 48px), var(--max));
    margin-top: 48px;
  }

  .detail-title-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .detail-title-row time {
    border-right: 0;
    line-height: 1.8;
  }

  .detail-title-row h1 {
    font-size: 24px;
    line-height: 1.6;
  }

  .detail-main-image {
    min-height: 360px;
  }

  .detail-post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-link,
  .post-nav-back {
    min-height: 68px;
    padding: 16px 24px;
  }

  .post-nav-link.prev,
  .post-nav-link.next {
    border-right: 0;
    border-left: 0;
  }

  .post-nav-back {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .about-overview,
  .about-section,
  .flow-section,
  .about-faq,
  .about-final-cta {
    width: min(calc(100% - 48px), var(--max));
  }

  .about-overview,
  .comparison-grid,
  .commitment-item,
  .commitment-item.reverse {
    grid-template-columns: 1fr;
  }

  .about-overview {
    gap: 44px;
    padding-top: 52px;
  }

  .about-main-image {
    min-height: 440px;
    border-radius: 0 0 120px 120px;
  }

  .commitment-item {
    gap: 24px;
  }

  .flow-step {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .flow-step .image-slot {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .gut-overview {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .gut-main-image {
    min-height: 360px;
  }

  .gut-comparison .comparison-card.muted {
    border-left: 1px dashed var(--ink);
  }

  .about-photo-cta {
    flex-direction: column;
    align-items: flex-start;
    width: min(calc(100% - 48px), var(--max));
    padding: 58px 42px;
  }

  .company-section {
    width: min(calc(100% - 48px), var(--max));
  }

  .company-section--split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .company-overview {
    grid-template-columns: 1fr;
    margin-top: 44px;
    gap: 40px;
  }

  .company-table {
    width: 100%;
  }

  .company-lead {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    width: min(calc(100% - 48px), var(--max));
    margin-top: 56px;
  }

  .faq-categories {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
  }

  .faq-categories p {
    grid-column: 1 / -1;
  }

  .faq-content {
    gap: 72px;
  }

  .faq-contact-cta {
    width: min(calc(100% - 48px), var(--max));
  }

  .staff-section {
    width: min(calc(100% - 48px), var(--max));
  }

  .staff-apply {
    padding: 56px 24px;
  }

  .persona-grid,
  .job-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .persona-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 26px;
    width: min(100%, 520px);
  }

  .persona-text {
    align-items: flex-start;
    width: auto;
    flex: 1;
  }

  .persona-card h3 {
    text-align: left;
  }

  .job-card {
    width: min(100%, 460px);
  }

  .staff-flow .flow-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .staff-flow .flow-list li:not(:last-child) .flow-num::after {
    display: none;
  }

  .staff-form {
    padding: 42px;
  }

  .staff-form-row {
    gap: 20px;
  }

  .staff-form-row > span:first-child {
    width: 150px;
  }

  .franchise-section {
    width: min(calc(100% - 48px), var(--max));
  }

  .policy-content {
    width: min(calc(100% - 48px), var(--max));
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .partner-num,
  .partner-card h2,
  .partner-card p {
    padding-left: 0;
  }

  .step-left,
  .step-right {
    margin-left: 0;
  }

  .step-num b {
    font-size: 76px;
  }

  .salon-list,
  .salon-cta {
    width: min(calc(100% - 48px), var(--max));
  }

  .salon-list {
    padding: 50px 0;
  }

  .salon-divider {
    width: 100%;
  }

  .salon-item {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .salon-image {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 317;
  }

  .salon-content {
    align-items: flex-start;
  }

  .salon-content h2,
  .salon-title-row h2 {
    line-height: 1.4;
  }

  .salon-actions {
    justify-content: flex-start;
  }

  .salon-cta {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 0;
    padding-left: 0;
  }

  .salon-cta p {
    line-height: 1.3;
    white-space: normal;
  }

  .salon-cta h2 {
    line-height: 1.8;
    white-space: normal;
  }

  .voice-list {
    width: min(calc(100% - 48px), var(--max));
  }

  .voice-detail-heading {
    padding-right: 24px;
    padding-left: 24px;
  }

  .voice-detail-body {
    width: min(calc(100% - 48px), var(--max));
  }

  .detail-case-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(700px, 100%);
  }

  .voice-detail-text {
    padding: 0;
  }

  .skincare-hero {
    grid-template-columns: 1fr;
    padding-right: 24px;
    padding-left: 24px;
  }

  .product-section {
    width: min(calc(100% - 48px), var(--max));
  }

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

@media (max-width: 640px) {
  .hero-headline .hl-row1,
  .hero-headline .hl-no {
    font-size: 44px;
  }

  .hero-headline .accent {
    font-size: 60px;
  }

  .hero-headline .hl-row2 {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 26px;
  }

  .lead {
    letter-spacing: 3px;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .store-head {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .store-head p {
    font-size: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .result-block h3,
  .skincare h2,
  .franchise h2 {
    font-size: 46px;
  }

  .skincare-copy h2 {
    font-size: 54px;
  }

  .skincare-copy .intro {
    font-size: 24px;
  }

  .skincare-copy p:not(.intro) {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .tag-row {
    gap: 12px;
  }

  .tag-row a {
    font-size: 14px;
  }

  .home-faq summary {
    min-height: 76px;
    font-size: 20px;
  }

  .home-faq details p {
    padding-left: 0;
    font-size: 15px;
    letter-spacing: 2px;
  }

  .franchise {
    padding: 28px 22px;
  }

  .site-footer {
    padding: 40px 24px 30px;
  }

  .page-heading h1 {
    font-size: 30px;
  }

  .pagination {
    gap: 18px;
  }

  .page-number {
    width: 34px;
    font-size: 24px;
  }

  .news-detail {
    width: min(calc(100% - 32px), var(--max));
  }

  .detail-main-image {
    min-height: 260px;
    margin-bottom: 48px;
  }

  .detail-content {
    padding: 0;
    font-size: 14px;
  }

  .detail-content h2 {
    margin-top: 56px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 20px;
  }

  .about-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 32px;
  }

  .about-tabs a {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .about-overview,
  .about-section,
  .flow-section,
  .about-faq,
  .about-final-cta {
    width: min(calc(100% - 32px), var(--max));
  }

  .about-overview,
  .about-section,
  .flow-section,
  .about-faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about.section {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about h2 {
    margin-top: 12px;
    font-size: 31px;
    letter-spacing: 1px;
  }

  .about .intro,
  .about p:not(.intro) {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .about .intro span {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .about .view-link {
    justify-self: start;
  }

  .result-block h3 {
    margin-bottom: -18px;
    font-size: 54px;
  }

  .about-copy h1,
  .about-section h2,
  .flow-section h2,
  .about-faq h2 {
    font-size: 31px;
  }

  .about-main-image {
    min-height: 360px;
  }

  .comparison-card {
    padding: 28px 24px;
  }

  .comparison-card h3,
  .commitment-text h3,
  .flow-step h3 {
    font-size: 21px;
  }

  .commitment-number {
    font-size: 52px;
  }

  .commitment-images {
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .flow-step .image-slot {
    grid-column: auto;
  }

  .about-final-cta {
    margin-bottom: 56px;
    padding: 54px 18px;
  }

  .about-final-cta .actions {
    width: 100%;
  }

  .gut-copy-block p {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .gut-comparison .comparison-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .gut-comparison .comparison-card li {
    font-size: 14px;
  }

  .about-photo-cta {
    width: min(calc(100% - 32px), var(--max));
    min-height: 420px;
    padding: 46px 24px;
  }

  .photo-cta-copy p {
    font-size: 34px;
  }

  .photo-cta-copy h2 {
    font-size: 17px;
    letter-spacing: 1.5px;
  }

  .about-photo-cta .actions {
    width: 100%;
  }

  .about-photo-cta .button-light {
    width: 100%;
  }

  .why {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .why h2 {
    margin-top: 26px;
    font-size: 32px;
  }

  .reason-grid {
    gap: 54px;
    margin-top: 50px;
  }

  .reason-visual {
    min-height: 96px;
    margin-bottom: 18px;
  }

  .reason-method svg {
    width: 98px;
  }

  .reason-result svg {
    width: 68px;
  }

  .reason-result strong {
    font-size: 34px;
  }

  .reason-science svg {
    width: 108px;
  }

  .reason-grid .reason-catch {
    min-height: auto;
    font-size: 17px;
  }

  .reason-grid p {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .ba-grid {
    gap: 48px;
    margin-top: 36px;
  }

  .ba-pair {
    gap: 10px;
  }

  .ba-badge {
    min-height: 28px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 16px;
  }

  .ba-label {
    bottom: 12px;
    font-size: clamp(22px, 9vw, 34px);
  }

  .ba-case h3 {
    font-size: 22px;
  }

  .ba-case p {
    font-size: 13px;
  }

  .company-section {
    width: min(calc(100% - 32px), var(--max));
    padding: 52px 0;
  }

  .company-section-heading span {
    padding: 3px 10px;
    font-size: 13px;
  }

  .company-overview {
    margin-top: 32px;
    gap: 28px;
  }

  .company-lead {
    font-size: 16px;
    letter-spacing: 1.4px;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .company-omoi-top {
    gap: 16px;
  }

  .company-en-name {
    font-size: 22px;
    line-height: 44px;
  }

  .company-books {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-row span {
    padding-top: 0;
  }

  .form-submit {
    justify-self: start;
  }

  .faq-heading p {
    font-size: 14px;
    letter-spacing: 1.3px;
    white-space: normal;
  }

  .faq-layout {
    width: min(calc(100% - 32px), var(--max));
    gap: 46px;
    margin-top: 42px;
    padding-bottom: 56px;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }

  .faq-categories a {
    font-size: 15px;
  }

  .faq-group {
    gap: 28px;
  }

  .faq-group-heading {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .faq-group-heading h2 {
    font-size: 20px;
  }

  .faq-group-heading p {
    font-size: 13px;
  }

  .faq-item summary {
    grid-template-columns: 20px minmax(0, 1fr) 14px;
    gap: 10px;
    font-size: 16px;
  }

  .faq-item > p,
  .faq-item > div {
    padding-left: 30px;
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .faq-contact-cta {
    width: min(calc(100% - 32px), var(--max));
    min-height: 260px;
    margin-top: 56px;
    margin-bottom: 70px;
  }

  .faq-contact-cta h2 {
    font-size: 15px;
    letter-spacing: 1.4px;
  }

  .staff-heading p {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .staff-section {
    width: min(calc(100% - 32px), var(--max));
    padding: 56px 0;
  }

  .staff-section h2,
  .staff-form-heading h2 {
    font-size: 29px;
    line-height: 1.6;
  }

  .persona-grid {
    margin-top: 34px;
  }

  .persona-card {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .persona-text {
    align-items: center;
    width: 100%;
  }

  .persona-card h3 {
    text-align: center;
  }

  .job-grid {
    gap: 24px;
  }

  .job-card {
    width: 100%;
    padding: 24px 20px;
  }

  .staff-flow .flow-list p {
    width: 100%;
    text-align: center;
  }

  .staff-apply {
    padding: 56px 18px 72px;
  }

  .staff-form {
    padding: 24px 18px;
  }

  .staff-form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .staff-form-row > span:first-child {
    width: auto;
  }

  .franchise-lead p {
    font-size: 14px;
    letter-spacing: 1.3px;
    line-height: 1.8;
  }

  .franchise-section {
    width: min(calc(100% - 32px), var(--max));
    padding: 56px 0 72px;
  }

  .franchise-section-label {
    margin-bottom: 42px;
  }

  .partner-num {
    font-size: 34px;
  }

  .partner-card h2 {
    font-size: 21px;
  }

  .opening-list {
    gap: 38px;
  }

  .opening-list li {
    flex-direction: column;
    gap: 8px;
  }

  .step-num b {
    font-size: 62px;
  }

  .franchise-form-section {
    padding: 56px 0 72px;
  }

  .franchise-form-heading h2 {
    font-size: 26px;
    line-height: 1.6;
  }

  .franchise-form-heading p {
    font-size: 14px;
  }

  .policy-content {
    width: min(calc(100% - 32px), var(--max));
    gap: 50px;
    margin-top: 42px;
    margin-bottom: 72px;
    font-size: 14px;
    letter-spacing: 1.2px;
  }

  .policy-intro,
  .policy-item p,
  .policy-item ul,
  .policy-section > p,
  .policy-section address {
    padding-left: 0;
  }

  .policy-section header {
    align-items: flex-start;
    gap: 12px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-item h3 {
    font-size: 17px;
  }

  .salon-list,
  .salon-cta {
    width: min(calc(100% - 32px), var(--max));
  }

  .salon-list {
    padding-top: 30px;
  }

  .salon-image {
    min-height: 0;
  }

  .salon-content h2,
  .salon-title-row h2 {
    font-size: 29px;
  }

  .salon-title-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .salon-title-row span {
    min-height: 28px;
    font-size: 13px;
  }

  .salon-row {
    font-size: 14px;
  }

  .salon-actions {
    display: grid;
    gap: 12px;
  }

  .salon-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .salon-cta p {
    font-size: 34px;
  }

  .salon-cta h2 {
    font-size: 17px;
    letter-spacing: 1.5px;
  }

  .salon-cta .actions {
    width: 100%;
  }

  .voice-list {
    width: min(calc(100% - 32px), var(--max));
  }

  .case-images .image-slot {
    min-height: 190px;
  }

  .voice-detail-heading {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .voice-detail-heading h1 {
    font-size: 29px;
    line-height: 1.6;
  }

  .detail-tags span {
    min-height: 30px;
    padding: 4px 18px;
    font-size: 15px;
  }

  .voice-detail-body {
    width: min(calc(100% - 32px), var(--max));
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .detail-case-images .image-slot {
    min-height: 260px;
  }

  .detail-case-images span {
    padding: 5px 9px;
    font-size: 12px;
  }

  .voice-detail-text > p {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .skincare-hero {
    padding: 48px 16px;
  }

  .skincare-hero h1,
  .product-section-heading h2 {
    font-size: 29px;
    line-height: 1.6;
  }

  .skincare-hero p,
  .product-section-heading p {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .skincare-hero-image {
    min-height: 260px;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-tabs a,
  .product-tabs a + a {
    min-width: 0;
    margin-left: 0;
    border: 1px solid var(--line);
    font-size: 14px;
  }

  .product-section {
    width: min(calc(100% - 32px), var(--max));
    gap: 48px;
    padding-top: 36px;
  }

  .product-section-heading {
    align-items: start;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-card-body h3 {
    font-size: 21px;
  }

  .online-shop-button a {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 15px;
  }
}

/* ============================================================
   SKIN CARE — salon-limited rebuild (Figma node 607:9170).
   Scoped to `.skincare-salon-page` so skincare-online.html (which
   shares the .skincare-hero / .product-* class names) is untouched.
   px / letter-spacing / line-height are literal Figma values; the
   1280 canvas scales under the .page-fit `zoom`, so fixed px hold.
   ============================================================ */

/* Hero copy (Figma 607:9181) — keeps the shared .skincare-hero grid */
.skincare-salon-page .outline-label {
  min-height: 0;
  line-height: 22px;
}

.skincare-salon-page .skincare-hero h1 {
  font-weight: 700;
  line-height: 70px;
}

.skincare-salon-page .skincare-hero p {
  line-height: 25px;
}

/* Hero image — 564×380 clip window onto the source photo (Figma 607:9188) */
.skincare-salon-page .skincare-hero-image {
  position: relative;
  width: 564px;
  height: 380px;
  margin: 0;
  overflow: hidden;
}

.skincare-salon-page .skincare-hero-image img {
  position: absolute;
  top: -457px;
  left: 0;
  width: 582px;
  height: 873px;
  max-width: none;
  object-fit: cover;
}

/* Section heading (Figma 607:9195) */
.skincare-salon-page .product-section-heading-copy {
  display: flex;
  flex-direction: column;
}

.skincare-salon-page .product-section-heading h2 {
  font-weight: 700;
  line-height: 70px;
}

.skincare-salon-page .product-section-heading p {
  line-height: 25px;
}

.skincare-salon-page .product-section-fav {
  flex-shrink: 0;
  width: 20px;
  height: 25px;
}

/* Product grid + cards (Figma 607:9204) */
.skincare-salon-page .product-grid {
  align-items: start;
}

.skincare-salon-page .product-card-image {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.skincare-salon-page .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.skincare-salon-page .product-card-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}

.skincare-salon-page .product-card-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 45px;
}

.skincare-salon-page .product-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--ink);
  border-radius: 1px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 22px;
}

.skincare-salon-page .product-card-desc {
  padding: 10px 0;
}

.skincare-salon-page .product-card-desc p {
  display: block;
  margin: 0;
  overflow: visible;
  font-size: 14px;
  line-height: 30px;
  white-space: pre-wrap;
  -webkit-line-clamp: none;
}

/* Below the fluid wrapper: stack hero, swap the fixed crop for a fluid image */
@media (max-width: 1060px) {
  .skincare-salon-page .skincare-hero-image {
    width: 100%;
    max-width: 564px;
    height: auto;
    min-height: 0;
    aspect-ratio: 564 / 380;
  }

  .skincare-salon-page .skincare-hero-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-position: center 74%;
  }
}

@media (max-width: 640px) {
  .skincare-salon-page .skincare-hero h1,
  .skincare-salon-page .product-section-heading h2 {
    font-size: 29px;
    line-height: 1.6;
  }

  .skincare-salon-page .skincare-hero p,
  .skincare-salon-page .product-section-heading p {
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .skincare-salon-page .product-card-heading h3 {
    font-size: 21px;
  }
}

/* ============================================================================
   ABOUT-GUT PAGE — 1:1 Figma rebuild (node 607:8120 "about｜腸ジムとは").
   Reuses the shared `abt-` design system (above); `.abt-gut` scopes the few
   gut-only deltas: intro body (divider + red sub-head), left-aligned compare
   headings, and the photo-background Final CTA. Self-contained — no other page
   depends on these. Tokens: --ink #1e1e1e, --red #e71f19, --warm #d8d2cb.
   ========================================================================= */

/* ---- intro split: copy 550 / image 503×441 (607:8147) ---- */
.abt-gut .abt-intro-copy {
  width: 550px;
}

.abt-gut .abt-intro-image {
  width: 503px;
  height: 441px;
}

.abt-gut .abt-intro-image img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: none;
  left: auto;
  top: auto;
  object-fit: cover;
  object-position: center;
}

/* ---- intro Body Text (607:8154): lead → rule → red head + sub + body ---- */
.abt-gut-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-gut-lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
  color: var(--ink);
}

.abt-gut-rule {
  display: block;
  width: 100%;
  height: 0;
  border: 0;
  border-top: 1px solid var(--ink);
}

.abt-gut-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abt-gut-rhead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 3px;
  color: var(--ink);
}

.abt-gut-rhead .r {
  color: var(--red);
}

.abt-gut-sub {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 3px;
  color: var(--ink);
}

.abt-gut-body {
  display: flex;
  flex-direction: column;
}

.abt-gut-body p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
  color: var(--ink);
}

/* ---- comparison (607:8163): left-aligned heading w/ short underline ---- */
.abt-gut .abt-cmp-gym .abt-cmp-head,
.abt-gut .abt-cmp-esthe .abt-cmp-head {
  justify-content: flex-start;
  padding-bottom: 0;
  border-bottom: 0;
}

.abt-gut .abt-cmp-head h2 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  text-align: left;
}

.abt-gut .abt-cmp-esthe .abt-cmp-head h2 {
  border-bottom-color: #5e5e5e;
}

/* ---- Final CTA (607:8365): photo bg + grey overlay + white copy ---- */
.abt-gut .abt-cta-inner {
  position: relative;
  overflow: hidden;
  background: #a89f96 url(../images/about-gut-cta-bg.jpg) center / cover no-repeat;
}

.abt-gut .abt-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(168, 159, 150, 0.8);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.abt-gut .abt-cta-copy,
.abt-gut .abt-cta-btn {
  position: relative;
  z-index: 1;
}

.abt-gut .abt-cta-head,
.abt-gut .abt-cta-lead {
  color: #fff;
}

/* CTA button is white-on-dark here (Figma 263:3440), not the dark abt-btn */
.abt-gut .abt-cta-btn {
  background: #fff;
  border-color: #fff;
}

.abt-gut .abt-cta-btn span {
  color: var(--ink);
}

