@charset "UTF-8";

:root {
  --red: #e7161a;
  --red-dark: #704200;
  --blue: #168fc7;
  --navy: #073b5c;
  --gold: #e2a51c;
  --gold-light: #ffe3a0;
  --ink: #17191e;
  --muted: #656b75;
  --line: #dfe3e8;
  --soft: #f3faff;
  --white: #fff;
  --shadow: 0 18px 50px rgba(19, 30, 48, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; }
p, h1, h2, h3, ul, dl, dd { margin-top: 0; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.container--narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--soft); }
.center { text-align: center; }
.sp-only { display: none; }

.site-header {
  height: 70px;
  padding: 0 max(20px, calc((100vw - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(7, 12, 20, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px rgba(255,255,255,.1);
}
.site-header__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.site-header__brand img { width: 94px; filter: brightness(0) invert(1); }
.site-header__cta { padding: 8px 19px; border-radius: 100px; background: var(--red); text-decoration: none; font-size: 13px; font-weight: 800; }

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  overflow: hidden;
  display: grid;
  place-items: center;
  
  text-align: center;
  background: #fff url("../image/fireworks-bg.png") center / cover no-repeat;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.18) 62%, rgba(255,255,255,.10));
}
.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 24%;
	background: linear-gradient(to top, rgba(255,255,255,.16), transparent);
}
.hero__sparkles { position: absolute; inset: 0; opacity: .28; background: url("../image/gold-sparkles.png") center / cover no-repeat; }
.hero__inner { position: relative; z-index: 3; padding: 70px 0; }
.hero__coins { position: absolute; z-index: 2; width: min(52vw, 720px); pointer-events: none; filter: drop-shadow(0 15px 20px rgba(0,0,0,.35)); }
.hero__coins--left { left: -19%; bottom: -12%; transform: rotate(16deg); }
.hero__coins--right {
	right: -18%;
	top: -13%;
	transform: rotate(196deg);
	display: none;
}
.hero__limited { display: inline-block; margin-bottom: 20px; padding: 5px 18px; background: rgba(255,255,255,.65); border: 1px solid rgba(0,0,0,.38);; border-radius: 50px; font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.hero__logo { width: clamp(150px, 22vw, 250px); margin-bottom: 6px; }
.hero h1 { margin-bottom: 12px; font-family: Arial, sans-serif; font-size: clamp(52px, 9vw, 112px); font-style: italic; font-weight: 950; letter-spacing: -.055em; line-height: .82; text-shadow: 0 5px 0 rgba(255,255,255,.78), 0 12px 30px rgba(22,143,199,.22); }
.hero h1 span { display: inline-block; font-size: .42em; letter-spacing: .18em; transform: translateX(.09em); }
.hero__lead { margin: 25px 0 21px; font-size: clamp(18px, 2.3vw, 28px); font-weight: 900; letter-spacing: .05em; }
.hero__benefits { display: flex; align-items: center; justify-content: center; gap: 13px; margin-bottom: 30px; font-weight: 800; }
.hero__benefits span {
	padding: 8px 13px;
	/* color: var(--navy); */
	background: rgba(255,255,255,.9);
	border: 1px solid rgba(0,0,0,.22);
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.hero__benefits b { color: var(--red-dark); font-size: 25px; }
.hero__period { margin-bottom: 18px; display: flex; justify-content: center; align-items: baseline; gap: 8px; font-family: Arial, sans-serif; }
.hero__period small { margin-right: 8px; font-family: inherit; font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.button--primary {
	color: #fff;
	background: #000;
}
.hero__period span { font-size: 10px; font-weight: 900; }
.hero__period i { margin: 0 7px; font-style: normal; }
.hero__notice { font-size: 13px; font-weight: 800; }

.button { min-width: 240px; min-height: 58px; padding: 15px 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 100px; text-decoration: none; font-weight: 900; box-shadow: 0 10px 25px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.23); }
.button--primary { color: #fff; background: #000; }
.button--light {
	color: var(--navy);
	background: #fff;
}
.button--bonus{
	color: #fff;
	background: var(--navy);
}

.eyebrow { margin-bottom: 8px; color: var(--red); text-align: center; font: 900 12px/1.4 Arial, sans-serif; letter-spacing: .24em; }
.eyebrow--gold { color: var(--gold-light); }
.section-title { margin-bottom: 24px; text-align: center; font-size: clamp(30px, 4.4vw, 50px); line-height: 1.3; letter-spacing: -.03em; }
.section-title::after { content: ""; display: block; width: 46px; height: 4px; margin: 18px auto 0; background: var(--red); border-radius: 5px; }
.section-title--left { text-align: left; }
.section-title--left::after { margin-left: 0; }
.section-title--light { color: #fff; }
.section-title--light::after { background: var(--gold-light); }
.section-lead { max-width: 760px; margin: 0 auto 42px; text-align: center; color: var(--muted); font-size: 17px; }
.section-lead--light { color: #dfe6ef; }

.benefit-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 0; list-style: none; }
.benefit-summary li { min-height: 170px; padding: 27px 18px; display: flex; flex-direction: column; justify-content: center; text-align: center; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(27,40,58,.06); }
.benefit-summary span { color: var(--red); font: 900 12px Arial; letter-spacing: .16em; }
.benefit-summary strong { margin: 7px 0 2px; font-size: 19px; }
.benefit-summary small { color: var(--muted); }

.set-grid { max-width: 960px; margin: 46px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; gap: 28px; }
.set-card { position: relative; overflow: visible; color: #fff; border-radius: 22px; box-shadow: var(--shadow); }
.set-card--blue { background: linear-gradient(145deg, #07557f, var(--blue)); }
.set-card--red { background: linear-gradient(145deg, #8b5700, var(--red)); transform: translateY(-14px); box-shadow: 0 24px 60px rgba(198,128,0,.24); }
.set-card__recommend { position: absolute; z-index: 2; top: -22px; left: 50%; margin: 0; padding: 7px 28px; transform: translateX(-50%); white-space: nowrap; color: var(--red-dark); background: var(--gold-light); border-radius: 100px; font-weight: 900; box-shadow: 0 6px 17px rgba(90,54,0,.25); }
.set-card__head { padding: 36px 30px 28px; text-align: center; }
.set-card__label { margin-bottom: 0; font: 900 15px Arial; letter-spacing: .16em; }
.set-card h3 { margin-bottom: 4px; font: 950 clamp(48px, 7vw, 72px)/1 Arial, sans-serif; letter-spacing: -.05em; }
.set-card__price { margin-bottom: 0; font-weight: 900; }
.set-card__body { padding: 7px; color: var(--ink); }
.set-specs { margin-bottom: 0; overflow: hidden; border-radius: 16px; background: #fff; }
.set-specs > div { min-height: 110px; padding: 17px 25px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); }
.set-specs > div:last-child { border-bottom: 0; }
.set-specs dt { color: var(--muted); font-size: 14px; font-weight: 800; }
.set-specs dd { margin: 0; white-space: nowrap; color: var(--navy); font: 950 33px/1 Arial, sans-serif; }
.set-card--red .set-specs dd { color: var(--red); }
.set-specs dd small { margin-left: 3px; font: 900 15px "Yu Gothic", sans-serif; }
.set-specs__discount { padding: 4px 15px 4px 25px !important; }
.set-specs__discount dd { width: 56%; }
.set-specs__discount img { display: block; }
.note { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.note--center { text-align: center; }
.purchase-limit-badge { width: fit-content; margin: -4px auto 38px; padding: 8px 20px; color: var(--navy); background: #fff; border: 1px solid var(--blue); border-radius: 100px; font-size: 15px; font-weight: 900; box-shadow: 0 8px 24px rgba(22,143,199,.1); }

.compare-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.compare-panel__intro { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: stretch; color: #fff; background: var(--navy); text-align: center; font-weight: 900; }
.compare-panel__intro span { padding: 20px 10px; display: grid; place-items: center; }
.compare-panel__intro b {
	display: grid;
	place-items: center;
	color: var(--gold-light);
	background: #17191e;
}
.compare-panel__intro .is-recommended { background: var(--red); }
.compare-row { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: stretch; background: #fff; border-top: 1px solid var(--line); text-align: center; }
.compare-row > p { margin: 0; padding: 19px 10px; }
.compare-row > p:last-child { background: #fff7f8; }
.compare-row small, .compare-row strong { display: block; }
.compare-row small { color: var(--muted); font-size: 12px; }
.compare-row strong { font-size: 20px; }
.compare-row > span { display: grid; place-items: center; color: var(--muted); font-size: 12px; font-weight: 900; }
.compare-row--highlight > span { color: var(--red); background: #fff0f2; }
.compare-row--highlight > p:last-child strong { color: var(--red); font-size: 24px; }
.recommend__closing { margin: 30px 0 0; text-align: center; font-size: 17px; }
.recommend__closing strong { color: var(--red); }
.recommend__point-note { margin: -5px 0 28px; color: var(--muted); text-align: center; font-size: 16px; }
.value-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-highlights article { min-height: 230px; padding: 30px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.value-highlights article:last-child { border: 3px solid var(--gold); background: linear-gradient(145deg, #fff, #fff9e8); }
.value-highlights article > small { margin-bottom: 8px; color: var(--muted); font-size: 14px; font-weight: 800; }
.value-highlights article > p { margin-bottom: 7px; display: flex; align-items: center; gap: 12px; }
.value-highlights article > p span { color: var(--muted); font-size: 25px; font-weight: 800; text-decoration: line-through; }
.value-highlights article > p b { color: var(--muted); }
.value-highlights article > p strong { color: var(--red); font: 950 52px/1 Arial; }
.value-highlights article > em { color: var(--red); font-size: 25px; font-style: normal; font-weight: 900; }
.value-highlights__discount { color: var(--red); font: 950 52px/1 Arial; }
.value-highlights__discount em { display: block; margin-top: 7px; font: 900 18px "Yu Gothic"; }
.value-highlights article > span { margin-top: 13px; color: var(--muted); font-size: 12px; }

.member { overflow: hidden; color: #fff; background: var(--navy); }
.member::before { content: ""; position: absolute; inset: 0; opacity: .12; background: url("../image/fireworks-bg.png") center / cover; }
.member .container { position: relative; z-index: 1; }
.member__badge { width: fit-content; margin: 0 auto 12px; padding: 7px 24px; color: #251800; background: linear-gradient(90deg, #c39316, #ffe78d, #c39316); border-radius: 4px; font-weight: 900; letter-spacing: .08em; }
.bonus-table-wrap { max-width: 870px; margin: 38px auto 0; overflow-x: auto; border-radius: 15px; box-shadow: 0 15px 50px rgba(0,0,0,.35); }
.bonus-table { width: 100%; min-width: 650px; border-collapse: collapse; overflow: hidden; color: var(--ink); background: #fff; text-align: center; }
.bonus-table th, .bonus-table td { padding: 15px 13px; border: 1px solid #d7dce3; }
.bonus-table thead th { color: #fff; background: #26364d; font-size: 13px; }
.bonus-table tbody th { background: #f2f4f7; }
.bonus-table tbody tr:nth-child(5), .bonus-table tbody tr:nth-child(6) { background: #fff9e5; }
.bonus-table .bonus { color: var(--red); font-weight: 900; }
.bonus-table td strong { color: var(--red); font-size: 21px; }
.bonus-continue { margin: 26px 0 0; text-align: center; }
.bonus-continue strong { color: var(--gold-light); font-size: 19px; }
.bonus-steps { max-width: 920px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.bonus-steps > div { padding: 20px 10px; color: var(--ink); text-align: center; background: #fff; border: 2px solid transparent; border-radius: 15px; box-shadow: 0 10px 28px rgba(0,0,0,.24); }
.bonus-steps > div:last-child { background: #fff9e5; border-color: var(--gold); transform: scale(1.04); }
.bonus-steps span { display: block; color: var(--muted); font-size: 13px; font-weight: 900; }
.bonus-steps strong { display: block; margin-top: 4px; color: var(--red); font: 950 38px/1 Arial; }
.bonus-steps strong small { margin-left: 3px; font: 900 14px "Yu Gothic"; }
.total-box { max-width: 740px; margin: 50px auto 0; padding: 34px; color: var(--ink); text-align: center; background: linear-gradient(145deg, #fff, #fff8de); border: 3px solid var(--gold); border-radius: 22px; box-shadow: 0 18px 60px rgba(0,0,0,.32); }
.total-box__headline small, .total-box__headline strong { display: block; }
.total-box__headline small { color: var(--red); font-weight: 900; }
.total-box__headline strong { font-size: 22px; }
.total-box__number { margin: 4px 0 17px; color: var(--red); font: 950 clamp(70px, 11vw, 110px)/1 Arial; letter-spacing: -.06em; }
.total-box__number small { margin-left: 8px; font: 900 28px "Yu Gothic"; }
.total-box__math { display: flex; align-items: center; justify-content: center; gap: 24px; padding-top: 18px; border-top: 1px solid #e6d59b; font-size: 13px; }
.total-box__math i { color: var(--red); font: 900 26px Arial; }
.notes { max-width: 870px; margin: 22px auto 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; }
.notes li::before { content: "※"; }
.notes--dark { color: #cad0da; }

.benefit-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-detail-card { position: relative; padding: 34px 28px 28px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 34px rgba(25,40,61,.08); }
.benefit-detail-card__number { position: absolute; top: 16px; right: 18px; color: rgba(22,143,199,.16); font: 950 42px/1 Arial; }
.benefit-detail-card h3 { position: relative; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 3px solid var(--blue); font-size: 23px; }
.benefit-detail-card__key { display: block; margin-bottom: 12px; color: var(--red); font-size: 28px; }
.benefit-detail-card p { margin-bottom: 8px; font-size: 15px; }
.benefit-detail-card p strong { color: var(--navy); font-size: 18px; }
.benefit-detail-card > small { display: block; color: var(--muted); font-size: 11px; }
.benefit-detail-card__pair { margin-bottom: 13px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 12px; }
.benefit-detail-card__pair span { color: var(--muted); font-size: 13px; font-weight: 800; }
.benefit-detail-card__pair strong { color: var(--red); font-size: 24px; line-height: 1.2; }

.purchase-flow { max-width: 850px; margin: 38px auto 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.purchase-flow > div { min-height: 126px; padding: 22px 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--soft); border: 1px solid #d9eaf3; border-radius: 16px; text-align: center; }
.purchase-flow small { color: var(--muted); font-size: 13px; font-weight: 800; }
.purchase-flow strong { margin-top: 5px; color: var(--navy); font-size: 27px; line-height: 1.25; }
.terms-details { max-width: 850px; margin: 0 auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.terms-details summary { padding: 19px 54px 19px 22px; position: relative; cursor: pointer; color: var(--navy); background: #f8fafc; font-size: 16px; font-weight: 900; list-style: none; }
.terms-details summary::-webkit-details-marker { display: none; }
.terms-details summary::after { content: "+"; position: absolute; top: 50%; right: 22px; width: 28px; height: 28px; display: grid; place-items: center; transform: translateY(-50%); color: #fff; background: var(--navy); border-radius: 50%; font: 700 20px/1 Arial; }
.terms-details[open] summary::after { content: "−"; }
.terms-details__body { padding: 4px 26px 25px; }
.terms-details__body section { padding: 22px 0 4px; border-top: 1px solid var(--line); }
.terms-details__body h3 { margin-bottom: 10px; font-size: 18px; }
.terms-details__body ul { margin-bottom: 0; padding-left: 1.35em; color: var(--muted); font-size: 14px; }
.terms-details__body li + li { margin-top: 5px; }

.info-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.info-layout__copy .eyebrow { text-align: left; }
.info-layout__copy > p:not(.eyebrow) { color: var(--muted); }
.no-expiry { margin-top: 28px; padding: 18px 22px; display: flex; align-items: baseline; gap: 12px; color: #fff; background: var(--red); border-radius: 12px; }
.no-expiry span { font-size: 13px; font-weight: 900; }
.no-expiry strong { font-size: 28px; }
.no-expiry small { margin-left: auto; }
.minute-card { padding: 32px; border-radius: 20px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.minute-card__title { text-align: center; }
.minute-card__title strong { color: var(--gold-light); font-size: 22px; }
.minute-card > div { margin-top: 12px; padding: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; border-radius: 10px; background: rgba(255,255,255,.09); }
.minute-card > div span { font: 800 19px Arial; }
.minute-card > div b { color: var(--gold-light); font-size: 20px; }
.minute-card > small { display: block; margin-top: 14px; color: #aeb8c6; font-size: 11px; }

.vote { overflow: hidden; }
.vote__ticket { width: min(580px, 86%); margin: -45px auto 18px; filter: drop-shadow(0 18px 22px rgba(30,45,63,.16)); }
.vote-counts { max-width: 580px; margin: 34px auto 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vote-counts p { margin: 0; padding: 22px; color: #fff; background: var(--blue); border-radius: 14px; box-shadow: var(--shadow); }
.vote-counts p.vote-counts__featured { background: var(--red); transform: scale(1.04); }
.vote-counts small, .vote-counts strong { display: block; }
.vote-counts small { font-weight: 900; }
.vote-counts strong { margin-top: 2px; font: 950 52px/1 Arial; }
.vote-counts em { margin-left: 5px; font: 900 18px "Yu Gothic"; }
.text-link { display: inline-block; margin-top: 8px; color: var(--red); font-weight: 900; text-underline-offset: 5px; }

.discount-grid { max-width: 800px; margin: 40px auto 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.discount-grid article { padding: 28px; display: flex; align-items: center; justify-content: space-between; color: #fff; background: var(--blue); border-radius: 16px; box-shadow: var(--shadow); }
.discount-grid article.is-red { background: var(--red); }
.discount-grid span { font-weight: 900; }
.discount-grid strong { font: 950 42px/1 Arial; }
.discount-grid small { display: block; margin-top: 5px; font: 900 14px "Yu Gothic"; text-align: right; }
.course-box { max-width: 800px; margin: 0 auto; padding: 28px; border: 1px solid var(--line); border-radius: 16px; }
.course-box h3 { margin-bottom: 15px; text-align: center; font-size: 18px; }
.course-box p { margin: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.course-box span { padding: 6px 14px; color: var(--navy); background: var(--soft); border-radius: 50px; font-weight: 800; }
.important-box { max-width: 800px; margin: 24px auto 0; padding: 24px; border: 2px solid var(--red); border-radius: 14px; background: #fff7f8; text-align: center; }
.important-box strong { color: var(--red); font-size: 19px; }
.important-box p { margin: 8px 0 0; }

.example-box { max-width: 660px; margin: 32px auto 0; padding: 36px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.example-box__condition { margin-bottom: 4px; font-size: 17px; font-weight: 800; }
.example-box__condition b { color: var(--red); }
.example-box__arrow { display: block; margin: 9px 0; color: var(--red); font-size: 28px; }
.example-box__result { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.example-box__result p { margin: 0; padding: 17px; color: #fff; background: var(--red); border-radius: 10px; }
.example-box__result small, .example-box__result strong { display: block; }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { padding: 34px; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 35px rgba(25,40,61,.06); }
.detail-card--wide { grid-column: 1 / -1; }
.detail-card h3 { padding-bottom: 14px; border-bottom: 3px solid var(--red); font-size: 21px; }
.detail-card dl { margin-bottom: 0; }
.detail-card dl div { padding: 10px 0; display: grid; grid-template-columns: 120px 1fr; border-bottom: 1px solid var(--line); }
.detail-card dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.detail-card dd { margin: 0; }
.detail-card__emphasis { padding: 16px; color: var(--navy); background: var(--soft); border-radius: 10px; font-weight: 800; }
.delivery-time { padding: 18px; color: var(--red-dark); background: #fff2f3; border-radius: 10px; text-align: center; font-weight: 800; }
.delivery-time strong { margin: 0 4px; font-size: 23px; }

.closing { position: relative; overflow: hidden; padding: 110px 0; color: #fff; text-align: center; background: linear-gradient(135deg, #06466d, var(--blue)); }
.closing::before { content: ""; position: absolute; inset: 0; opacity: .18; background: url("../image/gold-sparkles.png") center / cover; }
.closing__inner { position: relative; z-index: 2; }
.closing__coins { position: absolute; z-index: 1; right: -20%; bottom: -33%; width: 70%; opacity: .75; transform: rotate(-12deg); }
.closing h2 { margin-bottom: 22px; font: 950 clamp(42px, 7vw, 78px)/1.05 Arial, "Yu Gothic", sans-serif; letter-spacing: -.04em; }
.closing p span { display: block; font-size: 17px; font-weight: 800; }
.closing__start { display: block; margin-top: 34px; font: 950 clamp(31px, 5vw, 53px)/1 Arial; }
.closing > .container > small, .closing__inner > small { display: block; margin: 7px 0 28px; font-weight: 800; letter-spacing: .12em; }
.footer { padding: 28px 20px; color: #9aa1ab; background: #070c14; text-align: center; }
.footer p { margin-bottom: 2px; color: #fff; font: 900 15px Arial; letter-spacing: .18em; }
.footer small { font-size: 10px; }

@media (max-width: 760px) {
  .container, .container--narrow { width: min(100% - 28px, 1120px); }
  .section { padding: 68px 0; }
  .sp-only { display: block; }
  .site-header { height: 58px; padding: 0 14px; }
  .site-header__brand { gap: 9px; font-size: 9px; }
  .site-header__brand img { width: 75px; }
  .site-header__cta { padding: 6px 13px; font-size: 11px; }
  .hero { min-height: calc(100svh - 58px); }
  .hero__inner { padding: 55px 0; }
  .hero__coins { width: 96vw; opacity: .75; }
  .hero__coins--left { left: -60%; bottom: -5%; }
  .hero__coins--right { right: -62%; top: -5%; }
  .hero__benefits { flex-wrap: wrap; gap: 7px; font-size: 12px; }
  .hero__benefits span { padding: 7px 9px; }
  .hero__benefits b { font-size: 17px; }
  .hero__period { flex-wrap: wrap; gap: 4px; }
  .hero__period small { flex-basis: 100%; margin: 0 0 4px; }
  .hero__period i { margin: 0 4px; }
  .section-lead { margin-bottom: 30px; font-size: 15px; }
  .benefit-summary { grid-template-columns: 1fr; gap: 10px; }
  .benefit-summary li { min-height: 120px; padding: 20px; }
  .set-grid { grid-template-columns: 1fr; gap: 50px; }
  .set-card--red { transform: none; }
  .set-card__head { padding: 34px 20px 23px; }
  .set-specs > div { min-height: 94px; padding: 14px 18px; }
  .set-specs dd { font-size: 28px; }
  .set-specs__discount { padding-left: 18px !important; }
  .set-specs__discount dd { width: 52%; }
  .purchase-limit-badge { margin: -5px auto 38px; padding: 8px 15px; font-size: 14px; }
  .recommend__point-note { font-size: 15px; }
  .value-highlights { grid-template-columns: 1fr; gap: 13px; }
  .value-highlights article { min-height: 195px; padding: 25px 16px; }
  .value-highlights article > p strong, .value-highlights__discount { font-size: 48px; }
  .compare-panel__intro, .compare-row { grid-template-columns: 1fr 42px 1fr; }
  .compare-panel__intro { font-size: 12px; }
  .compare-panel__intro span { padding: 15px 6px; }
  .compare-row > p { padding: 15px 5px; }
  .compare-row strong { font-size: 15px; }
  .compare-row--highlight > p:last-child strong { font-size: 18px; }
  .compare-row > span { font-size: 10px; }
  .bonus-table-wrap {
    margin: 32px 0 0;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }
  .bonus-table {
    display: block;
    min-width: 0;
    background: transparent;
  }
  .bonus-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .bonus-table tbody {
    display: grid;
    gap: 13px;
  }
  .bonus-table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .bonus-table tbody th {
    grid-column: 1 / -1;
    padding: 9px 14px;
    color: #fff;
    background: #26364d;
    border: 0;
    text-align: left;
    font-size: 14px;
  }
  .bonus-table tbody td {
    min-width: 0;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    border: 0;
    text-align: center;
    line-height: 1.45;
  }
  .bonus-table tbody td:first-of-type {
    border-right: 1px solid #e1e5ea;
  }
  .bonus-table tbody td:last-of-type {
    grid-column: 1 / -1;
    padding: 13px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff9e5;
    border-top: 1px solid #eadcb4;
    text-align: left;
  }
  .bonus-table tbody td::before {
    color: #68727f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
  }
  .bonus-table tbody td:nth-of-type(1)::before { content: "通常特典"; }
  .bonus-table tbody td:nth-of-type(2)::before { content: "会員限定BONUS"; }
  .bonus-table tbody td:nth-of-type(3)::before { content: "そのセットの投票権"; }
  .bonus-table tbody td:last-of-type strong { font-size: 22px; }
  .bonus-steps { grid-template-columns: 1fr; gap: 8px; }
  .bonus-steps > div { min-height: 68px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .bonus-steps > div:last-child { transform: none; }
  .bonus-steps span { font-size: 15px; }
  .bonus-steps strong { margin: 0; font-size: 36px; }
  .total-box { padding: 27px 16px; }
  .total-box__math { flex-direction: column; gap: 7px; }
  .total-box__math i { line-height: 1; }
  .benefit-detail-grid { grid-template-columns: 1fr; gap: 13px; }
  .benefit-detail-card { padding: 28px 22px 24px; }
  .benefit-detail-card h3 { font-size: 22px; }
  .benefit-detail-card__key { font-size: 27px; }
  .benefit-detail-card p { font-size: 16px; }
  .benefit-detail-card__pair strong { font-size: 23px; }
  .purchase-flow { grid-template-columns: 1fr; gap: 9px; }
  .purchase-flow > div { min-height: 91px; padding: 16px; }
  .purchase-flow strong { font-size: 25px; }
  .terms-details summary { padding: 18px 52px 18px 17px; font-size: 15px; }
  .terms-details summary::after { right: 16px; }
  .terms-details__body { padding: 3px 18px 22px; }
  .terms-details__body ul { font-size: 15px; }
  .info-layout { grid-template-columns: 1fr; gap: 30px; }
  .info-layout__copy .eyebrow, .section-title--left { text-align: center; }
  .section-title--left::after { margin-left: auto; }
  .no-expiry { flex-wrap: wrap; justify-content: center; }
  .no-expiry small { flex-basis: 100%; margin: 0; text-align: center; }
  .minute-card { padding: 22px 16px; }
  .minute-card > div { padding: 14px 12px; }
  .minute-card > div span { font-size: 15px; }
  .minute-card > div b { font-size: 16px; }
  .vote__ticket { width: 100%; margin-top: -25px; }
  .vote-counts { gap: 9px; }
  .vote-counts p { padding: 18px 8px; }
  .vote-counts small { font-size: 11px; }
  .vote-counts strong { font-size: 40px; }
  .discount-grid { grid-template-columns: 1fr; }
  .discount-grid article { padding: 22px; }
  .discount-grid strong { font-size: 38px; }
  .course-box { padding: 22px 14px; }
  .important-box { padding: 20px 15px; }
  .example-box { padding: 27px 14px; }
  .example-box__result { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card, .detail-card--wide { grid-column: auto; padding: 25px 19px; }
  .detail-card dl div { grid-template-columns: 95px 1fr; }
  .closing { padding: 80px 0; }
  .closing__coins { width: 120%; right: -60%; bottom: -12%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
