@charset "UTF-8";
/* =====================================================================
   BeeLUXe LP – styles
   600px 固定・レスポンシブなし（Figma: BeeLUXe LP – Design (600px)）
   ===================================================================== */

/* ---------- Fonts (Google Fonts) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Montserrat:wght@500;600;700&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* brand (緑メイン / グレージュサブ) */
  --green:        #7fde2d;   /* 価格・アクセント（明） */
  --green-a:      #98cc34;   /* グラデ始点・ボーダー */
  --green-b:      #34cc89;   /* グラデ終点（青緑） */
  --green-dark:   #3f805a;   /* 見出し用の濃緑 */
  --greige:       #a78e5e;   /* サブカラー */

  /* neutrals */
  --ink:          #1a1a1a;
  --ink-2:        #333333;
  --gray:         #666666;
  --gray-2:       #999999;
  --line:         #e5e2da;
  --bg:           #ffffff;
  --bg-soft:      #f7f5f0;   /* 淡いグレージュ寄り背景 */

  /* fonts */
  --f-head: 'Zen Kaku Gothic New', sans-serif;
  --f-body: 'Noto Sans JP', sans-serif;
  --f-en:   'Montserrat', sans-serif;
  --f-num:  'Josefin Sans', sans-serif;

  --w: 600px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: #d9d9d9;               /* 600px 外側 */
  line-height: 1.75;
  overflow-x: hidden;               /* スマホで横スクロールを出さない安全策 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.lp {
  width: var(--w);
  margin-inline: auto;
  background: var(--bg);
  overflow: hidden;
}
.section { width: var(--w); }
.section-inner { padding: 56px 24px; }
.section-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: .04em;
}

/* =====================================================================
   01 / FV
   ===================================================================== */
.fv {
  position: relative;
  min-height: 1001px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 24px 35px;
  color: #fff;
  overflow: hidden;
}
.fv__bg { position: absolute; inset: 0; z-index: 0; }
.fv__bg img { width: 100%; height: 100%; object-fit: cover; }
.fv__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 93%);
}
.fv > *:not(.fv__bg) { position: relative; z-index: 1; }

