* {
	box-sizing: border-box;
}

:root {
	--form-width: 300px;
	--body-bg: #eaf5fc;
	--ink: #222222;
	--muted: #5b6a78;
	--blue: #0054df;
	--blue-dark: #0035b9;
	--cyan: #28c3d6;
	--orange: #f07800;
	--orange-dark: #dc6400;
	--line: #b9cfdf;
	--panel: #ffffff;
	--shadow: 0 8px 20px rgba(24, 86, 145, 0.12);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--body-bg);
	color: var(--ink);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

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

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

.page-shell {
	display: flex;
	align-items: flex-start;
	min-height: 100vh;
	background: var(--body-bg);
}

.lp-main {
	width: calc(100% - var(--form-width));
	min-width: 0;
	background: var(--body-bg);
}

.section-inner {
	padding-left: 32px;
	padding-right: 32px;
}

.site-header {
	display: flex;
	align-items: center;
	height: 45px;
	background: #242424;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
}

.site-header__logo-image {
	width: 116px;
	height: auto;
}

.site-header__brand-text {
	white-space: nowrap;
}

.hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 2048 / 981;
	min-height: 270px;
	max-height: 320px;
	background: #dfeffd;
}

.hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

.hero__chance {
	position: absolute;
	top: 10px;
	left: 14px;
	width: clamp(88px, 16vw, 328px);
	z-index: 2;
}

.hero__copy {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: clamp(120px, 13vw, 160px);
	width: min(820px, calc(100% - 190px));
	transform: translateY(-50%);
	text-align: center;
	font-weight: 900;
	font-size: 3.4rem;
	letter-spacing: 0;
}

.hero__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin: 0;
	padding-bottom: 20px;
	color: var(--blue);
	line-height: 0.92;
	white-space: nowrap;
	font-style: italic;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72);
}

.hero__price-number {
	color: var(--orange);
	font-weight: 900;
	font-size: 8.6rem;
	line-height: 0.9;
}

.hero__price-yen {
	margin-left: 0px;
	color: var(--orange);
	font-weight: 900;
	font-size: 3.4rem;
}

.hero__price-text {
	margin-left: 2px;
	font-weight: 900;
	font-size: 3.4rem;
}

.hero__title {
	margin: 0;
	color: var(--blue);
	font-size: 3.05rem;
	font-weight: 900;
	line-height: 1.14;
	font-style: italic;
	white-space: nowrap;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.82);
}

.hero__title-number {
	color: var(--orange);
	font-size: 5.3rem;
	line-height: 0.9;
}

.hero__title-ai {
	display: inline-block;
	color: var(--orange);
	font-size: 4.35rem;
	line-height: 0.9;
}

.hero__title-ke,
.hero__title-month {
	display: inline-block;
	color: var(--orange);
	font-size: 4.35rem;
	line-height: 0.9;
}

.hero__title-ke {
	margin-left: -2px;
}

.hero__title-month {
	margin-left: -10px;
}

.hero__title-campaign {
	display: inline-block;
	margin-left: -8px;
}

.campaign {
	padding-top: 50px;
	padding-bottom: 28px;
}

.campaign__box {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	padding: 50px 18px 18px;
	border: 1.5px solid #ff6c00;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 6px 18px rgba(0, 84, 223, 0.08);
}

.campaign__ribbon {
	position: absolute;
	top: -15px;
	left: 50%;
	z-index: 2;
	width: min(520px, calc(100% - 80px));
	margin: 0;
	padding: 0 28px;
	transform: translateX(-50%);
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 42px;
	text-align: center;
	white-space: nowrap;
}

.campaign__ribbon span {
	font-size: 3rem;
	line-height: 0;
}

.campaign__target {
	position: absolute;
	top: -31px;
	left: 50%;
	z-index: 1;
	width: min(560px, calc(100% - 48px));
	height: 62px;
	max-width: none;
	transform: translateX(-50%);
	object-fit: fill;
	pointer-events: none;
}

