/* ============================================================
   小結（こゆね）マヤ暦セッション LP
   main.css v20260502a
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  /* colors */
  --c-bg:           #F7F4E8;
  --c-bg-soft:      #EAEAD8;
  --c-leaf-light:   #D4DDB1;
  --c-leaf:         #A8B872;
  --c-leaf-dark:    #7A8B4A;
  --c-text:         #3A3A2E;
  --c-text-soft:    #6B6B5A;
  --c-text-mute:    #9A9A8A;
  --c-cta:          #E89B5A;
  --c-cta-dark:     #C77B3D;
  --c-cta-text:     #FFFFFF;
  --c-card:         #FAF8EE;
  --c-card-border:  #D8D5BC;
  --c-bubble:       #DCE5BC;
  --c-bubble-soft:  #E7EFD0;

  /* typography */
  --ff-mincho: 'Shippori Mincho B1', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --ff-sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --ff-en: 'Cormorant Garamond', serif;

  /* spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;

  /* layout */
  --container-w: 720px;
  --container-narrow-w: 580px;
  --content-pad-x: 20px;

  /* radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text);
  background:
    radial-gradient(ellipse at top right, #EFEEDB 0%, #F7F4E8 60%, #F7F4E8 100%),
    var(--c-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button, input { font: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
.nowrap { white-space: nowrap; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 8px; top: 8px;
  width: auto; height: auto;
  background: #fff;
  color: var(--c-text);
  padding: 8px 16px;
  z-index: 100;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--c-leaf-dark);
  outline-offset: 2px;
}

/* ---------- Layout containers ---------- */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--content-pad-x);
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: var(--container-narrow-w); }

.section {
  padding-block: var(--sp-7);
  position: relative;
}

/* ---------- Decorative leaves (background) ---------- */
.leaf-decoration {
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.leaf-decoration img { width: 100%; height: auto; }
.leaf-decoration--left  { left: 0;  width: 90px; }
.leaf-decoration--right { right: 0; width: 90px; }
@media (min-width: 768px) {
  .leaf-decoration--left  { width: 140px; }
  .leaf-decoration--right { width: 140px; }
}

/* ---------- Typography helpers ---------- */
.section__title {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-text);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .section__title { font-size: 26px; white-space: normal; }
}

.rule { display: block; }
.rule--leaf {
  width: 200px;
  height: 14px;
  margin-block: var(--sp-4);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14'><path d='M5 7 Q 50 0 100 7 Q 150 14 195 7' stroke='%23A8B872' stroke-width='1' fill='none'/><circle cx='100' cy='7' r='2' fill='%23A8B872'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* leaf 区切りアイコン（タイトル左右） */
.leaf-divider {
  display: inline-block;
  width: 28px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14'><path d='M2 8 Q 14 0 26 8 Q 14 14 2 8 Z' fill='%23A8B872' opacity='0.7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.leaf-divider--right { transform: scaleX(-1); }

/* ============================================================
   FV (ファーストビュー)
   ============================================================ */
.fv {
  padding-block: var(--sp-5) var(--sp-6);
}
.fv .container {
  max-width: 860px;
}

.fv__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
@media (min-width: 768px) {
  .fv__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.fv__role {
  font-family: var(--ff-mincho);
  font-size: 12px;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
}

.fv__name {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 32px;
  color: var(--c-text);
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 4px;
  position: relative;
}
.fv__name-main {
  font-size: 36px;
  letter-spacing: 0.18em;
}
.fv__name-sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-text-soft);
}
.fv__lotus {
  margin-left: var(--sp-2);
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.fv__tags {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .fv__tags { align-items: flex-end; }
}

.tag-list {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.tag {
  background: var(--c-bubble);
  color: var(--c-text);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.fv__service-name {
  font-family: var(--ff-mincho);
  font-size: 13px;
  color: var(--c-text-soft);
  letter-spacing: 0.05em;
}
.fv__service-name span {
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.fv__main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .fv__main {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-5);
  }
  .fv__copy   { flex: 1 1 52%; order: 1; }
  .fv__visual { flex: 1 1 48%; order: 2; }
}

.fv__headline {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.45;
  color: var(--c-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-3);
  position: relative;
  display: inline-block;
}
.fv__headline-indent {
  display: inline-block;
  padding-left: 1em;
}
.fv__headline::before,
.fv__headline::after {
  content: '✦';
  position: absolute;
  font-size: 16px;
  color: var(--c-leaf);
  opacity: 0.5;
  pointer-events: none;
}
.fv__headline::before { left: -10px; top: 0.4em; }
.fv__headline::after  { right: 0.5em; bottom: 0.3em; }

@media (min-width: 768px) {
  .fv__headline { font-size: 32px; }
}

.fv__sub {
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin-top: var(--sp-3);
}
@media (min-width: 768px) {
  .fv__sub { font-size: 14px; }
}

.fv__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (min-width: 768px) {
  .fv__actions {
    flex-direction: row;
    align-items: center;
  }
}

.fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px var(--sp-5);
  border-radius: var(--radius-pill);
  font-family: var(--ff-mincho);
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fv__btn:hover {
  transform: translateY(-2px);
}
.fv__btn--primary {
  background: linear-gradient(180deg, #E89B5A 0%, #D88A4A 100%);
  color: var(--c-cta-text);
  box-shadow: 0 6px 16px rgba(232, 155, 90, 0.28);
}
.fv__btn--secondary {
  background: rgba(250, 248, 238, 0.78);
  border: 1px solid var(--c-card-border);
  color: var(--c-text);
}

.fv__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(58, 58, 46, 0.08);
  width: 100%;
  position: relative;
  z-index: 1;
}
.fv__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  display: block;
}
@media (min-width: 768px) {
  .fv__visual img { aspect-ratio: 4 / 3; }
}

.fv__visual--mobile {
  margin-block: var(--sp-4);
}
.fv__visual--desktop {
  display: none;
}
@media (min-width: 768px) {
  .fv__visual--mobile {
    display: none;
  }
  .fv__visual--desktop {
    display: block;
  }
}

/* ============================================================
   悩みセクション
   ============================================================ */
.trouble {
  padding-block: var(--sp-6) var(--sp-7);
}

.trouble__title {
  font-size: 18px;
  margin-bottom: var(--sp-5);
  color: var(--c-text);
  font-weight: 500;
}
@media (min-width: 768px) {
  .trouble__title { font-size: 20px; }
}

.trouble__list {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: var(--sp-6);
}

.trouble__list--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .trouble__list--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-4);
  }
}

