@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #fbf6f2;
  --surface: #ffffff;
  --surface2: #f7ebe3;
  --border: #ecdcd0;
  --text: #3f332c;
  --muted: #8c7a6e;
  --gold: #bd7f5e;
  --gold-light: #d9a67e;
  --pink: #e3a893;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(140, 100, 70, 0.08);
  --shadow-hover: 0 16px 40px rgba(140, 100, 70, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 2;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 246, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* ── Layout ── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ── Hero ── */
.hero {
  padding: 11rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(227, 168, 147, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(189, 127, 94, 0.12) 0%, transparent 50%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(217, 166, 126, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: block;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 2;
}

/* ── Hero CTA ── */
.hero-cta {
  margin-top: 2.5rem;
}

/* ── Trust Bar ── */
.trust-bar {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
  background: var(--surface);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.trust-badges li {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding: 0.3rem 1.8rem;
  position: relative;
}

.trust-badges li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9em;
  background: var(--border);
}

/* ── Concern Grid ── */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}

.concern-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.2rem;
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.concern-card:hover {
  color: var(--text);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--gold-light);
}

.concern-card--cta {
  background: linear-gradient(160deg, #fbeee5, #f7ded0);
  border-color: var(--gold-light);
}

.concern-card--cta:hover {
  background: linear-gradient(160deg, #fbe6d8, #f5d3bf);
}

.concern-icon {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.concern-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.concern-link {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ── Reassurance List ── */
.reassurance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.reassurance-list li {
  font-size: 14.5px;
  color: var(--text);
  padding: 1rem 1.2rem 1rem 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  line-height: 1.8;
}

.reassurance-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--gold);
  font-weight: 700;
}

/* ── Section titles ── */
.section-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 2;
}

.divider {
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  margin: 1.6rem 0 2rem;
}

/* ── Service Grid (top page) ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.service-card:hover {
  color: var(--text);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--gold-light);
}

.service-card-num {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: var(--text);
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.9;
}

.service-card-price {
  margin-top: 1.2rem;
  font-size: 13.5px;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-weight: 600;
}

.service-card-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card-arrow {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}

.service-card-arrow:hover {
  color: var(--gold);
}

.service-card-cta {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.02em;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  text-align: center;
  transition: all 0.2s;
  display: block;
}

.service-card-cta:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── LP Hero ── */
.lp-hero {
  padding: 9.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(227, 168, 147, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(189, 127, 94, 0.10) 0%, transparent 55%),
    var(--bg);
}

.lp-hero-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.lp-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.lp-hero-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2.2;
}

/* ── Testimonials ── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.4rem;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.testimonial-author {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  padding: 1rem 1.5rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
  font-size: 12.5px;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--surface);
  line-height: 1.8;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── Price Box ── */
.price-box {
  background: linear-gradient(160deg, var(--surface), #fdf3ec);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
}

.price-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.price-main {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--text);
}

.price-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 2;
}

/* ── FAQ ── */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  margin-bottom: 0.8rem;
}

.faq-q {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.faq-a {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227, 168, 147, 0.14) 0%, transparent 60%),
    var(--surface2);
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
  cursor: pointer;
  background: var(--surface);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(189, 127, 94, 0.3);
  transform: translateY(-1px);
}

.btn:hover::after {
  left: 130%;
}

.btn-large {
  padding: 1.2rem 3.6rem;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(189, 127, 94, 0.15);
}

.btn-large:hover {
  box-shadow: 0 10px 30px rgba(189, 127, 94, 0.35);
}

.cta-note {
  margin-top: 1.2rem;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── Profile ── */
.profile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.profile-title {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.profile-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2.2;
}

/* ── Target List ── */
.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.target-list li {
  font-size: 14.5px;
  color: var(--text);
  padding: 0.9rem 1rem 0.9rem 2.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  line-height: 1.8;
}

.target-list li::before {
  content: '●';
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  color: var(--pink);
  font-size: 8px;
}

/* ── Flow List ── */
.flow-list {
  list-style: none;
  counter-reset: flow;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.flow-item {
  counter-increment: flow;
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.flow-num {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 0.15rem;
  width: 2rem;
}

.flow-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 2;
}

/* ── Lesson Flow ── */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.flow-step {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  padding: 2.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
}

.flow-step-figure {
  margin: 0;
}

.flow-step-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface2);
}

.flow-step-figure .ph {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface2);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 1rem;
}

.flow-step-figure figcaption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.flow-step-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.flow-step-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: var(--text);
}

.flow-step-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
}

.flow-step-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flow-step-tag {
  font-size: 11px;
  color: var(--gold);
  background: var(--surface2);
  border: 1px solid var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 720px) {
  .flow-step {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 1.6rem;
  }
  .flow-step-figure {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Manga Reader ── */
.manga-reader {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.manga-panel {
  margin: 0;
}

.manga-panel img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
}

.manga-chapter {
  text-align: center;
  margin: 2.6rem 0 0.4rem;
}

.manga-chapter:first-child {
  margin-top: 0;
}

.manga-chapter span {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.manga-chapter h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.manga-chapter .line {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  margin: 0.9rem auto 0;
}

/* ── Video Embed ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  background: var(--surface);
}

.footer-logo {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  margin-bottom: 1rem;
}

.footer-legal a {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav {
    padding: 0 1.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(251, 246, 242, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
  }

  .nav-links.is-open {
    transform: translateX(0px);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 14.5px;
  }

  .container,
  .container--wide {
    padding: 0 1.2rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 8rem 0 5rem;
  }

  .lp-hero {
    padding: 7.5rem 0 4rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 12.5px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem 1rem;
  }
}

/* ════════════════════════════════════════
   Design Upgrade 2026-07 — 全ページ共通
   ════════════════════════════════════════ */

.lp-hero h1 {
  background: linear-gradient(120deg, var(--text) 40%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-hero-label {
  position: relative;
  display: inline-block;
  padding-left: 3.2rem;
}

.lp-hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.4rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.price-main {
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 体験談：やさしい引用符 ── */
.testimonial {
  position: relative;
  padding-top: 2.6rem;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: 0.3rem;
  left: 1.7rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink);
  opacity: 0.55;
  font-family: Georgia, serif;
}

/* ── スクロールリビール ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── フローティング相談ボタン ── */
.float-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(135deg, var(--pink), var(--gold) 65%, #a56b4c);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(189, 127, 94, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: float-cta-in 0.6s ease 1s both;
}

.float-cta:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(189, 127, 94, 0.55);
}

.float-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.float-cta .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  animation: dot-pulse 2s ease-out infinite;
}

@keyframes dot-pulse {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes float-cta-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .float-cta {
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1.3rem;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-cta, .float-cta .dot::after {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
