@charset "utf-8";
/* CSS Document */

:root {
	--bg: #09090b;
	--bg-soft: #111216;
	--bg-card: rgba(255,255,255,0.06);
	--bg-card-strong: rgba(255,255,255,0.1);
	--text: #f5f1ea;
	--muted: #d2cbc0;
	--line: rgba(255,255,255,0.12);
	--gold: #c7a46a;
	--gold-soft: #e7d4b5;
	--shadow: 0 24px 60px rgba(0,0,0,0.35);
	--radius: 18px;
	--radius-lg: 28px;
	--max-mobile: 480px;
	--max-tablet: 1120px;
	--content-wide: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
	color: var(--text);
	background: radial-gradient(circle at top, rgba(199,164,106,0.15), transparent 28%), linear-gradient(180deg, #111114 0%, #08080a 100%);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	letter-spacing: 0.02em;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

.page {
	max-width: var(--max-mobile);
	margin: 0 auto;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.menu-btn {
	position: fixed;
	top: 14px;
	right: 14px;
	z-index: 100;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(0,0,0,0.42);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.menu-btn span {
	width: 18px;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}

.drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(82vw, 320px);
	height: 100%;
	background: rgba(11,11,13,0.96);
	backdrop-filter: blur(14px);
	z-index: 99;
	transition: right 0.4s ease;
	padding: 72px 20px 24px;
	border-left: 1px solid rgba(255,255,255,0.08);
}

.drawer.open {
	right: 0;
}

.drawer-inner {
	display: grid;
	gap: 20px;
}

.drawer-inner a {
	font-size: 17px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	z-index: 98;
}

.drawer-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: flex-end;
	padding: 24px 20px 28px;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.46) 45%, rgba(0,0,0,0.9) 100%), url("../img/top.jpg") center/cover no-repeat;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(199,164,106,0.08), transparent 35%), radial-gradient(circle at 50% 20%, rgba(255,255,255,0.12), transparent 35%);
	pointer-events: none;
}

.hero-glow {
	position: absolute;
	inset: auto -20% 12% -20%;
	height: 180px;
	background: radial-gradient(circle, rgba(199,164,106,0.22), transparent 60%);
	filter: blur(24px);
	animation: glowMove 6s ease-in-out infinite;
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(0,0,0,0.26);
	backdrop-filter: blur(8px);
	border-radius: 999px;
	font-size: 13px;
	color: var(--gold-soft);
	margin-bottom: 16px;
	animation: fadeUp 0.8s ease both;
}

.hero-title {
	margin: 0;
	animation: fadeUp 1s ease both;
}

.hero-title img {
	width: 100%;
	max-width: 340px;
	height: auto;
	display: block;
	filter: drop-shadow(0 14px 30px rgba(0,0,0,0.55));
}

.hero p {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.9;
	color: rgba(245,241,234,0.94);
	/*max-width: 32ch;*/
	animation: fadeUp 1.2s ease both;
}

.hero-scroll {
	margin-top: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.78);
	font-size: 12px;
	letter-spacing: 0.08em;
	animation: fadeUp 1.35s ease both;
}

.hero-scroll::after {
	content: "";
	width: 18px;
	height: 18px;
	border-right: 1px solid rgba(255,255,255,0.55);
	border-bottom: 1px solid rgba(255,255,255,0.55);
	transform: rotate(45deg) translateY(-2px);
	animation: arrowBounce 1.6s ease-in-out infinite;
}

.jump-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 26px;
	animation: fadeUp 1.45s ease both;
}

.jump-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.16);
	background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 18px 16px;
	box-shadow: var(--shadow);
	transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.jump-card::before {
	content: "";
	position: absolute;
	inset: -40% auto auto -30%;
	width: 90px;
	height: 180px;
	background: linear-gradient(180deg, rgba(255,255,255,0.24), transparent);
	transform: rotate(28deg);
	opacity: 0.45;
	pointer-events: none;
}

.jump-card:hover,
.jump-card:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(199,164,106,0.45);
	background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
	box-shadow: 0 22px 50px rgba(0,0,0,0.38);
}

