/* ========================================
   カルビーフューチャーラボ モダンUIUX CSS
   ======================================== */

/* シンプルなカルビーブランドカラー */
:root {
  /* メインカラー - カルビーオレンジ */
  --calbee-orange: #FF6B35;
  --calbee-orange-light: #FF8A65;
  --calbee-orange-dark: #E64A19;
  
  /* アクセントカラー - カルビーイエロー */
  --calbee-yellow: #FFD23F;
  --calbee-yellow-light: #FFE082;
  --calbee-yellow-dark: #F9A825;
  
  /* ベースカラー - シンプルな色合い */
  --calbee-dark: #2C3E50;
  --calbee-gray: #7F8C8D;
  --calbee-light-gray: #F8F9FA;
  --calbee-white: #FFFFFF;
  
  /* シャドウ - 控えめな印象 */
  --calbee-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --calbee-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --calbee-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* アニメーション - シンプルな動き */
  --calbee-transition: all 0.3s ease;
  --calbee-transition-slow: all 0.5s ease;
}

/* 全体的な優しいフォント設定 */
* {
  font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'Noto Sans JP', 'M PLUS Rounded 1c', 'Rounded Mplus 1c', sans-serif !important;
  letter-spacing: 0.05em !important;
}

/* ベーススタイルの改善 - 優しいフォント */
body {
  font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'Noto Sans JP', 'M PLUS Rounded 1c', 'Rounded Mplus 1c', sans-serif;
  line-height: 1.7;
  color: var(--calbee-dark);
  background-color: var(--calbee-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* シンプルなヒーローセクション */
.lp-hero {
  position: relative;
  background: var(--calbee-white);
  border-radius: 16px;
  margin: 24px 0;
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--calbee-shadow-md);
  border: 2px solid var(--calbee-light-gray);
  transition: var(--calbee-transition);
}

.lp-hero:hover {
  box-shadow: var(--calbee-shadow-lg);
  border-color: var(--calbee-orange);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
}

/* シンプルなバッジデザイン */
.lp-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-badge {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--calbee-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--calbee-transition);
  box-shadow: var(--calbee-shadow-sm);
}

.lp-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--calbee-shadow-md);
}

.lp-badge--member {
  background: var(--calbee-orange);
}

.lp-badge--stock {
  background: var(--calbee-orange-light);
}

.lp-badge--limited {
  background: var(--calbee-yellow);
  color: var(--calbee-dark);
}

/* バッジアイコンのスタイル */
.lp-badge__icon {
  font-size: 16px;
}

/* モダンなタイポグラフィ */
.lp-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--calbee-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lp-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--calbee-dark);
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 1.4;
}

/* シンプルなボタンデザイン */
.lp-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-btn {
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--calbee-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  box-shadow: var(--calbee-shadow-sm);
  border: 2px solid transparent;
}

.lp-btn--pri,
.lp-btn--sec {
  background: var(--calbee-orange);
  color: var(--calbee-white);
  border-color: var(--calbee-orange);
}


/* ボタンアイコンのスタイル */
.lp-btn__icon {
  font-size: 18px;
  margin-right: 8px;
}

/* シンプルなカードデザイン */
.lp-card {
  background: var(--calbee-white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--calbee-shadow-sm);
  transition: var(--calbee-transition);
  border: 1px solid var(--calbee-light-gray);
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--calbee-shadow-md);
  border-color: var(--calbee-orange);
}

.lp-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  color: var(--calbee-orange);
}

