@charset "utf-8";

/* ==============================================
   森フェス MIDSUMMER 2608 — W2本番用スタンドアロンCSS
   (base.css + components.css + animations.css + theme をマージ済み)
   ============================================== */


/* ==============================================
   LP Base System — こどもの森 e-shop
   既存38キャンペーンから抽出した共通基盤CSS
   ============================================== */

/* ======================
   CSS Variables（テーマ）
   各LPで :root を上書きしてカスタム可能
   ====================== */
:root {
  /* --- Brand Colors --- */
  --lp-primary:     #2996CC;
  --lp-primary-dark:#1A6FA0;
  --lp-accent:      #F74E10;
  --lp-accent-dark: #D94310;

  /* --- Text --- */
  --lp-text-main:   #1A1A1A;
  --lp-text-sub:    #777777;
  --lp-white:       #FFFFFF;
  --lp-black:       #1A1A1A;

  /* --- Background --- */
  --lp-bg-body:     #1A1A1A;
  --lp-bg-main:     #FFFFFF;
  --lp-bg-alt:      #F5F5F5;

  /* --- Typography --- */
  --lp-font-base:   'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --lp-font-en:     'Inter', 'Helvetica Neue', sans-serif;

  /* --- Spacing --- */
  --lp-section-py:    56px;
  --lp-section-px:    24px;
  --lp-section-py-pc: 72px;
  --lp-section-px-pc: 48px;

  /* --- Layout --- */
  --lp-max-width:    650px;
  --lp-max-width-pc: 650px;

  /* --- Radius --- */
  --lp-radius-sm:  8px;
  --lp-radius-md:  16px;
  --lp-radius-lg:  20px;
  --lp-radius-pill:60px;

  /* --- Shadow --- */
  --lp-shadow-card:  0 4px 20px rgba(0,0,0,.08);
  --lp-shadow-hover: 0 12px 36px rgba(0,0,0,.14);
  --lp-shadow-wrap:  0 0 40px rgba(0,0,0,.18);

  /* --- Transition --- */
  --lp-ease: cubic-bezier(.25, 1, .5, 1);
  --lp-duration: .8s;
}

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

html {
  font-size: 62.5%;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--lp-font-base);
  font-size: 1.4rem;
  color: var(--lp-text-main);
  background: var(--lp-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

li { list-style: none; }

a {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ======================
   W2 Vendor Overrides
   ====================== */
.global-header,
.l-header,
.p-header,
.p-product-list__category-title { display: none; }

.global-contents__inner {
  width: 100% !important;
  padding: 0 !important;
}

#tblLayout { width: 100% !important; }

table { border-collapse: collapse; margin: 0; padding: 0; }
td, th { padding: 0; margin: 0; }

main + div { display: none; }

/* ======================
   Responsive Utilities
   ====================== */
.sp-only { display: block; }
.pc-only { display: none; }

@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: block; }
}

/* ======================
   LP Wrapper
   ====================== */
.lp-wrap {
  width: 100%;
  max-width: var(--lp-max-width);
  margin: 0 auto;
  overflow: hidden;
  background: var(--lp-bg-main);
  box-shadow: var(--lp-shadow-wrap);
}

@media (min-width: 640px) {
  .lp-wrap {
    max-width: var(--lp-max-width-pc);
  }
}


/* ==============================================
   LP Components — 再利用可能コンポーネント集
   既存38キャンペーンの共通パターンを抽出
   ============================================== */

/* ======================
   1. Hero Section
   ====================== */
.lp-hero {
  position: relative;
  overflow: hidden;
}

.lp-hero__kv img {
  display: block;
  width: 100%;
}

.lp-hero__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lp-black);
  padding: 14px var(--lp-section-px);
  border-top: 1px solid rgba(255,255,255,.07);
}

