:root {
	--sky-100: #e8f7ff;
	--sky-200: #ccefff;
	--sky-300: #9adcf8;
	--sky-500: #49b7e8;
	--sky-700: #1178ab;
	--sky-800: #085378;
	--ink: #08334a;
	--white: #ffffff;
	--shadow: 0 12px 30px rgba(17, 120, 171, 0.16);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: var(--ink);
	line-height: 1.75;
	background:
		radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.85), transparent 38%),
		radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.55), transparent 30%),
		linear-gradient(145deg, var(--sky-100) 0%, #f7fdff 35%, var(--sky-200) 100%);
	min-height: 100vh;
}

.container {
	width: min(1080px, 92%);
	margin: 0 auto;
}

.scroll-progress {
	position: fixed;
	left: 0;
	top: 0;
	height: 3px;
	width: 0;
	z-index: 120;
	background: linear-gradient(90deg, #2ec5f3, #6de0ff, #2ec5f3);
	box-shadow: 0 0 12px rgba(46, 197, 243, 0.6);
	transition: width 0.12s linear;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(8px);
	background-color: rgba(255, 255, 255, 0.72);
	border-bottom: 1px solid rgba(17, 120, 171, 0.15);
}

.header-inner {
	min-height: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.logo {
	text-decoration: none;
	color: var(--ink);
	font-family: "Playfair Display", serif;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.main-nav {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.main-nav a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	position: relative;
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: var(--sky-500);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.news-ticker {
	overflow: hidden;
	border-bottom: 1px solid rgba(8, 83, 120, 0.16);
	background: linear-gradient(90deg, rgba(8, 83, 120, 0.96), rgba(17, 120, 171, 0.96));
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-track {
	display: flex;
	gap: 42px;
	width: max-content;
	padding: 11px 0;
	white-space: nowrap;
	animation: ticker 24s linear infinite;
}

.news-track span {
	position: relative;
	padding-left: 20px;
}

.news-track span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #7fe8ff;
	transform: translateY(-50%);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 112px 0 140px;
}

.hero-lights {
	position: absolute;
	inset: -8% -5% auto;
	height: 100%;
	pointer-events: none;
	filter: blur(2px);
}

.light {
	position: absolute;
	display: block;
	border-radius: 999px;
	background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.92), rgba(90, 214, 255, 0.16));
	animation: float 14s ease-in-out infinite;
	opacity: 0.85;
}

.light-1 {
	width: 420px;
	height: 420px;
	left: -90px;
	top: 25px;
	animation-delay: -2s;
}

.light-2 {
	width: 360px;
	height: 360px;
	right: -80px;
	top: 40px;
	animation-delay: -5s;
}

.light-3 {
	width: 260px;
	height: 260px;
	right: 24%;
	top: -50px;
	animation-delay: -8s;
}

.hero-content {
	position: relative;
	z-index: 1;
	animation: rise 0.75s ease both;
	will-change: transform;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.hero-text {
	animation: rise 0.75s ease both;
}

.hero-pamphlet {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: rise 0.9s ease both;
}

.hero-pamphlet img {
	width: 100%;
	max-width: 420px;
	height: auto;
	border-radius: 12px;
	transform: rotate(2deg);
	box-shadow: 0 18px 48px rgba(17, 120, 171, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-pamphlet img:hover {
	transform: rotate(0deg) scale(1.03);
	box-shadow: 0 22px 56px rgba(17, 120, 171, 0.28), 0 6px 16px rgba(0, 0, 0, 0.1);
}

.eyebrow {
	margin: 0 0 18px;
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	font-weight: 700;
	color: var(--sky-700);
}

h1,
h2,
h3 {
	line-height: 1.2;
	margin: 0;
}

h1 {
	font-size: clamp(2rem, 4.8vw, 4rem);
	font-weight: 900;
	letter-spacing: 0.03em;
}

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

.lead {
	margin: 20px 0;
	font-size: clamp(1rem, 2vw, 1.15rem);
	max-width: 620px;
}

.hero-info {
	margin-bottom: 26px;
	padding: 16px 18px;
	max-width: 520px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: var(--shadow);
}

.hero-info p {
	margin: 0;
}

.hero-info p + p {
	margin-top: 6px;
}

.ticket-embed {
	margin: 16px 0 18px;
}

.cta {
	display: inline-block;
	text-decoration: none;
	color: var(--white);
	background: linear-gradient(95deg, var(--sky-500), #2ec5f3);
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 13px 24px;
	border-radius: 999px;
	box-shadow: 0 10px 22px rgba(30, 157, 210, 0.28);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: "";
	position: absolute;
	inset: -40% -10%;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.65) 45%, transparent 55%);
	transform: translateX(-100%) skewX(-14deg);
	animation: sheen 3.8s linear infinite;
}

.cta:hover,
.cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(30, 157, 210, 0.34);
}

.hero-wave {
	position: absolute;
	left: -5%;
	right: -5%;
	bottom: 0;
	height: 96px;
	background:
		radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.9) 0 25%, transparent 26%),
		radial-gradient(circle at 36% 76%, rgba(255, 255, 255, 0.7) 0 20%, transparent 21%),
		radial-gradient(circle at 68% 35%, rgba(255, 255, 255, 0.8) 0 24%, transparent 25%),
		linear-gradient(90deg, var(--sky-300), #7fd6f5 50%, var(--sky-300));
	border-top-left-radius: 120px;
	border-top-right-radius: 120px;
}

.section {
	padding: 74px 0;
	scroll-margin-top: 92px;
}

.section h2 {
	font-size: clamp(1.55rem, 3vw, 2.5rem);
	margin-bottom: 18px;
	letter-spacing: 0.03em;
}

.section-text {
	max-width: 760px;
}

.accent {
	background-color: rgba(255, 255, 255, 0.62);
}

.grid {
	display: grid;
	gap: 20px;
}

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

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

.card {
	background: var(--white);
	border: 1px solid rgba(73, 183, 232, 0.22);
	border-radius: 18px;
	padding: 22px;
	box-shadow: var(--shadow);
	animation: rise 0.8s ease both;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 38px rgba(17, 120, 171, 0.2);
}

.card h3 {
	margin-bottom: 10px;
}

.card p {
	margin: 0;
}

.card p + p {
	margin-top: 8px;
}

.card .station {
	margin: 0;
	font-size: 1.05rem;
}

.card .walk-time {
	margin: 2px 0 0 0;
	font-size: 0.92rem;
	color: var(--sky-700);
	padding-left: 8px;
}

.card .note {
	margin: 6px 0 0 0;
	font-size: 0.82rem;
	color: #888;
}

.card .bus-operator {
	margin: 0;
	font-size: 1.05rem;
}

.card .station-divider {
	border: none;
	border-top: 1px solid rgba(73, 183, 232, 0.18);
	margin: 12px 0;
}

.access-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.card-venue {
	width: 100%;
}

.venue-body {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.venue-info {
	flex: 0 0 auto;
}

.venue-map {
	flex: 1;
	min-width: 0;
	height: 280px;
}

.table-wrap {
	overflow-x: auto;
	border-radius: 14px;
	box-shadow: var(--shadow);
}

table {
	border-collapse: collapse;
	width: 100%;
	min-width: 520px;
	background: var(--white);
}

th,
td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid rgba(17, 120, 171, 0.12);
}

thead {
	background: var(--sky-200);
}

.site-footer {
	border-top: 1px solid rgba(17, 120, 171, 0.12);
	background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.footer-inner p,
.footer-inner small {
	margin: 0;
}

.is-reveal {
	opacity: 0;
	transform: translateY(28px) scale(0.985);
	transition: opacity 0.75s cubic-bezier(0.18, 0.89, 0.32, 1.28), transform 0.75s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.is-reveal.in-view {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(0, -26px, 0) scale(1.05);
	}
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes sheen {
	0%,
	30% {
		transform: translateX(-110%) skewX(-14deg);
	}

	60%,
	100% {
		transform: translateX(140%) skewX(-14deg);
	}
}

@media (max-width: 900px) {
	.cards-3 {
		grid-template-columns: 1fr 1fr;
	}

	.hero {
		padding-top: 88px;
	}

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

	.hero-pamphlet {
		order: -1;
	}

	.hero-pamphlet img {
		max-width: 320px;
	}

	.light-1 {
		width: 300px;
		height: 300px;
	}

	.light-2 {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 680px) {
	.header-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 0;
	}

	.main-nav {
		gap: 14px;
	}

	.cards-3,
	.cards-2 {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 68px 0 120px;
	}

	.hero-wave {
		height: 74px;
		border-top-left-radius: 80px;
		border-top-right-radius: 80px;
	}

	.section {
		padding: 56px 0;
	}

	.news-track {
		gap: 28px;
	}

	.news-ticker {
		font-size: 0.73rem;
	}

	.venue-body {
		flex-direction: column;
	}

	.venue-map {
		width: 100%;
		height: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	html {
		scroll-behavior: auto;
	}

	.is-reveal {
		opacity: 1;
		transform: none;
	}
}
