/* ============================================
   ススキノ ガールズバー 求人サイト
   メインスタイルシート
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --pink:      #FF5B8B;
  --pink-light:#FFD6E5;
  --pink-pale: #FFF0F5;
  --red:       #E8274B;
  --red-light: #FFB3C1;
  --strawberry:#E8274B;
  --white:     #FFFFFF;
  --offwhite:  #FFFAF9;
  --gray:      #888;
  --gray-light:#F5F5F5;
  --text:      #2D2D2D;
  --text-sub:  #666;
  --line-green:#06C755;
  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 20px rgba(255,91,139,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --font-main: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --header-h:  64px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-alt { background: var(--pink-pale); }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--red));
  border-radius: 2px;
}
.section-title .sub {
  display: block;
  font-size: 0.9rem;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.text-pink { color: var(--pink); }
.text-red  { color: var(--red); }
.badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ---------- Fade-in Animation ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pink-light);
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.site-logo {
  font-size: 1.1rem; font-weight: 900; color: var(--pink);
  display: flex; align-items: center; gap: 6px;
}
.site-logo .logo-icon { font-size: 1.4rem; }

/* ナビ */
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  font-size: 0.85rem; font-weight: 700; color: var(--text);
  transition: color .2s;
}
.site-nav a:hover { color: var(--pink); }
.site-nav .nav-line {
  background: var(--line-green); color: #fff;
  padding: 8px 18px; border-radius: 24px; font-size: 0.85rem;
  transition: opacity .2s;
}
.site-nav .nav-line:hover { opacity: .85; }

/* ハンバーガー */
.burger {
  display: none; flex-direction: column; justify-content: space-around;
  width: 28px; height: 20px; cursor: pointer; background: none; border: none;
}
.burger span {
  display: block; height: 2.5px; border-radius: 2px;
  background: var(--text); transition: all .3s;
}
.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* モバイルメニュー */
#nav-menu {
  display: flex;
}
@media (max-width: 768px) {
  .burger { display: flex; }
  #nav-menu {
    display: none;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: center;
    padding: 24px 20px 32px; gap: 20px;
    border-bottom: 2px solid var(--pink-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  #nav-menu.open { display: flex; }
  #nav-menu a { font-size: 1rem; }
}

/* ============================================
   HERO (ファーストビュー)
   ============================================ */
.hero {
  background: linear-gradient(135deg, #fff5f8 0%, #ffe4ef 50%, #fff0f0 100%);
  padding: 60px 0 72px;
  position: relative; overflow: hidden;
}

/* イチゴ背景装飾 */
.hero::before {
  content: '🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓🍓';
  position: absolute; top: -10px; left: 0; right: 0;
  font-size: 2rem; letter-spacing: 8px; opacity: 0.06;
  white-space: nowrap; overflow: hidden; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
  background: radial-gradient(ellipse at center bottom, var(--pink-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.hero-text { max-width: 560px; }
.hero-catch-sub {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--red));
  color: #fff; font-size: 0.8rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.hero-catch {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900; line-height: 1.3;
  color: var(--text); margin-bottom: 20px;
}
.hero-catch span { color: var(--pink); }
.hero-desc {
  font-size: 1rem; color: var(--text-sub); margin-bottom: 32px; line-height: 1.9;
}

/* ヒーローボタン */
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--line-green); color: #fff;
  font-size: 1.05rem; font-weight: 900;
  padding: 16px 32px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(6,199,85,0.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,199,85,0.5); }
.btn-line .btn-icon { font-size: 1.3rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--pink); color: var(--pink);
  font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: 50px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--pink); color: #fff; }

/* QRカード */
.hero-qr {
  background: #fff; border-radius: var(--radius);
  padding: 24px; text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--pink-light);
  min-width: 200px;
}
.hero-qr img { width: 160px; height: 160px; margin: 0 auto 12px; border-radius: 8px; object-fit: cover; }
.hero-qr p { font-size: 0.8rem; color: var(--text-sub); font-weight: 700; }
.hero-qr .qr-label {
  display: block; background: var(--line-green); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}

