@charset "utf-8";

/* ==============================================
   Early Summer SALE (early_summer_sale_2604)
   Merged Standalone CSS — base + components + animations + theme
   ============================================== */

/* ======================
   CSS Variables（Summerテーマ）
   ====================== */
:root {
  --lp-primary:      #0097B2;
  --lp-primary-dark: #007A91;
  --lp-accent:       #F74E10;
  --lp-accent-dark:  #D94310;

  --lp-text-main:    #1A1A1A;
  --lp-text-sub:     #666666;
  --lp-white:        #FFFFFF;
  --lp-black:        #1A1A1A;

  --lp-bg-body:      #EBD33D6E;
  --lp-bg-main:      #FFFDF5;
  --lp-bg-alt:       #F5EEE0;

  --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:    640px;
  --lp-max-width-pc: 800px;

  --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,.15);

  --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
   ====================== */
.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: 16px;
  background: var(--lp-primary);
  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; }
.lp-hero__bar-date  { color: #FFE066; }

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

/* ======================
   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-primary); 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-primary); border-radius: 2px;
}

/* ======================
   Lead Section
   ====================== */
.lp-lead {
  background: linear-gradient(180deg, #FFFDF5 0%, #F5EEE0 100%);
  text-align: center;
  padding: 72px 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: #FFF0EB; border: 2px solid #FAC0AA;
  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; }
}

/* ======================
   Steps
   ====================== */
.lp-step-list { display: flex; flex-direction: column; gap: 28px; 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; position: relative;
}
.lp-step__num {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--lp-primary); color: var(--lp-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em;
}
.lp-step__text { font-size: 1.5rem; font-weight: 700; color: var(--lp-text-main); line-height: 1.5; }

/* Step 連結矢印（SP） */
.lp-step-list .lp-step:not(:last-child)::after {
  content: "↓";
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 2rem; color: var(--lp-primary); font-weight: 900;
}

@media (min-width: 640px) {
  .lp-step-list { flex-direction: row; max-width: 100%; gap: 20px; }
  .lp-step { flex-direction: column; flex: 1; text-align: center; padding: 28px 16px; align-items: center; }
  .lp-step-list .lp-step:not(:last-child)::after {
    content: "→";
    bottom: auto; top: 50%; left: auto; right: -18px;
    transform: translateY(-50%);
  }
}

/* ======================
   セクション余白バリアント
   ====================== */
.lp-section--compact {
  padding-top: 28px;
}

/* ======================
   クーポンボックス（カスタム）
   ====================== */
.coupon-box {
  position: relative;
  background: #FFFFFF;
  border: 3px dashed var(--lp-accent);
  border-radius: 20px;
  padding: 36px 28px 28px;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(247, 78, 16, .12);
}

/* "COUPON" ラベル */
.coupon-box::before {
  content: "COUPON";
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--lp-accent); color: #fff;
  font-size: 1.15rem; font-weight: 900; letter-spacing: .22em;
  padding: 5px 24px; border-radius: 30px; white-space: nowrap;
}

.coupon-box__lead {
  font-size: 1.3rem; color: var(--lp-text-sub); margin-bottom: 16px; line-height: 1.6;
}

.coupon-box__code {
  background: var(--lp-bg-alt); border-radius: 10px; padding: 18px 20px; margin-bottom: 16px;
}

.coupon-box__code-text {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 3rem; font-weight: 900; color: var(--lp-accent); letter-spacing: .14em; display: block;
}

.coupon-box__discount { font-size: 1.5rem; color: var(--lp-text-main); font-weight: 700; }
.coupon-box__discount strong { color: var(--lp-accent); font-weight: 900; font-size: 1.8rem; }

/* コピーヒント & ホバー */
.coupon-box__code {
  cursor: pointer;
  transition: background .2s, transform .15s;
  user-select: none;
}
.coupon-box__code:hover,
.coupon-box__code:active {
  background: #FDEBD8;
  transform: scale(.98);
}
.coupon-box__copy-hint {
  display: block;
  font-size: 1.1rem;
  color: var(--lp-text-sub);
  margin-top: 4px;
  letter-spacing: .06em;
}

/* コピー完了トースト */
.coupon-copy-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: #1A1A1A;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 9999;
  white-space: nowrap;
  animation: toast-in-out 2s ease forwards;
}
@keyframes toast-in-out {
  0%   { opacity: 0; transform: translateX(-50%) translateY(12px); }
  15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ======================
   Deadline Banner
   ====================== */
.lp-deadline {
  background: linear-gradient(135deg, #007A91 0%, var(--lp-primary) 50%, #00C3E3 100%);
  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: .55; 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; }
}

/* ======================
   CTA Section
   ====================== */
.lp-cta {
  background: linear-gradient(180deg, #F5EEE0 0%, #E8F6F9 100%);
  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-primary); 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, box-shadow .3s;
  box-shadow: 0 6px 28px rgba(0, 151, 178, .40);
  border: none; cursor: pointer;
}
.lp-btn::after { content: "→"; font-size: 1.6rem; transition: transform .2s; }
.lp-btn:hover  { opacity: .9; box-shadow: 0 10px 36px rgba(0, 151, 178, .55); }
.lp-btn:hover::after { transform: translateX(4px); }
.lp-btn:active { transform: scale(.97); }

/* ======================
   Notes
   ====================== */
.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: #1A2A2E; 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; }

.lp-scale-in { opacity: 0; transform: scale(.88); 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); }

@keyframes lp-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.lp-pulse { animation: lp-pulse 2.5s ease-in-out infinite; }