.trouble__item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
}

.trouble__bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--c-bubble-soft) 0%, var(--c-bubble) 80%);
  color: var(--c-text);
  font-size: 11px;
  line-height: 1.6;
  padding: var(--sp-3);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    0 4px 8px rgba(168, 184, 114, 0.15);
}
@media (min-width: 768px) {
  .trouble__bubble {
    max-width: 170px;
    font-size: 13px;
  }
}

.trouble__list--wide .trouble__bubble {
  max-width: none;
  min-height: 112px;
  aspect-ratio: auto;
  border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%;
  font-size: 12px;
  padding: var(--sp-4);
}
@media (min-width: 768px) {
  .trouble__list--wide .trouble__bubble {
    min-height: 128px;
    font-size: 13px;
  }
}

.trouble__bridge {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.7;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: var(--sp-3);
}
@media (min-width: 768px) {
  .trouble__bridge { font-size: 16px; }
}
.trouble__bridge::before,
.trouble__bridge::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 14px;
  vertical-align: middle;
  margin-inline: var(--sp-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 14'><path d='M2 8 Q 14 0 26 8 Q 14 14 2 8 Z' fill='%23A8B872' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.trouble__bridge::after { transform: scaleX(-1); }

.trouble__message {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  font-family: var(--ff-mincho);
  color: var(--c-text);
  line-height: 2;
}
.trouble__message p + p {
  margin-top: var(--sp-4);
  color: var(--c-text-soft);
}

.section-lead {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 13px;
  color: var(--c-text-soft);
  line-height: 2;
  margin: 0 auto var(--sp-6);
  max-width: 640px;
}
@media (min-width: 768px) {
  .section-lead { font-size: 14px; }
}

/* ============================================================
   マヤ暦でわかること
   ============================================================ */
.insight {
  padding-block: var(--sp-7);
}

.section-image {
  margin: 0 auto var(--sp-5);
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(58, 58, 46, 0.08);
  background: var(--c-card);
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-image--insight {
  max-width: min(100%, 720px);
  overflow: visible;
}
.section-image--insight img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.insight__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  counter-reset: insight;
  margin-bottom: var(--sp-5);
}
@media (min-width: 768px) {
  .insight__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-4);
  }
}

.insight__list li {
  counter-increment: insight;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 64px;
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.7;
}
.insight__list li::before {
  content: counter(insight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bubble);
  color: var(--c-leaf-dark);
  font-family: var(--ff-en);
  font-size: 14px;
}

.insight__note {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--sp-4);
  border-top: 1px solid var(--c-leaf-light);
  border-bottom: 1px solid var(--c-leaf-light);
  text-align: center;
  color: var(--c-text-soft);
  font-size: 13px;
  line-height: 2;
}

/* ============================================================
   マヤ暦とは
   ============================================================ */
.rhythm {
  padding-block: var(--sp-7);
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.16) 0%, rgba(247, 244, 232, 0) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
}
@media (min-width: 768px) {
  .rhythm { margin-inline: var(--sp-5); }
}

.rhythm__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .rhythm__main {
    grid-template-columns: 180px 1fr;
    text-align: left;
  }
}

.rhythm__illustration {
  width: 156px;
  height: 156px;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(250, 248, 238, 0.95) 0%, rgba(250, 248, 238, 0.95) 45%, rgba(220, 229, 188, 0.55) 46%, rgba(220, 229, 188, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.rhythm__illustration::before,
.rhythm__illustration::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168, 184, 114, 0.55);
}
.rhythm__illustration::before {
  inset: 18px;
}
.rhythm__illustration::after {
  width: 6px;
  height: 6px;
  right: 30px;
  top: 28px;
  background: var(--c-leaf);
}
.rhythm__illustration img {
  width: 76px;
  height: 76px;
  opacity: 0.82;
}

.rhythm .section__title,
.course .section__title,
.cta__title {
  white-space: normal;
}
.rhythm__body p {
  margin-top: var(--sp-4);
  color: var(--c-text-soft);
  font-size: 13px;
  line-height: 2;
}