.jump-card small {
	display: block;
	color: var(--gold-soft);
	font-size: 12px;
	margin-bottom: 8px;
	letter-spacing: 0.08em;
}

.jump-card strong {
	display: block;
	font-size: 19px;
	margin-bottom: 8px;
	font-weight: 700;
}

.jump-card span {
	display: block;
	color: rgba(245,241,234,0.82);
	font-size: 14px;
	line-height: 1.7;
}

.section {
	padding: 30px 20px;
}

.section + .section {
	padding-top: 10px;
}

.section-header {
	max-width: 800px;
}

.section-title {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1.45;
	font-weight: 700;
}
.section-title-wrap {
	position: relative;
	display: inline-block;
	margin-bottom: 18px;
	padding: 0 0 14px;
	width: 100%;
}

.section-title-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px; /* ← 少し太く */

	background: linear-gradient(
		90deg,
		#f4dfb0 0%,
		#d7b16a 40%,
		#b8843f 70%,
		#f0d39a 100%
	);

	background-size: 200% 100%;
	animation: goldFlow 6s linear infinite;
}
@keyframes goldFlow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}
.section-kicker {
	display: inline-block;
	margin-bottom: 8px;
	padding: 6px 12px;
	border: 1px solid rgba(231,212,181,0.24);
	border-radius: 999px;
	background: rgba(255,255,255,0.03);
	color: var(--gold-soft);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1;
}

.section-title {
	margin: 0;
	font-size: 30px;
	line-height: 1.3;
	font-weight: 800;
	letter-spacing: 0.06em;
	padding: 0 3%;
}

.section-lead {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 2;
}

.mask-gold {
	position: relative;
	display: inline-block;
	color: transparent;
	background: linear-gradient(90deg, #f4dfb0 0%, #d7b16a 40%, #b8843f 70%, #f0d39a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	overflow: hidden;
}

/* マスク */
.mask-gold::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #f4dfb0, #b8843f);
	transform: translateY(100%);
}

/* 発火用 */
.mask-gold.is-animated {
	animation: textReveal 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

.mask-gold.is-animated::after {
	animation: maskSlide 1.2s cubic-bezier(0.8, 0, 0.17, 1) forwards;
}

/* アニメーション */
@keyframes textReveal {
	0% {
		color: transparent;
	}
	50% {
		color: transparent;
	}
	100% {
		color: #e7d4b5;
	}
}

@keyframes maskSlide {
	0% {
		transform: translateY(100%);
	}
	50% {
		transform: translateY(0%);
	}
	100% {
		transform: translateY(-100%);
	}
}

@media (min-width: 768px) {
	.section-title-wrap {
		margin-bottom: 20px;
		padding-bottom: 16px;
	}

	.section-kicker {
		font-size: 12px;
	}

	.section-title {
		font-size: 36px;
	}
}

@media (min-width: 1024px) {
	.section-title {
		font-size: 40px;
	}
}
.section-lead {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 2;
	padding: 0 3%;
}

.glass {
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(8px);
}

.status-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 24px;
}

.status-card {
	position: relative;
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: center;
	gap: 14px;
	padding: 18px 18px 18px 14px;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
	animation: statusFloat 5.5s ease-in-out infinite;
}

.status-card::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -30%;
	width: 60%;
	height: 200%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.15) 45%,
		rgba(255,255,255,0.35) 50%,
		rgba(255,255,255,0.15) 55%,
		transparent 100%
	);
	transform: rotate(25deg);
	animation: shineMove 6s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shineMove {
	0% {
		transform: translateX(-150%) rotate(25deg);
		opacity: 0;
	}
	4% {
		opacity: 1;
	}
	6% {
		transform: translateX(250%) rotate(25deg);
		opacity: 1;
	}
	8% {
		opacity: 0;
	}
	100% {
		transform: translateX(250%) rotate(25deg);
		opacity: 0;
	}
}

.status-card:hover::after {
	transform: translateX(120%);
}