.lp-hero__bar-text {
  color: var(--lp-white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .1em;
}

/* ======================
   2. Section Base
   ====================== */
.lp-section {
  padding: var(--lp-section-py) var(--lp-section-px);
}

.lp-section--white { background: var(--lp-white); }
.lp-section--alt   { background: var(--lp-bg-alt); }
.lp-section--dark  { background: var(--lp-black); color: var(--lp-white); }

.lp-section--center { text-align: center; }

@media (min-width: 640px) {
  .lp-section {
    padding: var(--lp-section-py-pc) var(--lp-section-px-pc);
  }
}

/* ======================
   3. Section Header
   ====================== */
.lp-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.lp-section-head__en {
  display: block;
  font-family: var(--lp-font-en);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 6px;
}

.lp-section-head__title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--lp-text-main);
  letter-spacing: .1em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.lp-section-head__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: var(--lp-accent);
  border-radius: 2px;
}

/* ======================
   4. Lead Section（共感ゾーン）
   ====================== */
.lp-lead {
  background: var(--lp-white);
  text-align: center;
  padding: 52px var(--lp-section-px) 56px;
}

.lp-lead__badge {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: 30px;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.lp-lead__title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--lp-text-main);
  line-height: 1.45;
  letter-spacing: .04em;
  margin-bottom: 28px;
}

.lp-lead__title em {
  font-style: normal;
  color: var(--lp-accent);
}

.lp-lead__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: var(--lp-bg-alt);
  border: 2px solid #E0E0E0;
  border-radius: var(--lp-radius-lg);
  padding: 14px 32px;
  margin-bottom: 28px;
}

.lp-lead__stat-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lp-text-sub);
  margin-right: 6px;
}

.lp-lead__stat-value {
  font-size: 5.2rem;
  font-weight: 900;
  color: var(--lp-accent);
  line-height: 1;
}

.lp-lead__stat-unit {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--lp-accent);
}

.lp-lead__stat-suffix {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--lp-accent);
  margin-left: 2px;
}

.lp-lead__desc {
  font-size: 1.4rem;
  color: var(--lp-text-sub);
  line-height: 2;
}

@media (min-width: 640px) {
  .lp-lead__title { font-size: 3.4rem; }
  .lp-lead__stat-value { font-size: 6rem; }
}

/* ======================
   5. Tier Card（割引・特典カード）
   ====================== */
.lp-tier-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-tier-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}

.lp-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-hover);
}

/* Top color accent bar */
.lp-tier-card::before {
  content: "";
  display: block;
  height: 8px;
  background: var(--tier-color, var(--lp-accent));
}

/* Tier color variants */
.lp-tier-card--1 { --tier-color: #3A9E65; }
.lp-tier-card--2 { --tier-color: #2E86B5; }
.lp-tier-card--3 {
  --tier-color: var(--lp-accent);
  box-shadow: 0 6px 28px rgba(247,78,16,.18);
}
.lp-tier-card--3::before { height: 10px; }

.lp-tier-card__best-bar {
  background: var(--lp-black);
  color: var(--lp-white);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .2em;
  padding: 5px 16px;
}

.lp-tier-card__inner {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  gap: 24px;
}

.lp-tier-card__point {
  flex-shrink: 0;
  text-align: center;
  min-width: 72px;
}

.lp-tier-card__point-num {
  display: block;
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--tier-color);
  line-height: 1;
}

.lp-tier-card__point-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-text-sub);
  margin-top: 2px;
  white-space: nowrap;
}

.lp-tier-card__sep {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #E0E0E0 30%, #E0E0E0 70%, transparent);
  flex-shrink: 0;
}

.lp-tier-card__body {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.lp-tier-card__value {
  font-size: 6rem;
  font-weight: 900;
  color: var(--tier-color);
  line-height: 1;
  letter-spacing: -.02em;
}

.lp-tier-card__value span {
  font-size: 3rem;
}

.lp-tier-card__off {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--tier-color);
}