/* ============================================================
   マヤ暦セッションとは？
   ============================================================ */
.about-session {
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.18) 0%, rgba(247, 244, 232, 0) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
  padding-block: var(--sp-7);
}
@media (min-width: 768px) {
  .about-session { margin-inline: var(--sp-5); }
}

.about-session__heading,
.reason__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  flex-wrap: nowrap;
}
.about-session__heading .leaf-divider,
.reason__heading .leaf-divider {
  width: 22px;
}
@media (min-width: 768px) {
  .about-session__heading,
  .reason__heading { gap: var(--sp-3); }
  .about-session__heading .leaf-divider,
  .reason__heading .leaf-divider { width: 28px; }
}

.about-session__lead {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 13px;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-6);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .about-session__lead { font-size: 14px; }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .menu-list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }
}

.menu-card {
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(58, 58, 46, 0.04);
}

.menu-card__name {
  font-family: var(--ff-mincho);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
.menu-card__leaf {
  margin-right: 4px;
  font-size: 14px;
}
.menu-card__note {
  display: block;
  margin-top: var(--sp-1);
  color: var(--c-text-soft);
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.menu-card__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed var(--c-leaf-light);
}
.menu-card__time {
  font-size: 13px;
  color: var(--c-text-soft);
}
.menu-card__amount {
  font-family: var(--ff-mincho);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-text);
}

.menu-card__bullets {
  text-align: left;
  font-size: 12px;
  color: var(--c-text);
  line-height: 1.9;
  margin-inline: auto;
  display: inline-block;
}
.menu-card__bullets li {
  position: relative;
  padding-left: 14px;
}
.menu-card__bullets li::before {
  content: '·';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--c-leaf-dark);
  font-size: 18px;
  line-height: 1;
}

.payment-note {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 14px;
  color: var(--c-text);
  margin-top: var(--sp-3);
}
.payment-note__icon {
  font-size: 18px;
  margin-left: var(--sp-1);
}

/* ============================================================
   講座・Zoom講座
   ============================================================ */
.course {
  padding-block: var(--sp-7);
}

.course__heading {
  text-align: center;
  margin-bottom: var(--sp-4);
}

.course__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-2);
  color: var(--c-leaf-dark);
  font-family: var(--ff-mincho);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.course__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  background: var(--c-card);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  box-shadow: 0 2px 8px rgba(58, 58, 46, 0.04);
}
@media (min-width: 768px) {
  .course__card {
    grid-template-columns: 1fr 1fr;
    padding: var(--sp-6);
  }
}

.course__label {
  color: var(--c-text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.course__name {
  font-family: var(--ff-mincho);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}

.course__image {
  margin: 0 0 var(--sp-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(58, 58, 46, 0.08);
  background: rgba(255, 255, 255, 0.5);
}
.course__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course__text {
  color: var(--c-text-soft);
  font-size: 13px;
  line-height: 2;
}

.course__price {
  display: block;
  margin-top: var(--sp-4);
  padding: 8px var(--sp-4);
  border-radius: var(--radius-pill);
  background: rgba(220, 229, 188, 0.5);
  color: var(--c-text);
  font-size: 12px;
  text-align: center;
}

.course__points {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.course__points li {
  position: relative;
  padding-left: 18px;
  color: var(--c-text);
  font-size: 13px;
  line-height: 1.7;
}
.course__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-leaf);
}

.course__voices {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  margin-block: var(--sp-5);
}
@media (min-width: 768px) {
  .course__voices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.course__voices li {
  background: rgba(220, 229, 188, 0.32);
  border: 1px solid rgba(168, 184, 114, 0.28);
  border-radius: var(--radius-pill);
  padding: 9px var(--sp-4);
  text-align: center;
  color: var(--c-text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.course__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  min-height: 52px;
  margin-inline: auto;
  padding: 13px var(--sp-5);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, #E89B5A 0%, #D88A4A 100%);
  color: var(--c-cta-text);
  font-family: var(--ff-mincho);
  font-size: 15px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(232, 155, 90, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.course__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 155, 90, 0.38);
}

/* ============================================================
   こんな変化を感じられます
   ============================================================ */
.reason {
  padding-block: var(--sp-7);
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.12) 0%, rgba(247, 244, 232, 0) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
}
@media (min-width: 768px) {
  .reason { margin-inline: var(--sp-5); }
}

.reason__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
  margin-top: var(--sp-5);
}
.reason__main--single {
  display: block;
}
@media (min-width: 768px) {
  .reason__main {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-6);
  }
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.reason__main--single .reason__list {
  max-width: 680px;
  margin-inline: auto;
}
.reason__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--c-text);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .reason__item { font-size: 14px; }
}
.reason__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bubble);
  color: var(--c-leaf-dark);
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 500;
}
.reason__text {
  flex: 1;
}

.reason__illustration {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.reason__illustration img {
  width: 100%;
  height: auto;
}
.reason__illustration--top {
  max-width: 560px;
  margin: 0 auto var(--sp-5);
  box-shadow: 0 8px 24px rgba(58, 58, 46, 0.08);
}
.reason__illustration--top img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================================
   プロフィール（ABOUT）
   ============================================================ */
.about {
  padding-block: var(--sp-7);
}

.about__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .about__main {
    grid-template-columns: auto 1fr;
    gap: var(--sp-6);
    text-align: left;
  }
}