.campaign__title {
	margin: 0 0 16px;
	text-align: center;
	font-size: clamp(18px, 2vw, 25px);
	font-weight: 900;
	line-height: 1.35;
}

.campaign__title span {
	margin: 0 4px;
	color: var(--blue);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.benefit-card {
	position: relative;
	min-height: 160px;
	padding: 28px 12px 12px;
	border: 1.5px solid var(--orange);
	border-radius: 9px;
	background: #ffffff;
	text-align: center;
}

.benefit-card__badge {
	position: absolute;
	top: -1px;
	left: 14px;
	width: 53px;
	margin: 0;
	padding: 7px 0 13px;
	background: var(--orange);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 84%, 0 100%);
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 1;
}

.benefit-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 900;
}

.benefit-card__main {
	margin: 0;
	color: var(--orange);
	font-size: clamp(34px, 4vw, 45px);
	font-weight: 900;
	line-height: 1.05;
}

.benefit-card__main-02 {
margin: 0;
	color: var(--orange);
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 900;
	line-height: 1.05;
}

.benefit-card__main-02 span {
	font-size: 0.6em;
}

.benefit-card__main sup {
	font-size: 0.24em;
	vertical-align: super;
}

.benefit-card small {
	display: block;
	margin-top: 10px;
	color: #444444;
	font-size: 9px;
	line-height: 1.45;
}

.worries {
	padding-top: 16px;
	padding-bottom: 32px;
}

.section-title {
	margin: 0;
	font-size: clamp(20px, 3vw, 34px);
	font-weight: 900;
	line-height: 1.38;
	letter-spacing: 0;
}

.section-title--center {
	text-align: center;
}

.section-title span {
	color: var(--blue);
}

.worries__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	max-width: 760px;
	margin: 34px auto 0;
}

.worries__column {
	display: grid;
	gap: 14px;
}

.speech-card {
	min-height: 44px;
	margin: 0;
	padding: 12px 14px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 84, 223, 0.1);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
}

.worries__person {
	width: 150px;
	margin: 0 auto;
}

.worries__arrows {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	color: #dbeafb;
}

.worries__arrows svg {
	display: block;
	width: 112px;
	height: auto;
	overflow: visible;
}

.worries__arrows path {
	fill: none;
	stroke: currentColor;
	stroke-width: 14;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.92;
}

.solution {
	padding-top: 26px;
	padding-bottom: 34px;
	background: linear-gradient(100deg, #1f68d5 0%, #1fc4d7 100%);
	color: #ffffff;
}

.solution__title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 24px;
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
}

.solution__title img {
	width: 138px;
	filter: brightness(0) invert(1);
}

.solution__title span span {
	color: #ffe54b;
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	max-width: 860px;
	margin: 0 auto;
}

.solution-card {
	display: grid;
	align-content: start;
	justify-items: center;
	min-height: 166px;
	margin: 0;
	padding: 20px 14px 16px;
	border-radius: 8px;
	background: #F5F6F6;
	color: #222222;
	text-align: center;
	box-shadow: 0 6px 18px rgba(0, 60, 130, 0.14);
}

.solution-card img {
	object-fit: contain;
}

