:root {
  --coral: #e57a5e;
  --coral-dark: #c95f44;
  --pink: #f7cbdc;
  --pink-light: #fbe4e7;
  --cream: #fff8f3;
  --green: #6bb86a;
  --line: #06c755;
  --text: #4a3a36;
  --muted: #7d6a65;
  --border: #f0dcd6;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(201, 95, 68, .10);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, .round { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; line-height: 1.5; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
section { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-pink { background: var(--pink-light); }

/* ---------- section heading ---------- */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head .en {
  display: block; font-family: "Zen Maru Gothic", sans-serif;
  color: var(--coral); letter-spacing: .2em; font-size: 14px; font-weight: 700;
  margin-bottom: 8px; text-transform: uppercase;
}
.sec-head h2 { font-size: clamp(24px, 3.6vw, 36px); }
.sec-head h2 em { font-style: normal; color: var(--coral); }
.sec-head p { margin-top: 16px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 40px; border-radius: 999px; font-weight: 700; font-size: 17px;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: "Zen Maru Gothic", sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 6px 0 var(--coral-dark);
}
.btn-primary:hover { box-shadow: 0 8px 0 var(--coral-dark); }
.btn-line { background: var(--line); color: var(--white); box-shadow: 0 6px 0 #05a046; }
.btn-outline { border: 2px solid var(--coral); color: var(--coral); background: var(--white); }
.btn .arrow::after { content: "›"; font-size: 22px; line-height: 1; }
.btn small { display: block; font-size: 12px; font-weight: 500; opacity: .9; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px); border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 24px;
}
.header-logo img { height: 40px; width: auto; }
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 20px; list-style: none; font-size: 14px; font-weight: 500; white-space: nowrap; }
.gnav a:hover { color: var(--coral); }
.header-cta { display: flex; gap: 10px; white-space: nowrap; }
.header-cta .btn { padding: 10px 20px; font-size: 14px; box-shadow: none; }
.menu-btn { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; margin-left: auto; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px auto; transition: .3s; }

/* ---------- hero ---------- */
.hero {
  position: relative; padding: 72px 0 96px; overflow: hidden;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-label {
  display: inline-block; background: var(--white); color: var(--coral);
  border-radius: 999px; padding: 6px 18px; font-size: 14px; font-weight: 700; margin-bottom: 20px;
  border: 1px solid var(--pink);
}
.hero h1 { font-size: clamp(28px, 4.4vw, 50px); letter-spacing: .02em; }
.hero h1 .accent { color: var(--coral); }
.hero-quote { margin-top: 12px; font-size: 15px; color: var(--muted); }
.hero-lead { margin: 28px 0 36px; font-size: 17px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.hero-visual { position: relative; }
.hero-visual .main {
  border-radius: 50% 44% 48% 52% / 52% 48% 52% 48%; overflow: hidden;
  box-shadow: var(--shadow); border: 8px solid var(--white);
}
.hero-visual .badge {
  position: absolute; left: -24px; bottom: 16px; background: var(--white);
  border-radius: 50%; width: 150px; height: 150px; display: grid; place-content: center;
  text-align: center; box-shadow: var(--shadow); font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; line-height: 1.4; font-size: 14px;
}
.hero-visual .badge b { display: block; color: var(--coral); font-size: 22px; }

/* ---------- worries / recommend ---------- */
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.recommend-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); display: flex; gap: 16px; align-items: flex-start;
}
.recommend-card .icon {
  flex: 0 0 52px; height: 52px; border-radius: 50%; background: var(--pink-light);
  display: grid; place-content: center; font-size: 24px;
}
.recommend-card h3 { font-size: 17px; margin-bottom: 4px; }
.recommend-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.recommend-foot {
  margin-top: 48px; text-align: center; font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2.4vw, 24px); font-weight: 700;
}
.recommend-foot span { background: linear-gradient(transparent 62%, var(--pink) 62%); }

/* ---------- about ---------- */
.about-quote {
  text-align: center; font-family: "Zen Maru Gothic", sans-serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 30px); margin-bottom: 40px; position: relative;
}
.about-quote cite { display: block; font-style: normal; font-size: 15px; color: var(--muted); margin-top: 8px; }
.about-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-body img { border-radius: var(--radius); }
.about-body p + p { margin-top: 1em; }

.mission-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.mission-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.mission-card .num { font-family: "Zen Maru Gothic", sans-serif; color: var(--coral); font-size: 14px; letter-spacing: .15em; font-weight: 700; }
.mission-card h3 { font-size: 20px; margin: 8px 0 10px; }
.mission-card p { font-size: 14px; color: var(--muted); text-align: left; }