/* logo */
.logo {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  line-height: 1;
}
.logo__over { font-family: var(--f-en); font-weight: 600; font-size: 8px; letter-spacing: 3px; color: rgba(255,255,255,.85); }
.logo__name { font-family: var(--f-head); font-weight: 700; font-size: 24px; letter-spacing: .48px; color: #fff; }
.logo__under { font-family: var(--f-en); font-weight: 500; font-size: 8px; letter-spacing: 4px; color: rgba(255,255,255,.7); }
.fv__logobar { display: flex; justify-content: center; }

.fv__body { display: flex; flex-direction: column; gap: 34px; }
.fv__content { display: flex; flex-direction: column; gap: 14px; }
.fv__headline {
  font-family: var(--f-head); font-weight: 900;
  font-size: 46px; line-height: 1.38; letter-spacing: 2.3px; color: #fff;
}
.fv__lead {
  font-family: var(--f-body); font-weight: 500;
  font-size: 20px; line-height: 1.7; letter-spacing: 1px; color: rgba(255,255,255,.9);
}
.fv__lead .price { font-family: var(--f-en); font-weight: 700; color: var(--green); }
.fv__lead .price-unit { font-weight: 700; color: var(--green); }

/* trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.trust-badges li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 16px; font-weight: 500; line-height: 1; color: rgba(255,255,255,.92);
  white-space: nowrap;
}

/* =====================================================================
   CTA (07 / オファー・CTA) — 4回再利用
   ===================================================================== */
/* CTA 単体セクション（07 が4回・白背景に配置。FV内CTAは対象外）
   上は直前セクションへ寄せて詰め、下はゆとりを持たせる */
.cta-section { margin-top: -22px; padding: 0 24px 44px; }
/* VOC（薄緑背景）直後のCTAだけ、引き上げをやめ白い余白を上に確保 */
.voc + .cta-section { margin-top: 0; padding-top: 40px; }

.cta { --cta-stroke: #fff; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta__lead {
  position: relative;
  font-family: var(--f-head); font-weight: 500;
  font-size: 22px; letter-spacing: 1.1px; color: #fff; text-align: center;
  padding: 0 34px;
}
.cta__lead strong { font-weight: 900; font-size: 36px; }

/* 明るい背景版（単体CTA）: リード茶系＋無料は緑グラデ・ストロークは茶系 */
.cta--onlight { --cta-stroke: #62462e; }
.cta--onlight .cta__lead { color: #62462e; }
.cta--onlight .cta__lead strong {
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* 左右の斜めストローク（＼ … ／）: 上side が外に開く向き */
.cta__lead::before,
.cta__lead::after {
  content: ""; position: absolute; top: 50%;
  width: 2px; height: 38px; border-radius: 2px; background: var(--cta-stroke);
}
.cta__lead::before { left: 6px;  transform: translateY(-50%) rotate(-24deg); }
.cta__lead::after  { right: 6px; transform: translateY(-50%) rotate(24deg); }

.cta__btn {
  position: relative;
  display: block; width: 544px; max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-b) 100%);
  box-shadow: 0 10px 24px rgba(52,204,137,.35);
  padding: 28px 20px 14px;
  text-align: center;
}
.cta__badge {
  position: absolute; top: -21px; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1.4px solid var(--green-a);
  border-radius: 28px; padding: 11px 28px;
  font-family: var(--f-body); font-weight: 500; font-size: 18px; line-height: 1; white-space: nowrap;
}
.cta__badge span {
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta__price {
  font-family: var(--f-body); color: #fff; letter-spacing: 1.77px; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px; white-space: nowrap;
}
.cta__price .lbl { font-weight: 700; font-size: 21px; letter-spacing: 1.06px; }
.cta__price .was {
  font-family: var(--f-num); font-weight: 600; font-size: 62px; letter-spacing: 3.1px;
  position: relative;
}
.cta__price .was::after {         /* 斜め取り消し線 (Vector 3) */
  content: ""; position: absolute; left: -4%; right: -4%; top: 48%;
  height: 3px; background: #e23b3b; transform: rotate(-13deg); border-radius: 2px;
}
.cta__price .zero { font-family: var(--f-num); font-weight: 500; font-size: 62px; letter-spacing: 3.1px; }

/* ---------- 写真背景＋ティール緑オーバーレイ（03 / 05 共通） ---------- */
.photo-ovl { position: relative; color: #fff; overflow: hidden; padding: 64px 26px; }
.photo-ovl > .bg { position: absolute; inset: 0; z-index: 0; }
.photo-ovl > .bg img { width: 100%; height: 100%; object-fit: cover; }
.photo-ovl > .bg::after { content: ""; position: absolute; inset: 0; background: rgba(58,119,114,.8); }
.photo-ovl > *:not(.bg) { position: relative; z-index: 1; }

/* =====================================================================
   03 / 悩みの提起
   ===================================================================== */
.concern { display: flex; flex-direction: column; gap: 20px; }
.concern__title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 32px; line-height: 1.52; text-align: center; color: #fff;
}
.concern__list { display: flex; flex-direction: column; gap: 10px; }
.concern__list li {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px; font-weight: 500; line-height: 1.5; color: rgba(255,255,255,.92);
}
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  color: #fefffe; font-size: 12px; font-weight: 700; line-height: 1;
}
.concern__close {
  font-family: var(--f-head); font-weight: 700;
  font-size: 22px; line-height: 1.75; text-align: center; color: #fff;
}
.concern__close .accent { color: var(--green); }

/* =====================================================================
   05 / 啓発・啓蒙
   ===================================================================== */
.message { display: flex; flex-direction: column; gap: 18px; }
.message__title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 24px; line-height: 1.52; color: #fefffe;
}
.message__body {
  font-size: 16px; font-weight: 500; line-height: 1.95; letter-spacing: .8px; color: #fefffe;
}
.message__card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 16px; padding: 22px;
  display: flex; flex-direction: column; gap: 8px; color: #fff;
}
.message__card-title {
  font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 1.58; letter-spacing: .9px;
}
.message__card-title .accent { color: var(--green); }
.message__card-body { font-size: 16px; font-weight: 500; line-height: 1.85; letter-spacing: .8px; }

/* =====================================================================
   04 / 新事実
   ===================================================================== */
.facts {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom, #ffffff 0%, #edf5f0 100%);
  padding: 60px 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.facts::after {  /* 装飾：右下のぼかし緑円（Ellipse） */
  content: ""; position: absolute; right: -80px; top: 400px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,222,45,.28), rgba(52,204,137,0) 70%);
  pointer-events: none; z-index: 0;
}
.facts > * { position: relative; z-index: 1; }
.facts__title {
  font-family: var(--f-head); font-weight: 700; font-size: 22px; line-height: 1.5; color: var(--green-dark);
}
.facts__list { display: flex; flex-direction: column; gap: 22px; }
.facts__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border-radius: 18px;
  padding: 22px 20px 22px 18px;
  box-shadow: 0 10px 24px rgba(11,46,35,.1);
}
.num-badge {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  font-family: var(--f-en); font-weight: 800; font-size: 22px; color: #fff; line-height: 1;
}
.facts__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.facts__item-title { font-family: var(--f-head); font-weight: 700; font-size: 18px; line-height: 1.48; color: var(--green-dark); }
.facts__item-text { font-size: 14px; font-weight: 500; line-height: 1.86; letter-spacing: .7px; color: var(--ink-2); }