.solution-card p {
	margin: 12px 0 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.features {
	padding-top: 58px;
	padding-bottom: 82px;
}

.features__heading {
	margin-bottom: 30px;
	text-align: center;
}

.features__heading p {
	margin: 10px 0 0;
	font-size: 1.25rem;
}

.feature-list {
	display: grid;
	gap: 28px;
	max-width: 760px;
	margin: 0 auto;
}

.feature-card {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 28px;
	align-items: center;
	min-height: 170px;
	padding: 26px 34px;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.feature-card--text-left {
	border-left: 5px solid #0a6fff;
}

.feature-card--text-right {
	grid-template-columns: 0.92fr 1.08fr;
	border-right: 5px solid #0a6fff;
}

.feature-card__text h3 {
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #0a6fff;
	color: var(--blue);
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 1.35;
}

.feature-card__text p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.62;
}

.feature-card img {
	width: 100%;
	max-height: 140px;
	object-fit: contain;
	filter: drop-shadow(4px 6px 4px rgba(0, 0, 0, 0.18));
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 15px;
	background: #242424;
	color: #ffffff;
}

.site-footer__info {
	text-align: left;
	font-weight: 500;
	line-height: 1.8;
}

.site-footer__info-row {
	display: grid;
	grid-template-columns: 100px auto;
	column-gap: 16px;
	align-items: center;
}

.site-footer__info a {
	color: #ffffff;
	text-decoration: none;
}

.site-footer__info a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__content {
	text-align: center;
}

.site-header__company-link {
	display: inline-block;
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer p {
	margin: 2px 0 0;
	font-size: 12px;
}

.consult-form {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 20;
	width: var(--form-width);
	height: 100vh;
	overflow-y: auto;
	background: #ffffff;
	color: #111111;
	box-shadow: -10px 0 22px rgba(0, 0, 0, 0.08);
}

.consult-form__inner {
	min-height: 100vh;
	padding: 48px 34px 32px;
}

.consult-form__header {
	margin-bottom: 16px;
}

.consult-form__header h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
}

.consult-form__close,
.mobile-cta {
	display: none;
}

.consult-form__form {
	display: grid;
	gap: 8px;
}

.consult-form__name-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.field label {
	display: block;
	margin-bottom: 3px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}

.field label span,
.required {
	color: #e10000;
}

.field input {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 5px;
	background: #eef6f9;
	color: #222222;
	font-size: 11px;
}

.field input::placeholder {
	color: #9aa9b0;
}

.field input:focus {
	outline: 2px solid rgba(0, 84, 223, 0.26);
	outline-offset: 1px;
	border-color: #72a9e8;
	background: #ffffff;
}

.field--error input {
	border-color: #e85f5f;
	background: #fff5f5;
}

.field__error {
	min-height: 12px;
	margin: 2px 0 0;
	color: #d92a2a;
	font-size: 10px;
	line-height: 1.2;
}

.consult-form__consent {
	padding-top: 2px;
}

.checkbox {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #222222;
	font-size: 0.8rem;
	line-height: 1.35;
}

.checkbox input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--orange);
}

.consult-form__privacy-link {
	color: #00a9c6;
}

.consult-form__privacy-link:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.consult-form__submit {
	justify-self: center;
	width: 200px;
	height: 45px;
	margin-top: 10px;
	border: 0;
	border-radius: 4px;
	background: var(--orange);
	box-shadow: 0 4px 0 rgba(156, 80, 9, 0.35);
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
}

.consult-form__submit:hover {
	background: var(--orange-dark);
}

.consult-form__submit:disabled {
	cursor: wait;
	filter: grayscale(0.2) brightness(0.92);
}

.consult-form__message {
	min-height: 18px;
	margin: 2px 0 0;
	color: var(--blue);
	font-size: 11px;
	text-align: center;
}

.consult-form__message.is-error {
	color: #d92a2a;
}

.hubspot-form-hidden {
	position: absolute;
	top: auto;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.thanks-view[hidden] {
	display: none;
}

.thanks-view {
	min-height: calc(100vh - 74px);
	padding: 72px 32px;
	background: #eaf5fc;
}

.thanks {
	max-width: 820px;
	margin: 0 auto;
	padding: 42px;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: var(--shadow);
}

.thanks__title {
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.45;
}

.thanks__content p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.9;
}

.thanks__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 18px;
	padding: 0 24px;
	border-radius: 5px;
	background: var(--orange);
	color: #ffffff;
	font-weight: 900;
}

body.is-thanks .page-shell {
	display: block;
}

body.is-thanks .lp-main {
	width: 100%;
}