.lp-card-title {
  font-size: 1.3rem;
  color: var(--calbee-dark);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.lp-card-desc {
  color: var(--calbee-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* シンプルなステップデザイン */
.lp-step {
  background: var(--calbee-white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--calbee-shadow-sm);
  transition: var(--calbee-transition);
  border: 1px solid var(--calbee-light-gray);
}

.lp-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--calbee-shadow-md);
  border-color: var(--calbee-orange);
}

.lp-step .num {
  background: var(--calbee-orange);
  color: var(--calbee-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--calbee-shadow-sm);
}

/* アニメーション削除 - シンプルなデザインのため */

/* スクロールアニメーション削除 - シンプルなデザインのため */

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .lp-hero {
    padding: 60px 24px;
    margin: 16px 0;
    border-radius: 20px;
  }
  
  .lp-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .lp-btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .lp-btn {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    padding: 18px 32px;
  }
  
  .lp-card {
    padding: 32px 24px;
  }
  
  .lp-step {
    padding: 40px 24px;
  }
  
  .lp-step .num {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lp-hero {
    padding: 40px 20px;
  }
  
  .lp-card {
    padding: 24px 20px;
  }
  
  .lp-step {
    padding: 32px 20px;
  }
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* フォーカス表示 */
a:focus,
button:focus,
summary:focus {
  outline: 3px solid var(--calbee-orange);
  outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  .lp-card,
  .lp-step {
    border: 2px solid var(--calbee-dark);
  }
}

/* ========================================
   モバイルUX最適化
   ======================================== */

/* タッチデバイス最適化 */
@media (hover: none) and (pointer: coarse) {
  .lp-btn {
    min-height: 48px;
    padding: 16px 32px;
  }
  
  .lp-badge {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  .lp-card:hover,
  .lp-step:hover {
    transform: none;
  }
  
  .lp-card:active,
  .lp-step:active {
    transform: scale(0.98);
  }
}

/* モバイルファーストの改善 */
@media (max-width: 480px) {
  /* フォントサイズの最適化 */
  .lp-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .lp-lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* タッチターゲットの最適化 */
  .lp-btn {
    min-height: 48px;
    padding: 16px 24px;
    font-size: 1rem;
  }
  
  .lp-badge {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }
  
  /* スペーシングの最適化 */
  .lp-hero {
    padding: 32px 16px;
    margin: 12px 0;
  }
  
  .lp-sec {
    padding: 32px 0;
    margin: 24px 0;
  }
  
  .lp-card {
    padding: 20px 16px;
    margin-bottom: 16px;
  }
  
  .lp-step {
    padding: 24px 16px;
    margin-bottom: 20px;
  }
  
  /* 画像の最適化 */
  .lp-hero-img {
    border-radius: 8px;
  }
  
  /* テキストの読みやすさ向上 */
  .lp-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .lp-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* タブレット最適化 */
@media (min-width: 481px) and (max-width: 768px) {
  .lp-hero {
    padding: 48px 24px;
  }
  
  .lp-hero h1 {
    font-size: 2.5rem;
  }
  
  .lp-lead {
    font-size: 1.3rem;
  }
  
  .lp-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .lp-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================
   タイポグラフィ改善
   ======================================== */

/* フォントファミリーの最適化 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', sans-serif;
  font-feature-settings: 'palt' 1, 'kern' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出しの改善 */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--calbee-dark);
}

.lp-hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lp-sec h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

.lp-sec h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--calbee-gradient-primary);
  border-radius: 2px;
}

.lp-card-title,
.lp-step h3 {
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* 本文の改善 */
p {
  line-height: 1.7;
  color: var(--calbee-gray);
}

.lp-lead {
  font-weight: 600;
  color: var(--calbee-dark);
  line-height: 1.4;
}

.lp-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--calbee-gray);
}

.lp-card-desc {
  line-height: 1.6;
  color: var(--calbee-gray);
}

/* ボタンテキストの改善 */
.lp-btn {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.lp-badge {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* リンクの改善 */
a {
  color: var(--calbee-orange);
  text-decoration: none;
  transition: var(--calbee-transition);
}

a:hover {
  color: var(--calbee-orange-dark);
  text-decoration: underline;
}

/* フォーカス表示の改善 */
a:focus,
button:focus,
summary:focus {
  outline: 3px solid var(--calbee-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========================================
   アクセシビリティ改善
   ======================================== */

/* スクリーンリーダー対応 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* キーボードナビゲーション */
.lp-btn:focus,
.lp-badge:focus,
.faq-item summary:focus {
  outline: 3px solid var(--calbee-orange);
  outline-offset: 2px;
}

/* 高コントラストモード */
@media (prefers-contrast: high) {
  .lp-hero {
    background: var(--calbee-white);
    border: 2px solid var(--calbee-dark);
  }
  
  .lp-card,
  .lp-step {
    border: 2px solid var(--calbee-dark);
  }
  
  .lp-btn {
    border: 2px solid var(--calbee-dark);
  }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  :root {
    --calbee-dark: #FFFFFF;
    --calbee-gray: #CCCCCC;
    --calbee-white: #1A1A1A;
    --calbee-light-gray: #2A2A2A;
  }
  
  .lp-hero {
    background: linear-gradient(135deg, #2A2A2A, #3A3A3A);
    color: var(--calbee-white);
  }
  
  .lp-card,
  .lp-step {
    background: var(--calbee-light-gray);
    color: var(--calbee-white);
  }
}

/* ========================================
   パフォーマンス最適化
   ======================================== */

/* アニメーションの最適化 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* GPU加速の活用 */
.lp-hero,
.lp-card,
.lp-step,
.lp-btn {
  transform: translateZ(0);
  will-change: transform;
}

/* 画像の最適化 - シンプルなサイズ */
.lp-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--calbee-shadow-sm);
}

/* プリント対応 */
@media print {
  .lp-hero {
    background: var(--calbee-white) !important;
    color: var(--calbee-dark) !important;
    box-shadow: none !important;
  }
  
  .lp-btn,
  .lp-badges {
    display: none !important;
  }
  
  .lp-card,
  .lp-step {
    box-shadow: none !important;
    border: 1px solid var(--calbee-gray) !important;
  }
}

/* ========================================
   家族向けFAQ・CTAデザイン
   ======================================== */

/* 家族向けFAQデザイン - 分かりやすく親しみやすい */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--calbee-gradient-card);
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--calbee-shadow-md);
  transition: var(--calbee-transition);
  border: 2px solid var(--calbee-orange-soft);
}