/* =====================================================================
   06 / 解決（USP）
   ===================================================================== */
.usp { background: #fff; padding: 56px 24px; display: flex; flex-direction: column; gap: 22px; }
.usp__title { font-family: var(--f-head); font-weight: 700; font-size: 23px; line-height: 1.5; color: var(--green-dark); }
.usp__img { width: 100%; height: 260px; border-radius: 18px; overflow: hidden; }
.usp__img img { width: 100%; height: 100%; object-fit: cover; }
.usp__body { font-size: 16px; font-weight: 500; line-height: 1.95; color: var(--ink-2); }
.usp__body p + p { margin-top: 1.95em; }

/* =====================================================================
   08 / 特徴（3つの理由）
   ===================================================================== */
.features {
  position: relative; overflow: hidden;
  background: linear-gradient(to bottom, #edf5f0 0%, #ffffff 100%);
  padding: 60px 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.features::after {  /* 装飾：左のぼかし緑円 */
  content: ""; position: absolute; left: -90px; top: 200px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(127,222,45,.26), rgba(52,204,137,0) 70%);
  pointer-events: none; z-index: 0;
}
.features > * { position: relative; z-index: 1; }
.features__title { font-family: var(--f-head); font-weight: 700; font-size: 22px; line-height: 1.5; color: var(--green-dark); }
.feature-card {
  background: #fff; border-radius: 18px; padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(11,46,35,.1);
  display: flex; flex-direction: column; gap: 10px;
}
.point-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  border-radius: 12px; padding: 5px 12px; white-space: nowrap;
}
.point-badge .lbl { font-family: var(--f-en); font-weight: 700; font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,.8); }
.point-badge .no { font-family: var(--f-en); font-weight: 800; font-size: 14px; color: #fff; }
.feature-card__title { font-family: var(--f-head); font-weight: 700; font-size: 17px; line-height: 1.48; color: var(--green-dark); }
.feature-card__text { font-size: 14px; font-weight: 500; line-height: 1.86; letter-spacing: .7px; color: var(--ink-2); }

/* =====================================================================
   10 / 第三者評価
   ===================================================================== */
.proof { background: #fff; padding: 56px 24px; display: flex; flex-direction: column; gap: 22px; }
.proof__title { font-family: var(--f-head); font-weight: 700; font-size: 21px; line-height: 1.5; color: var(--green-dark); }
.stats {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  border-radius: 20px; padding: 28px 8px;
  box-shadow: 0 12px 28px rgba(11,46,35,.3);
}
.stats__item { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stats__num { display: flex; align-items: center; justify-content: center; gap: 1px; color: #fff; white-space: nowrap; }
.stats__num b { font-family: var(--f-en); font-weight: 800; font-size: 40px; line-height: 1; }
.stats__num span { font-family: var(--f-body); font-weight: 700; font-size: 16px; }
.stats__label { font-family: var(--f-body); font-weight: 700; font-size: 14px; line-height: 1.4; letter-spacing: .7px; text-align: center; color: rgba(255,255,255,.85); }
.stats__div { width: 2px; height: 95px; background: rgba(255,255,255,.5); flex-shrink: 0; }
.proof__body { font-size: 16px; font-weight: 500; line-height: 1.9; letter-spacing: .8px; color: var(--ink-2); }
.proof__body p + p { margin-top: 1.9em; }

/* =====================================================================
   11 / VOC（お客様の声）
   ===================================================================== */
.voc { background: #eef5f0; padding: 56px 24px; display: flex; flex-direction: column; gap: 16px; }
.voc__title { font-family: var(--f-head); font-weight: 700; font-size: 22px; line-height: 1.5; color: var(--green-dark); }
.voc-card {
  background: #fff; border: 1px solid #d9ede2; border-radius: 18px; padding: 30px;
  box-shadow: 0 8px 20px rgba(11,46,35,.07);
  display: flex; flex-direction: column; gap: 10px;
}
.voc-card__quote { font-family: var(--f-head); font-weight: 700; font-size: 20px; line-height: 1.5; letter-spacing: 1px; color: #14996f; }
.voc-card__text { font-size: 16px; font-weight: 500; line-height: 1.86; letter-spacing: .8px; color: var(--ink-2); }
.voc-card__profile { display: flex; align-items: center; gap: 20px; padding-top: 4px; }
.voc-card__avatar {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 30%, #e6f1ea, #cfe4d7);
}
.voc-card__meta { font-family: var(--f-body); font-weight: 700; font-size: 16px; letter-spacing: .8px; color: #6b9675; }

/* =====================================================================
   13 / FAQ
   ===================================================================== */
.faq {
  background: linear-gradient(to bottom, #ffffff 0%, #f1f7f3 100%);
  padding: 56px 24px; display: flex; flex-direction: column; gap: 12px;
}
.faq__title { font-family: var(--f-head); font-weight: 700; font-size: 22px; color: var(--green-dark); margin-bottom: 4px; }
.faq-item {
  background: #fff; border-radius: 14px; padding: 18px;
  box-shadow: 0 6px 16px rgba(11,46,35,.07);
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item__q { display: flex; gap: 10px; align-items: flex-start; }
.faq-item__q .badge {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  font-family: var(--f-en); font-weight: 700; font-size: 12px; color: #fff; line-height: 1;
}
.faq-item__q p { flex: 1; min-width: 0; font-family: var(--f-body); font-weight: 700; font-size: 16px; line-height: 1.5; letter-spacing: .8px; color: var(--green-dark); }
.faq-item__a { display: flex; gap: 10px; align-items: flex-start; }
.faq-item__a .badge {
  flex-shrink: 0; width: 26px; text-align: center;
  font-family: var(--f-en); font-weight: 700; font-size: 13px; color: #14996f; line-height: 30px;
}
.faq-item__a p { flex: 1; min-width: 0; font-size: 16px; font-weight: 500; line-height: 1.85; letter-spacing: .8px; color: var(--ink-2); }

/* =====================================================================
   15 / クロージング
   ===================================================================== */
.closing { padding: 64px 28px; align-items: center; text-align: center; gap: 18px; display: flex; flex-direction: column; }
.closing__title { font-family: var(--f-head); font-weight: 700; font-size: 22px; line-height: 1.55; color: #fff; }
.closing__body { font-size: 16px; font-weight: 500; line-height: 2; letter-spacing: .8px; color: rgba(255,255,255,.82); }
.closing__body p + p { margin-top: 0; }
.closing__body .sp { display: block; height: 2em; }

/* =====================================================================
   17 / フッター
   ===================================================================== */
.footer {
  background: #094524; color: #fff;
  padding: 44px 24px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.logo--footer .logo__over { color: rgba(255,255,255,.7); }
.logo--footer .logo__name { font-size: 22px; letter-spacing: .44px; }
.logo--footer .logo__under { color: rgba(255,255,255,.6); }
.footer__div { width: 40px; height: 1px; background: rgba(255,255,255,.2); }
.footer__links { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.65); }
.footer__copy { font-family: var(--f-en); font-weight: 500; font-size: 10px; letter-spacing: .5px; color: rgba(255,255,255,.5); }

/* =====================================================================
   14 / 店舗一覧（アコーディオン）
   ===================================================================== */
.stores { background: #fff; padding: 56px 24px; display: flex; flex-direction: column; gap: 8px; }
.stores__title { font-family: var(--f-head); font-weight: 700; font-size: 24px; color: var(--green-dark); }
.stores__sub { font-size: 13px; font-weight: 500; color: #8aa89a; margin-bottom: 8px; }

.acc { border-radius: 12px; overflow: hidden; margin-top: 8px; }
.acc__head {
  width: 100%; background: #18794d; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
}
.acc__head .icon { color: var(--green); font-size: 20px; line-height: 1; font-weight: 400; }
.acc__body { background: #eef5f0; padding: 16px 14px; display: none; flex-direction: column; gap: 14px; }
.acc.is-open > .acc__body { display: flex; }

.store-card {
  background: #fff; border: 1px solid #dde7e1; border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 20px;
}
.store-card__main { display: flex; gap: 20px; align-items: center; }
.store-card__thumb {
  flex-shrink: 0; width: 100px; height: 127px; border-radius: 10px;
  background: #18794d; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.45);
}
.store-card__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.store-card__name { font-family: var(--f-body); font-weight: 700; font-size: 16px; line-height: 1.4; letter-spacing: .8px; color: var(--green-dark); }
.preopen-badge {
  align-self: flex-start; background: #e3f5ec; color: #189e6b;
  font-weight: 700; font-size: 10.5px; border-radius: 6px; padding: 3px 9px; line-height: 1.4;
}
.store-card__addr { font-size: 14px; font-weight: 500; line-height: 1.65; letter-spacing: .7px; color: var(--ink-2); }
.store-card__price { font-size: 14px; font-weight: 500; line-height: 1.6; color: #14996f; }
.store-card__btn {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-a), var(--green-b));
  border-radius: 999px; padding: 16px; width: 100%;
  font-family: var(--f-body); font-weight: 700; font-size: 16px; letter-spacing: 1.6px; color: #fff;
}