@media (min-width: 640px) {
  .lp-tier-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lp-tier-list--3col {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-tier-card__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 32px;
    gap: 16px;
  }

  .lp-tier-card__sep {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, #E0E0E0 30%, #E0E0E0 70%, transparent);
  }

  .lp-tier-card__body {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .lp-tier-card__value { font-size: 5.2rem; }
  .lp-tier-card--3 .lp-tier-card__value { font-size: 6rem; }
  .lp-tier-card__point-num { font-size: 3.6rem; }
}

/* ======================
   6. Feature Card（商品特徴・ポイント）
   ====================== */
.lp-feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-feature-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-md);
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
}

.lp-feature-card__img img {
  display: block;
  width: 100%;
}

.lp-feature-card__body {
  padding: 24px;
}

.lp-feature-card__num {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-white);
  font-size: 1.2rem;
  font-weight: 900;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 12px;
}

.lp-feature-card__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--lp-text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.lp-feature-card__desc {
  font-size: 1.4rem;
  color: var(--lp-text-sub);
  line-height: 1.9;
}

@media (min-width: 640px) {
  .lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ======================
   7. Step（ステップ・手順）
   ====================== */
.lp-step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.lp-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--lp-bg-alt);
  border-radius: var(--lp-radius-md);
  padding: 20px 24px;
  text-align: left;
}

.lp-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--lp-accent);
  color: var(--lp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
}

.lp-step__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-text-main);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .lp-step-list {
    flex-direction: row;
    max-width: 100%;
    gap: 12px;
  }

  .lp-step {
    flex-direction: column;
    flex: 1;
    text-align: center;
    padding: 28px 16px;
    align-items: center;
  }
}

/* ======================
   8. Benefit Card（特典・メリット）
   ====================== */
.lp-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-benefit-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-md);
  padding: 28px 24px;
  box-shadow: var(--lp-shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-benefit-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--lp-accent);
  color: var(--lp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
}

.lp-benefit-card__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--lp-text-main);
  margin-bottom: 8px;
}

.lp-benefit-card__desc {
  font-size: 1.3rem;
  color: var(--lp-text-sub);
  line-height: 1.8;
}

@media (min-width: 640px) {
  .lp-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ======================
   9. Info Bubble（ハイライト情報）
   ====================== */
.lp-info-bubble {
  background: var(--lp-bg-alt);
  border-left: 4px solid var(--lp-primary);
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.lp-info-bubble--accent {
  border-left-color: var(--lp-accent);
}

.lp-info-bubble__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lp-text-main);
  margin-bottom: 8px;
}

.lp-info-bubble__text {
  font-size: 1.3rem;
  color: var(--lp-text-sub);
  line-height: 1.8;
}

/* ======================
   10. Deadline Banner
   ====================== */
.lp-deadline {
  background: var(--lp-black);
  color: var(--lp-white);
  text-align: center;
  padding: 44px var(--lp-section-px);
  position: relative;
  overflow: hidden;
}

.lp-deadline__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .2em;
  opacity: .45;
  margin-bottom: 12px;
}

.lp-deadline__date {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
}

.lp-deadline__date span {
  font-size: 2.2rem;
}

@media (min-width: 640px) {
  .lp-deadline__date { font-size: 5.2rem; }
  .lp-deadline__date span { font-size: 2.8rem; }
}

/* ======================
   11. CTA Section
   ====================== */
.lp-cta {
  background: var(--lp-bg-alt);
  padding: var(--lp-section-py) var(--lp-section-px) 64px;
  text-align: center;
}

.lp-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--lp-text-main);
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.lp-cta__lead {
  font-size: 1.4rem;
  color: var(--lp-text-sub);
  margin-bottom: 32px;
  line-height: 1.8;
}

.lp-cta__lead strong {
  color: var(--lp-accent);
  font-weight: 900;
}

/* ======================
   12. Buttons
   ====================== */
.lp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--lp-accent);
  color: var(--lp-white);
  padding: 22px 28px;
  border-radius: var(--lp-radius-pill);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .06em;
  max-width: 480px;
  margin: 0 auto;
  transition: opacity .3s, transform .2s;
  border: none;
  cursor: pointer;
}

.lp-btn::after {
  content: "→";
  font-size: 1.6rem;
  transition: transform .2s;
}

