:root {
	color-scheme: light;
	--page-bg: #061b45;
	--lp-width: 864px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--page-bg);
}

body {
	margin: 0;
	min-width: 320px;
	background:
		radial-gradient(circle at 50% 10%, #174986 0, transparent 32rem),
		var(--page-bg);
	color: #071c45;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.lp {
	width: min(100%, var(--lp-width));
	margin-inline: auto;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 48px rgb(0 0 0 / 28%);
}

.visual-section {
	position: relative;
	margin: 0;
	line-height: 0;
}

.visual-section img {
	display: block;
	width: 100%;
	height: auto;
}

.cta-hotspot {
	position: absolute;
	z-index: 2;
	display: block;
	border-radius: 999px;
	outline-offset: 5px;
}

.cta-hotspot:focus-visible,
.floating-cta:focus-visible {
	outline: 4px solid #fff;
	box-shadow: 0 0 0 7px #efb800;
}

.hero-cta {
	left: 8.6%;
	top: 75.2%;
	width: 82.8%;
	height: 7.3%;
}

.final-cta {
	left: 4.8%;
	top: 51.6%;
	width: 90.4%;
	height: 7.6%;
}

.floating-cta {
	position: fixed;
	left: 50%;
	bottom: max(10px, env(safe-area-inset-bottom));
	z-index: 20;
	display: block;
	width: min(92vw, 430px);
	transform: translateX(-50%);
	filter: drop-shadow(0 8px 16px rgb(0 20 60 / 35%));
	transition: transform 160ms ease, filter 160ms ease;
}

.floating-cta:hover {
	transform: translateX(-50%) translateY(-2px);
	filter: drop-shadow(0 10px 20px rgb(0 20 60 / 42%));
}

.floating-cta:active {
	transform: translateX(-50%) translateY(1px) scale(.985);
}

.floating-cta img {
	display: block;
	width: 100%;
	height: auto;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 600px) {
	.lp {
		/* padding-bottom: 88px; */
		box-shadow: none;
	}

	.floating-cta {
		width: min(94vw, 430px);
	}
}

@media (min-width: 865px) {
	/* body {
    padding-block: 28px;
  } */

	.lp {
		border-radius: 18px;
	}
}

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

	.floating-cta {
		transition: none;
	}
}

.header-special-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	padding: 12px 24px;
}

@media screen and (max-width: 768px) {
	.header-special-top a {
		width: 48%;
	}
}

.header-special-top img {
	width: 434px;
	height: 84px;
}

@media screen and (max-width: 768px) {
	.header-special-top img {
		width: 100%;
		height: auto;
	}
}

.header-special-top h1 {
	padding: 8px 24px;
	border: 1px solid #fff;
	color: #fff;
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.header-special-top h1 {
		padding: 8px 12px;
	}
}

.header-special-top h1 br {
	display: none;
}

@media screen and (max-width: 960px) {
	.header-special-top h1 br {
		display: block;
	}
}