@charset "UTF-8";

.sp-fixed-lp {
	--sp-fixed-lp-content-width: calc(430 / 16 * 1rem);
	--sp-fixed-lp-side-width: clamp(calc(160 / 16 * 1rem), 14vw, calc(220 / 16 * 1rem));
	--sp-fixed-lp-edge-space: calc(24 / 16 * 1rem);
	--sp-fixed-lp-gutter-space: calc((100vw - var(--sp-fixed-lp-content-width)) / 2);
	--sp-fixed-lp-side-offset: max(var(--sp-fixed-lp-edge-space), calc((var(--sp-fixed-lp-gutter-space) - var(--sp-fixed-lp-side-width)) / 2));
	--sp-fixed-lp-bg-color: var(--color-neutral-solid-gray-50, #f4f5f7);
	--sp-fixed-lp-main-bg-color: var(--color-neutral-white, #fff);
	--sp-fixed-lp-border-color: rgba(17, 24, 39, 0.12);
	--sp-fixed-lp-shadow: 0 calc(24 / 16 * 1rem) calc(80 / 16 * 1rem) rgba(17, 24, 39, 0.14);

	position: relative;
	width: 100%;
	max-width: none !important;
	min-height: 100svh;
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	background: var(--sp-fixed-lp-bg-color);
}

.sp-fixed-lp,
.sp-fixed-lp * {
	box-sizing: border-box;
}

.sp-fixed-lp > * {
	max-width: none !important;
	margin-top: 0 !important;
}

.sp-fixed-lp__main {
	width: min(100%, var(--sp-fixed-lp-content-width));
	min-height: 100svh;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-bottom: calc(88 / 16 * 1rem);
	background: var(--sp-fixed-lp-main-bg-color);
	box-shadow: none;
}

.sp-fixed-lp__section {
	min-height: 70svh;
	padding: clamp(calc(48 / 16 * 1rem), 14vw, calc(88 / 16 * 1rem)) var(--sp-fixed-lp-edge-space);
}

.sp-fixed-lp__hero {
	min-height: 100svh;
}

.sp-fixed-lp__fixed {
	display: none;
}

.sp-fixed-lp__mobile-cta {
	position: fixed;
	z-index: 30;
	right: auto;
	bottom: max(calc(12 / 16 * 1rem), env(safe-area-inset-bottom));
	left: 50%;
	width: min(calc(100% - calc(24 / 16 * 1rem)), calc(var(--sp-fixed-lp-content-width) - calc(24 / 16 * 1rem)));
	margin: 0 !important;
	padding: calc(12 / 16 * 1rem) calc(16 / 16 * 1rem);
	transform: translateX(-50%);
	border: 1px solid var(--sp-fixed-lp-border-color);
	border-radius: calc(8 / 16 * 1rem);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 calc(12 / 16 * 1rem) calc(36 / 16 * 1rem) rgba(17, 24, 39, 0.18);
	backdrop-filter: blur(calc(12 / 16 * 1rem));
}

.sp-fixed-lp__mobile-cta > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.sp-fixed-lp__mobile-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(44 / 16 * 1rem);
	color: inherit;
	font-weight: 700;
	text-decoration: none;
}

@media (min-width: 60rem) {
	.sp-fixed-lp__main {
		padding-bottom: 0;
		box-shadow: var(--sp-fixed-lp-shadow);
	}

	.sp-fixed-lp__fixed {
		position: fixed;
		z-index: 20;
		top: 50%;
		display: grid;
		width: var(--sp-fixed-lp-side-width);
		gap: calc(16 / 16 * 1rem);
		align-content: center;
		margin: 0 !important;
		padding: 0;
		transform: translateY(-50%);
		color: var(--color-neutral-solid-gray-900, #111827);
	}

	.sp-fixed-lp__fixed > * {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.sp-fixed-lp__fixed a {
		color: inherit;
		text-decoration: none;
	}

	@media (hover: hover) {
		.sp-fixed-lp__fixed a:hover {
			text-decoration: underline;
			text-underline-offset: calc(3 / 16 * 1rem);
		}
	}

	.sp-fixed-lp__fixed a:focus-visible {
		text-decoration: underline;
		text-underline-offset: calc(3 / 16 * 1rem);
	}

	.sp-fixed-lp__fixed--left {
		right: auto;
		left: var(--sp-fixed-lp-side-offset);
		text-align: left;
	}

	.sp-fixed-lp__fixed--right {
		right: var(--sp-fixed-lp-side-offset);
		left: auto;
		text-align: right;
	}

	.sp-fixed-lp__mobile-cta {
		display: none;
	}
}

.sp-fixed-lp__fixed a:focus-visible,
.sp-fixed-lp__mobile-cta a:focus-visible {
	outline: calc(4 / 16 * 1rem) solid var(--color-neutral-black, #000);
	outline-offset: calc(2 / 16 * 1rem);
	border-radius: calc(4 / 16 * 1rem);
	background-color: var(--color-primitive-yellow-300, #ffd43d);
	box-shadow: 0 0 0 calc(2 / 16 * 1rem) var(--color-primitive-yellow-300, #ffd43d);
}

.snow-lp {
	--sp-fixed-lp-content-width: calc(430 / 16 * 1rem);
	--sp-fixed-lp-bg-color: var(--color-primitive-light-blue-50, #f0f9ff);
	--sp-fixed-lp-main-bg-color: var(--color-neutral-white, #fff);
	--snow-lp-text-color: var(--color-primitive-cyan-1100, #004c59);
	--snow-lp-muted-color: var(--color-primitive-cyan-1000, #006173);
	--snow-lp-accent-color: var(--color-primitive-cyan-800, #008299);
	--snow-lp-accent-soft-color: var(--color-primitive-cyan-50, #e9f7f9);
	--snow-lp-button-hover-color: var(--color-primitive-cyan-100, #c8f8ff);
	--snow-lp-line-color: rgba(123, 188, 204, 0.28);

	color: var(--snow-lp-text-color);
	font-family: var(--font-family-sans, "Noto Sans JP", "Helvetica Neue", Arial, sans-serif);
}

.snow-lp .sp-fixed-lp__main {
	background:
		linear-gradient(180deg, rgba(244, 252, 254, 0.94) 0%, rgba(255, 255, 255, 0.98) 34%, #f9fdfe 100%);
}

.snow-lp .sp-fixed-lp__section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: calc(24 / 16 * 1rem);
	border-top: 1px solid var(--snow-lp-line-color);
}

.snow-lp .sp-fixed-lp__section:first-child {
	border-top: 0;
}

.snow-lp__hero {
	position: relative;
	align-items: center;
	min-height: 92svh;
	overflow: hidden;
	padding-top: calc(48 / 16 * 1rem);
	padding-bottom: calc(32 / 16 * 1rem);
	text-align: center;
}

.snow-lp__hero::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(232, 249, 252, 0.3)),
		radial-gradient(ellipse at center top, rgba(192, 234, 242, 0.62), transparent 62%);
	content: "";
	pointer-events: none;
}

.snow-lp__hero > * {
	position: relative;
	z-index: 1;
}

.snow-lp__eyebrow {
	margin: 0 !important;
	color: var(--snow-lp-muted-color);
	font-size: calc(12 / 16 * 1rem);
	font-weight: 700;
	letter-spacing: 0;
}

.snow-lp__title {
	margin: 0 !important;
	color: #506a70;
	font-family: Georgia, "Times New Roman", serif;
	font-size: calc(58 / 16 * 1rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}

.snow-lp__lead {
	margin: 0 !important;
	color: #54727a;
	font-size: calc(20 / 16 * 1rem);
	font-weight: 600;
	line-height: 1.65;
}

.snow-lp__copy {
	margin: 0 !important;
	color: var(--snow-lp-muted-color);
	font-size: calc(14 / 16 * 1rem);
	line-height: 2;
}

.snow-lp__hero-copy {
	max-width: 28em;
}

.snow-lp__product-image {
	width: min(100%, calc(292 / 16 * 1rem));
	margin: calc(10 / 16 * 1rem) auto 0 !important;
}

.snow-lp__product-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(8 / 16 * 1rem);
}

.snow-lp__button-row {
	width: 100%;
	margin: calc(8 / 16 * 1rem) 0 0 !important;
}

.snow-lp__button-row .wp-block-button,
.snow-lp__button-row .wp-block-button__link {
	width: 100%;
}

.snow-lp__button-row .wp-block-button__link,
.snow-lp__button-link,
.snow-lp .dads-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: calc(48 / 16 * 1rem);
	padding: calc(12 / 16 * 1rem) calc(24 / 16 * 1rem);
	border: 1px solid rgba(123, 188, 204, 0.55);
	border-radius: calc(8 / 16 * 1rem);
	background: linear-gradient(180deg, #ffffff 0%, #dff7fb 100%);
	box-shadow: 0 calc(12 / 16 * 1rem) calc(28 / 16 * 1rem) rgba(91, 165, 183, 0.18);
	color: var(--snow-lp-text-color);
	font-family: var(--font-family-sans, "Noto Sans JP", "Helvetica Neue", Arial, sans-serif);
	font-size: calc(16 / 16 * 1rem);
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	letter-spacing: 0;
}

@media (hover: hover) {
	.snow-lp__button-row .wp-block-button__link:hover,
	.snow-lp__button-link:hover,
	.snow-lp .dads-button:hover {
		background: var(--snow-lp-button-hover-color);
		color: var(--snow-lp-text-color);
		text-decoration: underline;
		text-decoration-thickness: calc(1 / 16 * 1rem);
		text-underline-offset: calc(3 / 16 * 1rem);
	}
}

.snow-lp__button-row .wp-block-button__link:active,
.snow-lp__button-link:active,
.snow-lp .dads-button:active {
	background: var(--color-primitive-cyan-200, #99f2ff);
	color: var(--snow-lp-text-color);
	text-decoration: underline;
}

.snow-lp a:focus-visible,
.snow-lp__button-row .wp-block-button__link:focus-visible,
.snow-lp__button-link:focus-visible,
.snow-lp .dads-button:focus-visible {
	outline: calc(4 / 16 * 1rem) solid var(--color-neutral-black, #000);
	outline-offset: calc(2 / 16 * 1rem);
	border-radius: calc(4 / 16 * 1rem);
	background-color: var(--color-primitive-yellow-300, #ffd43d);
	box-shadow: 0 0 0 calc(2 / 16 * 1rem) var(--color-primitive-yellow-300, #ffd43d);
}

.snow-lp__section-label {
	margin: 0 !important;
	color: var(--snow-lp-accent-color);
	font-family: Georgia, "Times New Roman", serif;
	font-size: calc(13 / 16 * 1rem);
	font-weight: 400;
	letter-spacing: 0;
}

.snow-lp__heading {
	margin: 0 !important;
	color: #44646b;
	font-size: calc(28 / 16 * 1rem);
	font-weight: 600;
	line-height: 1.55;
}

.snow-lp__feature-list {
	display: grid;
	gap: 0;
	margin: calc(4 / 16 * 1rem) 0 0 !important;
	padding: 0;
	list-style: none;
}

.snow-lp__feature-item {
	padding: calc(18 / 16 * 1rem) 0;
	border-top: 1px solid var(--snow-lp-line-color);
}

.snow-lp__feature-item:last-child {
	border-bottom: 1px solid var(--snow-lp-line-color);
}

.snow-lp__feature-title {
	margin: 0 0 calc(6 / 16 * 1rem) !important;
	color: #466b72;
	font-size: calc(16 / 16 * 1rem);
	font-weight: 700;
	line-height: 1.6;
}

.snow-lp__feature-text {
	margin: 0 !important;
	color: var(--snow-lp-muted-color);
	font-size: calc(13 / 16 * 1rem);
	line-height: 1.9;
}

.snow-lp__cta {
	align-items: center;
	min-height: 86svh;
	background:
		linear-gradient(180deg, rgba(237, 250, 253, 0.1), rgba(220, 246, 250, 0.68)),
		linear-gradient(135deg, #ffffff, #edf9fb);
	text-align: center;
}

.snow-lp__price {
	margin: 0 !important;
	color: var(--snow-lp-muted-color);
	font-size: calc(13 / 16 * 1rem);
	line-height: 1.8;
}

.snow-lp__fixed-logo {
	margin: 0 !important;
	color: #506a70;
	font-family: Georgia, "Times New Roman", serif;
	font-size: calc(32 / 16 * 1rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}

.snow-lp__fixed-note,
.snow-lp__fixed-nav {
	margin: 0 !important;
	color: var(--snow-lp-muted-color);
	font-size: calc(12 / 16 * 1rem);
	line-height: 1.8;
}

.dads-snow-lp__nav-list {
	display: grid;
	gap: calc(8 / 16 * 1rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.dads-snow-lp__nav-link,
.snow-lp__fixed-nav a {
	display: block;
	color: var(--snow-lp-muted-color);
	text-decoration: underline;
	text-decoration-thickness: calc(1 / 16 * 1rem);
	text-underline-offset: calc(3 / 16 * 1rem);
}

@media (hover: hover) {
	.dads-snow-lp__nav-link:hover,
	.snow-lp__fixed-nav a:hover {
		color: var(--snow-lp-text-color);
		text-decoration-thickness: calc(3 / 16 * 1rem);
	}
}

.snow-lp__fixed .snow-lp__button-link {
	width: 100%;
	min-height: calc(44 / 16 * 1rem);
	padding: calc(10 / 16 * 1rem) calc(16 / 16 * 1rem);
	font-size: calc(13 / 16 * 1rem);
}

.snow-lp__mobile-cta {
	border-color: rgba(123, 188, 204, 0.3);
	background: rgba(251, 254, 255, 0.94);
}

.snow-lp__mobile-cta .snow-lp__button-link {
	width: 100%;
	box-shadow: none;
}

@media (max-width: 26.875rem) {
	.snow-lp__hero {
		min-height: 78svh;
		padding-top: calc(36 / 16 * 1rem);
		padding-bottom: calc(36 / 16 * 1rem);
	}

	.snow-lp__title {
		font-size: calc(48 / 16 * 1rem);
	}

	.snow-lp__lead {
		font-size: calc(18 / 16 * 1rem);
	}

	.snow-lp__product-image {
		width: min(100%, calc(220 / 16 * 1rem));
	}

	.snow-lp__hero .snow-lp__button-row {
		display: none;
	}
}

@media (forced-colors: active) {
	.snow-lp,
	.snow-lp .sp-fixed-lp__main,
	.snow-lp__hero,
	.snow-lp__cta,
	.snow-lp__mobile-cta {
		background: Canvas;
		color: CanvasText;
	}

	.snow-lp__button-row .wp-block-button__link,
	.snow-lp__button-link,
	.snow-lp .dads-button {
		border: 1px solid ButtonText;
		background: ButtonFace;
		box-shadow: none;
		color: ButtonText;
	}

	.dads-snow-lp__nav-link,
	.snow-lp__fixed-nav a {
		color: LinkText;
	}
}

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