/** Shopify CDN: Minification failed

Line 308:43 Expected ")" to end URL token
Line 309:43 Expected ")" to end URL token
Line 312:45 Expected ")" to end URL token
Line 313:45 Expected ")" to end URL token

**/
/* =========================================
   Rainbow Adventure Embroidery
   LP Retro Theme CSS
   - Brand: #BD8139
   - Retro × Craft × Readability
   ========================================= */

/* --- Google Fonts（軽量） ------------------ */
/* Shopifyでは <head> に <link> で入れるのが最速だが、
   ここでは一枚完結のため @import を採用（必要なら <head> へ移行可） */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* --- CSS変数（全体トークン） -------------- */
:root {
  --brand:#BD8139;
  --brand-dk:#935F25;
  --ink:#2B1E16;             /* 黒より少しブラウン */
  --bg-cream:#FAF3E0;        /* 生成り */
  --bg-green:#2E3D2F;        /* 深緑 */
  --paper:#F5E9D1;           /* クラフト紙っぽい */
  --muted:#7A6C60;
  --white:#fff;

  --radius:14px;
  --shadow:0 6px 18px rgba(0,0,0,.18);
  --shadow-sm:0 3px 8px rgba(0,0,0,.12);
}

/* --- ベースタイポ --------------------------- */
body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  color: var(--ink);
  line-height: 1.8;
  background: #fff;
}

/* 見出しはクラシック寄り */
h1, h2, h3, .retro-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  letter-spacing: .02em;
  color: var(--ink);
}

/* --- 汎用ユーティリティ -------------------- */
.lp-container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}

.lp-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.lp-btn:hover { background: var(--brand-dk); box-shadow: var(--shadow); transform: translateY(-1px); }
.lp-btn--ghost {
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  box-shadow: none;
  padding: 8px 4px;
}

/* ステッチ風の区切り線 */
.lp-stitch {
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--muted) 0 12px, transparent 12px 18px);
  opacity: .6;
}

/* カード */
.lp-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
}

/* --- ヒーロー（A/B共通） ------------------- */
/* ※ 既存セクションでは inline-style で背景指定しているため、
   CSSで上書きしたい場合は !important を併用します */
#hero-variant-a, #hero-variant-b {
  position: relative;
  text-align: center;
  padding: 88px 20px !important;
  color: var(--white);
}

/* トーンを整えるオーバーレイ（ブランドセピア） */
#hero-variant-a::before, #hero-variant-b::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(189,129,57,0.15) 0%,
    rgba(189,129,57,0.30) 50%,
    rgba(189,129,57,0.55) 100%
  );
  pointer-events: none;
}

/* テキストコンテナ（中央寄せ） */
#hero-variant-a > div, #hero-variant-b > div {
  position: relative; /* overlayより上に */
  margin-inline: auto;
  max-width: 980px;
}

/* 見出しサイズ（レスポンシブ） */
#hero-variant-a h1, #hero-variant-b h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
#hero-variant-a p, #hero-variant-b p {
  font-size: clamp(15px, 2.4vw, 20px);
  margin: 16px auto 26px;
  max-width: 820px;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

/* ヒーローのリンク（主＆副） */
#hero-variant-a a[href*="lin.ee"],
#hero-variant-b a[href*="lin.ee"] { /* メインCTA */
  composes: lp-btn;
}
#hero-variant-a a[href*="book.squareup.com"],
#hero-variant-b a[href*="book.squareup.com"] { /* サブCTA */
  composes: lp-btn--ghost;
  color: var(--white) !important;
  font-weight: 600;
}

/* --- セクション：問題提起／解決策／体験／特徴 etc. --- */
#section-problem {
  background: var(--bg-cream);
  padding: 64px 0 !important;
}
#section-problem h2 { color: var(--ink); font-size: clamp(22px, 3.8vw, 28px); text-align: center; }
#section-problem p { max-width: 760px; margin: 18px auto 0; padding-inline: 20px; }