/* 訪問カウンター */
.visit-counter {
  display: inline-flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--pink-light);
  border-radius: 40px; padding: 8px 24px;
  font-size: 0.82rem;
}
.visit-counter .vc-item { display: flex; align-items: center; gap: 6px; }
.visit-counter .vc-label { color: var(--text-sub); }
.visit-counter .vc-num { font-weight: 900; color: var(--pink); font-size: 1.1rem; }

/* ============================================
   選ばれる理由
   ============================================ */
.reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.reason-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--pink-light);
  transition: transform .2s, box-shadow .2s;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-icon { font-size: 2.8rem; margin-bottom: 14px; }
.reason-card h3 { font-size: 1rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.reason-card p { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================
   店舗一覧
   ============================================ */
.shops-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.shop-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1.5px solid var(--pink-light);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-card-header {
  background: linear-gradient(135deg, var(--pink), var(--red));
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.shop-icon { font-size: 2rem; }
.shop-card-header h3 { font-size: 1.1rem; font-weight: 900; color: #fff; }
.shop-card-header .shop-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.shop-tag {
  font-size: 0.65rem; background: rgba(255,255,255,0.25); color: #fff;
  padding: 2px 8px; border-radius: 20px; font-weight: 700;
}
.shop-card-body { padding: 20px 24px; flex: 1; }
.shop-card-body p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.75; margin-bottom: 16px; }
.shop-info { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.shop-info-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--text-sub);
}
.shop-info-item .icon { font-size: 0.9rem; }
.shop-card-footer { padding: 16px 24px; border-top: 1px solid var(--pink-light); }
.btn-shop-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--line-green); color: #fff;
  font-size: 0.9rem; font-weight: 900;
  padding: 12px; border-radius: 10px;
  transition: opacity .2s;
}
.btn-shop-line:hover { opacity: .85; }

/* ============================================
   初心者ガイド
   ============================================ */
.guide-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.guide-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow-card); border-left: 4px solid var(--pink);
}
.guide-card .guide-num {
  font-size: 2.5rem; font-weight: 900; color: var(--pink-light); line-height: 1;
  margin-bottom: 8px;
}
.guide-card h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 12px; }
.guide-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.75; }

/* ============================================
   応募の流れ
   ============================================ */
.flow-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 680px; margin: 0 auto;
}
.flow-step {
  display: flex; align-items: flex-start; gap: 20px;
  position: relative; padding-bottom: 32px;
}
.flow-step:last-child { padding-bottom: 0; }
.flow-step::after {
  content: '';
  position: absolute; left: 28px; top: 56px;
  width: 2px; height: calc(100% - 56px);
  background: linear-gradient(180deg, var(--pink), var(--pink-light));
}
.flow-step:last-child::after { display: none; }
.flow-num {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(255,91,139,0.4);
  position: relative; z-index: 1;
}
.flow-content h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 6px; padding-top: 12px; }
.flow-content p { font-size: 0.88rem; color: var(--text-sub); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border-radius: var(--radius-sm);
  border: 1.5px solid var(--pink-light);
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer;
  font-weight: 700; font-size: 0.95rem;
  transition: background .2s;
}
.faq-question:hover { background: var(--pink-pale); }
.faq-question::before {
  content: 'Q';
  display: inline-flex; width: 28px; height: 28px;
  background: var(--pink); color: #fff;
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; flex-shrink: 0; margin-right: 12px;
}
.faq-question .faq-toggle { font-size: 1.2rem; color: var(--pink); flex-shrink: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-answer {
  max-height: 400px; border-top-color: var(--pink-light);
}
.faq-answer-inner { padding: 16px 24px 20px 64px; }
.faq-answer-inner::before {
  content: 'A';
  display: inline-flex; width: 28px; height: 28px;
  background: var(--red); color: #fff;
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; margin-right: 10px;
  float: left; margin-top: 2px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-sub); line-height: 1.8; padding-left: 38px; }