body.is-thanks .consult-form {
	display: none;
}

.hero-cta {
	display: none;
}

@media (min-width: 1600px) {
	:root {
		--form-width: 330px;
	}

	.consult-form__header h2 {
		font-size: 22px;
	}

	.site-header {
		height: 54px;
		padding: 0 18px;
	}

	.site-header__logo-image {
		width: 132px;
	}

	.site-header__brand-text {
		font-size: 16px;
	}

	.hero {
		max-height: 420px;
	}

	.section-inner {
		padding-left: 42px;
		padding-right: 42px;
	}

	.consult-form__inner {
		padding-left: 42px;
		padding-right: 42px;
	}

	.campaign__box {
		max-width: 960px;
	}

	.solution-grid {
		max-width: 1200px;
		gap: 24px;
	}

	.solution-card img {
		width: 116px;
		height: 116px;
	}

	.solution-card p {
		font-size: 1rem;
	}

}

@media (max-width: 980px) {
	:root {
		--form-width: 280px;
	}

	.section-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hero__copy {
		top: 50%;
		left: 120px;
		width: 68%;
	}

	.benefit-card {
		padding-left: 10px;
		padding-right: 10px;
	}

	.worries__layout {
		grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
		gap: 18px;
	}

	.worries__person {
		width: 128px;
	}

	.solution-grid {
		max-width: 860px;
		gap: 24px;
	}

	.solution-card {
		min-height: 218px;
		padding: 28px 20px 22px;
	}

	.solution-card img {
		width: 120px;
		height: 120px;
	}

	.solution-card p {
		margin-top: 18px;
		font-size: 1.2rem;
	}

	.feature-card {
		gap: 20px;
		padding: 22px 24px;
	}

	.consult-form__inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.hero__title-ai,
	.hero__title-ke,
	.hero__title-month {
		font-size: 4rem;
	}

	.hero__title-ke {
		margin-left: 0;
	}

	.hero__title-month {
		margin-left: -7px;
	}

	.hero__title-campaign {
		margin-left: -8px;
	}
}