.status-card:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: 0 24px 56px rgba(0,0,0,0.34);
	filter: brightness(1.06);
}

.status-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.status-logo {
	width: 76px;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.45));
	transition: transform 0.35s ease, filter 0.35s ease;
}

.status-card:hover .status-logo {
	transform: scale(1.06);
	filter: drop-shadow(0 0 14px rgba(255,255,255,0.18)) drop-shadow(0 12px 18px rgba(0,0,0,0.45));
}

.status-label h3 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 800;
}

.status-label p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255,255,255,0.88);
}

.gold {
	background: linear-gradient(135deg, rgba(212,175,55,0.26), rgba(143,107,31,0.16));
}

.silver {
	background: linear-gradient(135deg, rgba(192,192,192,0.24), rgba(110,110,110,0.16));
}

.bronze {
	background: linear-gradient(135deg, rgba(184,115,51,0.26), rgba(107,62,31,0.16));
}

.beginner {
	background: linear-gradient(135deg, rgba(58,108,244,0.24), rgba(26,47,122,0.18));
}

.accordion-list {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.accordion {
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
	box-shadow: var(--shadow);
}

.accordion summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 20px 20px 18px;
	display: grid;
	grid-template-columns: 1fr 28px;
	gap: 14px;
	align-items: center;
}

.accordion summary::-webkit-details-marker {
	display: none;
}

.accordion-head small {
	display: block;
	color: var(--gold-soft);
	font-size: 12px;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.accordion-head strong {
	display: block;
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.accordion-head span {
	display: block;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.9;
}

.accordion-icon {
	width: 28px;
	height: 28px;
	position: relative;
	justify-self: end;
}

.accordion-icon::before,
.accordion-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1.5px;
	background: rgba(255,255,255,0.86);
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.accordion[open] .accordion-icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.accordion-body {
	padding: 0 18px 20px;
	border-top: 1px solid rgba(255,255,255,0.08);
	animation: accordionFade 0.28s ease;
}

.accordion-cta {
	margin-top: 18px;
	width: 90%;
	margin: 2% auto;
}

.accordion-cta .ticket-link-btn {
	display: block;
	width: 100%;
	padding: 17px 22px;
	font-size: 16px;
	border-radius: 999px;
	text-align: center;
	box-sizing: border-box;
}




.accordion-body-inner {
	padding-top: 18px;
	display: grid;
	gap: 16px;
}
.price-schedule {
	margin-top: 24px;
	display: grid;
	gap: 14px;
}

.price-card,
.schedule-card {
	padding: 20px 18px;
	border-radius: 18px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.12);
	text-align: center;
}

.label {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.7);
}

.price-card h3 {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: var(--gold-soft);
}

.price-card p {
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--muted);
}

.price-card small {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	color: rgba(255,255,255,0.5);
}

.price-line span {
	font-size: 14px;
	color: var(--muted);
	margin-left: 6px;
}

.schedule-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.schedule-card li {
	font-size: 14px;
	line-height: 1.8;
	color: var(--muted);
	padding: 4px 0;
}

.schedule-card b {
	color: #fff;
	font-weight: 600;
}

/* タブレット以上 */
@media (min-width: 768px) {
	.price-schedule {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.price-card,
	.schedule-card {
		padding: 24px;
	}

	.price-card h3 {
		font-size: 40px;
	}
}
.info-block {
	padding: 18px 16px;
	border-radius: 18px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
}

.info-block b {
	display: block;
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.7;
}

.info-block p,
.info-block li {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.95;
}

.info-block ul {
	margin: 0;
	padding-left: 20px;
}

.status-gold {
	border-left: 4px solid #d4af37;
}

.status-silver {
	border-left: 4px solid #c0c0c0;
}

.status-bronze {
	border-left: 4px solid #b87333;
}

.status-beginner {
	border-left: 4px solid #3a6cf4;
}

.ticket-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 18px;
}

.ticket-item {
	padding: 16px 14px;
	border-radius: 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

.ticket-item b {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
	color: #e1c38d;
}

.ticket-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--muted);
}

