/* ===== Lumière Esthetic — LP styles ===== */
:root {
  --bg: #f5f9fc;
  --bg-tint: #e9f1f7;
  --ink: #1f2933;
  --muted: #79899a;
  --accent: #3f7cac;      /* snow blue */
  --accent-2: #8fc0e0;    /* light ice blue */
  --accent-deep: #2c6088;
  --line: rgba(31, 41, 51, 0.1);
  --white: #ffffff;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", system-ui, sans-serif;
  --display: "Cormorant Garamond", "Noto Serif JP", serif;
  --radius: 16px;
  --shadow: 0 20px 50px -24px rgba(76, 52, 40, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1120px, 90vw); margin-inline: auto; }
.wrap--narrow { width: min(720px, 90vw); }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; }
.sp { display: none; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.82rem; letter-spacing: 0.32em; font-weight: 600;
  color: var(--accent-deep); text-transform: uppercase;
}
.eyebrow.center { display: block; text-align: center; margin-bottom: 0.6rem; }

.h2 {
  font-family: var(--serif); font-weight: 600; line-height: 1.4;
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--bg-tint); }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: 1rem 2rem; border-radius: 999px; border: 0; cursor: pointer;
  box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.04em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 26px 56px -22px rgba(120, 70, 50, 0.55); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.84rem; box-shadow: none; }
.btn--block { width: 100%; padding: 1.15rem; font-size: 1.05rem; margin-top: 0.6rem; }
.btn--line { background: #06c755; color: #fff; box-shadow: 0 16px 36px -18px rgba(6, 199, 85, 0.6); }
.btn--line::before { content: "LINE"; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em; background: rgba(255, 255, 255, 0.22); padding: 0.1rem 0.4rem; border-radius: 5px; margin-right: 0.2rem; }
.btn--line:hover { filter: brightness(1.04); }
.line-cta { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; background: #f0fbf4; border: 1px solid #c8efd6; border-radius: 14px; padding: 1.1rem 1.4rem; margin-top: 1.6rem; }
.line-cta span { font-weight: 700; color: #0a7c3b; }
.fab--line { background: #06c755; border: 0; cursor: pointer; }
.link-arrow { font-weight: 700; color: var(--accent-deep); }
.link-arrow:hover { color: var(--accent); }

/* ----- header ----- */
.hd {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 241, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hd__in { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.5rem; }
.brand em { font-style: normal; font-size: 0.7rem; letter-spacing: 0.22em; color: var(--muted); text-transform: uppercase; }
.brand__mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--white); font-size: 1.05rem; font-weight: 700;
}
.nav { margin-left: auto; display: flex; gap: 1.5rem; font-size: 0.9rem; font-weight: 500; }
.nav a:hover { color: var(--accent); }
.hd .btn { margin-left: 0.5rem; }

/* ----- hero ----- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  /* テーマのアクセント色から生成 (旧: 固定の青系グラデ) */
  background:
    radial-gradient(60% 60% at 80% 10%, color-mix(in srgb, var(--accent-2) 40%, transparent), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%),
    var(--bg);
}
.hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero__title {
  font-family: var(--serif); font-weight: 700; line-height: 1.32;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem); letter-spacing: 0.02em; margin: 0.6rem 0 1.2rem;
}
.hero__lead { color: #5e544c; margin-bottom: 2rem; }
.hero__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; font-size: 0.86rem; color: var(--accent-deep); font-weight: 500; }
.hero__card { aspect-ratio: 4 / 5; }
.hero__photo {
  width: 100%; height: 100%; border-radius: 28px; box-shadow: var(--shadow);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6), transparent 45%),
    linear-gradient(135deg, #cfe8f6, #7fb1d6 55%, #3f7cac);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 20px;
}
.hero__photo span { color: rgba(255, 255, 255, 0.85); font-family: var(--serif); letter-spacing: 0.5em; font-size: 0.9rem; }

/* ----- stats ----- */
.stats { background: var(--ink); color: var(--white); padding: 2.2rem 0; }
.stats__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat strong { font-family: var(--serif); font-size: 1.9rem; display: block; }
.stat strong span { font-size: 1rem; color: var(--accent-2); margin-left: 2px; }
.stat small { color: rgba(255, 255, 255, 0.65); font-size: 0.8rem; }

/* ----- concerns ----- */
.concerns__list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 760px; margin: 0 auto 2rem;
}
.concerns__list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.4rem; position: relative; padding-left: 2.6rem;
}
.concerns__list li::before { content: "✓"; position: absolute; left: 1.1rem; color: var(--accent); font-weight: 700; }
.concerns__note { text-align: center; font-size: 1.1rem; }
.concerns__note b { color: var(--accent-deep); }