/* ---------- theory ---------- */
.theory-lead { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border-radius: var(--radius); padding: 40px 28px; text-align: center;
  border-top: 6px solid var(--coral);
}
.pillar:nth-child(2) { border-color: #f0a58c; }
.pillar:nth-child(3) { border-color: var(--pink); }
.pillar .kanji { font-family: "Zen Maru Gothic", sans-serif; font-size: 44px; color: var(--coral); font-weight: 700; line-height: 1; }
.pillar h3 { font-size: 20px; margin: 14px 0 10px; }
.pillar p { font-size: 14px; color: var(--muted); text-align: left; }

.theory-point {
  margin-top: 56px; background: var(--white); border-radius: var(--radius); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.theory-point h3 { font-size: 22px; margin-bottom: 16px; }
.theory-point h3 em { font-style: normal; color: var(--coral); }
.effects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; }
.effects li {
  background: var(--pink-light); border-radius: 14px; padding: 16px; text-align: center;
  font-weight: 700; font-family: "Zen Maru Gothic", sans-serif;
}
.effects li:last-child:nth-child(odd) { grid-column: span 2; }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: start; }
.founder-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.founder-name { font-size: 32px; }
.founder-name small { display: block; font-size: 14px; color: var(--coral); letter-spacing: .1em; }
.founder-title { color: var(--muted); margin: 4px 0 24px; font-size: 15px; }
.founder-story p + p { margin-top: 1em; }
.timeline { list-style: none; margin-top: 32px; border-left: 2px solid var(--pink); padding-left: 24px; }
.timeline li { position: relative; padding: 6px 0; font-size: 15px; }
.timeline li::before {
  content: ""; position: absolute; left: -31px; top: 16px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--coral); border: 2px solid var(--white);
}
.timeline time { display: inline-block; min-width: 92px; color: var(--coral); font-weight: 700; }

.books { margin-top: 72px; }
.books h3 { text-align: center; font-size: 22px; margin-bottom: 8px; }
.books > p { text-align: center; color: var(--muted); margin-bottom: 32px; }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.books-grid figure { background: var(--white); border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); }
.books-grid img { border-radius: 10px; aspect-ratio: 16 / 10; object-fit: contain; width: 100%; background: #fff; }
.books-grid figcaption { text-align: center; font-size: 14px; margin-top: 10px; color: var(--muted); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 32px 22px 28px;
  box-shadow: var(--shadow); text-align: center;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  border: 10px solid transparent; border-left: 12px solid var(--coral); z-index: 2;
}
.step .label {
  display: inline-block; background: var(--coral); color: var(--white); border-radius: 999px;
  font-size: 12px; font-weight: 700; padding: 2px 14px; letter-spacing: .1em; font-family: "Zen Maru Gothic", sans-serif;
}
.step .ico { font-size: 40px; margin: 12px 0 4px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); text-align: left; }
.step.free .tag { position: absolute; top: -12px; right: 16px; background: var(--green); color: #fff; font-size: 12px; padding: 2px 12px; border-radius: 999px; font-weight: 700; }

/* ---------- assessment ---------- */
.assess-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.assess-intro .stats { display: flex; gap: 14px; margin-top: 28px; }
.assess-intro .stat { flex: 1; background: var(--pink-light); border-radius: 16px; padding: 18px 10px; text-align: center; }
.assess-intro .stat b { display: block; font-family: "Zen Maru Gothic", sans-serif; font-size: 28px; color: var(--coral); line-height: 1.2; }
.assess-intro .stat span { font-size: 13px; }
.sheets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sheets figure { text-align: center; font-size: 12px; color: var(--muted); }
.sheets img { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.08); margin-bottom: 6px; }

