@charset "utf-8";

/* ==========================
:root variables
========================== */
:root {
  --yellow:      #D4CF3A;
  --yellow-dark: #b8b32e;
  --teal:        #1B6070;
  --teal-dark:   #134857;
  --navy:        #1A2756;
  --blue-badge:  #4A9DD3;
  --white:       #ffffff;
  --off-white:   #F8F7F0;
  --text-main:   #1A2756;
  --text-sub:    #555555;
  --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ======================
Reset
========================*/
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { font-size: 62.5%; line-height: 1.7; }
img  { display: block; width: 100%; max-width: 100%; height: auto; }
li   { list-style: none; }
a    { display: block; color: inherit; text-decoration: none; }

/* ==========================
Vendor overrides
========================== */
.global-header { 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; }

/* SP/PC */
.sp_only { display: block; }
.pc_only  { display: none; }
@media (min-width: 768px) {
  .sp_only { display: none; }
  .pc_only  { display: block; }
}

/* ==========================
Page wrapper
========================== */
body {
  font-family: var(--font-base);
  font-size: 1.4rem;
  color: var(--text-main);
  background-color: var(--teal-dark);
  background-image:
    repeating-linear-gradient(0deg,   rgba(255,255,255,.06) 0px, rgba(255,255,255,.06) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,.06) 0px, rgba(255,255,255,.06) 1px, transparent 1px, transparent 28px);
}

.lp-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,.35);
}

/* ==========================
Hero
========================== */
.hero {
  position: relative;
  line-height: 0;
  background: var(--yellow);
}
.hero img { width: 100%; display: block; }

/* ウェーブ区切り */
.hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* ==========================
Section: Intro
========================== */
.intro {
  background: var(--white);
  text-align: center;
  padding: 10px 20px 40px;
}

.intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-badge);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.intro__eyebrow::before,
.intro__eyebrow::after {
  content: "♡";
  font-size: 1rem;
}

.intro__title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.intro__title span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.intro__desc {
  font-size: 1.4rem;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ==========================
Section: Coupon Cards
========================== */
.coupon-section {
  background: var(--off-white);
  padding: 40px 20px 50px;
}


.coupon-section__head {
  text-align: center;
  margin-bottom: 32px;
}
.coupon-section__head h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.coupon-section__head p {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .04em;
}

/* ---- Coupon Ticket ---- */
.coupon-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coupon-ticket {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(26,39,86,.12);
  overflow: hidden;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.coupon-ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,39,86,.18);
}

/* 左サイドカラーバー */
.coupon-ticket::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 8px;
  height: 100%;
  background: var(--ticket-color, var(--teal));
  border-radius: 16px 0 0 16px;
}

/* ティア別カラー */
.coupon-ticket--300  { --ticket-color: #5BA8A0; }
.coupon-ticket--1000 { --ticket-color: #4A87D3; }
.coupon-ticket--3000 { --ticket-color: var(--navy); }

.coupon-ticket__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  min-height: 120px;
  padding-left: 8px; /* カラーバー分 */
}

/* 左：金額 */
.coupon-ticket__amount {
  text-align: center;
  padding: 16px 8px;
}
.coupon-ticket__condition {
  font-size: 1.0rem;
  color: var(--text-sub);
  margin-bottom: 2px;
}
.coupon-ticket__value {
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--ticket-color, var(--teal));
  line-height: 1;
  letter-spacing: -.02em;
}
.coupon-ticket__off {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ticket-color, var(--teal));
}

/* 点線区切り（チケットの切り取り線風） */
.coupon-ticket__divider {
  width: 1px;
  height: 80%;
  border-left: 2px dashed #d0d0d0;
  position: relative;
}
/* 切り込み風 */
.coupon-ticket__divider::before,
.coupon-ticket__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  background: var(--off-white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #d0d0d0;
}
.coupon-ticket__divider::before { top: -9px; }
.coupon-ticket__divider::after  { bottom: -9px; }