.about__portrait {
  width: 140px;
  height: 140px;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .about__portrait { width: 160px; height: 160px; }
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

.about__role {
  font-family: var(--ff-mincho);
  font-size: 12px;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-1);
}

.about__name {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: 28px;
  color: var(--c-text);
  letter-spacing: 0.18em;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.about__name-sub {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text-soft);
  margin-left: var(--sp-2);
}

.about__bio {
  font-size: 12px;
  color: var(--c-text);
  line-height: 2;
}
@media (min-width: 768px) {
  .about__bio { font-size: 13px; }
}

/* ============================================================
   CTA セクション
   ============================================================ */
.cta {
  padding-block: var(--sp-7);
  background: linear-gradient(180deg, rgba(220, 229, 188, 0.25) 0%, rgba(220, 229, 188, 0.12) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--sp-3);
}
@media (min-width: 768px) {
  .cta { margin-inline: var(--sp-5); }
}

.cta__title {
  text-align: center;
  font-family: var(--ff-mincho);
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .cta__title { font-size: 18px; }
}

.cta__sub {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-soft);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--c-card-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  max-width: 440px;
  margin: 0 auto var(--sp-5);
  line-height: 1.9;
}
.cta__sub p + p {
  margin-top: var(--sp-3);
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 18px var(--sp-5);
  background: linear-gradient(180deg, #E89B5A 0%, #D88A4A 100%);
  color: var(--c-cta-text);
  font-family: var(--ff-mincho);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  box-shadow:
    0 6px 16px rgba(232, 155, 90, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 420px) {
  .cta__btn {
    font-size: 18px;
    letter-spacing: 0.03em;
    padding-inline: var(--sp-4);
  }
}
.cta__btn-label {
  white-space: nowrap;
}
.cta__btn--secondary {
  background: rgba(250, 248, 238, 0.92);
  border: 1px solid var(--c-card-border);
  color: var(--c-text);
  box-shadow: 0 4px 12px rgba(58, 58, 46, 0.08);
}
.cta__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(232, 155, 90, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta__btn--secondary:hover {
  box-shadow: 0 8px 20px rgba(58, 58, 46, 0.12);
}
.cta__btn:active {
  transform: translateY(0);
}
.cta__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  line-height: 1;
}

.cta__note {
  text-align: center;
  font-size: 11px;
  color: var(--c-text-mute);
  margin-top: var(--sp-4);
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  padding-block: var(--sp-5) var(--sp-6);
  text-align: center;
  background: rgba(220, 229, 188, 0.18);
}
.footer__copy {
  font-size: 11px;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
}
.footer__links {
  margin-top: var(--sp-2);
  font-size: 11px;
}
.footer__links a {
  color: var(--c-text-soft);
  text-decoration: underline;
}
.footer__links a:hover { color: var(--c-text); }

/* ============================================================
   Visual refresh prototype — quiet editorial atmosphere
   Existing images and copy remain unchanged. Decorative treatment below is
   CSS-only: light, circles, gradients, fine rules, and restrained motion.
   ============================================================ */
:root {
  --color-ivory: #FBF8F3;
  --color-beige: #EEE4DA;
  --color-sage: #9FA995;
  --color-gold: #C5AA78;
  --color-ink: #55464B;
  --color-ink-soft: #76676A;
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 600ms;
  --motion-base: 800ms;
  --motion-slow: 1250ms;
  --space-section-lg: clamp(124px, 11vw, 176px);
  --space-section-md: clamp(104px, 9vw, 144px);
  --space-section-sm: clamp(88px, 7vw, 112px);
  --container-w: 1180px;
  --container-narrow-w: 720px;
  --content-pad-x: clamp(20px, 4vw, 48px);
  --c-bg: var(--color-ivory);
  --c-bg-soft: var(--color-beige);
  --c-leaf-light: #D6D4C4;
  --c-leaf: var(--color-sage);
  --c-leaf-dark: #747D6B;
  --c-text: var(--color-ink);
  --c-text-soft: var(--color-ink-soft);
  --c-text-mute: #9D8F91;
  --c-cta: #A77B61;
  --c-cta-dark: #8A624E;
  --c-cta-text: #FBF8F3;
  --c-card: rgba(251, 248, 243, 0.74);
  --c-card-border: rgba(119, 96, 85, 0.24);
  --c-bubble: rgba(159, 169, 149, 0.16);
  --c-bubble-soft: rgba(238, 228, 218, 0.72);
  --radius-md: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-size: 15px;
  line-height: 2;
  color: var(--color-ink);
  background:
    radial-gradient(64rem 46rem at 100% -8%, rgba(197, 170, 120, 0.1), transparent 62%),
    radial-gradient(50rem 38rem at -10% 26%, rgba(159, 169, 149, 0.1), transparent 65%),
    var(--color-ivory);
}

.container { max-width: var(--container-w); }
.section {
  padding-block: var(--space-section-md);
  isolation: isolate;
}
.section__title {
  max-width: 26em;
  font-size: clamp(24px, 2.45vw, 36px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.09em;
  color: var(--color-ink);
}
.section__title::after {
  content: '';
  display: block;
  width: 38px;
  height: 1px;
  margin-top: 22px;
  background: rgba(197, 170, 120, 0.72);
}
.leaf-decoration { opacity: 0.3; }
.leaf-decoration--left,
.leaf-decoration--right { width: min(19vw, 170px); }
.leaf-divider { opacity: 0.44; }
.rule--leaf {
  width: min(100%, 180px);
  height: 1px;
  margin-block: 28px;
  background: linear-gradient(90deg, transparent, rgba(197, 170, 120, 0.7) 18%, rgba(197, 170, 120, 0.7) 82%, transparent);
}

/* ---------- First view ---------- */
.fv {
  min-height: min(850px, 100svh);
  padding-block: clamp(28px, 5vw, 64px) clamp(84px, 10vw, 136px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(48rem 35rem at 88% 34%, rgba(238, 228, 218, 0.62), transparent 69%),
    linear-gradient(142deg, rgba(251, 248, 243, 0.98), rgba(247, 241, 233, 0.7));
}
.fv::before,
.fv::after,
.fv__main::before,
.fv__main::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.fv::before {
  width: clamp(650px, 73vw, 980px);
  aspect-ratio: 1;
  right: min(-27vw, -280px);
  top: clamp(64px, 7vw, 116px);
  border: 1px solid rgba(197, 170, 120, 0.3);
  border-radius: 50%;
}
.fv::after {
  width: clamp(660px, 64vw, 900px);
  height: clamp(440px, 52vw, 700px);
  right: min(-18vw, -164px);
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 245, 0.21) 0%, rgba(237, 218, 183, 0.1) 35%, transparent 70%);
  filter: blur(2px);
  animation: fv-light-drift 16s ease-in-out infinite alternate;
}
.fv .container {
  max-width: 1260px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.fv__header {
  gap: 20px;
  margin-bottom: clamp(40px, 7vw, 94px);
}
.fv__role {
  font-size: 12px;
  letter-spacing: 0.15em;
}
.fv__name {
  gap: 10px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.16em;
}
.fv__name-main { font-size: inherit; }
.fv__name-sub { font-size: 13px; color: var(--color-ink-soft); }
.fv__lotus { width: 44px; height: 44px; opacity: 0.66; }
.fv__tags { gap: 10px; }
.tag-list { gap: 7px; }
.tag {
  padding: 3px 11px;
  border: 1px solid rgba(119, 96, 85, 0.18);
  background: rgba(251, 248, 243, 0.42);
  color: var(--color-ink-soft);
  font-size: 11px;
}
.fv__service-name { font-size: 13px; letter-spacing: 0.1em; }
.fv__main {
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  flex: 1;
}
.fv__main::before {
  width: clamp(540px, 56vw, 780px);
  height: clamp(320px, 37vw, 520px);
  right: -9%;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 251, 243, 0.31), transparent 67%);
  z-index: 0;
  animation: fv-light-drift 17s ease-in-out infinite alternate-reverse;
}
.fv__copy,
.fv__visual { position: relative; z-index: 1; }
.fv__headline {
  max-width: 14em;
  margin-bottom: 0;
  font-size: clamp(31px, 3.25vw, 48px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.07em;
}
.fv__headline::before,
.fv__headline::after { content: none; }
.fv__headline-indent { padding-left: 0.72em; }
.fv__sub {
  max-width: 38em;
  margin-top: 0;
  font-size: 14px;
  line-height: 2.1;
  color: var(--color-ink-soft);
}
.fv__actions { gap: 12px; margin-top: 38px; }
.fv__btn,
.course__btn,
.cta__btn {
  border-radius: 0;
  letter-spacing: 0.09em;
  transition: transform 360ms var(--motion-ease-out), border-color 360ms ease, background-color 360ms ease, box-shadow 360ms ease;
}
.fv__btn {
  min-height: 50px;
  padding: 12px 24px;
  font-size: 14px;
}
.fv__btn:hover,
.course__btn:hover,
.cta__btn:hover { transform: translateY(-3px); }
.fv__btn--primary,
.course__btn,
.cta__btn {
  background: var(--c-cta);
  box-shadow: 0 10px 22px rgba(85, 70, 75, 0.12);
}
.fv__btn--primary:hover,
.course__btn:hover,
.cta__btn:hover {
  background: var(--c-cta-dark);
  box-shadow: 0 14px 26px rgba(85, 70, 75, 0.17);
}
.fv__btn--secondary {
  border: 1px solid rgba(85, 70, 75, 0.32);
  background: rgba(251, 248, 243, 0.28);
  color: var(--color-ink);
}
.fv__visual {
  border-radius: 12px;
  background: var(--color-beige);
  box-shadow: 0 24px 60px rgba(85, 70, 75, 0.11);
}
.fv__visual img {
  transform-origin: center;
  animation: fv-image-reveal var(--motion-slow) var(--motion-ease-out) both;
}

.fv__role,
.fv__name { animation: fv-copy-reveal 720ms var(--motion-ease-out) 250ms both; }
.fv__tags { animation: fv-copy-reveal 720ms var(--motion-ease-out) 520ms both; }
.fv__headline { animation: fv-copy-reveal 800ms var(--motion-ease-out) 700ms both; }
.fv__sub { animation: fv-copy-reveal 760ms var(--motion-ease-out) 880ms both; }
.fv__actions { animation: fv-copy-reveal 720ms var(--motion-ease-out) 1050ms both; }

/* ---------- Concerns ---------- */
.trouble {
  padding-block: var(--space-section-lg) var(--space-section-md);
  background: linear-gradient(120deg, rgba(238, 228, 218, 0.52), rgba(251, 248, 243, 0) 66%);
}
.trouble__title {
  margin-bottom: clamp(42px, 5vw, 66px);
  font-size: clamp(24px, 2.45vw, 36px);
  text-align: left;
}
.trouble__title::after { margin-left: 0; }
.trouble__list--wide {
  gap: 0 clamp(28px, 5vw, 68px);
  margin-bottom: clamp(48px, 7vw, 78px);
}
.trouble__item { justify-content: stretch; border-bottom: 1px solid rgba(197, 170, 120, 0.4); }
.trouble__list--wide .trouble__bubble {
  min-height: 0;
  padding: 20px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-ink);
  font-family: var(--ff-mincho);
  font-size: 15px;
  line-height: 1.85;
  text-align: left;
  justify-content: flex-start;
}
.trouble__message {
  max-width: 42em;
  margin-inline: 0;
  text-align: left;
  font-size: 15px;
  line-height: 2.1;
}
.trouble__message p + p { margin-top: 24px; }

/* ---------- Insight / Maya chart ---------- */
.insight {
  padding-block: var(--space-section-lg);
  background: radial-gradient(58rem 30rem at 96% 50%, rgba(159, 169, 149, 0.1), transparent 68%);
}
.insight .section__title { text-align: left; }
.insight .section__title::after { margin-left: 0; }
.insight .section-lead {
  max-width: 40em;
  margin: 32px 0 clamp(50px, 6vw, 72px);
  text-align: left;
  font-size: 15px;
  line-height: 2.05;
}
.section-image--insight {
  max-width: min(100%, 620px);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-beige);
  box-shadow: 0 18px 55px rgba(70, 55, 45, 0.08);
}
.insight__list {
  gap: 0;
  margin: 0;
}
.insight__list li {
  min-height: 70px;
  gap: 18px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(197, 170, 120, 0.45);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}