@media (max-width: 768px) {
	body.is-form-open {
		overflow: hidden;
	}

	.page-shell {
		display: block;
	}

	.lp-main {
		width: 100%;
	}

	.site-header {
		height: 38px;
		padding: 0 8px;
	}

	.site-header__logo-image {
		width: 76px;
	}

	.site-header__brand-text {
		font-size: 0.6rem;
		font-weight: 500;
	}

	.hero {
		min-height: 180px;
		aspect-ratio: auto;
	}

	.hero__bg {
		object-position: 90% center;
	}

	.hero__chance {
		top: 20px;
		left: 16px;
		width: 78px;
	}

	.hero__copy {
		top: 50%;
		left: 92px;
		width: calc(100% - 104px);
	}

	.hero__price-number {
		font-size: 58px;
	}

	.hero__price-yen {
		font-size: 24px;
	}

	.hero__price-text {
		font-size: 28px;
	}

	.hero__title {
		font-size: 18px;
		line-height: 1.2;
		white-space: normal;
	}

	.hero__title-number {
		font-size: 54px;
	}


	.campaign__box {
		padding-top: 44px;
	}

	.campaign__ribbon {
		top: -18px;
		width: calc(100% - 38px);
		padding: 0 14px;
		font-size: 0.8rem;
		line-height: 36px;
	}

	.campaign__ribbon span {
		font-size: 22px;
	}

	.campaign__target {
		top: -26px;
		width: calc(100% - 18px);
		height: 42px;
	}

	.benefit-grid,
	.solution-grid,
	.feature-card,
	.feature-card--text-right {
		grid-template-columns: 1fr;
	}

	.benefit-card {
		min-height: 142px;
	}

	.worries__layout {
		grid-template-columns: 1fr;
		max-width: 430px;
		margin-top: 24px;
	}

	.worries__person {
		width: 132px;
	}

	.solution__title {
		display: grid;
		justify-items: center;
	}

	.solution__title img {
		width: 116px;
	}

	.solution-card {
		min-height: auto;
	}

	.solution-card p {
		text-align: center;
	}

	.features {
		padding-bottom: calc(22px + var(--mobile-cta-space, 112px));
	}

	.feature-card {
		padding: 22px 18px;
	}

	.features__heading p {
		font-size: 1rem;
	}

	.feature-card--text-right {
		border-right: 0;
		border-left: 5px solid #0a6fff;
	}

	.feature-card--text-right img {
		order: 2;
	}

	.mobile-cta {
		position: fixed;
		right: 0;
		bottom: var(--mobile-cta-bottom, 0);
		left: 0;
		z-index: 35;
		display: block;
		padding: 12px 18px calc(16px + env(safe-area-inset-bottom));
		background: #242424;
		text-align: center;
		box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.18);
	}

	.mobile-cta__lead {
		margin: 0 0 8px;
		color: #ffffff;
		font-size: 13px;
		font-weight: 900;
	}

	.mobile-cta__button {
		width: min(100%, 420px);
		min-height: 48px;
		border: 0;
		border-radius: 5px;
		background: var(--orange);
		color: #ffffff;
		font-size: 16px;
		font-weight: 900;
		box-shadow: 0 4px 0 rgba(156, 80, 9, 0.35);
	}

	body.is-form-open .mobile-cta,
	body.is-thanks .mobile-cta {
		display: none;
	}

	.consult-form {
		display: none;
		inset: 0;
		width: 100%;
		height: 100dvh;
	}

	body.is-form-open .consult-form {
		display: block;
	}

	.consult-form__inner {
		min-height: 100dvh;
		padding: 20px 22px calc(28px + env(safe-area-inset-bottom));
	}

	.consult-form__header {
		position: sticky;
		top: 0;
		z-index: 2;
		margin: -20px -22px 18px;
		padding: 18px 64px 16px 22px;
		background: #ffffff;
		border-bottom: 1px solid #e3edf4;
	}

	.consult-form__header h2 {
		font-size: 20px;
		text-align: left;
	}

	.consult-form__close {
		position: absolute;
		top: 50%;
		right: 18px;
		display: block;
		width: 34px;
		height: 34px;
		border: 0;
		border-radius: 50%;
		background: #e9f3fa;
		transform: translateY(-50%);
	}

	.consult-form__close::before,
	.consult-form__close::after {
		content: "";
		position: absolute;
		top: 16px;
		left: 9px;
		width: 16px;
		height: 2px;
		background: #222222;
	}

	.consult-form__close::before {
		transform: rotate(45deg);
	}

	.consult-form__close::after {
		transform: rotate(-45deg);
	}

	.field label {
		font-size: 13px;
	}

	.field input {
		height: 44px;
		font-size: 15px;
	}

	.checkbox {
		justify-content: flex-start;
		font-size: 13px;
	}

	.consult-form__submit {
		width: 100%;
		height: 52px;
		font-size: 17px;
	}

	.hero__title-ai,
	.hero__title-ke,
	.hero__title-month {
		font-size: 38px;
	}

	.hero__title-ke {
		margin-left: 0;
	}

	.hero__title-month {
		margin-left: -5px;
	}

	.hero__title-campaign {
		margin-left: -6px;
	}

	.worries__column {
		padding: 10px 30px;
	}

	.speech-card {
	font-size: 0.8rem;
}
.feature-card__text h3 {
	font-size: 1rem;
}