/* ============================================
   ブログ
   ============================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1.5px solid var(--pink-light);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 140px;
  background: linear-gradient(135deg, var(--pink-light), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 20px; flex: 1; }
.blog-card-cat {
  display: inline-block; background: var(--pink-pale); color: var(--pink);
  font-size: 0.72rem; font-weight: 700; padding: 2px 10px; border-radius: 20px;
  margin-bottom: 10px; border: 1px solid var(--pink-light);
}
.blog-card-body h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.5; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.82rem; color: var(--text-sub); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer {
  padding: 12px 20px; border-top: 1px solid var(--pink-light);
  display: flex; justify-content: space-between; align-items: center;
}
.blog-card-footer .read-more { font-size: 0.8rem; color: var(--pink); font-weight: 700; }

/* ブログ記事内 */
.article-header {
  background: linear-gradient(135deg, var(--pink-pale), #fff);
  padding: 48px 0 36px; border-bottom: 2px solid var(--pink-light);
}
.article-cat { display: inline-block; background: var(--pink); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 14px; }
.article-header h1 { font-size: clamp(1.3rem, 3.5vw, 1.9rem); font-weight: 900; line-height: 1.4; margin-bottom: 14px; }
.article-meta { font-size: 0.8rem; color: var(--text-sub); display: flex; gap: 16px; flex-wrap: wrap; }

.article-body { max-width: 760px; margin: 0 auto; padding: 48px 20px; }
.article-body h2 {
  font-size: 1.25rem; font-weight: 900; color: var(--text);
  border-left: 4px solid var(--pink); padding-left: 14px;
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.05rem; font-weight: 700;
  padding: 8px 16px; background: var(--pink-pale);
  border-radius: var(--radius-sm); margin: 28px 0 12px;
}
.article-body p { font-size: 0.95rem; color: var(--text-sub); line-height: 1.9; margin-bottom: 16px; }
.article-body ul { margin: 16px 0 16px 20px; }
.article-body li { font-size: 0.92rem; color: var(--text-sub); line-height: 1.8; list-style: disc; padding-left: 4px; }

.article-cta {
  background: linear-gradient(135deg, var(--pink-pale), #fff5f8);
  border-radius: var(--radius); padding: 32px; text-align: center;
  border: 2px solid var(--pink-light); margin: 48px 0;
}
.article-cta h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }
.article-cta p { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 20px; }
.article-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.breadcrumb { padding: 12px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: 0.8rem; color: var(--text-sub); }
.breadcrumb li + li::before { content: '›'; margin-right: 4px; }
.breadcrumb a { color: var(--pink); }

/* ============================================
   最終CTA
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #ff5b8b, #e8274b);
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🍓';
  position: absolute; font-size: 8rem; opacity: 0.08;
  top: -20px; right: -20px; pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: 0.9; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-line-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--line-green);
  font-size: 1.1rem; font-weight: 900;
  padding: 18px 40px; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: transform .2s;
}
.btn-line-large:hover { transform: translateY(-2px); }
.cta-qr { display: inline-block; }
.cta-qr img { width: 140px; height: 140px; border-radius: 12px; border: 4px solid rgba(255,255,255,0.5); margin: 0 auto 8px; object-fit: cover; }
.cta-qr p { font-size: 0.8rem; opacity: 0.85; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1a1a1a; color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; padding-bottom: 40px;
}
.footer-logo { font-size: 1.1rem; font-weight: 900; color: var(--pink); margin-bottom: 10px; }
.footer-desc { font-size: 0.82rem; line-height: 1.8; }
.footer-nav h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 6px; }
.footer-nav li a { font-size: 0.8rem; transition: color .2s; }
.footer-nav li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0; text-align: center; font-size: 0.75rem;
}

/* ============================================
   スマホ固定 LINE ボタン
   ============================================ */
.fixed-line-btn {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 900;
  background: var(--line-green); color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 900;
  box-shadow: 0 6px 28px rgba(6,199,85,0.5);
  white-space: nowrap;
  transition: transform .2s;
  text-decoration: none;
}
.fixed-line-btn:hover { transform: translateX(-50%) translateY(-2px); }
@media (min-width: 769px) { .fixed-line-btn { display: none; } }

/* ============================================
   ページトップ
   ============================================ */
#back-top {
  position: fixed; bottom: 88px; right: 20px; z-index: 800;
  width: 46px; height: 46px;
  background: var(--pink); color: #fff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(255,91,139,0.4);
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s;
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); }