.lp-btn:hover {
  opacity: .9;
}

.lp-btn:hover::after {
  transform: translateX(4px);
}

.lp-btn:active {
  transform: scale(.97);
}

/* Button Variants */
.lp-btn--primary {
  background: var(--lp-primary);
  box-shadow: 0 6px 28px rgba(41,150,204,.35);
}

.lp-btn--primary:hover {
  box-shadow: 0 10px 36px rgba(41,150,204,.45);
}

.lp-btn--outline {
  background: transparent;
  border: 3px solid var(--lp-accent);
  color: var(--lp-accent);
  box-shadow: none;
}

.lp-btn--outline:hover {
  background: var(--lp-accent);
  color: var(--lp-white);
  opacity: 1;
}

.lp-btn--small {
  font-size: 1.4rem;
  padding: 16px 24px;
  max-width: 360px;
}

/* ======================
   13. Social Proof（レビュー・SNS）
   ====================== */
.lp-review {
  background: var(--lp-bg-alt);
  border-radius: var(--lp-radius-md);
  padding: 24px;
  margin-bottom: 16px;
}

.lp-review__stars {
  color: #F5C518;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.lp-review__text {
  font-size: 1.3rem;
  color: var(--lp-text-main);
  line-height: 1.9;
  margin-bottom: 12px;
}

.lp-review__author {
  font-size: 1.2rem;
  color: var(--lp-text-sub);
  text-align: right;
}

/* ======================
   14. Notes / Disclaimer
   ====================== */
.lp-notes {
  background: var(--lp-white);
  padding: 48px var(--lp-section-px) 56px;
  border-top: 1px solid #E8E0D0;
}

.lp-notes__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--lp-text-main);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #E8E0D0;
  letter-spacing: .06em;
}

.lp-notes__list li {
  font-size: 1.25rem;
  color: #888;
  line-height: 1.9;
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 6px;
}

.lp-notes__list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #bbb;
}

/* ======================
   15. Footer
   ====================== */
.lp-footer {
  background: var(--lp-black);
  color: rgba(255,255,255,.35);
  padding: 28px var(--lp-section-px);
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: .04em;
}

/* ======================
   16. Product Grid（商品一覧）
   ====================== */
.lp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-product-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-sm);
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
  transition: transform .3s ease;
}

.lp-product-card:hover {
  transform: translateY(-4px);
}

.lp-product-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lp-product-card__body {
  padding: 12px;
}

.lp-product-card__brand {
  font-size: 1rem;
  color: var(--lp-text-sub);
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.lp-product-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-text-main);
  line-height: 1.4;
  margin-bottom: 8px;
}

.lp-product-card__price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--lp-accent);
}

.lp-product-card__price-original {
  font-size: 1.1rem;
  color: var(--lp-text-sub);
  text-decoration: line-through;
  margin-left: 8px;
}

@media (min-width: 640px) {
  .lp-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ======================
   17. FAQ Accordion
   ====================== */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq {
  background: var(--lp-white);
  border-radius: var(--lp-radius-sm);
  box-shadow: var(--lp-shadow-card);
  overflow: hidden;
}

.lp-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-text-main);
}

.lp-faq__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: var(--lp-primary);
  color: var(--lp-white);
  font-weight: 900;
  border-radius: 50%;
  font-size: 1.3rem;
}

.lp-faq__q::after {
  content: "+";
  margin-left: auto;
  font-size: 2rem;
  color: var(--lp-text-sub);
  transition: transform .3s;
}

.lp-faq.is-open .lp-faq__q::after {
  transform: rotate(45deg);
}

.lp-faq__a {
  padding: 0 24px 0 72px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 1.4rem;
  color: var(--lp-text-sub);
  line-height: 1.9;
}

.lp-faq.is-open .lp-faq__a {
  max-height: 500px;
  padding: 0 24px 24px 72px;
}


/* ==============================================
   LP Animations — スクロールアニメーション
   ============================================== */