/* 右：クーポンコード */
.coupon-ticket__code-area {
  padding: 16px 12px 16px 10px;
  text-align: center;
}
.coupon-ticket__code-label {
  font-size: 1.0rem;
  color: var(--text-sub);
  margin-bottom: 8px;
  line-height: 1.5;
}

.coupon-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 2px dashed var(--ticket-color, var(--teal));
  border-radius: 8px;
  padding: 10px 8px;
  width: 100%;
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}
.coupon-code-box:active {
  transform: scale(.96);
}
.coupon-code-box__text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .04em;
}

/* コピー済みスタイル */
.coupon-code-box.is-copied {
  background: var(--ticket-color, var(--teal));
  border-color: var(--ticket-color, var(--teal));
}
.coupon-code-box.is-copied .coupon-code-box__text {
  color: var(--white);
}
@keyframes pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  70%  { transform: scale(.97); }
  100% { transform: scale(1); }
}
.coupon-code-box.is-copied {
  animation: pop .4s ease forwards;
}


/* ==========================
Deadline Banner
========================== */
.deadline-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.deadline-banner::before {
  content: "♡";
  position: absolute;
  font-size: 8rem;
  opacity: .05;
  top: -10px; left: 10px;
  line-height: 1;
}
.deadline-banner::after {
  content: "♡";
  position: absolute;
  font-size: 8rem;
  opacity: .05;
  top: -10px; right: 10px;
  line-height: 1;
}
.deadline-banner__label {
  font-size: 1.2rem;
  letter-spacing: .18em;
  opacity: .75;
  margin-bottom: 4px;
}
.deadline-banner__date {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
}
.deadline-banner__date span {
  font-size: 1.8rem;
}
.deadline-banner__note {
  font-size: 1.2rem;
  opacity: .7;
  margin-top: 6px;
}

/* ==========================
CTA Section
========================== */
.cta-section {
  background: var(--off-white);
  padding: 44px 24px 50px;
  text-align: center;
}
.cta-section__lead {
  font-size: 1.4rem;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.8;
}

.btn-cta {
  display: block;
  background: var(--navy);
  color: var(--white);
  padding: 20px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .04em;
  max-width: 520px;
  margin: 0 auto;
  transition: opacity .3s;
}
.btn-cta:hover {
  opacity: .8;
}

/* ==========================
Notes
========================== */
.notes-section {
  background: var(--white);
  padding: 40px 24px;
  border-top: 1px solid #eee;
}
.notes-section__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
  letter-spacing: .06em;
}
.notes-section__list li {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.9;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 6px;
}
.notes-section__list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #aaa;
}

/* ==========================
Footer
========================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 24px;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: .04em;
}

/* ==========================
Animations
========================== */
.js-fadein {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.25,1,.5,1), transform .8s cubic-bezier(.25,1,.5,1);
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fadein:nth-child(2) { transition-delay: .1s; }
.js-fadein:nth-child(3) { transition-delay: .2s; }

/* ==========================
Responsive PC
========================== */
@media (min-width: 640px) {
  .lp-wrap { max-width: 800px; }

  .coupon-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: end;
  }

  .coupon-ticket__body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
    min-height: auto;
    padding-left: 0;
    padding-top: 8px;
  }
  .coupon-ticket::before { display: none; }
  .coupon-ticket--300  { border-top: 6px solid #5BA8A0; }
  .coupon-ticket--1000 { border-top: 6px solid #4A87D3; }
  .coupon-ticket--3000 { border-top: 6px solid var(--navy); }

  .coupon-ticket__divider {
    width: 80%; height: 1px;
    border-left: none;
    border-top: 2px dashed #d0d0d0;
    margin: 0 auto;
  }
  .coupon-ticket__divider::before,
  .coupon-ticket__divider::after {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
  }
  .coupon-ticket__divider::before { left: -9px; }
  .coupon-ticket__divider::after  { left: auto; right: -9px; }

  .coupon-ticket__value { font-size: 3.8rem; }
  .coupon-ticket__condition { font-size: 1.2rem; }
  .coupon-ticket__off { font-size: 1.8rem; }

  .intro__title { font-size: 3.2rem; }
  .deadline-banner__date { font-size: 4rem; }
}
