/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(160,160,160,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,160,160,0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  color: #333333;
}

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

/* ============================================================
   PC LAYOUT
============================================================ */
.pc-layout {
  display: flex;
  height: 100vh;
  align-items: stretch;
  position: relative;
}

/* ============================================================
   BG DECORATIONS (PC / tablet only)
============================================================ */
.bg-decorations {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}


.bg-shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ============================================================
   PATTERN NAV (パターン切り替え) — fixed bottom-right
============================================================ */
.pattern-nav-fixed {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 200;
}

.pattern-nav-btn {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #c9a0dc;
  color: #c9a0dc;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.pattern-nav-btn.is-active {
  background: #c9a0dc;
  color: #fff;
}

.pattern-nav-btn:hover:not(.is-active) {
  background: rgba(201,160,220,0.18);
}


.line-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ---- PC LEFT PANEL ---- */
.pc-left-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 46%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 56px;
  z-index: 10;
  pointer-events: auto;
}

.pc-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.pc-left-line-btn {
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  padding: 16px 20px;
}

/* ---- CONTENT AREA (ベゼルなし・フレームなし) ---- */
.content-area {
  margin-left: 46%;
  flex: 1;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  background: transparent;
  position: relative;
  z-index: 5;
}

.content-inner {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* スクロールバー非表示 */
.content-inner::-webkit-scrollbar {
  display: none;
}
.content-inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ============================================================
   LINE FIXED BUTTON — viewport右上に固定（position:fixed）
============================================================ */
.line-fixed-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 999;
  align-items: center;
  gap: 6px;
  background: #06C755;
  color: #fff;
  border-radius: 24px;
  padding: 9px 16px 9px 10px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 3px 12px rgba(6,199,85,0.45);
}