.insight__list li::before {
  width: 32px;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--color-gold);
  font-size: 27px;
  font-weight: 400;
}
.insight__note {
  max-width: 44em;
  margin: clamp(44px, 6vw, 72px) 0 0 auto;
  padding: 24px 0;
  border-color: rgba(197, 170, 120, 0.48);
  text-align: left;
  font-size: 14px;
  line-height: 2.05;
}

/* ---------- Natural rhythm ---------- */
.rhythm {
  margin: 0;
  padding-block: clamp(138px, 14vw, 204px);
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(105deg, rgba(238, 228, 218, 0.48), rgba(251, 248, 243, 0.1) 68%);
}
.rhythm::before {
  content: '';
  position: absolute;
  width: clamp(700px, 72vw, 950px);
  aspect-ratio: 1;
  right: min(-36vw, -340px);
  top: 50%;
  border: 1px solid rgba(197, 170, 120, 0.21);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}
.rhythm__main {
  max-width: 880px;
  gap: clamp(34px, 6vw, 82px);
  text-align: left;
}
.rhythm__illustration {
  width: 124px;
  height: 124px;
  margin-inline: 0;
  background: radial-gradient(circle, rgba(251, 248, 243, 0.88) 0%, rgba(238, 228, 218, 0.7) 72%, transparent 73%);
}
.rhythm__illustration::before { inset: 14px; border-color: rgba(197, 170, 120, 0.46); }
.rhythm__illustration::after { right: 21px; top: 22px; background: var(--color-gold); }
.rhythm__illustration img { width: 62px; height: 62px; opacity: 0.67; }
.rhythm .section__title { text-align: left; }
.rhythm .section__title::after { margin-left: 0; }
.rhythm__body p {
  max-width: 39em;
  margin-top: 28px;
  font-size: 15px;
  line-height: 2.1;
}

