@charset "UTF-8";
/* ===== CSS VARIABLES ===== */
:root {
  --rose:    #c0697a;
  --rose-light: #f7e8eb;
  --rose-dark: #96465a;
  --gold:    #b89660;
  --navy:    #1a2b45;
  --navy-light: #2c3e5a;
  --cream:   #fdf8f4;
  --white:   #ffffff;
  --gray:    #f4f1ee;
  --text:    #333333;
  --text-light: #666666;
  --border:  #e8ddd8;
  --shadow:  0 4px 24px rgba(26,43,69,0.10);
  --shadow-sm: 0 2px 8px rgba(26,43,69,0.08);
  --radius:  12px;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'Noto Sans JP', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== FLOATING PHONE BAR ===== */
/* ===== FLOATING PHONE BAR ===== */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* 親要素で中央寄せを指示 */
  display: flex;
  justify-content: center;
  /* 背景を2色に分ける場合はここを調整（後述） */
  background: var(--navy); 
}

/* 内側のコンテナを80%（最大幅）に制限 */
.floating-bar-inner {
  display: flex;
  width: 100%;
  max-width: 1000px; /* ヘッダーと合わせると統一感が出ます */
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}

.floating-tel {
  flex: 1;
  background: var(--navy);
  color: #fff;
  /* ...以下、既存のスタイルと同じ... */
  text-align: center;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.floating-cta {
  flex: 1.2;
  background: var(--rose);
  color: #fff;
  /* ...以下、既存のスタイルと同じ... */
  text-align: center;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.floating-bar {
  /* 背景を画面中央でパキッと色分けする設定 */
  background: linear-gradient(90deg, var(--navy) 50%, var(--rose) 50%);
  
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 10px 20px;
  /* --- 以下の3行を追加 --- */
  display: flex;
  justify-content: center; /* 子要素を中央に配置 */
}

/* ヘッダー内部のコンテンツを包むコンテナの設定 */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px; /* ここで幅を調整（80%?90%相当） */
}
.header-logo {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}
.header-logo span { display: block; font-size: 10px; color: var(--text-light); font-weight: 400; }
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-tel a {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.header-tel a::before { content: "沒 "; font-size: 13px; }
.header-tel small { font-size: 10px; color: var(--text-light); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #fdf0f2 0%, #f7e8eb 40%, #f0eaf8 100%);
  padding: 40px 20px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(192,105,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
}
.hero-headline em {
  font-style: normal;
  color: var(--rose);
}
.hero-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}
.hero-stat {
  flex: 1;
  max-width: 120px;
  padding: 14px 8px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1.1;
}
.hero-stat .unit { font-size: 13px; color: var(--rose); }
.hero-stat .label { font-size: 10px; color: var(--text-light); margin-top: 3px; }
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 0;
}
.btn-primary {
  display: block;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(192,105,122,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,105,122,0.45); }
.btn-primary::after {
  content: "\0020\25B6"; /* ???p?X?y?[?X?{?E?險ｷ繝ｻ*/
  font-size: 12px;
  opacity: 0.8;
}
.btn-primary .btn-sub { display: block; font-size: 11px; font-weight: 400; opacity: 0.9; margin-top: 3px; }
.btn-secondary {
  display: block;
  background: var(--white);
  color: var(--rose);
  border: 2px solid var(--rose);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--rose-light); }
.hero-img-wrap {
  margin-top: 30px;
  position: relative;
}
.hero-couple {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(to bottom, #f0d4d8, #e8c4ca);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  padding: 30px;
}

/* ===== SECTION COMMON ===== */
.section { padding: 20px 20px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 8px;
}
.section-dark .section-title { color: var(--white); }
.section-title em { font-style: normal; color: var(--rose); }
.section-lead {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.9;
}
.section-dark .section-lead { color: rgba(255,255,255,0.75); }
.divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 12px auto 28px;
}

/* ===== CONCERNS (謔ｩ縺ｿ) ===== */
.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.concern-item {
  background: var(--rose-light);
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.concern-item::before { 
  content: "\2714"; /* ?ﾜ・?・・"?" ?ﾈどの絵???? */
  font-size: 18px; 
  flex-shrink: 0; 
  margin-top: -1px; 
}
.concern-resolve {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--rose);
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--rose-light);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== REASONS ===== */
.reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
  margin: 0 auto;
}
.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--rose), var(--gold));
}
.reason-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.reason-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.reason-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== PRICE ===== */
.price-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 480px;
  margin: 0 auto 24px;
  border: 1px solid var(--border);
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
}
.price-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--gray);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--rose);
  text-align: right;
  font-size: 16px;
}
.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== VOICE (菴馴ｨ楢ｫ・ ===== */
.voices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
  margin: 0 auto;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), #f0d4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.voice-meta { flex: 1; }