.line-icon-sm {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-arrow {
  font-size: 10px;
}

/* ============================================================
   FV SECTION
============================================================ */
.fv-section {
  position: relative;
  width: 100%;
  display: block;
}

.fv-image {
  width: 100%;
  display: block;
}

/* ============================================================
   FV CTA AREA
============================================================ */
.fv-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -44px;
  position: relative;
  z-index: 5;
  padding: 0 20px 32px;
  background-image: url('images/about-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* ボタン＋pill をまとめるラッパー */
.cta-btn-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  /* pillの上半分（約14px）分だけ上にスペースを確保 */
  padding-top: 14px;
  display: flex;
  justify-content: center;
  margin-top: -36px;
}

/* pillラベル — ボタン上辺から50%飛び出す */
.cta-float-label {
  position: absolute;
  top: 0;                        /* wrapperの上端 = ボタン上辺から14px上 */
  left: 50%;
  transform: translateX(-50%);  /* 水平中央揃え */
  z-index: 10;
  background: #ffffff;
  color: #06C755;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: 1000px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* メインCTAボタン */
.cta-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  padding: 22px 28px 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 4px 18px rgba(6,199,85,0.45);
}

/* ボタン行: アイコン＋テキスト＋矢印 */
.cta-bottom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-bottom-row {
    font-size: 15px;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
}

.cta-arrow {
  font-size: 13px;
  margin-left: 2px;
}

.fv-cta-note {
  font-size: 10px;
  color: #888;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================================================
   SHINE ANIMATION
============================================================ */
.shine-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3.2s infinite;
}

.sidebar-line-btn.shine-btn::after {
  animation-delay: 0.4s;
}
.line-fixed-btn.shine-btn::after {
  animation-delay: 0.9s;
}
.cta-main-btn.shine-btn::after {
  animation-delay: 1.6s;
}

@keyframes shine {
  0%   { left: -80%; opacity: 1; }
  60%  { left: 120%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  padding: 80px 24px 40px;
  background-image: url('images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: 'ABOUT';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 130px;
  font-weight: 900;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.06em;
  color: rgba(130, 120, 200, 0.25);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-heading-block {
  margin-bottom: 0;
}

/* ---- OUTER DASHED BOX ---- */
.about-answer-box {
  border: 1px dashed #aaa;
  margin-top: 0;
  background: #fff;
}

/* ---- A ROW ---- */
.about-a-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px dashed #aaa;
}

.about-a-badge {
  flex-shrink: 0;
  width: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F4524D;
  font-size: 48px;
  font-weight: 900;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1;
  border-right: 1px dashed #aaa;
  padding: 12px 0;
  background: #fff;
}

.about-a-content {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  align-items: center;
}

.about-a-h3 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

/* ---- CONTENT AREA (illustration + text) ---- */
.about-answer-content {
  padding: 0 16px 20px;
  margin-top: 10px;
}

/* ---- ILLUSTRATION ---- */
.liver-what-img {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  object-fit: cover;
}

.about-illust-row {
  display: flex;
  align-items: flex-end;
  background: #fff;
  overflow: hidden;
}

.about-illust-img {
  width: 50%;
  display: block;
  mix-blend-mode: multiply;
}

/* ---- BODY TEXT ---- */

.about-label {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  /* FVのがんばった〜グラデーションと同系のパステルグラデーション */
  background: linear-gradient(90deg, #f9a8c9 0%, #fcd17a 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.about-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.about-img-wrap {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  /* 浮いているような影 */
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.10);
}

.about-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.about-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  padding-top: 16px;
}

/* ============================================================
   ABOUT + HOW TO RIBBON BRIDGE
============================================================ */
.about-howto-wrap {
  position: relative;
}

.ribbon-bridge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  aspect-ratio: 16 / 9;
  background-image: url('images/section-ribbon.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   HOW TO SECTION
============================================================ */
.howto-section {
  padding: 80px 24px 56px;
  position: relative;
  background-image: url('images/howto-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.howto-section::before {
  content: 'HOWTO';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-weight: 900;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.04em;
  color: rgba(160, 110, 10, 0.10);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.howto-inner {
  position: relative;
  z-index: 1;
}

.howto-heading-block {
  margin-bottom: 0;
}

.howto-label {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #fcd17a 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.howto-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
}

.howto-img-wrap {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.10);
}

.howto-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.howto-illust-img {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
  object-fit: cover;
}

.howto-body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
}

/* ============================================================
   FLOW SECTION
============================================================ */
.flow-section {
  padding: 80px 24px 56px;
  background-image: url('images/flow-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.flow-section::before {
  content: 'EARN';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 130px;
  font-weight: 900;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.06em;
  color: rgba(20, 110, 20, 0.10);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.flow-inner {
  position: relative;
  z-index: 1;
}

.flow-heading-block {
  margin-bottom: 0;
}

.flow-label {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f9a8c9 0%, #fcd17a 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: inline-block;
}

.flow-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 0;
}

.flow-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  border-radius: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
}

.flow-img-placeholder::after {
  content: '画像';
}

/* 2-column cards */
.flow-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.flow-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 24px 24px 12px;
}

.flow-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #F4524D;
  white-space: nowrap;
  min-width: 72px;
  margin: 0;
  line-height: 1.4;
}

.flow-card-body {
  font-size: 14px;
  font-weight: 400;
  color: #4F4F4F;
  line-height: 1.8;
  margin: 0;
}

.revenue-style-img {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
  object-fit: cover;
}

/* ============================================================
   ABOUT US SECTION
============================================================ */
.aboutus-section {
  padding: 48px 24px 56px;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(180,180,180,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,180,180,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  z-index: 1;
}

.aboutus-inner {
  position: relative;
  z-index: 1;
}

.aboutus-heading-block {
  margin-bottom: 20px;
}

.aboutus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f9a8c9 0%, #fcd17a 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  display: inline-block;
}

.aboutus-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 0;
}

.aboutus-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f0f4ff, #fce4f3);
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
}

.aboutus-logo-img {
  width: 70%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.aboutus-body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
}

.aboutus-h3-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 28px auto 20px;
}

/* 2×2 feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 20px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.feature-icon-img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   Q / A BADGES
============================================================ */
.qa-question-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid #222;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.qa-answer-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px;
}

/* shared badge base */
.qa-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 0;
  line-height: 1;
  padding-bottom: 2px;
}

/* Q — 赤い四角バッジ */
.qa-q-badge {
  width: 64px;
  min-width: 64px;
  font-size: 44px;
  color: #fff;
  background: #F4524D;
}

