@charset "utf-8";

/* ======================
   CSS Variables（森市テーマ）
   ====================== */
:root {
  --forest-dark:    #1E5C28;
  --forest-mid:     #2E7D44;
  --forest-bg:      #F0EDDE;
  --forest-cream:   #EDE8D5;
  --market-orange:  #B85200;

  --lp-primary:     #1E5C28;
  --lp-primary-dark:#1A4F22;
  --lp-accent:      #B85200;
  --lp-accent-dark: #9A4600;
  --lp-text-main:   #1A1A1A;
  --lp-text-sub:    #777777;
  --lp-white:       #FFFFFF;
  --lp-black:       #1A1A1A;
  --lp-bg-body:     #1E5C28;
  --lp-bg-main:     #F0EDDE;
  --lp-bg-alt:      #EDE8D5;

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

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

  --lp-max-width:    650px;
  --lp-max-width-pc: 650px;

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

  --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);

  --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); }
}

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

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

/* ======================
   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); }

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

/* ======================
   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;
}

/* ======================
   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;
}

/* ======================
   Button
   ====================== */
.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); }

/* ======================
   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;
}

/* ======================
   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;
}

/* ======================
   Animations
   ====================== */
.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);
}

.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; }

/* ==========================================
   森市テーマ - カスタムコンポーネント
   ========================================== */

/* Hero直下イントロ文 */
.mori-intro {
  background: var(--forest-bg);
  padding: 28px 24px;
  font-size: 1.4rem;
  line-height: 2;
  color: #1A1A1A;
  text-align: center;
  border-bottom: 2px solid #D5CEB8;
}

/* Info table */
.mori-info-tbl {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 20px;
  font-size: 1.4rem;
}

.mori-info-tbl th {
  background: var(--forest-dark);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  width: 26%;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.mori-info-tbl td {
  background: #fff;
  padding: 14px 16px;
  color: #1A1A1A;
  border-bottom: 1px solid #E5DFD0;
  vertical-align: middle;
  line-height: 1.7;
}

.mori-campaign-sub {
  text-align: center;
  font-size: 1.35rem;
  color: #444;
  line-height: 1.9;
}

/* 購入パターンカード（デスクトップ: 3カラム） */
.mori-pattern-wrap {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 8px 0 24px;
  align-items: stretch;
}

.mori-pcard {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.mori-pcard__head {
  background: var(--forest-mid);
  color: #fff;
  padding: 10px 6px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.4;
}

.mori-pcard--feature .mori-pcard__head {
  background: var(--forest-dark);
}

.mori-pcard__tag {
  display: inline-block;
  margin: 8px 6px 0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  background: #E8F5E9;
  color: var(--forest-dark);
  line-height: 1.5;
}

.mori-pcard__tag--warn {
  background: #FFF3E0;
  color: #B45309;
}

.mori-pcard__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 10px 8px 6px;
}

.chip {
  width: 30%;
  height: 44px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  background: var(--forest-mid);
  flex-shrink: 0;
}

.chip--normal { background: #BDBDBD; }

.chip--generic {
  background: var(--market-orange);
  min-width: 30px;
  width: auto;
  padding: 0 8px;
  font-size: 1.1rem;
  border-radius: 20px;
}

.mori-pcard__price {
  padding: 6px 6px 14px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--market-orange);
  line-height: 1.4;
  margin-top: auto;
}

.mori-pcard__price-sub {
  display: block;
  font-size: 1.2rem;
  color: #888;
  font-weight: 400;
}

/* 注意ボックス */
.mori-note-box {
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 1.25rem;
  color: #5d4037;
  line-height: 1.85;
}

.mori-note-box__title {
  font-weight: 900;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

/* モバイル ≤480px: パターンカード 1カラム左右分割 */
@media (max-width: 480px) {
  .mori-pattern-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .mori-pcard {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    text-align: left;
  }

  .mori-pcard__head {
    grid-column: 1;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    font-size: 1.35rem;
    line-height: 1.4;
  }

  .mori-pcard__tag {
    grid-column: 2;
    grid-row: 1;
    margin: 10px 14px 0;
    align-self: start;
  }

  .mori-pcard__chips {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    padding: 6px 14px 4px;
  }

  .mori-pcard__price {
    grid-column: 2;
    grid-row: 3;
    text-align: left;
    padding: 4px 14px 12px;
    margin-top: 0;
    font-size: 1.55rem;
  }

  .mori-pcard__price-sub {
    display: inline;
    font-size: 1.2rem;
  }
}

/* モバイル ≤639px: テキスト左寄せ・改行制御 */
@media (max-width: 639px) {
  .mori-info-tbl { font-size: 1.25rem; }
  .mori-info-tbl th {
    width: 28%;
    padding: 10px 10px;
    white-space: normal;
    word-break: keep-all;
    font-size: 1.2rem;
  }
  .mori-info-tbl td { padding: 10px 12px; }

  .mori-intro br { display: none; }
  .mori-intro { text-align: left; }

  .mori-note-box br { display: none; }

  .lp-section-head,
  .lp-section-head__en,
  .lp-section-head__title { text-align: left; }

  .lp-notes__title { text-align: left; }

  .mori-campaign-sub { text-align: left; }
}