/* ============================================
   ススキノエリア紹介
   ============================================ */
.area-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.area-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1.5px solid var(--pink-light); text-align: center;
  box-shadow: var(--shadow-card);
}
.area-card .area-icon { font-size: 2.4rem; margin-bottom: 12px; }
.area-card h3 { font-size: 1rem; font-weight: 900; margin-bottom: 8px; }
.area-card p { font-size: 0.85rem; color: var(--text-sub); }

/* ============================================
   ブログ一覧ページ
   ============================================ */
.blog-header {
  background: linear-gradient(135deg, var(--pink-pale), #fff);
  padding: 48px 0 36px; border-bottom: 2px solid var(--pink-light);
  text-align: center;
}
.blog-header h1 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; margin-bottom: 10px; }
.blog-header p { font-size: 0.9rem; color: var(--text-sub); }

/* ============================================
   装飾ドット
   ============================================ */
.dot-deco {
  position: relative;
}
.dot-deco::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(circle, var(--pink-light) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4; pointer-events: none; z-index: 0;
}
.dot-deco > * { position: relative; z-index: 1; }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .hero { padding: 40px 0 60px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-btns { justify-content: center; }
  .visit-counter { justify-content: center; }
  .hero-qr { width: 100%; max-width: 260px; }
  .shops-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  #back-top { bottom: 80px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   イチゴ装飾セパレーター
   ============================================ */
.strawberry-sep {
  text-align: center; padding: 8px 0;
  font-size: 1.2rem; letter-spacing: 8px; color: var(--pink-light);
  user-select: none;
}

/* ============================================
   ★ 強化：信頼バッジ
   ============================================ */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin: 32px 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--pink-light);
  border-radius: 40px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 700; color: var(--text);
  box-shadow: 0 2px 8px rgba(255,91,139,0.1);
}
.trust-badge .tb-icon { font-size: 1.1rem; }

/* ============================================
   ★ 強化：体験談セクション
   ============================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-card);
  border: 1.5px solid var(--pink-light);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; left: 18px;
  font-size: 3rem; color: var(--pink-light); line-height: 1;
  font-family: serif;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-sub { font-size: 0.75rem; color: var(--text-sub); }
.testimonial-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 6px; }
.testimonial-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.8; }

/* ============================================
   ★ 強化：応募実績カウンター (リアル感)
   ============================================ */
.social-proof-bar {
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: #fff; padding: 14px 0; text-align: center;
}
.social-proof-bar .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.sp-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.sp-num { font-size: 1.5rem; font-weight: 900; }

/* ============================================
   ★ 強化：離脱防止バナー
   ============================================ */
.exit-banner {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: #fff; padding: 14px 20px;
  justify-content: center; align-items: center; gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  animation: slideDown 0.4s ease;
}
.exit-banner.show { display: flex; }
@keyframes slideDown { from{transform:translateY(-100%)} to{transform:none} }
.exit-banner p { font-size: 0.9rem; font-weight: 700; margin: 0; }
.exit-close {
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .exit-banner { flex-direction: column; text-align: center; gap: 10px; }
}

/* ============================================
   ★ 強化：スクロール追従サイドQRパネル
   ============================================ */
.sticky-qr-panel {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 850;
  background: #fff; border: 2px solid var(--pink-light);
  border-right: none; border-radius: 16px 0 0 16px;
  padding: 16px 14px; text-align: center;
  box-shadow: -4px 0 20px rgba(255,91,139,0.15);
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  max-width: 120px;
}
.sticky-qr-panel.show { opacity: 1; pointer-events: all; }
.sticky-qr-panel img { width: 90px; height: 90px; border-radius: 6px; margin-bottom: 8px; }
.sticky-qr-panel p { font-size: 0.65rem; color: var(--text-sub); font-weight: 700; line-height: 1.4; }
@media (max-width: 900px) { .sticky-qr-panel { display: none; } }