/* A — ミント→ベージュ、2色グラデーション、flat */
.qa-a-badge {
  width: 44px;
  height: 44px;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, #A6E0D2, #EEE7DE);
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

/* Answer heading */
.qa-answer-h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

/* H2 inside question row: padding & vertical center */
.qa-question-row .about-h2,
.qa-question-row .howto-h2,
.qa-question-row .flow-h2 {
  margin: 0;
  padding: 17px 14px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1.4;
  background: #fff;
}

/* ============================================================
   VOICE SECTION — 所属ライバーの声
============================================================ */
.voice-section {
  background: #f7f5f2;
  padding: 52px 28px 56px;
}

.voice-inner {
  max-width: 420px;
  margin: 0 auto;
}

.voice-heading-block {
  margin-bottom: 28px;
}

.voice-h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  margin-bottom: 0;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.voice-card {
  display: flex;
  align-items: center;
}

/* 吹き出しPNG背景のラッパー */
.voice-avatar-bubble {
  position: relative;
  width: 82px;
  height: 85px;
  min-width: 82px;
  flex-shrink: 0;
  background: url('images/voice-bubble-bg.webp') no-repeat center / contain;
  z-index: 2;
  margin-right: -20px;
}

/* 丸い写真エリア（吹き出しの円形部分に合わせて配置） */
.voice-avatar {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.voice-avatar-initial {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.voice-avatar--a { background: linear-gradient(135deg, #f9a8c9, #fcd17a); }
.voice-avatar--a img { object-position: top center; }
.voice-avatar--b { background: linear-gradient(135deg, #a8d8f9, #a8f9d8); }
.voice-avatar--c { background: linear-gradient(135deg, #fcd17a, #60a5fa); }
.voice-avatar--d { background: linear-gradient(135deg, #c8b4f9, #f9a8c9); }

.voice-bubble {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px 18px 34px;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  position: relative;
  z-index: 1;
}

.voice-name {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.voice-quote {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  font-weight: 700;
}

/* ============================================================
   MOBILE (≤768px) — サイドバー非表示、コンテンツ全幅
============================================================ */
@media (max-width: 768px) {
  html, body {
    overflow: auto;
    height: auto;
    background-image: none;
    background-color: #fff;
  }

  .pc-left-panel {
    display: none;
  }

  .bg-decorations {
    display: none;
  }


  .pc-layout {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .content-area {
    margin-left: 0;
    flex: 1;
    height: auto;
    overflow: visible;
    justify-content: center;
  }

  .content-inner {
    max-width: 100%;
    height: auto;
    overflow: visible;
  }

  .line-fixed-btn {
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 999;
  }

  .fv-cta-wrap {
    margin-top: -44px;
  }
}

/* ============================================================
   SP BOTTOM FIXED CTA BUTTON — スマホ下部固定（丸みなし）
============================================================ */
.sp-bottom-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #06C755;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 0;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 -2px 12px rgba(6,199,85,0.30);
  }

  .sp-bottom-cta .cta-arrow {
    font-size: 14px;
  }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
  background: #fff;
  padding: 52px 24px 64px;
}

.faq-inner {
  position: relative;
}

.faq-heading-block {
  margin-bottom: 24px;
}

.faq-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin: 4px 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e8e0f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F4524D;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.faq-q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #aaa;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.faq-chevron::before {
  left: 2px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 2px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 16px 18px 60px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.faq-answer p {
  margin: 0 0 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 4px 0 8px 1em;
  padding: 0;
  list-style: disc;
}

.faq-answer ul li {
  margin-bottom: 2px;
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.reg-cta-section {
  background: #ffffff;
  padding: 32px 20px 48px;
  text-align: center;
}

.reg-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: #FFED87;
  border-radius: 24px;
  padding: 44px 28px 52px;
}

.reg-cta-sub {
  font-size: 18px;
  font-weight: 400;
  color: #F4524D;
  font-family: 'Yomogi', cursive;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}

.reg-cta-h2 {
  font-size: 32px;
  font-weight: 900;
  color: #613B42;
  line-height: 1.2;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.reg-cta-btn {
  width: 100%;
  max-width: 340px;
  font-size: 17px;
  padding: 18px 24px;
  margin: 0;
}

.reg-cta-note {
  font-size: 12px;
  color: #888;
  margin: 14px 0 0;
}