/* ----- cards ----- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; box-shadow: 0 12px 30px -22px rgba(76, 52, 40, 0.35);
}
.card__no { font-family: var(--serif); font-size: 1.6rem; color: var(--accent-2); margin-bottom: 0.6rem; }
.card h3 { font-family: var(--serif); font-size: 1.16rem; margin-bottom: 0.7rem; line-height: 1.5; }
.card p { color: #5e544c; font-size: 0.94rem; }

/* ----- menu ----- */
.menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 1.4rem; }
.menu__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; position: relative; text-align: center;
}
.menu__item--pop { border-color: var(--accent); box-shadow: var(--shadow); }
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 0.74rem; font-weight: 700;
  padding: 0.25rem 0.9rem; border-radius: 999px; letter-spacing: 0.1em;
}
.menu__item h3 { font-family: var(--serif); font-size: 1.16rem; margin-bottom: 0.6rem; }
.menu__item p { color: #5e544c; font-size: 0.9rem; min-height: 3.2em; }
.menu__price { margin-top: 1rem; display: flex; align-items: baseline; justify-content: center; gap: 0.35rem; }
.menu__price span { font-size: 0.8rem; color: var(--muted); }
.menu__price strong { font-family: var(--serif); font-size: 1.8rem; color: var(--accent-deep); }
.menu__price small { color: var(--muted); }

/* ----- voices ----- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.voice { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; }
.voice__stars { color: var(--accent-2); letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.voice blockquote { font-size: 0.95rem; color: #4f463f; margin-bottom: 1rem; }
.voice figcaption { font-size: 0.82rem; color: var(--muted); }

/* ----- flow ----- */
.flow { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: f; }
.flow li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.3rem; text-align: center; }
.flow__no {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: var(--white);
  font-family: var(--serif); font-weight: 700; margin-bottom: 0.8rem;
}
.flow h3 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.4rem; }
.flow p { font-size: 0.86rem; color: #5e544c; }

/* ----- faq ----- */
.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 0 1.4rem; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 700; position: relative; padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; position: absolute; right: 0; color: var(--accent); transition: transform 0.2s; }
.faq details[open] summary::after { content: "－"; }
.faq p { padding: 0 0 1.2rem; color: #5e544c; font-size: 0.94rem; }

/* ----- reserve form ----- */
.reserve { background: linear-gradient(180deg, var(--bg-tint), var(--bg)); }
.form {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); margin-top: 2rem;
}
.field { margin-bottom: 1.2rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.45rem; }
.req { color: var(--white); background: var(--accent); font-size: 0.66rem; padding: 0.1rem 0.5rem; border-radius: 999px; margin-left: 0.4rem; vertical-align: middle; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: 0.85rem 1rem; border: 1px solid var(--line);
  border-radius: 11px; background: #fcfaf8; color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184, 133, 111, 0.18);
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ts-slot { margin: 0.4rem 0 0.2rem; }
.form__note { text-align: center; margin-top: 0.9rem; }
.form__note a { color: var(--accent-deep); text-decoration: underline; }
.form-msg { margin-top: 1rem; text-align: center; font-weight: 700; border-radius: 11px; padding: 0; }
.form-msg.show { padding: 0.9rem 1rem; }
.form-msg.ok { background: #e8f3ec; color: #1f7a43; }
.form-msg.err { background: #fceaea; color: #b53b3b; }

/* ----- access ----- */
.access__list { display: grid; gap: 0.6rem; margin-top: 1.5rem; }
.access__list > div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.access__list dt { color: var(--accent-deep); font-weight: 700; font-size: 0.9rem; }
.access__list dd { color: #45525f; }
.access__list a { color: var(--accent-deep); font-weight: 700; }

/* ----- footer ----- */
.ft { background: var(--ink); color: rgba(255, 255, 255, 0.78); padding: 2.6rem 0; text-align: center; }
.ft__links { margin: 0.5rem 0; }
.ft__links a { color: rgba(255, 255, 255, 0.78); font-size: 0.82rem; text-decoration: underline; }
.ft__brand { font-family: var(--serif); font-size: 1.2rem; color: var(--white); display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.ft__addr { font-size: 0.84rem; margin-bottom: 0.4rem; }
.ft__copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }

/* ----- FAB ----- */
.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; display: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: var(--white);
  font-weight: 700; padding: 0.85rem 1.4rem; border-radius: 999px; box-shadow: var(--shadow); font-size: 0.92rem;
}

/* ----- responsive ----- */
@media (max-width: 860px) {
  .nav { display: none; }
  .hero__in { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .stats__in { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .cards, .menu, .voices { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .concerns__list { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .sp { display: inline; }
  .fab { display: inline-flex; }
  .hd .btn--sm { display: none; }
  /* スマホは左右の無駄を詰めて表示領域を広く */
  .wrap, .wrap--narrow { width: auto; margin-inline: 0; padding-inline: .7rem; }
  .section { padding: 2.4rem 0; }
  .reserve .form { padding: 1.1rem; }
  .cal { padding: .6rem; }
}

/* ---- 予約カレンダー (日付×時間 一覧グリッド・1枠1名) ---- */
.calgrid-host { margin-top: .3rem; }
.calgrid-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid #e7e2da; border-radius: 12px; background: #fff; }
.calgrid { border-collapse: collapse; width: 100%; table-layout: fixed; }
.calgrid th, .calgrid td { text-align: center; padding: 0; border-bottom: 1px solid #f0ece6; border-right: 1px solid #f0ece6; }
.calgrid thead th { padding: .4rem .1rem; font-size: .78rem; font-weight: 700; color: var(--accent-deep); background: var(--bg-tint); white-space: nowrap; position: sticky; top: 0; z-index: 1; }
.calgrid thead th.sun { color: #d05a5a; }
.calgrid thead th.sat { color: #4a7bb0; }
.calgrid .cg-dow { font-size: .68rem; font-weight: 500; opacity: .85; }
.calgrid .cg-time { position: sticky; left: 0; z-index: 2; background: #fff; padding: 0 .3rem; font-size: .76rem; font-weight: 700; color: #6b6259; white-space: nowrap; font-variant-numeric: tabular-nums; }
.calgrid thead th.cg-corner { position: sticky; left: 0; z-index: 3; width: 50px; }
.cg-cell { display: block; width: 100%; min-width: 0; height: 38px; border: 0; background: transparent; font: inherit; font-size: 1.05rem; font-weight: 800; cursor: default; }
.cg-cell.ok { color: #2a9d5c; cursor: pointer; }
.cg-cell.ok:hover { background: var(--bg-tint); }
.cg-cell.ng { color: #d9b3b0; }
.cg-cell.on { background: var(--accent); color: #fff; border-radius: 6px; }
.cg-cell.on-sub { background: var(--accent-2); color: #fff; border-radius: 6px; }
/* 選択中マスはホバーで薄くせず、少し濃くして「選択済み」を維持 */
.cg-cell.ok.on:hover { background: var(--accent-deep); }
.cg-cell.ok.on-sub:hover { background: var(--accent-2); }
/* ---- 週切替 (スマホ: 1週間を1画面で一望) ---- */
.cg-weeknav { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .5rem; font-size: .88rem; }
.cg-wk { border: 1px solid #ddd5cb; background: #fff; border-radius: 999px; padding: .35rem .8rem; font: inherit; font-size: .8rem; font-weight: 700; color: #55504a; cursor: pointer; white-space: nowrap; }
.cg-wk:disabled { opacity: .35; cursor: default; }
.calgrid.weekly { width: 100%; table-layout: fixed; min-width: 0; }
.calgrid.weekly .cg-cell { min-width: 0; }
.calgrid.weekly .cg-time { padding: 0 .3rem; font-size: .72rem; }
/* ===== プログラム型LP 追加セクション (overview / reward / courses / categories / guide) ===== */
.sec-lead { display: block; margin: -1.6rem auto 2.6rem; max-width: 46em; }

/* ----- hero: invitation note & at-a-glance ----- */
.hero__note {
  font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.42em;
  color: var(--accent-deep); text-transform: uppercase; margin: -0.6rem 0 1.6rem;
}
.glance {
  background: var(--white); border: 1px solid var(--accent-2); border-radius: 10px;
  box-shadow: var(--shadow); padding: 2.2rem 2rem; text-align: center; position: relative;
}
.glance::after { content: ""; position: absolute; inset: 9px; border: 1px solid color-mix(in srgb, var(--accent-2) 55%, transparent); border-radius: 6px; pointer-events: none; }
.glance__label {
  font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.38em;
  color: var(--accent-deep); text-transform: uppercase; margin-bottom: 0.6rem;
}
.glance__item { padding: 1.05rem 0 0.9rem; }
.glance__item + .glance__item { border-top: 1px solid var(--line); }
.glance__item strong { font-family: var(--display); font-weight: 500; font-size: 2.7rem; line-height: 1.12; display: block; }
.glance__item strong span { font-family: var(--serif); font-size: 1.02rem; color: var(--accent-deep); margin-left: 0.2rem; }
.glance__item small { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.08em; }

/* ----- overview ----- */
.ovw__body p { color: #5e544c; margin-bottom: 1rem; }
.ovw__rec { margin-top: 2.2rem; text-align: center; }
.ovw__rlabel {
  display: block; font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.34em;
  color: var(--accent-deep); text-transform: uppercase; margin-bottom: 0.9rem;
}
.ovw__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.ovw__chips li {
  border: 1px solid var(--accent-2); background: var(--white); color: var(--accent-deep);
  border-radius: 999px; padding: 0.32rem 1.15rem; font-size: 0.86rem;
}

/* ----- reward timeline ----- */
.tl { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; position: relative; margin: 2.8rem 0 1.6rem; }
.tl::before { content: ""; position: absolute; top: calc(1.85rem + 6px); left: 16.6%; right: 16.6%; border-top: 1px solid var(--accent-2); }
.tl li { position: relative; text-align: center; padding-top: 3.6rem; }
.tl__step {
  position: absolute; top: 0; left: 0; right: 0;
  font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.32em;
  color: var(--accent-deep); text-transform: uppercase;
}
.tl__dot {
  position: absolute; top: 1.85rem; left: 50%; transform: translateX(-50%);
  width: 13px; height: 13px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg); z-index: 1;
}
.tl__card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.1rem 1.3rem; height: 100%; }
.tl__card h3 { font-family: var(--serif); font-size: 1.12rem; margin-bottom: 0.35rem; }
.tl__card p { font-size: 0.92rem; color: #5e544c; }
.tl__card small { display: block; margin-top: 0.4rem; font-size: 0.78rem; color: var(--accent-deep); letter-spacing: 0.06em; }
.cond {
  display: grid; grid-template-columns: 190px 1fr; gap: 0.4rem 1.4rem; align-items: center;
  background: var(--white); border: 1px solid var(--accent-2); border-radius: var(--radius); padding: 1.25rem 1.7rem;
}
.cond__label { font-family: var(--serif); font-weight: 700; color: var(--accent-deep); }
.cond p { font-size: 0.95rem; color: #5e544c; }

/* ----- courses ----- */
.courses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.course {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.3rem 1.7rem 1.8rem; position: relative; display: flex; flex-direction: column;
  box-shadow: 0 12px 30px -22px rgba(76, 52, 40, 0.35);
}
.course--pop {
  border-color: var(--accent); box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--bg-tint), var(--white) 42%);
}
.course__en { font-family: var(--display); font-weight: 500; font-size: 2.4rem; line-height: 1.08; text-align: center; letter-spacing: 0.03em; }
.course--pop .course__en { color: var(--accent-deep); }
.course__ja { text-align: center; font-size: 0.78rem; letter-spacing: 0.26em; color: var(--muted); margin: 0.35rem 0 1.2rem; }
.course__plabel { text-align: center; font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.36em; color: var(--accent-deep); text-transform: uppercase; }
.course__price {
  text-align: center; font-family: var(--display); font-weight: 500; font-size: 3.1rem; line-height: 1.15;
  padding-bottom: 1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--accent-2);
}
.course__price span { font-family: var(--serif); font-size: 1.15rem; color: var(--accent-deep); margin-left: 0.25rem; }
.course__copy { font-size: 0.88rem; color: var(--accent-deep); text-align: center; margin-bottom: 1.2rem; }
.course__specs { margin-bottom: 1.3rem; }
.course__specs > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0.1rem; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.course__specs dt { color: var(--muted); }
.course__specs dd { font-weight: 700; }
.course__blabel { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--accent-deep); text-transform: uppercase; margin-bottom: 0.7rem; }
.course__bene ol { list-style: none; counter-reset: cb; display: grid; gap: 0.55rem; }
.course__bene li { counter-increment: cb; position: relative; padding-left: 2.1rem; }
.course__bene li::before {
  content: counter(cb, decimal-leading-zero); position: absolute; left: 0.1rem; top: 0.18em;
  font-family: var(--display); font-size: 0.82rem; color: var(--accent);
}
.course__bene h4 { font-family: var(--serif); font-size: 0.95rem; line-height: 1.55; }
.course__bene li p { font-size: 0.8rem; color: var(--muted); }
.course__note { margin-top: auto; padding-top: 1.1rem; font-size: 0.76rem; color: var(--muted); line-height: 1.7; }

/* ----- menu categories ----- */
.mcats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.mcat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.8rem; }
.mcat__no { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.32em; color: var(--accent-deep); text-transform: uppercase; margin-bottom: 0.25rem; }
.mcat h3 { font-family: var(--serif); font-size: 1.28rem; margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--accent-2); }
.mcat__items { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem 0; color: #5e544c; font-size: 0.95rem; }
.mcat__items li:not(:last-child)::after { content: "／"; margin: 0 0.7rem; color: var(--accent-2); }
.mcat__note { margin-top: 0.8rem; font-size: 0.84rem; color: var(--muted); }

/* ----- participation guide ----- */
.guide { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; align-items: stretch; }
.guide__card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--accent-2);
  border-radius: var(--radius); padding: 2rem 1.9rem; text-align: center; display: flex; flex-direction: column;
}
.guide__card--req { border-top-color: var(--accent); }
.guide__label { font-family: var(--display); font-size: 0.7rem; letter-spacing: 0.34em; color: var(--accent-deep); text-transform: uppercase; }
.guide__card h3 { font-family: var(--serif); font-size: 1.22rem; margin: 0.35rem 0 1.1rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--accent-2); }
.guide__list { list-style: none; text-align: left; display: grid; margin-bottom: 1.1rem; }
.guide__list li { position: relative; padding: 0.65rem 0 0.65rem 1.8rem; border-bottom: 1px solid var(--line); font-weight: 600; }
.guide__list--req li::before { content: "◆"; position: absolute; left: 0.15rem; color: var(--accent); font-size: 0.78rem; top: 0.85rem; }
.guide__list--opt li::before { content: "○"; position: absolute; left: 0.15rem; color: var(--accent); font-size: 0.85rem; top: 0.72rem; }
.guide__list small { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.guide__note { margin-top: auto; font-size: 0.88rem; color: var(--accent-deep); }
.guide__privacy { margin-top: auto; background: var(--bg-tint); border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.2rem; font-size: 0.84rem; color: #5e544c; }
.guide__privacy span { display: block; font-family: var(--display); font-size: 0.66rem; letter-spacing: 0.32em; color: var(--accent-deep); text-transform: uppercase; margin-bottom: 0.3rem; }

/* ----- voices: 引用マーク ----- */
.voice__q { font-family: var(--display); font-size: 2.8rem; line-height: 0.6; display: block; color: var(--accent-2); margin: 0.4rem 0 0.7rem; }

/* ----- reserve steps ----- */
.rsteps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0 0.4rem; }
.rsteps li { text-align: center; background: var(--white); border: 1px solid var(--accent-2); border-radius: var(--radius); padding: 1.5rem 1.2rem; }
.rsteps li:first-child { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); border-color: transparent; color: var(--white); }
.rsteps span { display: block; font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.35rem; }
.rsteps li:first-child span { color: rgba(255, 255, 255, 0.85); }
.rsteps h3 { font-family: var(--serif); font-size: 1.16rem; margin-bottom: 0.3rem; }
.rsteps p { font-size: 0.84rem; color: var(--muted); }
.rsteps li:first-child p { color: rgba(255, 255, 255, 0.88); }

/* ----- footer 運営会社 ----- */
.ft__company { font-size: 0.8rem; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.62); margin-bottom: 0.4rem; }

@media (max-width: 860px) {
  .glance { margin-top: 0.6rem; }
  .tl { grid-template-columns: 1fr; gap: 1.1rem; margin-top: 1.8rem; }
  .tl::before { display: none; }
  .tl li { padding-top: 2.9rem; }
  .tl__dot { display: none; }
  .cond { grid-template-columns: 1fr; padding: 1.1rem 1.2rem; }
  .courses, .mcats, .guide, .rsteps { grid-template-columns: 1fr; }
  .course--pop { order: 0; }
}

/* ---- 予約完了ポップアップ ---- */
.done-overlay { position: fixed; inset: 0; background: rgba(31, 41, 51, .55); display: grid; place-items: center; z-index: 100; padding: 1.2rem; }
.done-card { background: #fff; border-radius: 18px; padding: 2.2rem 2rem; width: min(420px, 92vw); text-align: center; box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .5); }
.done-check { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--accent); color: #fff; font-size: 2rem; font-weight: 700; display: grid; place-items: center; }
.done-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.done-when { margin-bottom: .3rem; }
.done-note { color: #6b6259; font-size: .9rem; margin-bottom: 1.4rem; }

/* ===== Beauty Snow: 日本の美容LPスタイル ===== */
.lp--jbeauty {
  --ink: #2d2420;
  --muted: #766b63;
  --accent: #9e1734;
  --accent-2: #d9b96e;
  --accent-deep: #741027;
  --bg: #fffdf9;
  --bg-tint: #f8f0e7;
  --line: rgba(83, 55, 39, .14);
  --radius: 8px;
  --shadow: 0 18px 42px -22px rgba(65, 32, 18, .42);
  background-color: #fffdf9;
  background-image: radial-gradient(circle at 1px 1px, rgba(154, 112, 69, .06) 1px, transparent 0);
  background-size: 18px 18px;
}

.campaign-bar {
  position: relative; z-index: 51; padding: .42rem 1rem; text-align: center;
  color: #fff; background: linear-gradient(90deg, #651023, #a21939 50%, #651023);
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
}
.campaign-bar span {
  display: inline-block; margin-right: .55rem; padding: .05rem .55rem;
  color: #701126; background: #f5df9e; border-radius: 2px; letter-spacing: .08em;
}

.lp--jbeauty .hd { background: rgba(255, 253, 249, .94); border-bottom-color: rgba(116, 16, 39, .18); }
.lp--jbeauty .hd__in { height: 64px; }
.lp--jbeauty .brand { color: #331d1c; }
.lp--jbeauty .brand__mark { background: #8b1730; border: 1px solid #d8b464; box-shadow: inset 0 0 0 3px #8b1730; }
.lp--jbeauty .nav { gap: 1.2rem; font-size: .78rem; }
.lp--jbeauty .hd .btn--sm { border-radius: 4px; padding-inline: 1.35rem; }

.lp--jbeauty .btn {
  position: relative; isolation: isolate; min-height: 56px; border-radius: 6px;
  background: linear-gradient(180deg, #c32b4a, #8d112d); border: 1px solid #741027;
  box-shadow: 0 8px 0 #650e23, 0 16px 30px -15px rgba(99, 10, 36, .62);
  letter-spacing: .08em;
}
.lp--jbeauty .btn::after { content: "›"; position: absolute; right: 1.1rem; font-size: 1.5rem; line-height: 1; }
.lp--jbeauty .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 0 #650e23, 0 18px 34px -15px rgba(99, 10, 36, .7); }
.lp--jbeauty .btn--sm { min-height: 40px; box-shadow: none; }
.lp--jbeauty .btn--sm::after { display: none; }
.lp--jbeauty .btn--block { margin-bottom: 8px; }

.lp--jbeauty .hero { padding: clamp(2.2rem, 5vw, 4.5rem) 0 0; background: #fffaf3; }
.lp--jbeauty .hero__bg {
  background:
    linear-gradient(90deg, rgba(255,255,255,.9), transparent 55%),
    repeating-linear-gradient(135deg, rgba(182,147,92,.05) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 90% 10%, rgba(214, 177, 102, .22), transparent 38%), #fffaf3;
}
.lp--jbeauty .hero__bg::after {
  content: ""; position: absolute; width: 340px; height: 340px; right: -110px; top: -150px;
  border: 1px solid rgba(158, 23, 52, .14); border-radius: 50%; box-shadow: 0 0 0 32px rgba(158,23,52,.035), 0 0 0 64px rgba(158,23,52,.025);
}
.lp--jbeauty .hero__in { grid-template-columns: minmax(0, .92fr) minmax(380px, .78fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.lp--jbeauty .hero__copy { padding: 1rem 0 3.2rem; align-self: center; }
.lp--jbeauty .hero .eyebrow { color: #8e6a37; font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; }
.lp--jbeauty .hero__kicker {
  display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem; padding: .2rem .75rem;
  color: #6f0d25; border-top: 1px solid #bd9a55; border-bottom: 1px solid #bd9a55;
  font-family: var(--serif); font-weight: 700; letter-spacing: .08em;
}
.lp--jbeauty .hero__kicker span { color: #fff; background: #9e1734; padding: .1rem .45rem; font-family: var(--sans); font-size: .75rem; }
.lp--jbeauty .hero__title {
  position: relative; color: #4c2322; font-size: clamp(2.3rem, 4.8vw, 3.9rem); line-height: 1.28;
  margin: 1.15rem 0 .9rem; padding-bottom: 1.05rem; letter-spacing: .04em;
  text-shadow: 0 1px 0 #fff;
}
.lp--jbeauty .hero__title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 7rem; height: 3px;
  background: linear-gradient(90deg, #9e1734 0 70%, #d9b96e 70%);
}
.lp--jbeauty .hero__lead { max-width: 36em; color: #564a43; font-size: .98rem; line-height: 2; margin-bottom: 1.25rem; }
.lp--jbeauty .hero__note { margin: 0 0 1.2rem; color: #9e1734; font-family: var(--sans); font-weight: 700; letter-spacing: .18em; }
.lp--jbeauty .hero__cta .btn { min-width: min(360px, 100%); }
.lp--jbeauty .hero__cta .link-arrow { font-size: .82rem; text-decoration: underline; text-underline-offset: .25rem; }
.lp--jbeauty .hero__badges { display: grid; grid-template-columns: repeat(2, max-content); gap: .35rem 1rem; margin-top: 1.7rem; font-size: .78rem; }
.lp--jbeauty .hero__badges li { color: #4f433b; }
.lp--jbeauty .hero__badges li::first-letter { color: #9e1734; }

.hero__visual { position: relative; min-height: 540px; align-self: end; }
.hero__visual::before {
  content: ""; position: absolute; inset: 20px -14px -14px 18px; border: 1px solid #c8a657;
  background: #f5e8d6; z-index: -1;
}
.hero__visual img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: 52% center; filter: saturate(.88) contrast(.98); }
.hero__visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.68); pointer-events: none; }
.hero__visual-note {
  position: absolute; right: -1rem; bottom: 1.1rem; padding: .3rem .85rem; color: #fff; background: rgba(57,31,27,.82);
  font-family: var(--display); font-size: .68rem; letter-spacing: .2em; writing-mode: vertical-rl;
}
.hero__seal {
  position: absolute; left: -42px; top: 46px; width: 112px; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center; color: #fff; background: #9e1734;
  border: 2px solid #e8d08e; outline: 5px solid rgba(255,255,255,.9); box-shadow: 0 8px 24px rgba(82,20,28,.28);
}
.hero__seal::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255,255,255,.52); border-radius: inherit; }
.hero__seal span { position: relative; font-size: .65rem; letter-spacing: .12em; line-height: 1.15; }
.hero__seal strong { position: relative; font-family: var(--display); font-size: 2.55rem; line-height: .9; }

.jstats {
  position: relative; z-index: 2; width: min(900px, 90vw); margin: -1px auto 0; transform: translateY(50%);
  display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid #c9a55a;
  box-shadow: 0 14px 35px -20px rgba(71,37,20,.55);
}
.jstat { position: relative; padding: .8rem 1rem; text-align: center; }
.jstat + .jstat::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; border-left: 1px solid #d9c7a1; }
.jstat strong { display: block; color: #961833; font-family: var(--display); font-size: 2.15rem; line-height: 1; }
.jstat strong span { font-family: var(--serif); font-size: .85rem; margin-left: .16rem; }
.jstat small { color: #5e514a; font-size: .68rem; font-weight: 700; }

.lp--jbeauty .section { position: relative; }
.lp--jbeauty #about { padding-top: clamp(6rem, 10vw, 8rem); }
.lp--jbeauty .section--tint {
  background-color: #f8f0e7;
  background-image: linear-gradient(45deg, rgba(130,82,48,.025) 25%, transparent 25%, transparent 75%, rgba(130,82,48,.025) 75%), linear-gradient(45deg, rgba(130,82,48,.025) 25%, transparent 25%, transparent 75%, rgba(130,82,48,.025) 75%);
  background-size: 22px 22px; background-position: 0 0, 11px 11px;
}
.lp--jbeauty .eyebrow.center { color: #9e1734; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .24em; }
.lp--jbeauty .h2 { position: relative; color: #3b2925; margin-bottom: 3rem; padding-bottom: 1rem; font-size: clamp(1.65rem, 3.6vw, 2.35rem); }
.lp--jbeauty .h2::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 48px; height: 2px; transform: translateX(-50%); background: #b9944c; }

.ovw__photos {
  width: min(980px, 92vw); margin: 0 0 3.5rem 50%; transform: translateX(-50%);
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 1rem; align-items: end;
}
.ovw__photo { position: relative; overflow: hidden; background: #eee3d6; }
.ovw__photo--main { height: 420px; }
.ovw__photo--sub { height: 330px; margin-bottom: -1.5rem; border: 8px solid #fff; box-shadow: var(--shadow); }
.ovw__photo img { width: 100%; height: 100%; object-fit: cover; }
.ovw__photo--sub figcaption {
  position: absolute; inset: auto 0 0; padding: .8rem 1rem; color: #fff; background: linear-gradient(transparent, rgba(71,30,28,.9));
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .08em; text-align: right;
}
.lp--jbeauty .ovw__body { max-width: 620px; margin-inline: auto; }
.lp--jbeauty .ovw__body p { line-height: 2.15; }
.lp--jbeauty .ovw__chips li { border-radius: 3px; border-color: #d7b966; background: #fffaf0; color: #4f3931; }
.lp--jbeauty .ovw__chips li::before { content: "✓"; color: #9e1734; font-weight: 700; margin-right: .35rem; }

.lp--jbeauty .cards { gap: 1rem; }
.lp--jbeauty .card { padding: 0; overflow: hidden; border: 0; border-top: 3px solid #9e1734; box-shadow: 0 10px 28px -19px rgba(55,27,17,.5); }
.lp--jbeauty .card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.lp--jbeauty .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lp--jbeauty .card:nth-child(2) .card__media img { object-position: center 42%; }
.lp--jbeauty .card:hover .card__media img { transform: scale(1.035); }
.lp--jbeauty .card__content { position: relative; padding: 1.5rem 1.35rem 1.7rem; }
.lp--jbeauty .card__no { position: absolute; right: 1rem; top: -2.2rem; display: grid; place-items: center; width: 54px; height: 54px; color: #fff; background: #9e1734; border: 3px solid #fff; border-radius: 50%; font-size: 1rem; }
.lp--jbeauty .card h3 { color: #4a2c26; font-size: 1.1rem; }

.lp--jbeauty .tl::before { border-top: 2px solid #c5a255; }
.lp--jbeauty .tl__dot { background: #9e1734; border-color: #fff5e8; box-shadow: 0 0 0 1px #b98d42; }
.lp--jbeauty .tl__card { border-radius: 4px; border-color: #d8c7a5; border-top: 3px solid #9e1734; }
.lp--jbeauty .cond { border-radius: 4px; border: 2px solid #d0ad5b; background: #fff9e9; }
.lp--jbeauty .cond__label { color: #fff; background: #9e1734; padding: .25rem .65rem; }

.lp--jbeauty .courses { gap: .8rem; }
.lp--jbeauty .course { border-radius: 3px; border-color: #cdbd9c; padding: 2rem 1.35rem; box-shadow: 0 12px 28px -20px rgba(67,33,18,.5); }
.lp--jbeauty .course--pop { border: 3px solid #9e1734; background: linear-gradient(#fff8f3, #fff); transform: translateY(-10px); }
.lp--jbeauty .ribbon { top: -14px; border-radius: 2px; background: #9e1734; box-shadow: 0 3px 10px rgba(85,13,31,.25); }
.lp--jbeauty .course__en { color: #9e1734; }
.lp--jbeauty .course__price { color: #9e1734; border-bottom-color: #d8b96d; }
.lp--jbeauty .course__specs dd { color: #81132b; }

.lp--jbeauty .mcats { gap: 1rem; }
.lp--jbeauty .mcat { padding: 0; overflow: hidden; border-radius: 4px; border-color: #d5c6aa; }
.lp--jbeauty .mcat__media { height: 230px; overflow: hidden; }
.lp--jbeauty .mcat__media img { width: 100%; height: 100%; object-fit: cover; }
.lp--jbeauty .mcat:nth-child(2) .mcat__media img { object-position: center 35%; }
.lp--jbeauty .mcat__content { padding: 1.5rem 1.55rem; }
.lp--jbeauty .mcat__no { color: #9e1734; }
.lp--jbeauty .mcat h3 { color: #4b3029; border-bottom-color: #d9bd79; }
.lp--jbeauty .mcat__items li::before { content: "●"; color: #9e1734; font-size: .5rem; vertical-align: .2em; margin-right: .35rem; }

.lp--jbeauty .guide__card { border-radius: 4px; border-top-color: #c8a45a; }
.lp--jbeauty .guide__card--req { border-top-color: #9e1734; }
.lp--jbeauty .guide__list--req li::before { color: #9e1734; }

.voices__hero { position: relative; width: min(860px, 100%); height: 410px; margin: 0 auto 2rem; overflow: hidden; }
.voices__hero::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.65); pointer-events: none; }
.voices__hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.voices__hero figcaption {
  position: absolute; left: 0; bottom: 0; min-width: 44%; padding: 1.25rem 2rem 1.35rem;
  color: #fff; background: rgba(97,14,35,.9); font-family: var(--serif); font-size: 1.2rem; letter-spacing: .08em;
}
.voices__hero figcaption span { display: block; margin-bottom: .25rem; color: #efd898; font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; }
.lp--jbeauty .voice { position: relative; border-radius: 3px; border-color: #d6c8ac; border-top: 3px solid #9e1734; }
.lp--jbeauty .voice figcaption { color: #8d1731; font-weight: 700; }

.lp--jbeauty .access__list { padding: 1rem 1.5rem; background: #fff; border: 1px solid #d7c7a7; box-shadow: var(--shadow); }
.lp--jbeauty .access__list dt { color: #8c1730; }
.lp--jbeauty .faq details { border-radius: 3px; border-color: #d9cbb0; }
.lp--jbeauty .faq summary::before { content: "Q"; margin-right: .7rem; color: #9e1734; font-family: var(--display); font-size: 1.25rem; }
.lp--jbeauty .reserve { background: linear-gradient(rgba(250,241,228,.95), rgba(255,253,249,.97)), radial-gradient(circle at center, #d8b467, transparent 60%); }
.lp--jbeauty .form { border-radius: 4px; border: 2px solid #cfad5c; box-shadow: 0 18px 44px -22px rgba(78,37,18,.52); }
.lp--jbeauty .field input, .lp--jbeauty .field select, .lp--jbeauty .field textarea { border-radius: 3px; background: #fff; }
.lp--jbeauty .req { border-radius: 2px; background: #9e1734; }
.lp--jbeauty .rsteps li { border-radius: 3px; border-color: #d0b15f; }
.lp--jbeauty .rsteps li:first-child { background: #9e1734; }
.lp--jbeauty .ft { background: #301b1c; border-top: 5px solid #9e1734; }

@media (max-width: 860px) {
  .campaign-bar { font-size: .68rem; letter-spacing: .06em; padding-inline: .35rem; }
  .campaign-bar span { margin-right: .25rem; }
  .lp--jbeauty .hd__in { height: 56px; padding-inline: 1rem; }
  .lp--jbeauty .brand { font-size: 1rem; }
  .lp--jbeauty .brand em { display: none; }
  .lp--jbeauty .brand__mark { width: 28px; height: 28px; font-size: .82rem; }
  .lp--jbeauty .hero { padding-top: 1.25rem; }
  .lp--jbeauty .hero__in { grid-template-columns: 1fr; gap: .7rem; }
  .lp--jbeauty .hero__copy { padding: .5rem .8rem 1.1rem; }
  .lp--jbeauty .hero .eyebrow { font-size: .62rem; }
  .lp--jbeauty .hero__kicker { margin-top: .65rem; font-size: .82rem; }
  .lp--jbeauty .hero__title { font-size: clamp(2rem, 10vw, 2.8rem); margin-top: .8rem; }
  .lp--jbeauty .hero__lead { font-size: .9rem; line-height: 1.85; }
  .lp--jbeauty .hero__cta { display: grid; gap: .9rem; }
  .lp--jbeauty .hero__cta .btn { width: 100%; min-width: 0; }
  .lp--jbeauty .hero__cta .link-arrow { text-align: center; }
  .lp--jbeauty .hero__badges { grid-template-columns: 1fr 1fr; gap: .45rem; font-size: .7rem; }
  .hero__visual { min-height: 430px; margin: 0 .8rem; }
  .hero__visual img { min-height: 430px; }
  .hero__visual::before { inset: 10px -6px -6px 10px; }
  .hero__visual-note { right: -.4rem; bottom: .7rem; }
  .hero__seal { left: -10px; top: 20px; width: 94px; }
  .hero__seal strong { font-size: 2.15rem; }
  .jstats { width: calc(100% - 1.6rem); transform: translateY(45%); }
  .jstat { padding: .7rem .2rem; }
  .jstat strong { font-size: 1.65rem; }
  .jstat strong span { display: block; margin-top: .15rem; font-size: .62rem; }
  .jstat small { display: block; padding-inline: .15rem; font-size: .58rem; line-height: 1.35; }
  .lp--jbeauty #about { padding-top: 5.5rem; }
  .lp--jbeauty .section { padding-block: 3.4rem; }
  .lp--jbeauty .h2 { margin-bottom: 2rem; font-size: 1.55rem; line-height: 1.55; }
  .ovw__photos { width: calc(100vw - 1.4rem); margin-bottom: 2.8rem; grid-template-columns: 1fr .55fr; gap: .45rem; }
  .ovw__photo--main { height: 270px; }
  .ovw__photo--sub { height: 210px; margin-bottom: -.8rem; border-width: 4px; }
  .ovw__photo--sub figcaption { padding: .55rem; font-size: .76rem; }
  .lp--jbeauty .ovw__body { padding-inline: .5rem; font-size: .92rem; }
  .lp--jbeauty .cards { gap: 1.25rem; }
  .lp--jbeauty .course--pop { transform: none; }
  .lp--jbeauty .mcat__media { height: 210px; }
  .voices__hero { height: 320px; }
  .voices__hero figcaption { min-width: 70%; padding: .85rem 1.1rem; font-size: .92rem; }
  .lp--jbeauty .access__list { padding: .75rem 1rem; }
  .lp--jbeauty .fab { left: .75rem; right: .75rem; bottom: .7rem; justify-content: center; border-radius: 5px; box-shadow: 0 5px 0 #650e23, 0 12px 30px -12px rgba(99,10,36,.7); }
}