.reason-list {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.reason {
	padding: 18px;
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 14px;
	align-items: center;
	transition: transform 0.25s ease;
}
.reason-logo-wrap {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	/* background: rgba(255,255,255,0.04); */
	/* border: 1px solid rgba(255,255,255,0.12); */
	/* box-shadow: 0 10px 20px rgba(0,0,0,0.25); */
	/* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
.reason-logo {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.reason:hover .reason-logo-wrap {
	transform: translateY(-3px);
	box-shadow: 0 18px 30px rgba(0,0,0,0.35);
}

.reason:hover .reason-logo {
	transform: scale(1.08);
	filter: drop-shadow(0 0 12px rgba(255,255,255,0.25)) drop-shadow(0 10px 14px rgba(0,0,0,0.45));
}
✅ 重要ポイント（ここだけ注意）
.reason-no は削除してOK
既存CSSと競合なし（上書き安全）
カラーは入れてないので完全に要望通り

これで
👉 「番号 → Gロゴ」置き換え＋高級感アニメーション
完成です

次やるならこれ👇かな
👉 「この3つを横並び＋カード化（高級LP感）」

必要ならそこも一気に仕上げる 👍
.reason:hover {
	transform: translateY(-2px);
}

.reason-no {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(199,164,106,0.4);
	display: grid;
	place-items: center;
	color: var(--gold-soft);
	font-size: 13px;
	letter-spacing: 0.08em;
	background: rgba(199,164,106,0.08);
}

.reason h4 {
	margin: 4px 0 8px;
	font-size: 18px;
	line-height: 1.6;
}

.reason p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.95;
}

.flow {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.flow-step {
	padding: 18px;
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 14px;
	align-items: start;
}

.flow-step .num {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(199,164,106,0.12);
	color: var(--gold-soft);
	display: grid;
	place-items: center;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid rgba(199,164,106,0.25);
}

.flow-step b {
	display: block;
	margin-bottom: 6px;
	font-size: 17px;
	line-height: 1.7;
}

.flow-step p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.95;
}

.cta {
	padding: 30px 20px 42px;
}

.cta-box {
	padding: 28px 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: "";
	position: absolute;
	inset: auto -15% -50px -15%;
	height: 160px;
	background: radial-gradient(circle, rgba(199,164,106,0.16), transparent 65%);
	pointer-events: none;
}

.cta-box h2 {
	position: relative;
	margin: 0;
	font-size: 28px;
	line-height: 1.55;
	font-weight: 700;
}

.cta-box p {
	position: relative;
	margin: 12px auto 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.95;
	max-width: 30ch;
}

.cta-actions {
	position: relative;
	display: grid;
	gap: 12px;
	margin-top: 22px;
}
.special-offer {
	padding: 60px 20px;
	text-align: center;
}

.special-offer-box {
	padding: 32px 20px 36px;
	border-radius: 20px;
	border: 1px solid rgba(231,212,181,0.15);
	background: rgba(255,255,255,0.03);
	backdrop-filter: blur(12px);
}

.special-title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 14px;
	color: var(--text);
}

.special-text {
	font-size: 14px;
	line-height: 1.8;
	color: var(--muted);
	margin-bottom: 24px;
}

.special-old-price {
	display: inline-block;
	position: relative;
	margin-top: 6px;
	font-size: 18px;
	font-weight: 700;
	color: rgba(255,255,255,0.75);
	letter-spacing: 0.04em;
}

.special-old-price::after {
	content: "";
	position: absolute;
	left: -2%;
	top: 50%;
	width: 104%;
	height: 2px;
	background: linear-gradient(90deg, rgba(255,120,120,0.85) 0%, rgba(255,80,80,1) 100%);
	transform: rotate(-4deg);
	transform-origin: center;
}

.special-old-price span {
	font-size: 12px;
	margin-left: 4px;
	opacity: 0.7;
}

.special-arrow {
	display: inline-block;
	margin-left: 8px;
	font-size: 18px;
	color: var(--gold-soft);
	font-weight: 700;
}

.special-price-wrap {
	display: flex;
	justify-content: center;
}

.special-price-card {
	padding: 20px 28px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(244,223,176,0.12), rgba(184,132,63,0.08));
	border: 1px solid rgba(231,212,181,0.25);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	animation: specialPoyo 2.4s ease-out infinite;
	transform-origin: center center;
}

@keyframes specialPoyo {
	0%, 40%, 60%, 80%, 100% {
		transform: scale(1);
	}
	50%, 70% {
		transform: scale(0.97);
	}
}

.special-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.15em;
	color: var(--gold-soft);
	margin-bottom: 8px;
}

.special-price {
	font-size: 32px;
	font-weight: 800;
	color: var(--gold-soft);
	letter-spacing: 0.05em;
}

.special-price span {
	font-size: 14px;
	margin-left: 6px;
	opacity: 0.7;
}

.special-deadline {
	margin-top: 10px;
	font-size: 13px;
	color: rgba(255,255,255,0.72);
	letter-spacing: 0.04em;
}

.special-deadline span {
	color: var(--gold-soft);
	font-weight: 700;
}

.special-price-wrap {
	display: flex;
	justify-content: center;
}

.special-price-card {
	padding: 20px 28px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(244,223,176,0.12),
		rgba(184,132,63,0.08)
	);
	border: 1px solid rgba(231,212,181,0.25);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.special-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.15em;
	color: var(--gold-soft);
	margin-bottom: 8px;
}

.special-price {
	font-size: 32px;
	font-weight: 800;
	color: var(--gold-soft);
	letter-spacing: 0.05em;
}

.special-price span {
	font-size: 14px;
	margin-left: 6px;
	opacity: 0.7;
}
@media (min-width: 768px) {
	.special-offer {
		padding: 72px 32px;
	}

	.special-offer-box {
		max-width: 1100px;
		margin: 0 auto;
		padding: 56px 48px 60px;
	}

	.special-title {
		font-size: 38px;
		margin-bottom: 18px;
	}

	.special-text {
		font-size: 20px;
		line-height: 1.9;
		margin-bottom: 30px;
	}

	.special-old-price {
		font-size: 28px;
	}

	.special-old-price span {
		font-size: 16px;
	}

	.special-arrow {
		font-size: 24px;
		margin-left: 12px;
	}

	.special-price-card {
		min-width: 360px;
		padding: 32px 40px;
	}

	.special-label {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.special-price {
		font-size: 54px;
	}

	.special-price span {
		font-size: 20px;
		margin-left: 8px;
	}

	.special-deadline {
		margin-top: 16px;
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.special-offer {
		padding: 84px 40px;
	}

	.special-offer-box {
		max-width: 1320px;
		padding: 72px 80px 76px;
	}

	.special-title {
		font-size: 48px;
	}

	.special-text {
		font-size: 24px;
	}

	.special-old-price {
		font-size: 34px;
	}

	.special-old-price span {
		font-size: 18px;
	}

	.special-price-card {
		min-width: 420px;
		padding: 40px 48px;
		border-radius: 22px;
	}

	.special-price {
		font-size: 68px;
	}

	.special-price span {
		font-size: 24px;
	}

	.special-deadline {
		font-size: 20px;
	}
}


.btn {
	appearance: none;
	border: none;
	border-radius: 999px;
	padding: 17px 20px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn-primary {
	background: linear-gradient(135deg, #e1c38d 0%, #b98a4a 100%);
	color: #17120b;
	box-shadow: 0 14px 30px rgba(185,138,74,0.25);
}

.btn-secondary {
	background: rgba(255,255,255,0.06);
	color: var(--text);
	border: 1px solid rgba(255,255,255,0.14);
}

.footer-note {
	text-align: center;
	padding: 0 20px 88px;
	color: rgba(255,255,255,0.5);
	font-size: 12px;
	line-height: 1.8;
}

.floating-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
	background: linear-gradient(180deg, rgba(8,8,10,0), rgba(8,8,10,0.94) 32%);
	backdrop-filter: blur(12px);
}

.floating-cta-inner {
	max-width: var(--max-mobile);
	margin: 0 auto;
}

.floating-cta-main {
	display: block;
	width: 100%;
	padding: 16px 20px;
	text-align: center;
	background: linear-gradient(135deg, #e1c38d 0%, #b98a4a 100%);
	color: #17120b;
	border-radius: 999px;
	font-weight: 800;
	font-size: 16px;
	box-shadow: 0 16px 30px rgba(185,138,74,0.25);
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal small {
	padding: 1% 2%;
	display: block;
	margin-top: 10px;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes glowMove {
	0%, 100% {
		transform: translateX(-2%) scale(1);
		opacity: 0.75;
	}
	50% {
		transform: translateX(2%) scale(1.05);
		opacity: 1;
	}
}

@keyframes arrowBounce {
	0%, 100% {
		transform: rotate(45deg) translateY(-2px);
	}
	50% {
		transform: rotate(45deg) translate(4px, 2px);
	}
}

@keyframes accordionFade {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes statusFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

@media (min-width: 768px) {
	body {
		padding: 22px 18px 40px;
	}

	.page {
		max-width: var(--max-tablet);
		border-radius: 28px;
		border: 1px solid rgba(255,255,255,0.08);
		box-shadow: 0 25px 80px rgba(0,0,0,0.45);
	}

	.menu-btn {
		top: 24px;
		right: 24px;
	}

	.hero {
		min-height: 760px;
		padding: 48px 42px 42px;
		align-items: center;
	}

	.hero-inner {
		max-width: 700px;
	}

	.hero-title img {
		max-width: 500px;
	}

	.hero p {
		font-size: 18px;
		max-width: 36ch;
	}

	.jump-nav {
		max-width: 700px;
	}

	.section {
		padding: 44px 42px;
	}

	.section-title {
		font-size: 34px;
	}

	.section-lead {
		font-size: 17px;
		/*max-width: 62ch;*/
	}

	.status-grid {
		grid-template-columns: 1fr 1fr;
	}

	.accordion-body-inner {
		grid-template-columns: 1fr 1fr;
	}

	.reason-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.flow {
		grid-template-columns: repeat(2, 1fr);
	}

	.flow-step {
		grid-template-columns: 1fr;
	}

	.cta-box h2 {
		font-size: 34px;
	}

	.cta-box p {
		max-width: 100ch;
	}

	.cta-actions {
		grid-template-columns: 1fr 1fr;
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}

	.floating-cta-inner {
		max-width: 560px;
	}
}