/* ======================
   Fade In（下からフェード）
   ====================== */
.lp-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--lp-duration) var(--lp-ease),
              transform var(--lp-duration) var(--lp-ease);
}

.lp-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger（子要素の連続表示） */
.lp-fadein:nth-child(2) { transition-delay: .1s; }
.lp-fadein:nth-child(3) { transition-delay: .2s; }
.lp-fadein:nth-child(4) { transition-delay: .3s; }
.lp-fadein:nth-child(5) { transition-delay: .4s; }
.lp-fadein:nth-child(6) { transition-delay: .5s; }

/* ======================
   Slide In Left
   ====================== */
.lp-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--lp-duration) var(--lp-ease),
              transform var(--lp-duration) var(--lp-ease);
}

.lp-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ======================
   Slide In Right
   ====================== */
.lp-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--lp-duration) var(--lp-ease),
              transform var(--lp-duration) var(--lp-ease);
}

.lp-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ======================
   Scale In（拡大表示）
   ====================== */
.lp-scale-in {
  opacity: 0;
  transform: scale(.85);
  transition: opacity var(--lp-duration) var(--lp-ease),
              transform var(--lp-duration) var(--lp-ease);
}

.lp-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ======================
   Pulse（CTA注目アニメ）
   ====================== */
@keyframes lp-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.lp-pulse {
  animation: lp-pulse 2.5s ease-in-out infinite;
}

/* ======================
   Bounce（ポヨン）
   ====================== */
@keyframes lp-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-12px); }
  60%  { transform: translateY(-6px); }
}

.lp-bounce {
  animation: lp-bounce 2s ease infinite;
}

/* ======================
   Gradient Shine（光沢）
   ====================== */