.faq-item:hover {
  box-shadow: var(--calbee-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--calbee-orange);
}

.faq-item summary {
  background: linear-gradient(135deg, var(--calbee-orange), var(--calbee-orange-light));
  color: var(--calbee-white);
  padding: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--calbee-transition);
  position: relative;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-item summary:hover {
  background: linear-gradient(135deg, var(--calbee-orange-dark), var(--calbee-orange));
}

.faq-item summary::after {
  content: '▼' !important;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  display: inline-block;
}

.faq-item.open summary::after {
  transform: translateY(-50%) rotate(180deg) !important;
}

.faq-item div,
.faq-item .faq-answer {
  padding: 24px;
  color: var(--calbee-dark);
  line-height: 1.7;
  background: var(--calbee-white);
  font-size: 1rem;
  display: none;
}

.faq-item.open div,
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 家族向けCTAセクション - 温かみのあるデザイン */
.lp-cta {
  text-align: center;
  background: var(--calbee-gradient-secondary);
  color: var(--calbee-white);
  padding: 60px 40px;
  border-radius: 32px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--calbee-shadow-xl);
  border: 3px solid var(--calbee-white);
}

.lp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
  background-size: 60px 60px, 80px 80px;
  opacity: 0.5;
}

.lp-cta__inner {
  position: relative;
  z-index: 2;
}

.lp-cta h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--calbee-white);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lp-cta p {
  font-size: 1.3rem;
  margin-bottom: 36px;
  opacity: 0.95;
  font-weight: 500;
  line-height: 1.6;
}

/* 商品セクションの改善 */
.lp-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--calbee-gradient-card);
  padding: 40px;
  border-radius: 24px;
  margin-top: 40px;
  border: 3px solid var(--calbee-orange-soft);
  box-shadow: var(--calbee-shadow-md);
}

.lp-product .img {
  text-align: center;
}

.lp-product .img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--calbee-shadow-lg);
  transition: var(--calbee-transition);
  border: 3px solid var(--calbee-white);
}

.lp-product .img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: var(--calbee-shadow-xl);
}

.lp-product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-price-display {
  font-size: 1.6rem;
  color: var(--calbee-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.lp-price-display .now {
  color: var(--calbee-orange);
  font-weight: 700;
  font-size: 1.8rem;
}

.tax-included {
  font-size: 1rem;
  color: var(--calbee-gray);
}

.lp-product-features {
  background: var(--calbee-white);
  padding: 24px;
  border-radius: 16px;
  border-left: 6px solid var(--calbee-orange);
  margin: 20px 0;
  box-shadow: var(--calbee-shadow-sm);
}

.lp-product-features p {
  color: var(--calbee-dark);
  line-height: 1.7;
  margin: 0;
  font-size: 1.1rem;
}
/* Calbee カルビー割 キャンペーンページ 忠実再現CSS */

/* 柔らかく適度なコントラストのカラーリング */
:root {
  --calbee-yellow: #F0D966;
  --calbee-bright-yellow: #F3DD7A;
  --calbee-light-yellow: #F6E18E;
  --calbee-orange: #f75525;
  --calbee-bright-orange: #f75525;
  --calbee-red: #C88A8A;
  --calbee-bright-red: #D19999;
  --calbee-blue: #6BA3C8;
  --calbee-bright-blue: #7BB0D1;
  --calbee-green: #8BB88B;
  --calbee-dark: #333333;
  --calbee-gray: #6A6A6A;
  --calbee-light-gray: #F5F5F5;
  --calbee-white: #FFFFFF;
}

/* ベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hiragino Maru Gothic ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', sans-serif;
  line-height: 1.6;
  color: var(--calbee-dark);
  background-color: var(--calbee-white);
  letter-spacing: 0.05em;
}

/* 全テキスト要素でシャドウを無効化 */
* {
  text-shadow: none !important;
}

/* ランディングページ全体 */
.lp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヒーロー画像コンテナ */
.lp-hero-image-container {
  text-align: center;
  margin-bottom: 0;
}

.lp-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ヒーローセクション - 柔らかいデザイン */
.lp-hero {
  text-align: center;
  padding: 30px 0;
  margin: 0 0 5px 0;
  position: relative;
  overflow: hidden;
}

.lp-hero .lp-wrap {
  padding: 0;
}



.lp-hero-content {
  position: relative;
  z-index: 2;
}

/* バッジ - 画像通りの正確な色合い */
.lp-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-badge {
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  color: var(--calbee-white);
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lp-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.lp-badge--member {
  background: var(--calbee-red);
}

.lp-badge--stock {
  background: var(--calbee-orange);
}

.lp-badge--limited {
  background: var(--calbee-blue);
}

/* メインタイトル - 画像通りの大きな黒いタイトル */
.lp-hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--calbee-dark);
  margin-bottom: 20px;
  text-shadow: none;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

/* リード文 - 画像通りの黒いテキスト */
.lp-lead {
  font-size: 1.8rem;
  color: var(--calbee-dark);
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

/* ボタン - 画像通りの白背景に赤いボーダーとテキスト */
.lp-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.lp-btn {
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.1em;
  background: #7ED321;
  color: var(--calbee-white);
  border: 1px solid #8EE53A;
}

.lp-btn i {
  display: none; /* Hide icons */
}

/* 縦並びボタン用のスタイル */
.lp-btns--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* 商品セクション */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 40px 0;
}

.product-visual {
  position: relative;
}

.product-image-container {
  background: #F6E18E;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(246, 225, 142, 0.3);
}

.product-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.product-info {
  padding: 20px 0;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}


.section-header h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--calbee-dark);
  margin: 0;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--calbee-dark);
  margin: 0 0 20px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left !important;
  display: block;
  width: 100%;
}