/* ---------- Session menu ---------- */
.about-session {
  margin: 0;
  padding-block: var(--space-section-lg);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(251, 248, 243, 0), rgba(238, 228, 218, 0.38) 48%, rgba(251, 248, 243, 0));
}
.about-session__heading,
.reason__heading { margin-bottom: 30px; }
.about-session__lead {
  max-width: 34em;
  margin: 0 auto clamp(52px, 6vw, 76px);
  font-size: 15px;
  line-height: 2.05;
}
.menu-list { gap: 24px; margin-bottom: 32px; }
.menu-card {
  min-height: 300px;
  padding: clamp(32px, 4vw, 46px) clamp(24px, 3vw, 34px);
  border: 1px solid rgba(119, 96, 85, 0.28);
  border-radius: 10px;
  background: rgba(251, 248, 243, 0.36);
  box-shadow: none;
  transition: transform 360ms var(--motion-ease-out), border-color 360ms ease, box-shadow 360ms ease;
}
.menu-card__name { margin-bottom: 25px; font-size: 18px; font-weight: 400; }
.menu-card__leaf { color: var(--color-gold); }
.menu-card__note { margin-top: 5px; color: var(--color-ink-soft); }
.menu-card__price { margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid rgba(197, 170, 120, 0.5); }
.menu-card__amount { color: var(--color-ink); font-size: 24px; font-weight: 400; }
.menu-card__bullets { font-size: 13px; line-height: 2; color: var(--color-ink-soft); }
.menu-card__bullets li::before { color: var(--color-gold); }
.payment-note { margin-top: 34px; font-size: 15px; }
@media (hover: hover) and (pointer: fine) {
  .menu-card:hover {
    transform: translateY(-3px);
    border-color: rgba(119, 96, 85, 0.48);
    box-shadow: 0 14px 30px rgba(85, 70, 75, 0.06);
  }
}