@keyframes lp-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.lp-shine {
  background: linear-gradient(
    90deg,
    var(--lp-accent) 0%,
    rgba(255,255,255,.4) 50%,
    var(--lp-accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: lp-shine 3s linear infinite;
}


/* ==============================================
   森フェス MIDSUMMER 2608 — テーマCSS
   テーマ: クリーム × フレイムレッド／オレンジ
   方針: グラデーション・ドロップシャドウ・光るボタンは使用しない。
         色面と太いアウトラインでフラットに構成する。
   ============================================== */

/* --- テーマカラー上書き --- */
:root {
  --lp-primary:      #C62E22;
  --lp-primary-dark: #9E2318;
  --lp-accent:       #F2801F;
  --lp-accent-dark:  #D9690F;

  --lp-text-main:    #2B1810;
  --lp-text-sub:     #8A7A6C;
  --lp-white:        #FFFFFF;
  --lp-black:        #2B1810;

  --lp-bg-body:      #F7F1E3;
  --lp-bg-main:      #FFFFFF;
  --lp-bg-alt:       #FBEEDA;

  /* シャドウは使用しない方針のため無効化 */
  --lp-shadow-card:  none;
  --lp-shadow-hover: none;
  --lp-shadow-wrap:  none;
}

/* --- Hero: 添付バナー画像をそのままH1として扱う --- */
.mfms-hero__h1 {
  margin: 0;
  line-height: 0;
}

/* ======================
   熱い夏を表現する炎のディバイダー
   （色面 + アウトラインのみ／グラデーション・ぼかしなし）
   ====================== */
.mfms-flame-divider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 0 var(--lp-section-px) 18px;
  background: var(--lp-bg-main);
}

.mfms-flame {
  display: block;
  width: 30px;
  height: 40px;
  background: var(--flame-color, var(--lp-accent));
  clip-path: polygon(
    50% 0%, 66% 18%, 84% 10%, 78% 32%,
    97% 44%, 74% 54%, 82% 76%, 56% 66%,
    50% 100%, 44% 66%, 18% 76%, 26% 54%,
    3% 44%, 22% 32%, 16% 10%, 34% 18%
  );
  animation: mfms-flicker 2.6s ease-in-out infinite;
  transform-origin: bottom center;
}

.mfms-flame--1 { --flame-color: #F2801F; height: 30px; animation-delay: 0s; }
.mfms-flame--2 { --flame-color: #C62E22; height: 40px; animation-delay: .4s; }
.mfms-flame--3 { --flame-color: #9E2318; height: 48px; animation-delay: .8s; }

@keyframes mfms-flicker {
  0%, 100% { transform: scaleY(1) skewX(0deg); }
  30%      { transform: scaleY(1.08) skewX(-3deg); }
  60%      { transform: scaleY(.96) skewX(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mfms-flame { animation: none; }
}

/* --- Lead --- */
.lp-lead__badge {
  background: var(--lp-primary);
  color: var(--lp-white);
  letter-spacing: .14em;
}

.lp-lead__title em {
  font-style: normal;
  color: var(--lp-primary);
}

.lp-lead__stat {
  background: var(--lp-bg-alt);
  border: 3px solid var(--lp-primary);
  border-radius: 16px;
}
.lp-lead__stat-value,
.lp-lead__stat-unit,
.lp-lead__stat-suffix {
  color: var(--lp-primary);
}

/* --- Tier セクション --- */
.lp-section--alt {
  background: var(--lp-bg-alt);
}

.lp-section-head__title::after {
  background: var(--lp-primary);
}
.lp-section-head__en {
  color: var(--lp-primary);
  opacity: .7;
}

/* カードはシャドウの代わりに太めのアウトラインで区切る */
.lp-tier-card {
  border: 3px solid var(--lp-text-main);
}
.lp-tier-card:hover {
  transform: translateY(-4px);
}

/* 区切り線はグラデーションを使わず単色（低濃度）で表現する */
.lp-tier-card__sep {
  background: rgba(43,24,16,.15);
}

.lp-tier-card--1 { --tier-color: #872B20; }
.lp-tier-card--2 { --tier-color: #B03828; }
.lp-tier-card--3 { --tier-color: #D44330; }

/* --- Step --- */
.lp-step {
  background: var(--lp-bg-alt);
  border: 2px solid #EAD9BC;
}
.lp-step__num {
  background: var(--lp-primary);
}
.lp-step__text {
  font-size: 1.5rem;
}
@media (min-width: 640px) {
  .lp-step__text {
    font-size: 1.4rem;
  }
}

/* ======================
   Deadline: 陽炎（かげろう）風の立ちのぼる粒アニメーション
   ====================== */
.mfms-deadline {
  position: relative;
  overflow: hidden;
  background: var(--lp-primary);
}

.mfms-heat-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mfms-heat-particles span {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  animation: mfms-rise 4.5s ease-in infinite;
}
.mfms-heat-particles span:nth-child(1) { left: 12%; animation-delay: 0s; }
.mfms-heat-particles span:nth-child(2) { left: 30%; animation-delay: .9s; width: 4px; height: 4px; }
.mfms-heat-particles span:nth-child(3) { left: 50%; animation-delay: 1.8s; }
.mfms-heat-particles span:nth-child(4) { left: 68%; animation-delay: 2.7s; width: 5px; height: 5px; }
.mfms-heat-particles span:nth-child(5) { left: 86%; animation-delay: 3.6s; }

@keyframes mfms-rise {
  0%   { transform: translateY(0);     opacity: 0; }
  15%  { opacity: .8; }
  100% { transform: translateY(-140px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mfms-heat-particles span { animation: none; display: none; }
}

.lp-deadline__label { color: rgba(255,255,255,.7); }
.lp-deadline__date  { color: var(--lp-white); position: relative; z-index: 1; }

/* --- CTA（光らせない：フラットな単色ボタンのまま） --- */
.lp-cta {
  background: var(--lp-bg-alt);
}
.lp-btn {
  background: var(--lp-primary);
  color: var(--lp-white);
  border-radius: 14px;
}
.lp-btn:hover {
  opacity: .88;
}

/* --- Notes / Footer --- */
.lp-notes {
  border-top-color: #EAD9BC;
}
.lp-footer {
  background: var(--lp-text-main);
}