.pricing {
  margin-bottom: 20px;
}

.price-label {
  font-size: 1.2rem;
  color: var(--calbee-dark);
  margin-right: 8px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: bold;
  color: #DC143C;
  margin-right: 8px;
}

.price-tax {
  font-size: 1rem;
  color: var(--calbee-dark);
}

.availability-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--calbee-white);
  letter-spacing: 0.05em;
}

.badge-red {
  background: #DC143C;
}

.badge-orange {
  background: var(--calbee-orange);
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--calbee-dark);
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--calbee-gray);
  margin-top: 20px;
  letter-spacing: 0.03em;
}

/* クーポンキャンペーンセクション */
.coupon-campaign {
  background: #f75525;
  margin: 40px 0 0 0;
  position: relative;
  padding: 0 30px;
}

.campaign-header {
  background: #5C4B4B;
  padding: 12px 0;
  text-align: center;
  margin: 0 -30px;
}

.campaign-header p {
  color: var(--calbee-white);
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.05em;
  padding: 0 30px;
}

.coupon-content {
  padding: 40px 60px;
  text-align: center;
}

.coupon-content h2 {
  color: var(--calbee-white);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
}

.coupon-container {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.coupon-image {
  max-width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.registration-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5C4B4B;
  color: var(--calbee-white);
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 30px 0;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.registration-btn:hover {
  background: #4A3A3A;
  transform: translateY(-2px);
}

.registration-btn i {
  font-size: 1rem;
}

.coupon-disclaimer {
  text-align: left;
  max-width: 600px;
  margin: 30px auto 0;
}

.coupon-disclaimer p {
  color: var(--calbee-white);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 8px 0;
  letter-spacing: 0.03em;
}

.lp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.6s ease;
}

.lp-btn:hover::before {
  left: 100%;
}

.lp-btn--pri {
  background: #7ED321;
  color: var(--calbee-white);
  border: 1px solid #8EE53A;
}

.lp-btn--pri:hover {
  background: #6BC018 !important;
  color: var(--calbee-white) !important;
  border-color: #6BC018 !important;
  transform: translateY(-2px);
}

.lp-btn--sec {
  background: #7ED321;
  color: var(--calbee-white);
  border: 1px solid #8EE53A;
}

.lp-btn--sec:hover {
  background: #6BC018 !important;
  color: var(--calbee-white) !important;
  border-color: #6BC018 !important;
  transform: translateY(-2px);
}

/* 注意書き */
.lp-muted {
  color: var(--calbee-dark);
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ヒーロービジュアル */
.lp-hero-visual {
  margin-top: 30px;
}

/* セクション共通 */
.lp-sec {
  padding: 30px 0;
  margin: 15px 0;
  background: var(--calbee-white);
  border-radius: 20px;
}

.lp-sec h1,
.lp-sec h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--calbee-orange);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: 0.07em;
}

.section-title-orange {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--calbee-orange);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}


.lp-sec h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--calbee-dark);
  margin-bottom: 12px;
}