.voice-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.voice-age { font-size: 11px; color: var(--text-light); }
.voice-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.voice-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text);
  padding-left: 14px;
  border-left: 2px solid var(--rose-light);
}

/* ===== FLOW ===== */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose), var(--gold));
  z-index: 0;
}
.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.flow-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192,105,122,0.35);
}
.flow-num span { font-size: 8px; letter-spacing: 0.1em; }
.flow-num strong { font-size: 20px; line-height: 1; }
.flow-body {
  padding-top: 8px;
  flex: 1;
}
.flow-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.flow-body p { font-size: 12px; color: var(--text-light); line-height: 1.7; }

/* ===== SHOP AREA ===== */
.shops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 24px;
}
.shop-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.shop-tag::before { content: "沒"; font-size: 12px; }

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
}
.faq-q::before {
  content: "Q";
  background: var(--rose);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-q::after {
  content: "\002b"; /* ?v???X?L??(+)?・袈nicode */
  margin-left: auto;
  font-size: 24px;   /* ?????蛯ｫ?????鬩搾ｾ・??h?????ﾇ・?ﾅ・ */
  font-weight: 400;
  color: var(--rose);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px 0 54px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
  background: var(--gray);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 14px 20px 14px 54px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7a2a40 100%);
  padding: 44px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}