@media (min-width: 1024px) {
	body {
		padding: 28px 28px 52px;
	}

	.page {
		max-width: var(--content-wide);
	}

	.menu-btn {
		top: 28px;
		right: 28px;
		width: 52px;
		height: 52px;
	}

	.drawer {
		width: min(28vw, 360px);
		padding: 84px 28px 28px;
	}

	.hero {
		min-height: 880px;
		padding: 72px 72px 56px;
		background-position: center top;
	}

	.hero-inner {
		max-width: 760px;
	}

	.hero-title img {
		max-width: 620px;
	}

	.hero p {
		font-size: 19px;
		max-width: 38ch;
	}

.jump-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(250px, 1fr));
	gap: 16px;
}

	.section {
		padding: 58px 72px;
	}

	.section-title {
		font-size: 38px;
	}

	.section-lead {
		font-size: 18px;
	}

	.status-grid {
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.status-card {
		grid-template-columns: 100px 1fr;
		padding: 22px 22px 22px 18px;
	}

	.status-logo {
		width: 96px;
	}

	.status-label h3 {
		font-size: 28px;
	}

	.status-label p {
		font-size: 16px;
	}

	.ticket-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.ticket-item b {
		font-size: 20px;
	}

	.ticket-item p {
		font-size: 15px;
	}

	.reason h4 {
		font-size: 20px;
	}

	.reason p {
		font-size: 16px;
	}

	.flow-step b {
		font-size: 18px;
	}

	.flow-step p {
		font-size: 16px;
	}

	.floating-cta-inner {
		max-width: 620px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*, *::before, *::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
```