/* ============================================
   ★ 強化：ハートビートLINEボタン
   ============================================ */
@keyframes heartbeat {
  0%,100% { box-shadow: 0 6px 28px rgba(6,199,85,0.5); }
  50%      { box-shadow: 0 6px 40px rgba(6,199,85,0.8), 0 0 0 8px rgba(6,199,85,0.1); }
}
.fixed-line-btn.pulse { animation: heartbeat 2s ease-in-out infinite; }

/* ============================================
   ★ 強化：緊急性バナー (ファーストビュー下)
   ============================================ */
.urgency-bar {
  background: var(--pink-pale); border-top: 2px solid var(--pink-light);
  border-bottom: 2px solid var(--pink-light);
  padding: 10px 0; text-align: center;
  font-size: 0.82rem; font-weight: 700; color: var(--pink);
}
.urgency-bar .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--pink); border-radius: 50%; margin-right: 6px;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ============================================
   ★ 強化：記事内TOC (目次)
   ============================================ */
.article-toc {
  background: var(--pink-pale); border: 1.5px solid var(--pink-light);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px;
}
.article-toc h4 {
  font-size: 0.88rem; font-weight: 900; margin-bottom: 14px;
  color: var(--text); display: flex; align-items: center; gap: 6px;
}
.article-toc ol { counter-reset: toc; padding-left: 0; }
.article-toc li {
  counter-increment: toc;
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.85rem; padding: 4px 0;
  border-bottom: 1px dashed var(--pink-light);
}
.article-toc li:last-child { border-bottom: none; }
.article-toc li::before {
  content: counter(toc);
  display: inline-flex; width: 20px; height: 20px;
  background: var(--pink); color: #fff;
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; flex-shrink: 0;
}
.article-toc a { color: var(--text); transition: color .2s; }
.article-toc a:hover { color: var(--pink); }

/* ============================================
   ★ 強化：記事内 インフォボックス
   ============================================ */
.info-box {
  background: var(--pink-pale); border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px; margin: 24px 0;
  font-size: 0.88rem; color: var(--text-sub); line-height: 1.8;
}
.info-box strong { color: var(--pink); }
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  padding: 6px 0 6px 28px; position: relative;
  font-size: 0.9rem; color: var(--text-sub); line-height: 1.7;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--pink); font-weight: 900;
}

/* ============================================
   ★ 強化：安心保証ボックス
   ============================================ */
.guarantee-box {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 32px 0;
}
.guarantee-item {
  background: #fff; border-radius: var(--radius-sm);
  padding: 20px 16px; text-align: center;
  border: 1.5px solid var(--pink-light);
  box-shadow: var(--shadow-card);
}
.guarantee-item .gi-icon { font-size: 2rem; margin-bottom: 8px; }
.guarantee-item h4 { font-size: 0.85rem; font-weight: 900; margin-bottom: 4px; }
.guarantee-item p { font-size: 0.76rem; color: var(--text-sub); }

/* ============================================
   ★ 強化：ブログ記事 読了プログレスバー
   ============================================ */
.reading-progress {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  height: 3px; background: var(--pink-light); z-index: 999;
  transform-origin: left;
}
.reading-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--red));
  transition: width 0.1s linear;
}

/* ============================================
   ★ 強化：関連記事グリッド (記事末尾)
   ============================================ */
.related-articles {
  border-top: 2px solid var(--pink-light); padding-top: 36px; margin-top: 48px;
}
.related-articles h3 { font-size: 1rem; font-weight: 900; margin-bottom: 20px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.related-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: var(--radius-sm); padding: 14px;
  border: 1.5px solid var(--pink-light);
  transition: box-shadow .2s;
  text-decoration: none; color: inherit;
}
.related-card:hover { box-shadow: var(--shadow); }
.related-card .rc-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--red-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.related-card h4 { font-size: 0.82rem; font-weight: 700; line-height: 1.5; }


/* ============================================
   AI機能バナー レスポンシブ
   ============================================ */
@media (max-width: 540px) {
  .ai-banner-grid {
    grid-template-columns: 1fr !important;
  }
}