.cta-band-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 26px;
  line-height: 1.8;
}
.btn-white {
  display: block;
  background: #fff;
  color: var(--rose-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.06em;
  max-width: 400px;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-white::after { content: " 笆ｶ"; font-size: 12px; opacity: 0.7; }
.cta-tel {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}
.cta-tel a {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 4px;
}
.cta-tel a::before { content: "沒 "; font-size: 16px; }

/* ===== TRUST BADGES ===== */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.trust-badge {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 36px 20px 90px;
  text-align: center;
  font-size: 12px;
  line-height: 2;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-info { margin-bottom: 20px; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-links a { color: rgba(255,255,255,0.6); font-size: 11px; text-decoration: underline; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero-headline, .hero-sub, .hero-stats, .hero-cta-wrap {
  animation: fadeUp 0.7s ease both;
}
.hero-sub       { animation-delay: 0.1s; }
.hero-stats     { animation-delay: 0.2s; }
.hero-cta-wrap  { animation-delay: 0.3s; }

/* ===== SCROLL REVEAL (JS) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE (wider screens) ===== */
@media (min-width: 600px) {
  .hero { padding: 52px 40px 0; }
  .section { padding: 20px 40px; }
  .reasons-grid { flex-direction: row; flex-wrap: wrap; }
  .reason-card { flex: 1; min-width: 220px; }
  .hero-stats { gap: 10px; }
  .hero-stat { max-width: 140px; }
}
.policy-body {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .policy-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
  }
  .policy-content h2 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--navy);
    border-bottom: 2px solid var(--rose-light);
    padding-bottom: 8px;
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .policy-content h2::before {
    content: "";
    width: 4px;
    height: 18px;
    background: var(--rose);
    display: inline-block;
  }
  .policy-content p {
    margin-bottom: 16px;
  }
  .policy-content ul {
    margin: 0 0 16px 20px;
  }
  .policy-content li {
    margin-bottom: 8px;
  }
  .policy-lead {
    background: var(--gray);
    padding: 20px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 30px;
  }
  .back-btn-wrap {
    text-align: center;
    margin-top: 40px;
  }
  @media (max-width: 600px) {
    .policy-body { padding: 30px 15px; border-radius: 0; }
  }
  .info-container { max-width: 900px; margin: 0 auto; }
  .info-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
  }
  .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  .info-table th, .info-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .info-table th {
    width: 30%;
    background: var(--gray);
    color: var(--navy);
    text-align: left;
    font-weight: 700;
  }

  /* ???_?齬・X?^?C?? */
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .shop-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    transition: transform 0.3s ease;
  }
  .shop-name {
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--rose-light);
    padding-bottom: 4px;
  }
  .shop-address {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
  }
  .shop-address i { display: block; font-style: normal; color: var(--rose); font-weight: 500; margin-bottom: 2px; }

  /* ?I?????C???G???A?X?^?C?? */
  .online-section {
    background: var(--gray);
    padding: 24px;
    border-radius: 8px;
    margin-top: 30px;
  }
  .online-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .online-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--rose);
    display: inline-block;
  }
  .online-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .online-tag {
    background: #fff;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
  }

  .label-pink {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  @media (max-width: 600px) {
    .shop-grid { grid-template-columns: 1fr; }
    .info-table th { width: 40%; }
    .info-card { padding: 30px 15px; }
  }
.thanks-container {
    padding: 100px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .thanks-title {
    font-family: 'Noto Serif JP', serif;
    color: #96465a; /* --rose-dark */
    font-size: 28px;
    margin-bottom: 24px;
  }
  .thanks-text {
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
  }
  .back-button {
    display: inline-block;
    background: #96465a;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
  }
  .back-button:hover {
    opacity: 0.8;
  }
/* ===== MEMBER DATA SECTION ===== */
.member-stats-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ???C???ﾌ峨・繝ｻ??\?? */
.member-stat-main {
  background: var(--white);
  padding: 40px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--rose-light);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.member-stat-main .stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.member-stat-main .stat-value {
  font-family: var(--font-serif);
  font-size: clamp(40px, 10vw, 64px);
  color: var(--rose);
  font-weight: 700;
  line-height: 1;
}
.member-stat-main .stat-value .unit {
  font-size: 24px;
  margin-left: 4px;
}
.member-stat-main .stat-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 20px;
  text-align: left;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 4?ﾂのカ?[?h?O???b?h */
.member-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.member-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.member-card:hover {
  transform: translateY(-5px);
}
.member-card h3 {
  font-size: 14px;
  color: var(--rose-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.member-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rose-light);
}
.member-card .card-large {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.member-card .card-large span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}
.member-card .card-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ?X?}?z???? */
@media (max-width: 600px) {
  .member-stats-grid {
    grid-template-columns: 1fr 1fr; /* ?X?}?z?ﾅゑｾ・?繝ｻ*/
  }
  .member-card {
    padding: 15px 10px;
  }
  .member-card .card-large {
    font-size: 18px;
  }
}.member-card .card-large .unit-percent {
  font-size: 16px;
  margin-left: 2px;
  color: var(--navy);
}
/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 100px; /* ?]???・・???? */
  text-align: center;
  font-size: 12px;
  line-height: 2;
}

/* ???S?鞫・ﾌ・?? */
.footer-logo-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.footer-logo-img {
  max-width: 200px; /* ?T?C?Y?ﾍ・?D?ﾝで・?????ﾄ・?????? */
  height: auto;
  
  /* ?? ?????搗ｾ・AF?????w?i?透・?????A???S?ﾌ色?白????ﾉ・?鬮擾ｾ・繝ｻ*/
  filter: brightness(0) invert(1); 
  /* brightness(0) ?ﾅ磯ｽx?^?M??ﾉ・?A
     invert(1) ?ﾅ・?]?????ﾄ真?T??ﾉ・?ﾄ・?ﾜ・?B
     ???鮟ｷ・・隰斐・A???ﾌ・?S?????F?ﾅ・?BﾄらчA?t?b?^?[?ﾉ映???鬩埠?????????S?v?ﾉなる密・・??B
  */
  
  opacity: 0.9; /* ???????????ﾟ・???鬩搾ｾ・A?隰斐・鬮上・ﾝ・?ﾇ・?ﾈる密・・? */
}

.footer-info { 
  margin-bottom: 24px;
  color: rgba(255,255,255,0.8);
}
.thanks-container {
    padding: 100px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .thanks-title {
    font-family: var(--font-serif);
    color: var(--rose-dark);
    font-size: 28px;
    margin-bottom: 24px;
  }
  .thanks-text {
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text);
  }
  .shipping-info {
    background: var(--rose-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    text-align: left;
    display: inline-block;
  }
  .back-button {
    display: inline-block;
    background: var(--rose-dark);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
  }
  .back-button:hover { opacity: 0.8; }
  /* 譌｢蟄廊P縺ｮCSS螟画焚繧偵◎縺ｮ縺ｾ縺ｾ蜀咲樟 */
  :root{
    --rose:#c0697a; --rose-light:#f7e8eb; --rose-dark:#96465a;
    --gold:#b89660;
    --navy:#1a2b45; --navy-light:#2c3e5a;
    --cream:#fdf8f4; --white:#ffffff; --gray:#f4f1ee;
    --text:#333333; --text-light:#666666; --border:#e8ddd8;
    --shadow:0 4px 24px rgba(26,43,69,.10);
    --shadow-sm:0 2px 8px rgba(26,43,69,.08);
    --radius:12px;
    --font-serif:'Noto Serif JP',serif;
    --font-sans:'Noto Sans JP',sans-serif;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  body{font-family:var(--font-sans);color:var(--text);background:#fff;-webkit-font-smoothing:antialiased}
  .container{max-width:1120px;margin:0 auto;padding:0 24px}
  padding: 32px 20px;
  .section-alt{background:var(--cream)}

  .preview-note{background:var(--navy);color:#fff;text-align:center;padding:14px;font-size:13px;letter-spacing:.05em}
  .preview-note strong{color:#ffd7a8}

  /* ========= 譚･蠎礼音蜈ｸ繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ ========= */
  .benefits-section{padding:32px 0;background:var(--cream)}
  .benefits-section .section-head{text-align:center;max-width:680px;margin:0 auto 56px}
  .benefits-section .eyebrow{font-family:var(--font-sans);letter-spacing:.3em;font-size:13px;color:var(--rose);font-weight:600;margin:0 0 12px}
  .benefits-section .section-title{font-family:var(--font-serif);font-size:32px;font-weight:600;line-height:1.5;color:var(--text);margin:0 0 20px}
  .benefits-section .section-title .accent{color:var(--rose)}
  .benefits-section .section-lead{font-size:15px;color:var(--text-light);line-height:1.9}

  .benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1040px;margin:0 auto}
  .benefit-card{position:relative;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:48px 28px 32px;text-align:center;box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease}
  .benefit-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
  .benefit-card--highlight{background:linear-gradient(180deg,#fff 0%,var(--rose-light) 100%);border-color:var(--rose)}
  .benefit-num{position:absolute;top:18px;left:24px;font-family:var(--font-serif);font-size:22px;color:var(--gold);letter-spacing:.05em}
  .benefit-tag{position:absolute;top:-12px;right:24px;background:var(--rose);color:#fff;padding:5px 14px;border-radius:20px;font-size:12px;font-weight:600;letter-spacing:.05em;box-shadow:0 4px 12px rgba(192,105,122,.3)}
  .benefit-icon{width:68px;height:68px;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;background:var(--rose-light);border-radius:50%;color:var(--rose)}
  .benefit-icon svg{width:34px;height:34px}
  .benefit-card h3{font-family:var(--font-serif);font-size:19px;font-weight:600;color:var(--text);margin:0 0 14px}
  .benefit-card p{font-size:14px;line-height:1.9;color:var(--text-light);text-align:left;margin:0}

  .benefits-note{max-width:720px;margin:40px auto 0;text-align:center;padding:18px 24px;background:var(--white);border:1px dashed var(--rose);border-radius:30px;font-size:14px;color:var(--rose-dark);font-weight:500}
  .benefits-note .lock-icon{margin-right:6px}

  .benefits-cta{text-align:center;margin-top:40px}
  .btn-primary-xl{display:inline-flex;flex-direction:column;align-items:center;background:var(--rose);color:#fff;padding:22px 56px;border-radius:8px;font-family:var(--font-serif);font-size:18px;font-weight:600;text-decoration:none;box-shadow:0 8px 24px rgba(192,105,122,.3);transition:transform .2s,box-shadow .2s,background .2s}
  .btn-primary-xl:hover{background:var(--rose-dark);transform:translateY(-2px);box-shadow:0 12px 28px rgba(192,105,122,.4)}
  .btn-primary-xl .sub{display:block;font-size:12px;font-weight:400;margin-top:6px;opacity:.9;font-family:var(--font-sans);letter-spacing:.05em}

  @media (max-width:840px){
    .benefits-section{padding:56px 0}
    .benefits-grid{grid-template-columns:1fr;gap:20px;max-width:420px}
    .benefits-section .section-title{font-size:24px}
    .benefit-card{padding:40px 24px 28px}
    .btn-primary-xl{padding:18px 36px;font-size:16px}
  }
