/* ========================================
   LifeLab Select - 共通スタイル
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a5f;
  text-decoration: none;
}
.site-header nav a {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: 16px;
}

/* フッター */
.site-footer {
  background: #1e3a5f;
  color: #cbd5e1;
  padding: 32px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 2;
}
.site-footer a { color: #94a3b8; }
.site-footer .copyright { margin-top: 8px; font-size: 0.75rem; }

/* ========================================
   LP 共通スタイル
   ======================================== */

/* ファーストビュー */
.lp-hero {
  background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
  padding: 60px 20px 50px;
  text-align: center;
}
.lp-hero .ad-label {
  display: inline-block;
  background: #6b7280;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.lp-hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: #1e3a5f;
  line-height: 1.4;
  margin-bottom: 16px;
}
.lp-hero h1 em {
  color: #dc2626;
  font-style: normal;
}
.lp-hero p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 24px;
}

/* CTAボタン */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(220,38,38,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220,38,38,0.5);
}
.cta-btn .sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 4px;
}

/* セクション */
.lp-section {
  padding: 50px 20px;
}
.lp-section.bg-gray { background: #f9fafb; }
.lp-section.bg-yellow { background: #fffbeb; }

.section-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.4;
}
.section-title span {
  border-bottom: 4px solid #f97316;
  padding-bottom: 4px;
}

/* 共感リスト */
.empathy-list {
  list-style: none;
  margin: 0 auto 32px;
  max-width: 600px;
}
.empathy-list li {
  background: #fff;
  border-left: 4px solid #f97316;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* 特徴カード */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.feature-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: #1e3a5f; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #6b7280; }

/* 口コミ */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.review-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.review-item .reviewer {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 8px;
}
.review-item .stars { color: #f97316; }
.review-item p { font-size: 0.95rem; color: #374151; }

/* 定期コース注記 */
.subscription-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #92400e;
  margin: 24px auto;
  max-width: 640px;
}
.subscription-note strong { display: block; margin-bottom: 4px; }

/* メディア掲載 */
.media-bar {
  text-align: center;
  padding: 24px 20px;
  background: #f9fafb;
}
.media-bar p { font-size: 0.85rem; color: #9ca3af; margin-bottom: 12px; }
.media-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #6b7280;
}

/* CTA セクション */
.cta-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.5;
}
.cta-section p {
  font-size: 0.95rem;
  margin-bottom: 28px;
  opacity: 0.9;
}
.cta-section .price {
  font-size: 0.85rem;
  margin-top: 12px;
  opacity: 0.8;
}

/* アフィリエイト開示 */
.affiliate-note {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  padding: 16px 20px;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .lp-hero { padding: 40px 16px 36px; }
  .lp-section { padding: 40px 16px; }
  .cta-btn { padding: 16px 28px; font-size: 1rem; }
}