/* ---------- Course ---------- */
.course {
  padding-block: var(--space-section-md);
  background: radial-gradient(40rem 30rem at 6% 52%, rgba(159, 169, 149, 0.1), transparent 72%);
}
.course__heading { margin-bottom: 26px; }
.course__eyebrow { color: var(--color-gold); letter-spacing: 0.12em; }
.course .section-lead {
  max-width: 40em;
  margin-bottom: clamp(50px, 6vw, 72px);
  font-size: 15px;
  line-height: 2.05;
}
.course__card {
  gap: clamp(38px, 6vw, 76px);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(119, 96, 85, 0.23);
  border-radius: 12px;
  background: rgba(251, 248, 243, 0.44);
  box-shadow: none;
}
.course__label { margin-bottom: 10px; letter-spacing: 0.14em; }
.course__name { margin-bottom: 28px; font-size: clamp(26px, 2.7vw, 36px); font-weight: 400; }
.course__image {
  margin-bottom: 28px;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(70, 55, 45, 0.08);
}
.course__text { font-size: 14px; line-height: 2.05; }
.course__price {
  margin-top: 24px;
  padding: 12px 0;
  border-radius: 0;
  border-top: 1px solid rgba(197, 170, 120, 0.44);
  border-bottom: 1px solid rgba(197, 170, 120, 0.44);
  background: transparent;
  color: var(--color-ink-soft);
}
.course__points { justify-content: center; gap: 18px; }
.course__points li { padding-left: 20px; font-size: 14px; line-height: 1.85; }
.course__points li::before { width: 5px; height: 5px; background: var(--color-gold); }
.course__voices { gap: 10px; margin-block: 36px 42px; }
.course__voices li {
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid rgba(197, 170, 120, 0.4);
  border-radius: 0;
  background: transparent;
  color: var(--color-ink-soft);
}
.course__btn { max-width: 340px; min-height: 54px; }

/* ---------- Changes ---------- */
.reason {
  margin: 0;
  padding-block: var(--space-section-lg);
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(150deg, rgba(238, 228, 218, 0.5), rgba(251, 248, 243, 0) 65%);
}
.reason::before {
  content: '';
  position: absolute;
  width: clamp(620px, 64vw, 860px);
  aspect-ratio: 1;
  left: min(-35vw, -330px);
  bottom: -42%;
  border: 1px solid rgba(197, 170, 120, 0.19);
  border-radius: 50%;
  pointer-events: none;
}
.reason__illustration--top {
  max-width: 620px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  border-radius: 12px;
  box-shadow: none;
}
.reason__illustration--top img {
  animation: gentle-breath 15s ease-in-out infinite;
}
.reason__heading { justify-content: flex-start; }
.reason__heading .section__title { text-align: left; }
.reason__heading .section__title::after { margin-left: 0; }
.reason__heading .leaf-divider { display: none; }
.reason__main,
.reason__main--single { margin-top: clamp(42px, 6vw, 70px); }
.reason__main--single .reason__list { max-width: 580px; margin-inline: 0; }
.reason__list { gap: 0; }
.reason__item {
  gap: 22px;
  min-height: 86px;
  border-bottom: 1px solid rgba(197, 170, 120, 0.42);
  font-size: 16px;
  line-height: 1.9;
}
.reason__num {
  width: 46px;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--color-gold);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  opacity: 0.82;
}

/* ---------- Profile ---------- */
.about {
  padding-block: var(--space-section-lg);
  overflow: hidden;
  background: radial-gradient(56rem 40rem at 100% 88%, rgba(159, 169, 149, 0.1), transparent 67%);
}
.about::before {
  content: '';
  position: absolute;
  width: clamp(570px, 58vw, 780px);
  aspect-ratio: 1;
  right: min(-28vw, -260px);
  top: -28%;
  border: 1px solid rgba(197, 170, 120, 0.24);
  border-radius: 50%;
  pointer-events: none;
}
.about__main { gap: clamp(40px, 7vw, 100px); text-align: left; }
.about__portrait {
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 4 / 5;
  margin-inline: 0;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(70, 55, 45, 0.08);
}
.about__role { margin-bottom: 16px; font-size: 13px; letter-spacing: 0.15em; }
.about__name { margin-bottom: 30px; font-size: clamp(34px, 3.6vw, 48px); font-weight: 400; letter-spacing: 0.16em; }
.about__name-sub { color: var(--color-ink-soft); font-size: 14px; }
.about__bio { max-width: 40em; font-size: 14px; line-height: 2.12; }

