:root {
  --pink: #d9788f;
  --pink-dark: #c25c75;
  --bg: #fcf7f8;
  --ink: #333;
  --line: #e6dcdf;
  --muted: #888;
}
* { box-sizing: border-box; }
/* hidden属性を常に優先（.steps{display:flex}等のdisplay指定がhiddenに勝つのを防ぐ） */
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.app-header {
  background: var(--pink);
  color: #fff;
  padding: 16px;
  text-align: center;
}
.app-title { font-size: 16px; font-weight: 700; }
.app-subtitle { font-size: 13px; opacity: .9; }

.steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 12px;
  flex-wrap: wrap;
}
.step {
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}
.step.active { color: #fff; background: var(--pink); border-color: var(--pink); }

.app-main { max-width: 560px; margin: 0 auto; padding: 0 14px 60px; }
.screen-h { font-size: 16px; margin: 14px 4px; }
.note { color: var(--muted); font-size: 13px; margin: 4px; }
.error { color: #c0392b; font-size: 13px; }
.selected-line { font-weight: 700; margin: 6px 4px; }

/* メニュー */
.menu-cat {
  font-weight: 700;
  color: var(--pink-dark);
  margin: 18px 4px 8px;
  font-size: 14px;
}
.menu-list { display: flex; flex-direction: column; gap: 10px; }
.menu-card {
  display: flex;
  gap: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
}
.menu-card:active { background: #fdeef1; }
.menu-card.selected { border-color: var(--pink); border-width: 2px; background: #fdeef1; }
/* メニュー画面下部のオプション欄 */
.menu-options-block { margin-top: 22px; padding-top: 6px; border-top: 1px solid var(--line); }
.menu-next-note { text-align: center; }
.menu-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.menu-img.placeholder { background: #f1e6ea; }
.menu-name { font-weight: 700; font-size: 14px; }
.menu-badge-new {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--pink);
  border-radius: 10px;
  vertical-align: middle;
}
.newonly-note { font-weight: 700; margin: 8px 4px; }
.menu-price { color: var(--pink-dark); font-weight: 700; margin: 2px 0; }
.menu-desc { font-size: 11px; color: var(--muted); }

/* 店舗選択トップ */
.store-list { display: flex; flex-direction: column; gap: 12px; }
.store-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 14px;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
}
.store-card:active { background: #fdeef1; }
.store-name { font-weight: 700; font-size: 20px; }
/* 「いつもの店舗」を先頭で目立たせる */
.store-card.store-usual {
  border-color: var(--pink);
  border-width: 2px;
  background: #fdeef1;
}
.store-usual-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 4px;
}
/* オープン予定店（選べる→タップで案内） */
.store-card.disabled { opacity: 0.55; cursor: default; }
.store-card.store-coming { opacity: 0.7; }
.store-coming-note { display: block; font-size: 12px; font-weight: 700; color: var(--pink-dark); margin-top: 4px; }
/* オープン予定の案内画面 */
.coming-notice { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 16px; text-align: center; }
.coming-notice-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.coming-notice-text { color: var(--ink); font-size: 14px; }

/* オプション */
.option-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
}
.option-card.selected { border-color: var(--pink); background: #fdeef1; }
.option-check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  position: relative;
}
.option-card.selected .option-check { background: var(--pink); border-color: var(--pink); }
.option-card.selected .option-check::after {
  content: "✓";
  position: absolute;
  inset: 0;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.option-name { font-weight: 700; font-size: 14px; }
.option-price { color: var(--pink-dark); font-weight: 700; margin: 2px 0; }
.option-desc { font-size: 11px; color: var(--muted); }
.option-card.disabled { opacity: 0.5; cursor: not-allowed; }
.option-req-note { font-size: 11px; color: var(--pink-dark); margin-top: 2px; }
/* クーポン未保有で選べない【来店ポイント特典】＝薄く表示＋貯める案内（販促） */
.option-card.coupon-locked { opacity: 0.6; }
/* 非会員で選べない【うるツヤ会員特典】＝薄く表示。ただしタップで入会導線なのでクリック可（pointer） */
.option-card.uru-locked { opacity: 0.6; cursor: pointer; }
.option-locked-note { font-size: 11px; color: var(--pink-dark); font-weight: 600; margin-top: 3px; }

/* 日付 */
.date-list, .time-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
  margin: 10px 0;
}
.date-btn, .time-btn {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 4px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.date-btn:active, .time-btn:active { background: var(--pink); color: #fff; }

/* 希望日時カレンダー（1週間の○×） */
.wk-h {
  background: var(--pink);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 10px 6px;
  margin-bottom: 10px;
}
.wk-nav { display: flex; justify-content: space-between; align-items: center; margin: 6px 0 8px; }
.wk-navbtn {
  background: none; border: none; font: inherit; font-size: 15px; font-weight: 700;
  color: var(--pink-dark); cursor: pointer; padding: 6px 2px;
}
.wk-navbtn:disabled { color: #d8c2c8; cursor: default; }
.wk-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.wk-table { width: 100%; border-collapse: collapse; background: #fff; table-layout: fixed; }
.wk-table th, .wk-table td { border: 1px solid var(--line); text-align: center; }
.wk-month { padding: 8px 4px; font-size: 14px; font-weight: 700; }
.wk-corner { width: 58px; font-size: 12px; color: var(--muted); font-weight: 400; }
.wk-dh { padding: 5px 2px; font-size: 13px; line-height: 1.2; }
.wk-dh .wk-dd { display: block; font-size: 15px; font-weight: 700; }
.wk-dh .wk-wd { display: block; font-size: 11px; font-weight: 400; }
.wk-dh.wk-sat { color: #2a72d0; }
.wk-dh.wk-sun { color: #d0342a; }
.wk-time { font-size: 13px; font-weight: 400; color: var(--ink); padding: 6px 2px; white-space: nowrap; }
.wk-time-hour { font-weight: 700; }
.wk-cell { padding: 0; height: 44px; }
.wk-ng { background: #eeeaea; }
.wk-mark {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 44px; font-size: 20px; line-height: 1;
  background: none; border: none; padding: 0;
}
.wk-ng .wk-mark { color: #a9a2a2; }
.wk-ok .wk-mark { color: var(--pink); font-size: 24px; font-weight: 700; cursor: pointer; }
.wk-ok .wk-mark:active { background: var(--pink); color: #fff; }
.wk-note { margin-top: 10px; }

/* 確認 */
.confirm-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
}
.cf-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.cf-row:last-child { border-bottom: none; }
.cf-row span { color: var(--muted); }
.field { display: block; margin: 12px 0; }
.field span { display: block; font-size: 13px; margin-bottom: 4px; }
.field input,
.field select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.btn-primary {
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}
.btn-primary:active { background: var(--pink-dark); }
.btn-back {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}
/* 目立つが主CTAではない、枠線タイプのボタン（登録情報の導線など） */
.btn-outline {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 14px;
  background: #fff;
  color: var(--pink-dark);
  border: 1.5px solid var(--pink);
  border-radius: 12px;
  padding: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.btn-outline:active { background: #fdeef2; }

/* 完了 */
.done-wrap { text-align: center; padding: 30px 10px; }
.done-check {
  width: 64px; height: 64px; line-height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 32px;
}
.done-msg { color: var(--muted); font-size: 13px; }

.loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.7);
  font-weight: 700;
  color: var(--pink-dark);
}
.loading[hidden] { display: none; }

/* ご予約済みバナー（メニュー画面上部） */
.my-banner {
  background: #fdeef1;
  border: 1px solid var(--pink);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0 4px;
}
.my-banner-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 8px;
}
.my-banner-btn {
  width: 100%;
  background: #fff;
  color: var(--pink-dark);
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.my-banner-btn:active { background: var(--pink); color: #fff; }

/* 機能A: 予約済みゲートの案内ブロック */
.already-booked {
  background: #fdeef1;
  border: 1px solid var(--pink);
  border-radius: 14px;
  padding: 18px 16px;
  margin: 16px 0;
  text-align: center;
}
.already-booked-title {
  margin: 0 0 10px;
  color: var(--pink-dark);
  font-size: 16px;
}
.already-booked-msg {
  text-align: left;
  line-height: 1.7;
  margin: 0 0 12px;
}
.already-booked-detail {
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 14px;
}
.already-booked-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-dark);
  padding: 3px 0;
}
.already-booked .btn-primary { width: 100%; }

/* 入力漏れハイライト（formError） */
.field-flash {
  outline: 3px solid #e74c3c;
  outline-offset: 3px;
  border-radius: 8px;
  background: #fff5f4;
}

/* 公式LINE友だち追加ボタン（紹介受け取り画面） */
.btn-add-friend {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 13px;
  background: #06C755;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  box-sizing: border-box;
}

/* アプリ内確認ダイアログ（標準confirmの代替） */
.app-confirm-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.app-confirm-box {
  background: #fff; border-radius: 16px;
  padding: 22px 20px 16px;
  max-width: 340px; width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.app-confirm-msg {
  white-space: pre-line;
  text-align: center;
  font-size: .95rem; color: #333;
  line-height: 1.65;
}
.app-confirm-btns { display: flex; gap: 10px; margin-top: 18px; }
.app-confirm-btns button {
  flex: 1; padding: 12px; border-radius: 10px;
  font: inherit; font-weight: 700; cursor: pointer;
}
.app-confirm-cancel { background: #fff; color: #666; border: 1px solid #ccc; }
.app-confirm-ok { background: #b03a5b; color: #fff; border: none; }

/* マイ予約（確認・キャンセル） */
.my-res { margin-bottom: 12px; }
.btn-change-res {
  width: 100%;
  margin-top: 14px;
  background: #b03a5b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.btn-change-res:disabled { opacity: .45; cursor: not-allowed; }
.btn-cancel-res {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: #c0392b;
  border: 1px solid #e3b8b8;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.btn-cancel-res:disabled { opacity: .45; cursor: not-allowed; }
.btn-goto-contact {
  width: 100%;
  margin-top: 10px;
  background: #fff;
  color: var(--pink-dark);
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.btn-goto-contact:active { background: var(--pink); color: #fff; }

/* お問い合わせフォーム */
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  resize: vertical;
}
.req {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--pink);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
}

/* 新規顧客アンケート（確認画面・初めてのお客様のみ表示） */
.survey {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin: 14px 0;
}
.survey-h { margin: 0 0 6px; font-size: 15px; color: var(--pink-dark); }
.survey-q { margin: 14px 0 0; }
.survey-label { font-size: 13px; font-weight: 700; margin: 0 0 6px; }
.survey-choices { display: flex; flex-wrap: wrap; gap: 6px; }
.survey-choices label {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}
.survey-choices label:has(input:checked) {
  border-color: var(--pink);
  background: #fdf2f5;
}
.survey-choices input { margin: 0; accent-color: var(--pink); }
#survey-other-wrap input {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
.survey-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0;
  cursor: pointer;
}
.survey-agree input { margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--pink); }
.survey-agree-list { margin: 6px 0 8px; padding-left: 20px; font-size: 12px; line-height: 1.6; color: var(--ink); }
.survey-agree-list li { margin: 3px 0; }
.survey-agree-all { font-weight: 700; font-size: 13px; background: #fff6f9; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; }

/* 新規限定クーポンの対象外注記（メニューカード内） */
.menu-newonly-note {
  font-size: 11px;
  color: #c0392b;
  background: #fdecea;
  border-radius: 6px;
  padding: 5px 8px;
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== ポイントカード画面 ===== */
.points-card {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  margin: 8px 4px 14px;
  box-shadow: 0 4px 14px rgba(194, 92, 117, 0.25);
}
.points-card-label { font-size: 13px; opacity: 0.9; }
.points-card-value { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.points-card-value > b { font-size: 44px; font-weight: 800; line-height: 1; }
.points-card-value > span { font-size: 18px; font-weight: 700; }
.points-hist-title { font-size: 14px; margin: 16px 4px 6px; color: var(--pink-dark); }
.points-hist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.points-hist-date { color: var(--muted); white-space: nowrap; }
.points-hist-label { flex: 1; }
.points-hist-delta { white-space: nowrap; color: var(--pink-dark); }
/* 保有クーポン */
.points-coupons { margin-top: 14px; }
.coupon-card {
  border: 1.5px dashed var(--pink-dark);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 8px 0;
  background: #fff7fa;
}
.coupon-card-main { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.coupon-card-main > b { font-size: 15px; color: var(--pink-dark); }
.coupon-amt { font-weight: 800; color: var(--pink-dark); }
.coupon-card-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* 友だち紹介（ポイントカード内・受け取り画面） */
.referral-box { margin: 18px 0; padding: 14px; background: #fff6f8; border: 1px solid #f3d5dd; border-radius: 12px; }
.referral-box .btn-primary { width: 100%; margin-top: 6px; }
.referral-link-input { width: 100%; box-sizing: border-box; padding: 10px; border: 1px solid #ddd; border-radius: 8px; font-size: 13px; margin: 6px 0; background: #fff; }
.referral-ok { font-size: 17px; font-weight: 700; color: #c2185b; margin: 12px 0; }
.referral-box-hl { box-shadow: 0 0 0 3px #ed93b1; }

/* 旧ポイント引継ぎのお知らせ（目立つ枠） */
.carryover-notice { margin: 14px 0; padding: 14px 16px; background: #fff8e1; border: 2px solid #f0c419; border-radius: 12px; }
.carryover-notice-title { margin: 0 0 6px; font-weight: 700; color: #a9740a; font-size: 1rem; }
.carryover-notice-body { margin: 0; font-size: .9rem; line-height: 1.7; color: #5a4300; }
.carryover-notice-body b { color: #a9740a; }
.carryover-notice-link { display: inline-block; margin-top: 10px; font-weight: 700; color: #b03a5b; text-decoration: underline; }

/* パッチテスト設問（誤選択防止）: 結果を先に見せる警告＋選択肢を縦積みで説明付きに */
.patch-warn {
  margin: 6px 0 10px;
  padding: 8px 10px;
  background: #fff4f4;
  border-left: 3px solid #d9534f;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #a33;
}
.survey-choices-stack { display: block; }
.survey-choices-stack label { display: flex; align-items: flex-start; gap: 8px; margin: 0 0 8px; }
.survey-choices-stack label span { display: block; }
.survey-choices-stack label small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}
.patch-confirm {
  margin: 8px 0 0;
  padding: 8px 10px;
  background: #fdecea;
  border: 1px solid #d9534f;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #b0201a;
  line-height: 1.6;
}

/* 店舗選択: オープン告知バッジ（熊谷円光 9/14） */
.store-open-note { display: block; font-size: 12px; font-weight: 700; color: #fff; background: var(--pink, #e8508a); border-radius: 8px; padding: 3px 8px; margin-top: 5px; width: fit-content; }

/* お持ちのクーポン案内（オプション欄の先頭・2026-08-21） */
.coupon-notice {
  border: 2px solid #e8b04b;
  background: #fffaf0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.coupon-notice-t { font-weight: 700; color: #8a5a00; font-size: 15px; }
.coupon-notice-exp { font-weight: 400; font-size: 12px; color: #a07b3a; margin-left: 8px; }
.coupon-notice-d { font-size: 13px; color: #6b5a3a; margin-top: 4px; line-height: 1.5; }
/* クーポンが使えるオプションを強調 */
.option-card.option-coupon-on { border-color: #e8b04b; background: #fffaf0; }
.option-badge-coupon {
  display: inline-block; margin-left: 6px; padding: 1px 7px;
  font-size: 11px; font-weight: 700; color: #fff; background: #e8b04b;
  border-radius: 999px; vertical-align: middle;
}

/* 熊谷円光店 オープン告知バナー（#preopen-hero） */
.preopen-hero {
  background: linear-gradient(135deg, #9C2F52, #c15b7c);
  color: #fff; border-radius: 14px; padding: 16px 16px 14px;
  margin: 0 0 18px; text-align: center;
  box-shadow: 0 4px 14px rgba(156, 47, 82, .25);
}
.preopen-badge {
  display: inline-block; background: #fff; color: #9C2F52;
  font-weight: 700; font-size: 12px; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 999px; margin-bottom: 8px;
}
.preopen-dates { font-size: 14px; margin-bottom: 6px; opacity: .95; }
.preopen-dates b { font-size: 17px; }
.preopen-lead { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.preopen-coupon {
  background: rgba(255, 255, 255, .14);
  border: 1px dashed rgba(255, 255, 255, .65);
  border-radius: 10px; padding: 9px 10px; margin: 0 auto 8px;
  max-width: 360px; display: flex; flex-direction: column; gap: 3px;
}
.preopen-coupon-label { font-size: 11px; letter-spacing: 1px; }
.preopen-coupon-menu { font-size: 13px; }
.preopen-coupon-price { font-size: 15px; }
.preopen-coupon-price s { opacity: .7; font-size: 13px; }
.preopen-coupon-price b { font-size: 24px; }
.preopen-cta {
  display: block; background: #fff; color: #9C2F52; font-weight: 700;
  text-decoration: none; border-radius: 10px; padding: 11px 12px;
  margin: 2px auto 10px; max-width: 360px; font-size: 15px; line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.preopen-cta:active { transform: translateY(1px); }
.preopen-cta-sub { display: block; font-size: 11px; font-weight: 600; color: #6B5560; margin-top: 3px; }
.preopen-foot { font-size: 11px; opacity: .9; line-height: 1.5; }

/* ============================================================
 * 軽量LINE登録LP（#screen-join / .join-*）
 *   Meta広告の受け皿。時短を主役にしたモバイル最適のブランドLP。
 * ========================================================== */
#screen-join { padding-bottom: 24px; }
.join-hero {
  background: linear-gradient(135deg, #9C2F52, #c15b7c);
  color: #fff; border-radius: 16px; padding: 20px 18px 22px;
  margin: 0 0 16px; text-align: center;
  box-shadow: 0 6px 18px rgba(156, 47, 82, .28);
}
.join-badge {
  display: inline-block; background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .5);
  font-weight: 700; font-size: 11px; line-height: 1.5; letter-spacing: .3px;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.join-title {
  font-size: 27px; font-weight: 800; line-height: 1.3;
  margin: 0 0 12px; letter-spacing: .5px;
}
.join-sub { font-size: 14px; line-height: 1.7; margin: 0; opacity: .96; }
.join-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 16px 6px; margin: 0 0 14px;
  box-shadow: 0 2px 10px rgba(156, 47, 82, .06);
}
.join-h {
  font-size: 16px; font-weight: 700; color: #9C2F52;
  margin: 0 0 12px; padding-bottom: 8px; border-bottom: 2px solid #f3e3e8;
}
.join-list { list-style: none; margin: 0; padding: 0; }
.join-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; line-height: 1.6; margin-bottom: 12px; color: #3a3a3a;
}
.join-ico {
  flex: 0 0 auto; font-size: 20px; line-height: 1.3; width: 26px; text-align: center;
}
.join-list b { color: #9C2F52; }
.join-offer {
  background: #fff7fa; border: 2px dashed #d9788f; border-radius: 14px;
  padding: 14px 14px 16px; margin: 4px 0 18px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.join-offer-label {
  align-self: center; background: #9C2F52; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 999px;
}
.join-offer-menu { font-size: 13px; color: #555; }
.join-offer-price { font-size: 15px; color: #333; }
.join-offer-price s { opacity: .6; font-size: 14px; }
.join-offer-price b { font-size: 30px; color: #9C2F52; margin: 0 2px; }
.join-offer-price small { font-size: 11px; color: #888; }
.join-cta {
  display: block; width: 100%; box-sizing: border-box;
  background: linear-gradient(135deg, #9C2F52, #c15b7c); color: #fff;
  font-weight: 700; font-size: 15px; line-height: 1.45; text-align: center;
  text-decoration: none; border: none; border-radius: 12px;
  padding: 15px 14px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(156, 47, 82, .32);
}
.join-cta:active { transform: translateY(1px); }
.join-cta:disabled { opacity: .6; }
.join-cta-note {
  font-size: 11px; color: #888; text-align: center; line-height: 1.6;
  margin: 10px 4px 0;
}
.join-done-wrap { text-align: center; padding: 24px 12px; }
.join-done-check {
  width: 60px; height: 60px; line-height: 60px; margin: 0 auto 14px;
  border-radius: 50%; background: #9C2F52; color: #fff;
  font-size: 30px; font-weight: 700;
}
.join-done-title { font-size: 20px; font-weight: 800; color: #9C2F52; margin: 0 0 12px; }
.join-done-msg { font-size: 14px; line-height: 1.8; color: #444; margin: 0 0 22px; }
.join-done-msg b { color: #9C2F52; }
