@charset "utf-8";

/* ==============================================
   outlet_top — スタンドアロンCSS（本番用）
   base.css + components.css + animations.css + theme
   ============================================== */

/* ============================================================
   1. BASE（_system/base.css より）
   ============================================================ */

/* CSS Variables */
:root {
  --lp-primary:     #2996CC;
  --lp-primary-dark:#1A6FA0;
  --lp-accent:      #F74E10;
  --lp-accent-dark: #D94310;
  --lp-text-main:   #1A1A1A;
  --lp-text-sub:    #777777;
  --lp-white:       #FFFFFF;
  --lp-black:       #1A1A1A;
  --lp-bg-body:     #1A1A1A;
  --lp-bg-main:     #FFFFFF;
  --lp-bg-alt:      #F5F5F5;
  --lp-font-base:   'Noto Sans JP', '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 60px rgba(0,0,0,.45);
  --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; }
/* W2グローバルのa:hover opacity打ち消し */
.lp-wrap a:hover { opacity: 1; }
.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); }
}

/* ============================================================
   2. COMPONENTS（_system/components.css より・使用分のみ）
   ============================================================ */

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

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

/* 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__desc { font-size: 1.4rem; color: var(--lp-text-sub); line-height: 2; }
@media (min-width: 640px) {
  .lp-lead__title { font-size: 3.4rem; }
}

/* 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, box-shadow .3s;
  box-shadow: 0 6px 28px rgba(247,78,16,.35); 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(247,78,16,.45); }
.lp-btn:hover::after { transform: translateX(4px); }
.lp-btn:active { transform: scale(.97); }
.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; }

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

/* ============================================================
   3. ANIMATIONS（_system/animations.css より）
   ============================================================ */

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

/* ============================================================
   4. THEME（outlet_top テーマ上書き）
   ============================================================ */

:root {
  --lp-primary:      #C0392B;
  --lp-primary-dark: #922B21;
  --lp-accent:       #1A1A1A;
  --lp-accent-dark:  #000000;
  --lp-bg-body:      #F5EFE6;
  --lp-bg-main:      #FDFAF5;
  --lp-bg-alt:       #F0EAE0;
  --lp-shadow-card:  0 1px 6px rgba(0,0,0,.05);
  --lp-shadow-hover: 0 4px 16px rgba(0,0,0,.08);
  --lp-shadow-wrap:  0 0 24px rgba(0,0,0,.12);
}

/* Hero KV プレースホルダー */
.lp-hero__kv-placeholder {
  background: linear-gradient(150deg, #D63031 0%, #C0392B 50%, #922B21 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 280px; padding: 40px 24px; text-align: center; position: relative; overflow: hidden;
}
.lp-hero__kv-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.lp-hero__outlet-label {
  display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 1.1rem; font-weight: 900; letter-spacing: .3em;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 16px; position: relative;
}
.lp-hero__outlet-title { font-size: 5.6rem; font-weight: 900; color: #fff; letter-spacing: .08em; line-height: 1; position: relative; }
.lp-hero__outlet-sub { font-size: 1.4rem; color: rgba(255,255,255,.6); letter-spacing: .1em; margin-top: 12px; position: relative; }
@media (min-width: 640px) {
  .lp-hero__kv-placeholder { min-height: 360px; }
  .lp-hero__outlet-title { font-size: 8rem; }
}

/* Lead */
.lp-lead { background: #FDFAF5; border-bottom: 1px solid #E8E0D4; }

/* Price section */
.lp-price-section { background: #F0EAE0; padding: var(--lp-section-py) var(--lp-section-px); }
.lp-price-section .lp-section-head__en { color: #C0392B; }
.lp-price-section .lp-section-head__title { color: #1A1A1A; }
.lp-price-section .lp-section-head__title::after { background: #C0392B; }

.lp-price-hero-btn {
  display: block; background: #C0392B; color: #fff; text-align: center;
  padding: 36px 24px 32px; border-radius: 20px; font-weight: 900; letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(192,57,43,.2); position: relative; overflow: hidden;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease);
}
.lp-price-hero-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(192,57,43,.28); opacity: 1; }
.lp-price-hero-btn:active { transform: scale(.97); }

.lp-price-hero-btn__tag {
  display: inline-block; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.1rem; letter-spacing: .2em; padding: 4px 16px; border-radius: 30px; margin-bottom: 14px;
}
.lp-price-hero-btn__price { display: block; font-size: 5.2rem; line-height: 1; margin-bottom: 10px; }
.lp-price-hero-btn__price span { font-size: 2.8rem; }
.lp-price-hero-btn__sub { display: block; font-size: 1.5rem; opacity: .88; margin-bottom: 20px; }
.lp-price-hero-btn__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; font-size: 1.4rem; font-weight: 900; padding: 10px 24px; border-radius: 30px; transition: background .2s;
}
.lp-price-hero-btn:hover .lp-price-hero-btn__cta { background: rgba(255,255,255,.22); }
.lp-price-hero-btn__arrow { display: inline-block; transition: transform .25s; }
.lp-price-hero-btn:hover .lp-price-hero-btn__arrow { transform: translateX(5px); }

.lp-price-btn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.lp-price-btn {
  display: block; background: #FEFCF8; border: 2px solid #C0392B; color: #C0392B;
  text-align: center; padding: 18px 12px; border-radius: 12px;
  font-size: 1.6rem; font-weight: 900; letter-spacing: .04em; transition: background .2s, color .2s;
}
.lp-price-btn:hover { background: #C0392B; color: #fff; }

@media (min-width: 640px) {
  .lp-price-hero-btn__price { font-size: 7rem; }
  .lp-price-hero-btn__price span { font-size: 3.6rem; }
}

/* Category section */
.lp-cat-section { background: #FDFAF5; padding: var(--lp-section-py) var(--lp-section-px); }
.lp-cat-btn-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-cat-btn {
  display: flex; align-items: center; justify-content: center;
  background: #FEFCF8; border: 2px solid #DDD5C8; text-align: center;
  padding: 26px 12px; border-radius: 14px; font-size: 1.6rem; font-weight: 900;
  color: #1A1A1A; letter-spacing: .04em; box-shadow: 0 1px 4px rgba(0,0,0,.04);
  position: relative; transition: border-color .2s, box-shadow .2s, transform .2s, color .2s;
}
.lp-cat-btn::after {
  content: "›"; position: absolute; right: 14px; font-size: 1.8rem;
  color: #C0392B; opacity: 0; transition: opacity .2s, right .2s;
}
.lp-cat-btn:hover { border-color: #C0392B; color: #C0392B; box-shadow: 0 2px 10px rgba(192,57,43,.1); transform: translateY(-2px); opacity: 1; }
.lp-cat-btn:hover::after { opacity: 1; right: 12px; }
.lp-cat-btn:active { transform: scale(.97); }

@media (min-width: 640px) {
  .lp-cat-btn-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .lp-cat-btn { padding: 30px 16px; font-size: 1.7rem; }
}

/* All items CTA */
.lp-cta-all { background: #F0EAE0; padding: 32px var(--lp-section-px); }
.lp-cta-all .lp-btn--outline { border-color: #C0392B; color: #C0392B; box-shadow: none; }
.lp-cta-all .lp-btn--outline:hover { background: #C0392B; color: #fff; opacity: 1 !important; }

/* Notes */
.lp-notes { background: #F5EFE6; border-top: 1px solid #E8E0D4; }