/* ---------- Final invitation and footer ---------- */
.cta {
  margin: 0;
  padding-block: var(--space-section-lg);
  border-radius: 0;
  background: linear-gradient(122deg, rgba(238, 228, 218, 0.64), rgba(251, 248, 243, 0.42));
}
.cta__title { margin-bottom: 30px; font-size: clamp(25px, 2.65vw, 36px); font-weight: 400; line-height: 1.55; }
.cta__sub {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--ff-mincho);
  font-size: 15px;
  line-height: 2.05;
}
.cta__sub p + p { margin-top: 24px; }
.cta__actions { gap: 14px; }
.cta__btn {
  max-width: 380px;
  min-height: 58px;
  padding: 16px 22px;
  font-size: 18px;
}
.cta__btn--secondary {
  border: 1px solid rgba(85, 70, 75, 0.34);
  background: transparent;
  color: var(--color-ink);
  box-shadow: none;
}
.cta__btn--secondary:hover { background: rgba(251, 248, 243, 0.65); box-shadow: none; }
.cta__btn-arrow { width: auto; height: auto; border-radius: 0; background: transparent; color: var(--color-gold); }
.cta__note { margin-top: 22px; color: var(--color-ink-soft); }
.footer { padding-block: 36px 42px; background: rgba(238, 228, 218, 0.45); }

/* ---------- Desktop editorial composition ---------- */
@media (min-width: 768px) {
  .fv__header { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .fv__tags { align-items: flex-end; }
  .fv__main { flex-direction: row; }
  .fv__copy { flex: 0 1 46%; order: 1; }
  .fv__visual { flex: 0 1 54%; order: 2; }
  .fv__visual--desktop { display: block; }
  .fv__visual--mobile { display: none; }
  .trouble__list--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .insight .container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    column-gap: clamp(42px, 7vw, 104px);
    align-items: start;
  }
  .insight .section__title,
  .insight .section-lead,
  .insight__note { grid-column: 1 / -1; }
  .section-image--insight { grid-column: 1; grid-row: 3; }
  .insight__list { grid-column: 2; grid-row: 3; padding-top: 5px; }
  .rhythm__main { grid-template-columns: 124px minmax(0, 1fr); }
  .menu-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 32px); }
  .course__card { grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr); }
  .course__voices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reason .container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    column-gap: clamp(52px, 9vw, 132px);
    align-items: center;
  }
  .reason__illustration--top { grid-column: 1; grid-row: 1 / span 2; width: 100%; margin: 0; }
  .reason__heading { grid-column: 2; grid-row: 1; }
  .reason__main { grid-column: 2; grid-row: 2; }
  .about__main { grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr); align-items: center; }
  .about__portrait { width: 100%; max-width: 420px; margin-top: 32px; }
}

@media (min-width: 1024px) {
  .fv__main { margin-top: auto; margin-bottom: auto; }
  .trouble__message { margin-left: 8%; }
}

@media (max-width: 767px) {
  .fv { min-height: auto; padding-bottom: 90px; }
  .fv::before { width: 440px; right: -250px; top: 180px; }
  .fv::after { width: 440px; height: 350px; right: -170px; top: 190px; }
  .fv__header { margin-bottom: 44px; }
  .fv__main { gap: 26px; }
  .fv__copy { width: 100%; min-width: 0; }
  .fv__headline {
    max-width: 100%;
    font-size: clamp(25px, 6.8vw, 29px);
    letter-spacing: 0.04em;
  }
  .fv__headline-indent { padding-left: 0; }
  .fv__visual--mobile { margin: 28px 0 0; }
  .fv__visual img { animation-name: fv-image-reveal-mobile; animation-duration: 1000ms; }
  .fv__sub { font-size: 13px; }
  .fv__actions { margin-top: 30px; }
  .fv__btn { width: 100%; }
  .trouble__list--wide { grid-template-columns: 1fr; }
  .trouble__list--wide .trouble__bubble { font-size: 14px; }
  .insight__note { margin-top: 44px; }
  .rhythm__main { text-align: left; }
  .rhythm__illustration { margin-left: 0; }
  .menu-card { min-height: 0; }
  .reason__heading { margin-bottom: 0; }
  .about__portrait { margin-inline: 0; }
  .cta__btn { font-size: 17px; }
}

@keyframes fv-image-reveal {
  from { filter: blur(16px); transform: scale(1.035); opacity: 0.82; }
  to { filter: blur(0); transform: scale(1); opacity: 1; }
}
@keyframes fv-image-reveal-mobile {
  from { filter: blur(12px); transform: scale(1.025); opacity: 0.85; }
  to { filter: blur(0); transform: scale(1); opacity: 1; }
}
@keyframes fv-copy-reveal {
  from { opacity: 0; transform: translateY(11px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fv-light-drift {
  from { transform: translate3d(-12px, -8px, 0) scale(1); }
  to { transform: translate3d(12px, 8px, 0) scale(1.025); }
}
@keyframes gentle-breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}

/* Motion is a progressive enhancement: all content remains readable without it. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-delay: 0ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .leaf-decoration, .skip-link { display: none; }
  body { background: #fff; }
}