#section-solution {
  background: var(--bg-green) !important;
  color: var(--white);
  padding: 64px 0 !important;
}
#section-solution h2 { color: var(--white); font-size: clamp(22px, 3.8vw, 28px); text-align: center; }
#section-solution p { max-width: 760px; margin: 18px auto 0; padding-inline: 20px; opacity: .95; }

#section-trial {
  background: #fff;
  padding: 64px 0 !important;
  text-align: center;
}
#section-trial h2 { color: var(--brand); font-size: clamp(22px, 3.8vw, 28px); }
#section-trial ul { margin: 14px auto 22px; }
#section-trial a[href*="lin.ee"] { composes: lp-btn; }

/* 特徴カードのグリッド（既存HTMLに合わせて上書き） */
#section-features { padding: 64px 0 !important; }
#section-features h2 { font-size: clamp(22px, 3.8vw, 28px); }
#section-features > div {
  max-width: 980px !important;
  margin-inline: auto !important;
  gap: 20px !important;
}
#section-features .lp-card,
#section-features > div > div {
  background: var(--paper) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: var(--shadow-sm) !important;
}
#section-features h3 { margin-bottom: 6px; }

/* 受講者の声 */
#section-voices {
  background: linear-gradient(180deg, #f4efe4 0%, #efe6d6 100%);
  padding: 64px 0 !important;
  text-align: center;
}
#section-voices h2 { color: var(--brand); }
#section-voices blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--paper);
  display: inline-block;
  padding: 16px 18px;
  border-left: 6px solid var(--brand);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* FAQ（<details>） */
#section-faq { padding: 64px 0 !important; }
#section-faq h2 { color: var(--brand); text-align: center; }
#section-faq details {
  background: #fff;
  border-radius: 10px;
  border: 1px dashed rgba(0,0,0,.25);
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#section-faq details[open] {
  border-color: var(--brand);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
#section-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
#section-faq summary::-webkit-details-marker { display:none; }
#section-faq summary::before {
  content: '+';
  width: 24px; height: 24px; line-height: 22px; text-align: center;
  border-radius: 50%;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  flex: 0 0 24px;
}
#section-faq details[open] summary::before { content: '−'; }

/* クロージング */
#section-closing {
  background: var(--brand) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 68px 20px !important;
}
#section-closing a[href*="lin.ee"] {
  background: var(--white) !important;
  color: var(--brand) !important;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
#section-closing a[href*="book.squareup.com"] {
  color: var(--white) !important;
  text-decoration: underline;
}

/* --- Sticky CTA（スマホ用・任意） ----------- */
/* HTMLはフッター直前に:
  <div class="lp-sticky-cta">
    <a href="https://lin.ee/xxxx" class="lp-sticky-cta__btn">LINEで無料体験を予約する</a>
  </div>
*/
.lp-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(43,30,22,.9);
  padding: 10px 12px;
  backdrop-filter: blur(4px);
  display: none;
}
.lp-sticky-cta__btn {
  display: block;
  text-align: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
@media (max-width: 749px) {
  .lp-sticky-cta { display: block; }
  body { padding-bottom: 72px; } /* 被らないよう余白 */
}

/* --- レスポンシブ微調整 ---------------------- */
@media (min-width: 1000px) {
  #hero-variant-a, #hero-variant-b { padding: 120px 20px !important; }
}
@media (max-width: 749px) {
  #hero-variant-a p, #hero-variant-b p { padding-inline: 6px; }
  #section-features > div { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 520px) {
  #section-features > div { grid-template-columns: 1fr !important; }
}
#hero-variant-a, #hero-variant-b {
  background-size: cover !important;
  background-position: center !important;
}
/* 初期（PC） */
#hero-variant-a { background-image: url({{ 'hero_desktop_mockup.webp' | asset_url }}) !important; }
#hero-variant-b { background-image: url({{ 'hero_desktop_mockup.webp' | asset_url }}) !important; }
/* モバイルで切替 */
@media (max-width: 749px) {
  #hero-variant-a { background-image: url({{ 'hero_mobile_mockup.webp' | asset_url }}) !important; }
  #hero-variant-b { background-image: url({{ 'hero_mobile_mockup.webp' | asset_url }}) !important; }
}