.measure-list { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.measure {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.measure .no { font-family: "Zen Maru Gothic", sans-serif; color: var(--coral); font-weight: 700; font-size: 13px; letter-spacing: .15em; }
.measure h3 { font-size: 19px; margin: 4px 0 8px; }
.measure p { font-size: 14px; color: var(--muted); }
.measure.wide { grid-column: span 2; }

.options { margin-top: 64px; }
.options > h3 { text-align: center; font-size: 22px; margin-bottom: 28px; }
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.option {
  background: var(--cream); border-radius: var(--radius); padding: 28px; display: grid;
  grid-template-columns: 140px 1fr; gap: 20px; align-items: start;
}
.option img { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.option .kicker { color: var(--coral); font-size: 13px; font-weight: 700; }
.option h4 { font-size: 18px; margin-bottom: 8px; }
.option p { font-size: 14px; color: var(--muted); }

/* ---------- analyst ---------- */
.analyst { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.analyst-texts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.analyst-texts figure { text-align: center; font-size: 13px; color: var(--muted); }
.analyst-texts img { border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 8px; }
.analyst .lead { font-size: 17px; margin-bottom: 24px; }
.can-list { list-style: none; display: grid; gap: 14px; margin: 24px 0; }
.can-list li {
  background: var(--white); border-radius: 14px; padding: 18px 20px 18px 56px; position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.can-list li::before {
  content: "✓"; position: absolute; left: 18px; top: 18px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--coral); color: #fff; display: grid; place-content: center; font-size: 14px; font-weight: 700;
}
.can-list b { display: block; font-family: "Zen Maru Gothic", sans-serif; }
.can-list span { font-size: 14px; color: var(--muted); }

/* ---------- advisors ---------- */
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advisor { background: var(--white); border-radius: var(--radius); padding: 24px; display: flex; gap: 18px; align-items: center; border: 1px solid var(--border); }
.advisor img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: 0 0 96px; }
.advisor .aff { font-size: 12px; color: var(--muted); line-height: 1.6; }
.advisor .name { font-family: "Zen Maru Gothic", sans-serif; font-size: 19px; font-weight: 700; margin-top: 6px; }
.advisor .name small { font-size: 12px; margin-left: 4px; }

/* ---------- video ---------- */
.video-wrap { max-width: 820px; margin: 0 auto; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { background: var(--white); border-radius: 16px; margin-bottom: 14px; border: 1px solid var(--border); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 60px 22px 64px; position: relative;
  font-weight: 700; font-family: "Zen Maru Gothic", sans-serif; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 20px; top: 18px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--coral); color: #fff; display: grid; place-content: center; font-size: 15px;
}
.faq summary::after { content: "+"; position: absolute; right: 24px; top: 16px; font-size: 26px; color: var(--coral); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 28px 24px 64px; position: relative; color: var(--muted); }
.faq .answer::before {
  content: "A"; position: absolute; left: 20px; top: -2px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--pink-light); color: var(--coral); display: grid; place-content: center; font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* ---------- final cta ---------- */
.final-cta {
  position: relative; color: var(--text); text-align: center;
  background: linear-gradient(rgba(255,248,243,.88), rgba(251,228,231,.92)), url(images/drawing-family.jpg) center / cover;
}
.final-cta h2 { font-size: clamp(22px, 3.4vw, 34px); margin-bottom: 20px; }
.final-cta h2 em { font-style: normal; color: var(--coral); }
.final-cta .desc { max-width: 760px; margin: 0 auto 36px; text-align: left; }
.seminar-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; list-style: none; }
.seminar-points li { background: var(--white); border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 15px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.seminar-points li::before { content: "● "; color: var(--coral); }
.cta-box { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.cta-box .btn { min-width: 320px; padding: 22px 40px; font-size: 19px; }

.line-banner {
  margin-top: 64px; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center; text-align: left;
}
.line-banner img { border-radius: 12px; }
.line-banner h3 { font-size: 22px; margin-bottom: 8px; }
.line-banner p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }

/* ---------- mid cta band ---------- */
.cta-band { background: var(--coral); color: #fff; padding: 48px 0; text-align: center; }
.cta-band p { font-family: "Zen Maru Gothic", sans-serif; font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; margin-bottom: 20px; }
.cta-band .btn { background: #fff; color: var(--coral); box-shadow: 0 6px 0 var(--coral-dark); }

/* ---------- footer ---------- */
.footer { background: #4a3a36; color: #f3e9e5; padding: 64px 0 100px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 40px; }
.footer-logo { background: #fff; border-radius: 12px; padding: 14px; display: inline-block; }
.footer-logo img { height: 36px; width: auto; }
.footer dl { display: grid; grid-template-columns: 80px 1fr; gap: 8px 12px; }
.footer dt { color: var(--pink); }
.footer h4 { font-size: 15px; margin-bottom: 12px; color: #fff; }
.footer ul { list-style: none; display: grid; gap: 6px; }
.footer a:hover { color: var(--pink); }
.copyright { text-align: center; margin-top: 48px; font-size: 12px; opacity: .7; }

/* ---------- fixed mobile cta ---------- */
.fixed-cta { display: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ================= responsive ================= */
@media (max-width: 1240px) {
  .gnav, .header-cta { display: none; }
  .menu-btn { display: block; }
  .header.open .gnav {
    display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 12px 20px 24px;
  }
  .header.open .gnav ul { flex-direction: column; gap: 0; font-size: 16px; }
  .header.open .gnav li a { display: block; padding: 14px 4px; border-bottom: 1px dashed var(--border); }
  .header.open .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .header.open .menu-btn span:nth-child(2) { opacity: 0; }
  .header.open .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .advisor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  section { padding: 72px 0; }
  .hero { padding: 40px 0 64px; }
  .hero-inner, .about-body, .theory-point, .founder, .assess-intro, .analyst, .line-banner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-visual .badge { width: 116px; height: 116px; font-size: 12px; left: -8px; }
  .hero-visual .badge b { font-size: 18px; }
  .recommend-grid, .mission-row, .pillars { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 360px; margin: 0 auto; }
  .measure-list, .option-grid { grid-template-columns: 1fr; }
  .measure.wide { grid-column: auto; }
  .theory-point { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box .btn { min-width: 0; width: 100%; }
  .fixed-cta {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 8px; background: rgba(255,255,255,.96); border-top: 1px solid var(--border);
  }
  .fixed-cta a { text-align: center; border-radius: 12px; padding: 12px 6px; font-weight: 700; font-size: 14px; color: #fff; font-family: "Zen Maru Gothic", sans-serif; }
  .fixed-cta .f-seminar { background: var(--coral); }
  .fixed-cta .f-line { background: var(--line); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .advisor-grid { grid-template-columns: 1fr; }
  .option { grid-template-columns: 1fr; }
  .option img { max-width: 180px; }
  .sheets { gap: 8px; }
  .effects { grid-template-columns: 1fr; }
  .effects li:last-child:nth-child(odd) { grid-column: auto; }
  .btn { padding: 16px 28px; font-size: 16px; }
  .hero-cta .btn { width: 100%; }
  .faq summary { font-size: 15px; padding: 18px 48px 18px 60px; }
  .faq .answer { padding: 0 20px 20px 60px; }
  .line-banner { padding: 20px; }
}

/* ================= sub pages ================= */
.gnav .has-sub { position: relative; }
.gnav .sub {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow); min-width: 220px; flex-direction: column; gap: 0;
}
.gnav .has-sub:hover .sub, .gnav .has-sub:focus-within .sub { display: flex; }
.gnav .sub a { display: block; padding: 8px 14px; border-radius: 8px; }
.gnav .sub a:hover { background: var(--pink-light); }
.gnav .has-sub > a::after { content: " ▾"; font-size: 10px; color: var(--coral); }
.gnav a.current { color: var(--coral); }

.page-hero {
  padding: 56px 0 72px; text-align: center;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
}
.page-hero.pro { background: linear-gradient(180deg, #f6ddd3 0%, var(--cream) 100%); }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 28px; text-align: left; }
.breadcrumb a { color: var(--coral); }
.page-hero .rank {
  display: inline-block; font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; letter-spacing: .2em;
  color: #fff; background: var(--coral); border-radius: 999px; padding: 4px 20px; font-size: 13px; margin-bottom: 16px;
}
.page-hero.pro .rank { background: linear-gradient(90deg, #c9a24a, #e0bf6a); }
.page-hero h1 { font-size: clamp(28px, 4.6vw, 48px); }
.page-hero h1 em { font-style: normal; color: var(--coral); }
.page-hero .lead { max-width: 760px; margin: 20px auto 32px; font-size: 17px; }

.tbd {
  background: #fff4c2; border-bottom: 2px dashed #e0b400; padding: 0 4px; border-radius: 3px;
}
.tbd::before { content: "要確認｜"; font-size: 11px; font-weight: 700; color: #a07800; }

.curriculum { max-width: 860px; margin: 0 auto; list-style: none; display: grid; gap: 16px; counter-reset: cur; }
.curriculum li {
  background: var(--white); border-radius: 16px; padding: 24px 24px 24px 88px; position: relative;
  border: 1px solid var(--border); counter-increment: cur;
}
.curriculum li::before {
  content: counter(cur, decimal-leading-zero); position: absolute; left: 24px; top: 20px;
  font-family: "Zen Maru Gothic", sans-serif; font-size: 30px; font-weight: 700; color: var(--coral);
}
.curriculum h3 { font-size: 18px; margin-bottom: 4px; }
.curriculum p { font-size: 14px; color: var(--muted); }

.course-table { max-width: 860px; margin: 0 auto; width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.course-table th, .course-table td { padding: 20px 24px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.course-table tr:last-child th, .course-table tr:last-child td { border-bottom: 0; }
.course-table th { width: 30%; background: var(--pink-light); font-family: "Zen Maru Gothic", sans-serif; }
.course-table .price { font-size: 26px; font-weight: 700; color: var(--coral); font-family: "Zen Maru Gothic", sans-serif; }

.compare-wrap { overflow-x: auto; }
.compare { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare th, .compare td { padding: 18px 16px; border-bottom: 1px solid var(--border); text-align: center; font-size: 15px; }
.compare thead th { font-family: "Zen Maru Gothic", sans-serif; font-size: 17px; }
.compare thead th:nth-child(2) { background: var(--pink-light); }
.compare thead th:nth-child(3) { background: #f8ecd0; }
.compare tbody th { text-align: left; font-weight: 500; }
.compare .yes { color: var(--coral); font-size: 20px; font-weight: 700; }
.compare .no { color: #c9bcb8; }
.compare td.hl { background: rgba(251,228,231,.35); }

.course-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.course-card {
  background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px; border-top: 6px solid var(--coral); transition: transform .2s;
}
.course-card:hover { transform: translateY(-4px); }
.course-card.pro { border-top-color: #d4ae55; }
.course-card .rank { font-size: 12px; letter-spacing: .2em; font-weight: 700; color: var(--coral); font-family: "Zen Maru Gothic", sans-serif; }
.course-card.pro .rank { color: #b08a30; }
.course-card h3 { font-size: 22px; }
.course-card p { font-size: 14px; color: var(--muted); flex: 1; }
.course-card .more { color: var(--coral); font-weight: 700; font-family: "Zen Maru Gothic", sans-serif; }
.course-card .more::after { content: " ›"; }

@media (max-width: 1240px) {
  .header.open .gnav .sub { display: flex; position: static; transform: none; box-shadow: none; border: 0; padding: 0 0 0 16px; }
  .header.open .gnav .has-sub > a::after { content: ""; }
}
@media (max-width: 820px) {
  .course-cards { grid-template-columns: 1fr; }
  .course-table th, .course-table td { display: block; width: 100%; }
  .course-table th { padding-bottom: 8px; }
  .curriculum li { padding: 20px 20px 20px 72px; }
}

/* ================= members ================= */
.member-stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.member-stats div { background: #fff; border-radius: 16px; padding: 14px 28px; box-shadow: var(--shadow); text-align: center; font-size: 13px; }
.member-stats b { display: block; font-family: "Zen Maru Gothic", sans-serif; font-size: 30px; line-height: 1.2; color: var(--coral); }
.member-stats .pro b { color: #b08a30; }

.filter-bar {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-bottom: 20px;
}
.rank-tabs { display: flex; gap: 6px; background: var(--cream); border-radius: 999px; padding: 4px; }
.rank-tabs button {
  border: 0; background: none; border-radius: 999px; padding: 8px 18px; cursor: pointer;
  font: 700 14px "Zen Maru Gothic", sans-serif; color: var(--muted);
}
.rank-tabs button[aria-pressed="true"] { background: var(--coral); color: #fff; }
.rank-tabs button[data-rank="pro"][aria-pressed="true"] { background: #c9a24a; }
.filter-bar select, .filter-bar input[type="search"] {
  font: inherit; font-size: 14px; border: 1px solid var(--border); border-radius: 10px; padding: 9px 12px; background: #fff; color: var(--text);
}
.filter-bar input[type="search"] { flex: 1; min-width: 200px; }
.filter-bar label.chk { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; }
.filter-bar label.chk input { accent-color: var(--coral); width: 18px; height: 18px; }
.result-count { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px 24px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px; position: relative; text-align: left; font: inherit; color: inherit;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member-card.is-pro { border: 2px solid #e2c47c; background: linear-gradient(180deg, #fffaf0 0%, #fff 40%); }
.member-top { display: flex; gap: 16px; align-items: center; }
.avatar {
  width: 80px; height: 80px; flex: 0 0 80px; border-radius: 50%; object-fit: cover;
  background: var(--pink-light); color: var(--coral); display: grid; place-content: center;
  font: 700 30px "Zen Maru Gothic", sans-serif; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--pink);
}
.is-pro .avatar { box-shadow: 0 0 0 2px #e2c47c; background: #fbf1da; color: #b08a30; }
.rank-badge {
  display: inline-block; font: 700 11px "Zen Maru Gothic", sans-serif; letter-spacing: .08em;
  padding: 2px 10px; border-radius: 999px; background: var(--coral); color: #fff;
}
.rank-badge.pro { background: linear-gradient(90deg, #c9a24a, #e0bf6a); }
.member-name { font: 700 20px/1.4 "Zen Maru Gothic", sans-serif; margin-top: 4px; }
.member-name small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .1em; }
.member-meta { font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 4px 14px; }
.member-meta span::before { margin-right: 4px; }
.member-meta .area::before { content: "📍"; }
.member-meta .job::before { content: "💼"; }
.member-meta .online::before { content: "💻"; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 12px; background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 2px 10px; }
.member-msg { font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.member-card .more { margin-top: auto; color: var(--coral); font: 700 14px "Zen Maru Gothic", sans-serif; }
.member-card .more::after { content: " ›"; }
.sample-flag { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; color: #a07800; background: #fff4c2; border-radius: 4px; padding: 1px 6px; }
.empty { text-align: center; padding: 48px 0; color: var(--muted); grid-column: 1 / -1; }

.member-dialog { margin: auto; border: 0; border-radius: var(--radius); padding: 0; width: min(640px, calc(100% - 32px)); max-height: calc(100% - 48px); color: var(--text); }
.member-dialog::backdrop { background: rgba(74, 58, 54, .55); }
.member-dialog .inner { padding: 36px 32px 32px; display: grid; gap: 16px; }
.member-dialog .close {
  position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%; border: 0;
  background: var(--cream); font-size: 22px; cursor: pointer; color: var(--text);
}
.member-dialog .avatar { width: 110px; height: 110px; flex-basis: 110px; font-size: 40px; }
.member-dialog h3 { font-size: 16px; color: var(--coral); margin-top: 8px; }
.member-dialog .full-msg { font-size: 15px; white-space: pre-line; }
.member-links { display: flex; flex-wrap: wrap; gap: 10px; }
.member-links a { font-size: 14px; font-weight: 700; border-radius: 999px; padding: 8px 18px; border: 2px solid var(--coral); color: var(--coral); }
.member-links a.line { border-color: var(--line); color: var(--line); }

.join-banner {
  margin-top: 72px; border-radius: var(--radius); padding: 40px; text-align: center;
  background: linear-gradient(135deg, var(--pink-light), #f8ecd0);
}
.join-banner h3 { font-size: 24px; margin-bottom: 10px; }
.join-banner p { color: var(--muted); margin-bottom: 24px; }
.join-banner .btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.listing-note { margin-top: 32px; text-align: center; font-size: 13px; color: var(--muted); }
.listing-note a { color: var(--coral); text-decoration: underline; }

@media (max-width: 1080px) { .member-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .member-grid { grid-template-columns: 1fr; }
  .filter-bar { padding: 16px; }
  .rank-tabs { width: 100%; }
  .rank-tabs button { flex: 1; padding: 8px 6px; font-size: 13px; }
  .filter-bar select { flex: 1; }
  .member-dialog .inner { padding: 32px 20px 24px; }
  .join-banner { padding: 28px 20px; }
}

/* ================= hero copy & benefits ================= */
.hero h1 { font-size: clamp(24px, 3.3vw, 42px); }
.hero h1 .ln { display: block; white-space: nowrap; }
.hero h1 .ln:first-child { margin-left: -.5em; }
.hero-lead { margin: 20px 0 22px; }
.hero-benefits { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-benefits li {
  background: #fff; border: 1px solid var(--pink); border-radius: 999px; padding: 8px 18px 8px 38px;
  position: relative; font-size: 15px; font-weight: 500; box-shadow: 0 2px 8px rgba(201,95,68,.06);
}
.hero-benefits li::before {
  content: "✓"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%; background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; display: grid; place-content: center;
}
.hero-benefits b { color: var(--coral); }
blockquote.hero-quote {
  margin-top: 28px; padding: 14px 18px; border-left: 4px solid var(--pink); background: rgba(255,255,255,.6);
  border-radius: 0 12px 12px 0; font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 15px; color: var(--text);
}
blockquote.hero-quote cite { display: block; font-style: normal; font-weight: 500; font-size: 13px; color: var(--muted); margin-top: 2px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  position: relative; background: #fff; border-radius: var(--radius); padding: 36px 26px 28px;
  box-shadow: var(--shadow); overflow: hidden;
}
.benefit .no {
  position: absolute; top: -6px; right: 14px; font: 700 64px/1 "Zen Maru Gothic", sans-serif; color: var(--pink-light);
}
.benefit .ico {
  position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--pink-light);
  display: grid; place-content: center; font-size: 28px; margin-bottom: 16px;
}
.benefit h3 { position: relative; font-size: 19px; margin-bottom: 10px; }
.benefit p { font-size: 14px; color: var(--muted); }
.benefit-foot {
  margin-top: 48px; text-align: center; font: 700 clamp(18px, 2.4vw, 24px)/1.7 "Zen Maru Gothic", sans-serif;
}
.benefit-foot span { color: var(--coral); background: linear-gradient(transparent 62%, var(--pink) 62%); }
br.sp { display: none; }

@media (max-width: 1080px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-lead br { display: none; }
  .hero-benefits li { font-size: 14px; }
  br.sp { display: inline; }
}
h1, h2, h3, h4 { word-break: auto-phrase; text-wrap: balance; }

/* ================= guide (top page links) ================= */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-card .thumb { aspect-ratio: 16 / 9; background: var(--pink-light); overflow: hidden; }
.guide-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.guide-card:hover .thumb img { transform: scale(1.04); }
.guide-card .thumb.avatars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #fff; }
.guide-card .thumb.avatars img { object-position: center 25%; }
.guide-card .thumb.faq-thumb { display: grid; place-content: center; background: linear-gradient(135deg, var(--pink-light), #f8ecd0); }
.guide-card .thumb.faq-thumb span { font: 700 48px "Zen Maru Gothic", sans-serif; color: var(--coral); }
.guide-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.guide-card h3 { font-size: 19px; }
.guide-card p { font-size: 14px; color: var(--muted); flex: 1; }
.guide-card .more { color: var(--coral); font: 700 14px "Zen Maru Gothic", sans-serif; margin-top: 6px; }
.guide-card .more::after { content: " ›"; }
.footer-menu { grid-template-columns: 1fr 1fr; column-gap: 20px; }
@media (max-width: 1080px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .guide-grid { grid-template-columns: 1fr; } }
.hero-more { margin: -18px 0 28px; font-size: 14px; }
.hero-more a { color: var(--coral); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.hero-more a::after { content: " ›"; }
.guide-card .thumb.icon-thumb { display: flex; align-items: baseline; justify-content: center; align-content: center; flex-wrap: wrap; gap: 6px; padding-top: 12%; background: linear-gradient(135deg, var(--pink-light), var(--cream)); }
.guide-card .thumb.icon-thumb span { font: 700 72px/1 "Zen Maru Gothic", sans-serif; color: var(--coral); }
.guide-card .thumb.icon-thumb small { font: 700 18px "Zen Maru Gothic", sans-serif; color: var(--text); }
@media (max-width: 1240px) {
  .header.open .gnav { max-height: calc(100dvh - 64px); overflow-y: auto; overscroll-behavior: contain; padding-bottom: 90px; }
}

/* ================= home: one screen, no scroll ================= */
body.home { min-height: 100dvh; display: flex; flex-direction: column; }
body.home main { flex: 1; display: flex; }
body.home .hero {
  flex: 1; display: flex; flex-direction: column; justify-content: center; gap: clamp(12px, 3vh, 32px);
  padding: clamp(12px, 3vh, 40px) 0 clamp(10px, 2vh, 24px);
}
body.home .hero-inner { width: 100%; gap: 40px; }
body.home .hero-label { margin-bottom: clamp(8px, 1.6vh, 18px); }
body.home .hero h1 { font-size: min(3.3vw, 5.4vh, 44px); }
body.home .hero-lead { margin: clamp(8px, 1.8vh, 20px) 0; font-size: min(16px, 2.1vh); line-height: 1.8; }
body.home .hero-benefits { margin-bottom: clamp(10px, 2.4vh, 28px); }
body.home .hero-benefits li { font-size: min(15px, 1.9vh); padding-top: 6px; padding-bottom: 6px; }
body.home .hero-cta { gap: 20px; }
body.home .hero-cta .btn { padding: clamp(10px, 1.6vh, 18px) 34px; }
body.home .hero-more { margin: 0; font-size: 14px; font-weight: 700; color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
body.home .hero-more::after { content: " ›"; }
body.home .hero-visual .main img { max-height: 58vh; width: auto; margin: 0 auto; }
body.home .hero-visual .main { width: fit-content; margin: 0 auto; }
.home-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.home-links a {
  background: rgba(255,255,255,.85); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 16px; font-size: 13px; font-weight: 500; transition: background .2s, color .2s;
}
.home-links a:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.footer-slim {
  background: #4a3a36; color: #f3e9e5; font-size: 12px; padding: 10px 20px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 4px 20px;
}
.footer-slim a:hover { color: var(--pink); }

@media (max-width: 820px) {
  body.home .hero { justify-content: flex-start; padding-bottom: 76px; }
  body.home .hero-inner { gap: 0; }
  body.home .hero-visual { display: none; }
  body.home .hero h1 { font-size: min(7vw, 4.4vh, 34px); }
  body.home .hero-lead { font-size: min(14px, 1.9vh); }
  body.home br.pc { display: none; }
  body.home .hero-cta .btn { display: none; }
  body.home .hero-cta { justify-content: center; }
  .home-links { gap: 6px; }
  .home-links a { padding: 5px 12px; font-size: 12px; }
  .footer-slim { display: none; }
}
body.home .hero h1 { font-size: min(3.3vw, 4.9vh, 44px); }
body.home .hero-benefits { gap: 8px; }
body.home .hero-benefits li { padding: 4px 14px 4px 34px; }
body.home .hero-benefits li::before { left: 10px; }
body.home .hero-visual .main img { max-height: 54vh; }
@media (max-height: 720px) and (min-width: 821px) {
  body.home .hero-label { display: none; }
  .home-links a { padding: 4px 14px; }
}
@media (max-width: 820px) {
  body.home .hero { justify-content: center; }
  body.home .hero h1 { font-size: min(7.4vw, 4.2vh, 34px); }
  body.home .hero-label { font-size: 12px; padding: 4px 14px; margin-bottom: 1.4vh; }
  body.home .hero-visual { display: block; order: -1; margin: 0 auto 1.6vh; }
  body.home .hero-visual .main { border-width: 4px; }
  body.home .hero-visual .main img { max-height: 19vh; }
  body.home .hero-visual .badge { display: none; }
  body.home .hero-benefits { gap: 6px; margin-bottom: 1.6vh; }
  body.home .hero-benefits li { font-size: min(14px, 1.9vh); }
}
@media (max-width: 820px) {
  body.home .home-links { display: none; }
  body.home .hero { gap: 0; padding-top: 2vh; }
  body.home .hero-visual .main img { max-height: 17vh; }
  body.home .hero-lead { margin: 1.4vh 0; }
}
@media (max-width: 820px) and (max-height: 700px) {
  body.home .hero-label { display: none; }
  body.home .hero-visual .main img { max-height: 14vh; }
}

/* ================= voices ================= */
.voice-filter { justify-content: center; }
.voice-filter .rank-tabs { flex-wrap: wrap; justify-content: center; }
.voice-grid { columns: 3 300px; column-gap: 24px; }
.voice-card {
  break-inside: avoid; margin-bottom: 24px; position: relative; background: #fff; border-radius: var(--radius);
  padding: 30px 26px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.voice-card::before {
  content: "“"; position: absolute; top: 4px; right: 18px; font: 700 80px/1 "Zen Maru Gothic", serif; color: var(--pink-light);
}
.voice-card .sample-flag { right: auto; left: 12px; top: 10px; }
.voice-type {
  align-self: flex-start; font: 700 12px "Zen Maru Gothic", sans-serif; border-radius: 999px; padding: 2px 12px;
  background: var(--pink-light); color: var(--coral-dark); margin-top: 6px;
}
.type-analyst .voice-type { background: #fde6dd; }
.type-pro .voice-type { background: #f8ecd0; color: #8d6c20; }
.voice-card h3 { position: relative; font-size: 18px; line-height: 1.6; }
.voice-text { font-size: 15px; color: var(--text); white-space: pre-line; }
.voice-person { display: flex; align-items: center; gap: 12px; border-top: 1px dashed var(--border); padding-top: 14px; }
.voice-person .avatar { width: 44px; height: 44px; flex-basis: 44px; font-size: 18px; border-width: 2px; }
.voice-person b { display: block; font-size: 14px; }
.voice-person small { font-size: 12px; color: var(--muted); }
.voice-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 8px; }
.video-voices { margin-bottom: 40px; }
.vv-title { text-align: center; font-size: 22px; margin-bottom: 20px; }
.vv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.vv-item figcaption { margin-top: 10px; font-weight: 700; font-family: "Zen Maru Gothic", sans-serif; }
.vv-item figcaption small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); }
@media (max-width: 640px) { .voice-filter .rank-tabs button { flex: 0 0 auto; padding: 8px 14px; } }
.voices-embed .voice-grid { columns: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.voices-embed .voice-card { margin-bottom: 0; }
@media (max-width: 1080px) { .voices-embed .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .voices-embed .voice-grid { grid-template-columns: 1fr; } }
.sample-notice {
  background: #fff4c2; border: 1px dashed #e0b400; color: #7a5c00; border-radius: 12px;
  padding: 12px 18px; text-align: center; font-size: 14px; margin-bottom: 20px;
}

/* before / after */
.ba { position: relative; display: grid; gap: 6px; }
.ba > div { border-radius: 12px; padding: 10px 14px 10px 14px; }
.ba span { display: inline-block; font: 700 11px "Zen Maru Gothic", sans-serif; letter-spacing: .15em; margin-bottom: 2px; }
.ba p { font-size: 14px; line-height: 1.7; }
.ba-before { background: #f3efed; color: var(--muted); }
.ba-before span { color: #9a8a85; }
.ba-after { background: var(--pink-light); color: var(--text); font-weight: 500; }
.ba-after span { color: var(--coral); }
.type-pro .ba-after { background: #f8ecd0; }
.type-pro .ba-after span { color: #a07c28; }
.ba-arrow { height: 14px; padding: 0 !important; display: grid; place-content: center; }
.ba-arrow::before { content: ""; border: 9px solid transparent; border-top: 11px solid var(--coral); border-bottom: 0; }
.type-pro .ba-arrow::before { border-top-color: #d4ae55; }