/* 説明文 */
.lp-description {
  font-size: 1.2rem;
  color: var(--calbee-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* 特徴カード */
.lp-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.lp-card {
  background: var(--calbee-white);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.lp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--calbee-orange);
}

.lp-card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.lp-card-title {
  font-size: 1.3rem;
  color: var(--calbee-dark);
  margin-bottom: 8px;
}

.lp-card-desc {
  color: var(--calbee-gray);
  font-size: 1rem;
}

/* ステップ */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.lp-step {
  background: var(--calbee-white);
  padding: 30px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}


.lp-step:hover {
  transform: translateY(-5px);
}

.lp-step .num {
  background: var(--calbee-orange);
  color: var(--calbee-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.lp-step:hover .num {
  background: var(--calbee-red);
  transform: scale(1.1);
}

.lp-step p {
  color: var(--calbee-gray);
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.lp-step-image {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.lp-step-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.lp-step:hover .lp-step-image img {
  transform: scale(1.05);
}

/* 商品セクション */
.lp-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--calbee-white);
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}

.lp-product .img {
  text-align: center;
}

.lp-product .img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.lp-product .img img:hover {
  transform: scale(1.05);
}

.lp-product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* 価格表示 */
.lp-price-display {
  font-size: 1.4rem;
  color: var(--calbee-dark);
  margin-bottom: 16px;
}

.lp-price-display .now {
  color: var(--calbee-orange);
  font-weight: bold;
  font-size: 1.6rem;
}

.tax-included {
  font-size: 0.9rem;
  color: var(--calbee-gray);
}

/* 商品特徴 */
.lp-product-features {
  background: var(--calbee-white);
  padding: 20px;
  border-left: 4px solid var(--calbee-orange);
  margin: 20px 0;
}

.lp-product-features p {
  color: var(--calbee-dark);
  line-height: 1.7;
  margin: 0;
}

/* FAQ */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--calbee-white);
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-item summary {
  background: var(--calbee-light-yellow);
  color: var(--calbee-dark);
  padding: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-item summary:hover {
  background: var(--calbee-yellow);
}

.faq-item summary::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-item.open summary::after {
  transform: translateY(-50%) rotate(180deg) !important;
}

.faq-item div {
  padding: 16px;
  color: var(--calbee-dark);
  line-height: 1.6;
  background: var(--calbee-light-gray);
}

/* クロージングセクション */
.lp-cta {
  text-align: center;
  background: var(--calbee-blue);
  color: var(--calbee-white);
  padding: 60px 40px;
  border-radius: 20px;
  margin: 40px 0;
}

.lp-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--calbee-white);
}

.lp-cta p {
  font-size: 1.3rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .lp-wrap {
    padding: 0 30px;
  }
  
  .lp-hero {
    padding: 20px;
    margin: 0 0 5px 0;
  }
  
  .lp-sec {
    margin: 10px 0;
  }
  
  .lp-hero h1 {
    font-size: 2.5rem;
  }
  
  .lp-lead {
    font-size: 1.4rem;
  }
  
  .lp-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .lp-btns--vertical {
    align-items: stretch;
    padding: 0 20px;
    width: 100%;
  }
  
  .lp-btn {
    width: 100% !important;
    max-width: none !important;
    padding: 20px 50px;
  }
  
  .product-info .lp-btns--vertical {
    padding: 0 20px;
    width: 100%;
    margin: 0 -20px;
  }
  
  /* 商品セクション - タブレット */
  .product-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
  }
  
  .product-image-container {
    padding: 20px;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* クーポンキャンペーン - タブレット */
  .coupon-content h2 {
    font-size: 1.8rem;
  }
  
  .coupon-content {
    padding: 30px 15px;
  }
  
  .lp-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .lp-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lp-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .lp-product {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .lp-sec {
    padding: 40px 0;
    margin: 30px 0;
  }
  
  .lp-sec h1,
  .lp-sec h2 {
    font-size: 2rem;
  }
  
  .lp-cta {
    padding: 40px 20px;
  }
  
  .lp-cta h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .lp-wrap {
    padding: 0 30px;
  }
  
  .lp-hero {
    padding: 15px;
    margin: 0 0 5px 0;
  }
  
  .lp-sec {
    margin: 4px 0;
  }
  
  .lp-hero h1 {
    font-size: 2rem;
  }
  
  .lp-lead {
    font-size: 1.2rem;
  }
  
  .lp-btn {
    width: 100% !important;
    max-width: none !important;
    padding: 16px 28px;
    font-size: 1.1rem;
  }
  
  /* 商品セクション - モバイル */
  .product-section {
    gap: 20px;
    margin: 20px 0;
  }
  
  .product-image-container {
    padding: 15px;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .price-amount {
    font-size: 1.8rem;
  }
  
  .availability-badges {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .badge {
    text-align: center;
  }
  
  /* クーポンキャンペーン - モバイル */
  .coupon-content h2 {
    font-size: 1.5rem;
  }
  
  .coupon-content {
    padding: 25px 10px;
  }
  
  .registration-btn {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  
  .coupon-disclaimer {
    margin: 20px auto 0;
  }
  
  .coupon-disclaimer p {
    font-size: 0.8rem;
  }
  
  .coupon-image {
    max-width: 80%;
  }
  
  .lp-card {
    padding: 25px 20px;
  }
  
  .lp-step {
    padding: 30px 20px;
  }
  
  .lp-product {
    padding: 25px 15px;
  }
  
  .lp-sec h1,
  .lp-sec h2 {
    font-size: 1.6rem;
  }
  
  .lp-cta h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lp-values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lp-product {
    gap: 30px;
    padding: 35px;
  }
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-card,
.lp-step,
.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* スクロールアニメーション */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* フォーカス表示 */
a:focus,
button:focus,
summary:focus {
  outline: 2px solid var(--calbee-orange);
  outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  .lp-card,
  .lp-step {
    border: 2px solid var(--calbee-dark);
  }
  
  .lp-hero h1 {
    color: var(--calbee-dark);
  }
}

/* プリント対応 */
@media print {
  .lp-btn,
  .lp-badges {
    display: none;
  }
  
  .lp-hero {
    background: var(--calbee-white) !important;
    color: var(--calbee-dark) !important;
  }
}

/* PDFデザイン参考画像のスタイル */
.pdf-reference {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 300px;
  transition: all 0.3s ease;
}

.pdf-reference:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.pdf-reference h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.pdf-reference img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* モバイルでのPDF参考画像の非表示 */
@media (max-width: 768px) {
  .pdf-reference {
    display: none;
  }
}

/* 既存のヘッダースタイルの調整 */
.calbee-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--calbee-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--calbee-orange);
}

.search-icon {
  font-size: 1.2rem;
  color: var(--calbee-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: var(--calbee-orange);
}


/* フッタースタイルの調整 */
.footer {
  background: var(--calbee-dark);
  color: var(--calbee-white);
  padding: 40px 0 20px;
  text-align: center;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: var(--calbee-white);
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--calbee-orange);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--calbee-white);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--calbee-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* 新しい画像用のスタイル */
.product-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.product-main-image:hover {
  transform: scale(1.05);
}

.app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid #f0f0f0;
}

.app-screenshot:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ヒーロー画像の調整 */
.lp-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.lp-hero-img:hover {
  transform: scale(1.02);
}

/* レスポンシブ対応の調整 */
@media (max-width: 768px) {
  .lp-hero-img {
    margin-bottom: 20px;
  }
  
  .product-main-image {
    border-radius: 12px;
  }
  
  .app-screenshot {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .lp-hero-img {
    margin-bottom: 15px;
  }
  
  .product-main-image {
    border-radius: 8px;
  }
  
  .app-screenshot {
    border-radius: 6px;
  }
  
  /* 今月の対象商品セクション - スマホ用レイアウト */
  .product-section {
    display: grid;
    grid-template-areas: 
      "title"
      "image"
      "content";
    gap: 20px;
  }
  
  .product-visual {
    grid-area: image;
    display: block;
  }
  
  .product-info {
    grid-area: content;
  }
  
  .section-header h3 {
    grid-area: title;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  
  .mobile-only {
    display: none;
  }
  
  .product-image-container {
    margin: 0;
    text-align: center;
  }
  
  .lp-btns--vertical {
    align-items: stretch;
    padding: 0 20px;
    width: 100%;
  }
  
  .lp-btns--vertical .lp-btn {
    width: 100% !important;
    max-width: none !important;
  }
  
  .product-info .lp-btns--vertical {
    padding: 0 20px;
    width: 100%;
    margin: 0 -20px;
  }
}

/* デスクトップ用 - ヒーローセクションに左右の背景色を追加 */
@media (min-width: 1025px) {
  .lp-hero {
    background: #F6E18E;
    padding: 30px 40px;
  }
  
  .lp-hero .lp-wrap {
    padding: 0;
  }
  
  .lp-hero-img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  /* デスクトップ用 - 商品セクションのレイアウトを元に戻す */
  .product-section {
    display: grid;
    grid-template-areas: 
      "image content";
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .product-visual {
    grid-area: image;
  }
  
  .product-info {
    grid-area: content;
  }
  
  .section-header h3 {
    text-align: left;
    margin-bottom: 0;
  }
  
  .product-image-container {
    margin: 0;
    text-align: left;
  }
  
  .lp-btns--vertical {
    align-items: flex-start;
  }
}

/* WordPressメインページの余白を復活させる */
body {
  margin: 0;
  padding: 0;
}

/* SWELLテーマのメインコンテナの余白を復活 - より具体的なセレクタを使用 */
.l-content.l-container,
.l-container,
.l-content,
main.l-main,
#main.l-main,
.l-main,
#content.l-content.l-container {
  padding: 0 20px !important;
  margin: 0 auto !important;
  max-width: 1200px !important;
}

/* 固定ページのメインコンテンツのみ全幅表示を維持 */
.page-template-page-lp-calbee-wari-updated .l-content.l-container,
.page-template-page-lp-calbee-wari .l-content.l-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* 固定ページでもヘッダーとパンくずには余白を維持 */
.page-template-page-lp-calbee-wari-updated .l-header__inner.l-container,
.page-template-page-lp-calbee-wari .l-header__inner.l-container,
.page-template-page-lp-calbee-wari-updated .l-fixHeader__inner.l-container,
.page-template-page-lp-calbee-wari .l-fixHeader__inner.l-container {
  padding: 0 20px !important;
  margin: 0 auto !important;
  max-width: 1200px !important;
}

.page-template-page-lp-calbee-wari-updated .p-breadcrumb__list.l-container,
.page-template-page-lp-calbee-wari .p-breadcrumb__list.l-container {
  padding: 0 20px !important;
  margin: 0 auto !important;
  max-width: 1200px !important;
}

/* 固定ページのパンくずとバナーセクションの間の余白を0pxに（パンくず自体の余白は維持） */

.page-template-page-lp-calbee-wari-updated #content.l-content.l-container,
.page-template-page-lp-calbee-wari #content.l-content.l-container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 固定ページのメイン要素の余白も0に */
.page-template-page-lp-calbee-wari-updated #main.l-main,
.page-template-page-lp-calbee-wari #main.l-main {
  margin-top: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* より具体的なセレクタで固定ページのメイン要素の余白を削除 */
body.page-template-page-lp-calbee-wari-updated #main.l-main,
body.page-template-page-lp-calbee-wari #main.l-main {
  padding: 0 !important;
  margin: 0 !important;
}

/* 固定ページのlp-wrap要素の左右の余白も削除 */
.page-template-page-lp-calbee-wari-updated .lp-wrap,
.page-template-page-lp-calbee-wari .lp-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 固定ページのバナーセクションを中央寄せにして余白を削除 */
.page-template-page-lp-calbee-wari-updated .lp-hero,
.page-template-page-lp-calbee-wari .lp-hero {
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-template-page-lp-calbee-wari-updated .lp-hero-image-container,
.page-template-page-lp-calbee-wari .lp-hero-image-container {
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-template-page-lp-calbee-wari-updated .lp-hero-img,
.page-template-page-lp-calbee-wari .lp-hero-img {
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
  height: auto !important;
}

/* 固定ページのメイン要素内の最初の要素の余白も0に */
.page-template-page-lp-calbee-wari-updated #main.l-main > *:first-child,
.page-template-page-lp-calbee-wari #main.l-main > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* デスクトップ表示で中央寄せに設定 */
@media (min-width: 1025px) {
  .l-content.l-container,
  .l-container,
  .l-content,
  main.l-main,
  #main.l-main,
  .l-main,
  #content.l-content.l-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
  
  /* 固定ページのメインコンテンツのみ全幅表示を維持 */
  .page-template-page-lp-calbee-wari-updated .l-content.l-container,
  .page-template-page-lp-calbee-wari .l-content.l-container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }
  
  /* 固定ページでもヘッダーとパンくずには余白を維持 */
  .page-template-page-lp-calbee-wari-updated .l-header__inner.l-container,
  .page-template-page-lp-calbee-wari .l-header__inner.l-container,
  .page-template-page-lp-calbee-wari-updated .l-fixHeader__inner.l-container,
  .page-template-page-lp-calbee-wari .l-fixHeader__inner.l-container {
    padding: 0 20px !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .p-breadcrumb__list.l-container,
  .page-template-page-lp-calbee-wari .p-breadcrumb__list.l-container {
    padding: 0 20px !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
  }
  
  /* 固定ページのパンくずとバナーセクションの間の余白を0pxに（パンくず自体の余白は維持） */
  
  .page-template-page-lp-calbee-wari-updated #content.l-content.l-container,
  .page-template-page-lp-calbee-wari #content.l-content.l-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* 固定ページのメイン要素の余白も0に */
  .page-template-page-lp-calbee-wari-updated #main.l-main,
  .page-template-page-lp-calbee-wari #main.l-main {
    margin-top: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* より具体的なセレクタで固定ページのメイン要素の余白を削除 */
  body.page-template-page-lp-calbee-wari-updated #main.l-main,
  body.page-template-page-lp-calbee-wari #main.l-main {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* 固定ページのlp-wrap要素の左右の余白も削除 */
  .page-template-page-lp-calbee-wari-updated .lp-wrap,
  .page-template-page-lp-calbee-wari .lp-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* 固定ページのバナーセクションを中央寄せにして余白を削除 */
  .page-template-page-lp-calbee-wari-updated .lp-hero,
  .page-template-page-lp-calbee-wari .lp-hero {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-wrap,
  .page-template-page-lp-calbee-wari .lp-wrap {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-hero-image-container,
  .page-template-page-lp-calbee-wari .lp-hero-image-container {
    text-align: center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: block !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-hero-img,
  .page-template-page-lp-calbee-wari .lp-hero-img {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }
  
  /* 既存のlp-heroセクションを強制的に中央寄せに修正 */
  .page-template-page-lp-calbee-wari-updated .lp-hero,
  .page-template-page-lp-calbee-wari .lp-hero {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-wrap,
  .page-template-page-lp-calbee-wari .lp-wrap {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: none !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-hero-image-container,
  .page-template-page-lp-calbee-wari .lp-hero-image-container {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  
  .page-template-page-lp-calbee-wari-updated .lp-hero-img,
  .page-template-page-lp-calbee-wari .lp-hero-img {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }
  
  /* デスクトップでの追加調整 */
  @media (min-width: 1025px) {
    .page-template-page-lp-calbee-wari-updated .lp-hero,
    .page-template-page-lp-calbee-wari .lp-hero {
      margin: 0 !important;
      padding: 0 !important;
      left: 0 !important;
      right: 0 !important;
      transform: none !important;
    }
  }
  
  
  /* 固定ページのメイン要素内の最初の要素の余白も0に */
  .page-template-page-lp-calbee-wari-updated #main.l-main > *:first-child,
  .page-template-page-lp-calbee-wari #main.l-main > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* 固定ページでは余白を追加しない（デフォルトで余白なし） */
.page-template-page-lp-calbee-wari-updated .l-mainContent__inner .p-homeContent,
.page-template-page-lp-calbee-wari .l-mainContent__inner .p-homeContent {
  margin-top: 0 !important;
}

/* TOPページと投稿ページのメインコンテンツに余白を追加（固定ページ以外） */
body:not(.page-template-page-lp-calbee-wari-updated):not(.page-template-page-lp-calbee-wari) .l-mainContent__inner .p-homeContent {
  margin-top: 20px !important;
}

/* 投稿ページのパンくずの下に余白を追加（固定ページ以外） */
body:not(.page-template-page-lp-calbee-wari-updated):not(.page-template-page-lp-calbee-wari) #breadcrumb.p-breadcrumb {
  margin-bottom: 20px !important;
}

/* 投稿ページのメインコンテンツの上に余白を追加（固定ページ以外） */
body:not(.page-template-page-lp-calbee-wari-updated):not(.page-template-page-lp-calbee-wari) #content.l-content.l-container {
  margin-top: 20px !important;
}

/* ヒーローセクションの背景色設定 - 完成版デザイン用 */
.lp-hero {
  background: #F6E18E !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* ヒーローセクションの影と枠線を完全に削除 */
.lp-hero,
.lp-hero *,
.lp-hero::before,
.lp-hero::after {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* スマホ用 - 背景を無くしてバナーを画面いっぱいに */
@media (max-width: 1024px) {
  .lp-hero {
    background: none !important;
  }
  
  .lp-hero .lp-wrap {
    padding: 0;
  }
  
  .lp-hero-img {
    width: 100vw !important;
    max-width: none !important;
    height: auto;
    border-radius: 0 !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  
  /* スマホでのラベルの最適化 */
  .badge {
    font-size: 0.8rem !important;
    padding: 6px 8px !important;
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: fit-content !important;
    min-width: auto !important;
    flex-shrink: 0;
  }
  
  /* 長いテキストのラベルは2行表示を許可 */
  .badge:contains("ルビープログラム") {
    white-space: normal !important;
    line-height: 1.2 !important;
    padding: 8px 10px !important;
    max-width: 200px !important;
  }
  
  /* lp-product-featuresの角丸を削除 */
  .lp-product-features,
  .lp-product-features *,
  .lp-product-features::before,
  .lp-product-features::after {
    border-radius: 0 !important;
  }
}

/* デスクトップ用 - ヒーローセクションの背景色 */
@media (min-width: 1025px) {
  .lp-hero {
    background: #F6E18E !important;
    padding: 30px 0;
    margin: 0 -50vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    position: relative;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  .lp-hero .lp-wrap {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .lp-hero-img {
    max-width: 100%;
    border-radius: 12px;
  }
  
  /* デスクトップでもlp-product-featuresの角丸を削除 */
  .lp-product-features,
  .lp-product-features *,
  .lp-product-features::before,
  .lp-product-features::after {
    border-radius: 0 !important;
  }
}

/* パスワード保護フォームのスタイリング */
.post-password-form {
  max-width: 400px;
  margin: 100px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.post-password-form p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.post-password-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.post-password-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.post-password-form input[type="password"]:focus {
  outline: none;
  border-color: #f75525;
}

.post-password-form input[type="submit"] {
  background: #f75525;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.post-password-form input[type="submit"]:hover {
  background: #e64a19;
}