.feature-card__text p {
	font-size: 0.8rem;
}

	.hero-cta {
		display: block;
		padding: 18px 24px 0;
		text-align: center;
		background: transparent;
	}

	.hero-cta__button {
		position: relative;
		width: min(100%, 420px);
		min-height: 50px;
		border: 2px solid #ffffff;
		border-radius: 6px;
		background: linear-gradient(90deg, #0054df 0%, #00b8d9 52%, #0054df 100%);
		box-shadow:
			0 4px 0 #0035b9,
			0 8px 16px rgba(0, 84, 223, 0.35);
		color: #ffffff;
		font-size: 16px;
		font-weight: 900;
		letter-spacing: 0.04em;
		text-shadow: 0 1px 2px rgba(0, 35, 120, 0.35);
		overflow: hidden;
	}

	.hero-cta__button::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 45%;
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.45) 0%,
			rgba(255, 255, 255, 0.08) 100%
		);
		pointer-events: none;
	}

	.hero-cta__button:active {
		transform: translateY(3px);
		box-shadow:
			0 1px 0 #0035b9,
			0 5px 10px rgba(0, 84, 223, 0.28);
	}

	body.is-form-open .hero-cta,
	body.is-thanks .hero-cta {
		display: none;
	}

	.section-inner {
		padding-left: 14px;
		padding-right: 14px;
	}

	.site-footer {
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

.site-footer__info {
	text-align: center;
	font-size: 11px;
}

.site-footer__info-row {
	grid-template-columns: 1fr;
	row-gap: 0;
}

.site-footer__company-spacer {
	display: none;
}

}

@media (max-width: 430px) {
	.hero__copy {
		left: 10%;
		top: 50%;
		width: calc(100% - 88px);
	}

	.hero__title {
		font-size: 16px;
		line-height: 1.24;
	}

	.hero__title-number {
		font-size: 40px;
	}

	.campaign__title {
		font-size: 17px;
	}

	.hero__title-ai,
	.hero__title-ke,
	.hero__title-month {
		font-size: 34px;
	}

	.hero__title-ke {
		margin-left: 0;
	}

	.hero__title-month {
		margin-left: -4px;
	}

	.hero__title-campaign {
		margin-left: -5px;
	}

	.hero-cta {
		padding: 16px 40px 0;
	}

	.hero-cta__button {
		min-height: 48px;
		font-size: 15px;
	}
}
/* =========================
   LP Animation
========================= */

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

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

@keyframes fadeZoom {
	from {
		opacity: 0;
		transform: scale(0.94);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes floatBadge {
	0%,
	100% {
		transform: translateY(0) rotate(-3deg);
	}

	50% {
		transform: translateY(-8px) rotate(2deg);
	}
}

@keyframes ctaPulse {
	0%,
	100% {
		transform: translateY(0) scale(1);
		box-shadow:
			0 4px 0 #0035b9,
			0 8px 16px rgba(0, 84, 223, 0.35);
	}

	50% {
		transform: translateY(-2px) scale(1.025);
		box-shadow:
			0 5px 0 #0035b9,
			0 14px 24px rgba(0, 184, 217, 0.45);
	}
}

@keyframes shineMove {
	0% {
		transform: translateX(-120%) skewX(-18deg);
	}

	100% {
		transform: translateX(220%) skewX(-18deg);
	}
}

/* FV表示 */
.hero__price {
	animation: fadeUp 0.7s ease-out 0.15s both;
}

.hero__title {
	animation: fadeUp 0.7s ease-out 0.35s both;
}

.hero__chance {
	animation:
		fadeZoom 0.6s ease-out 0.45s both,
		floatBadge 3.2s ease-in-out 1.1s infinite;
}

/* FV直下CTA */
.hero-cta__button {
	animation: ctaPulse 2.4s ease-in-out infinite;
}

.hero-cta__button::after {
	content: "";
	position: absolute;
	top: -20%;
	left: 0;
	width: 36px;
	height: 140%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.55) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	animation: shineMove 2.8s ease-in-out infinite;
	pointer-events: none;
}

/* スクロール表示前 */
.js-animate {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	will-change: opacity, transform;
}

/* スクロール表示後 */
.js-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 動きを減らす設定のユーザーには停止 */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.js-animate {
		opacity: 1;
		transform: none;
	}
}
