/* リセット・ベーススタイル */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

:root {
	--color-lightblue: #3498db;
	--color-blue: #2e62e5;
	--color-red: #d32013;
}

body {
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
	line-height: 1.6;
	color: #333;
	line-break: strict;
	overflow-wrap: anywhere;
	word-break: normal;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

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

main {
	flex: 1;
	width: 100%;
}

.sp-only {
	display: none;
}
.u-br-sp-only {
	display: none;
}

section[id] {
	scroll-margin-top: 82px;
}

/* ====================
   Header (BEM)
   ==================== */
.header {
	display: none;
}

@media (max-width: 1024px) {
	.header {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 100;
		padding: 8px 12px;
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}

	.header__bar {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
	}

	.header__logo {
		display: inline-flex;
		align-items: center;
		height: 42px;
		margin-right: auto;
	}

	.header__logo img {
		height: 28px;
		width: auto;
		display: block;
	}

	.header__tel {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		height: 40px;
		padding: 0 11px;
		border-radius: 8px;
		background: var(--color-blue);
		color: #fff;
		text-decoration: none;
		font-size: 12px;
		font-weight: 700;
		line-height: 1;
	}

	.header__tel-icon {
		font-size: 14px;
	}

	.header__tel-text {
		white-space: nowrap;
	}

	.header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(46, 98, 229, 0.35);
		border-radius: 8px;
		background: #fff;
		cursor: pointer;
		padding: 0;
	}

	.header__toggle-line {
		display: block;
		width: 20px;
		height: 2px;
		border-radius: 9999px;
		background: #1f2937;
		transition:
			transform 0.25s ease,
			opacity 0.2s ease;
	}

	.header.is-open .header__toggle-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.header.is-open .header__toggle-line:nth-child(2) {
		opacity: 0;
	}

	.header.is-open .header__toggle-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.header__nav {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transition:
			max-height 0.3s ease,
			opacity 0.2s ease;
	}

	.header.is-open .header__nav {
		max-height: 70vh;
		opacity: 1;
		overflow-y: auto;
		pointer-events: auto;
		margin-top: 10px;
		padding-top: 6px;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}

	.header__menu {
		width: 100%;
		gap: 0;
		flex-direction: column;
		align-items: stretch;
	}

	.header__menu-link {
		display: block;
		padding: 10px 4px;
		font-size: 15px;
		font-weight: 700;
		color: #222;
		text-decoration: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	section[id] {
		scroll-margin-top: 72px;
	}

	.hero__passage img {
		width: 80%;
		filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.6));
	}

	.hero__timer {
		transform: scale(0.64);
	}

	.hero__badge-text {
		font-size: 14px;
	}

	.hero__title-main {
		transform: scale(2.2);
	}

	.hero__title-main::after {
		display: none;
	}

	.hero__achieve-num {
		font-size: 40px;
		white-space: nowrap;
	}

	.hero__achieve-text {
		display: none;
	}

	.hero__price-value {
		gap: 0;
	}

	.hero__achieve {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 8px 10px;
	}

	.header__logo img {
		height: 26px;
	}

	.header__tel {
		height: 38px;
		padding: 0 10px;
		font-size: 11px;
	}

	.header__tel-icon {
		font-size: 13px;
	}

	.header__toggle {
		width: 38px;
		height: 38px;
	}

	.header__menu-link {
		font-size: 14px;
		padding: 10px 4px;
	}
}

@media (min-width: 1025px) {
	.header__nav {
		display: flex;
	}

	.header__menu {
		display: flex;
		list-style: none;
		gap: 25px;
		align-items: center;
	}

	.header__menu-link {
		font-size: 14px;
		font-weight: 500;
		color: #333;
		text-decoration: none;
		transition: color 0.3s ease;
		white-space: nowrap;
	}

	.header__menu-link:hover {
		color: #d32013;
	}
}

/* ====================
   Hero Section (BEM)
   ==================== */
.hero {
	position: relative;
	z-index: 20;
	background: url(images/bg.webp) center top / cover no-repeat;
	width: 100%;
	height: 900px;
	max-width: 100vw;
	margin: 0 auto;
	overflow: visible;
}

.hero__inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-width: 100vw;
	margin: 0 auto;
}

/* タブレット以下で背景画像を切り替え */
@media (max-width: 1024px) {
	.hero {
		background: url(images/sp_bg.webp) center top / cover no-repeat;
	}

	/* 背景の真ん中にぼかした白い円 */
	.hero__inner::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.67) 40%, transparent 70%);
		border-radius: 50%;
		z-index: 5;
		pointer-events: none;
	}
}

/* スライダー背景 */
.hero__slider {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 1;
	overflow: hidden;
}

.hero__slider::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.2);
	pointer-events: none;
	z-index: 1;
}

.hero__slider-col {
	width: 280px;
	height: 1100px;
	position: absolute;
	top: -50px;
	overflow: hidden;
	transform: rotate(10deg);
}

.hero__slider-col--left {
	left: calc(50% - 750px);
}

.hero__slider-col--right {
	right: calc(50% - 750px);
}

.hero__slider-col .swiper-wrapper {
	transition-timing-function: linear !important;
}

.hero__slider-col .swiper-slide {
	width: 280px !important;
	height: 465px !important;
}

.hero__slider-col .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 締切カウントダウン */
.hero__countdown {
	position: relative;
	z-index: 10;
	text-align: center;
	margin: 18px auto -42px;
	max-width: 600px;
	font-family: 'Noto Sans JP', sans-serif;
	transform: scale(0.8);
	transform-origin: top center;
}

.hero__countdown-deadline {
	font-size: 24px;
	font-weight: 700;
	color: #d32013;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.hero__slash {
	display: inline-block;
}

.hero__slash--right {
	transform: scaleX(-1);
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	background: #fff;
	border: 3px solid #d32013;
	border-radius: 50px;
	padding: 12px 30px;
	margin-bottom: 24px;
}

.hero__badge::before,
.hero__badge::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	pointer-events: none;
}

.hero__badge::before {
	top: 100%;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 13px solid #d32013;
}

.hero__badge::after {
	top: calc(100% - 3px);
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-top: 11px solid #fff;
}

.hero__badge-icon {
	font-size: 24px;
	color: #d32013;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.hero__badge-text {
	font-size: 20px;
	font-weight: 700;
	color: #d32013;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.hero__badge-text strong {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.hero__timer {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	background: #1a1a1a;
	border-radius: 10px;
	padding: 16px 40px 4px;
}

.hero__timer-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.hero__timer-num {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 58px;
}

.hero__seg-digit {
	position: relative;
	width: 34px;
	height: 56px;
}

.hero__seg {
	position: absolute;
	background: rgba(245, 213, 71, 0.12);
	border-radius: 3px;
	opacity: 0.35;
	transition:
		opacity 0.15s ease,
		background-color 0.15s ease,
		box-shadow 0.15s ease;
}

.hero__seg.is-on {
	background: #f5d547;
	opacity: 1;
	box-shadow: 0 0 10px rgba(245, 213, 71, 0.75);
}

.hero__seg--a,
.hero__seg--g,
.hero__seg--d {
	left: 7px;
	width: 20px;
	height: 4px;
}

.hero__seg--a {
	top: 0;
}

.hero__seg--g {
	top: 26px;
}

.hero__seg--d {
	bottom: 0;
}

.hero__seg--f,
.hero__seg--b,
.hero__seg--e,
.hero__seg--c {
	width: 4px;
	height: 22px;
}

.hero__seg--f {
	top: 3px;
	left: 0;
}

.hero__seg--b {
	top: 3px;
	right: 0;
}

.hero__seg--e {
	bottom: 3px;
	left: 0;
}

.hero__seg--c {
	bottom: 3px;
	right: 0;
}

.hero__timer-label {
	font-size: 14px;
	font-weight: 500;
	color: #f5d547;
	letter-spacing: 0.1em;
}

.hero__timer-sep {
	position: relative;
	display: inline-block;
	width: 8px;
	height: 58px;
	align-self: flex-start;
	font-size: 0;
	color: transparent;
}

.hero__timer-sep::before,
.hero__timer-sep::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 1px;
	background: #f5d547;
	box-shadow: 0 0 8px rgba(245, 213, 71, 0.65);
}

.hero__timer-sep::before {
	transform: translateY(calc(-50% - 10px));
}

.hero__timer-sep::after {
	transform: translateY(calc(-50% + 10px));
}

/* メイン画像（H1） */
.hero__title-main {
	position: relative;
	z-index: 10;
	margin: 18px auto;
	font-size: 0;
	line-height: 0;
	width: 100%;
	overflow: visible;
	display: flex;
	flex-direction: column;
}

.hero__title-main::after {
	content: '';
	position: absolute;
	top: -116px;
	left: calc(56% + 360px);
	width: 140px;
	aspect-ratio: 1 / 1;
	background: url(images/balloon.png) center / contain no-repeat;
	transform: none;
	pointer-events: none;
	z-index: 3;
}

.hero__title-layer {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.hero__title-layer--back {
	position: relative;
	z-index: 1;
	isolation: isolate;
}

.hero__title-layer--front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.hero__title-layer img {
	width: 2600px;
	min-width: 2400px;
	max-width: none;
	height: auto;
	display: block;
}

.hero__title-layer--back img {
	position: relative;
	z-index: 1;
}

.hero__speed-lines {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 2;
}

.hero__speed-line {
	position: absolute;
	left: 0;
	top: 50%;
	display: block;
	width: 200px;
	height: 2px;
	border-radius: 2px;
	transform: translateX(-280px);
	will-change: transform, opacity;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 35%, rgba(255, 255, 255, 0.92) 62%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
}

/* 装飾SVG */
.hero__passage {
	position: relative;
	z-index: 10;
	text-align: center;
	margin: 12px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__passage img {
	max-width: 600px;
	height: auto;
	margin: 0 auto;
}

.hero__deco {
	position: absolute;
	bottom: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1000px;
	z-index: 5;
	opacity: 0.6;
}

.hero__deco-svg {
	width: 100%;
	height: auto;
}

/* 実績カウンター */
.hero__achieve {
	position: relative;
	z-index: 10;

	margin: 22px auto;
	text-align: center;
}

.hero__achieve-text {
	font-size: 19px;
	font-weight: 700;
	color: #333;
	margin-bottom: 0;
	text-align: center;
	letter-spacing: 0.02em;
}

.hero__achieve-counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.hero__achieve-laurel {
	flex-shrink: 0;
	width: 65px;
	height: 132px;
}

.hero__achieve-laurel--left {
	margin-right: 5px;
}

.hero__achieve-laurel--right {
	margin-left: 5px;
}

.hero__achieve-img1,
.hero__achieve-img2 {
	flex-shrink: 0;
}

.hero__achieve-img1 img {
	width: 75px;
	height: auto;
}

.hero__achieve-img2 img {
	width: 47px;
	height: auto;
}

.hero__achieve-num {
	font-size: 119px;
	font-weight: 700;
	color: #ca9724;
	font-family: 'Noto Serif', serif;
	line-height: 1;
}

.hero__achieve-num.odometer {
	display: inline-block;
}

/* odometer内部の数字にフォントを適用 */
.hero__achieve-num .odometer-digit,
.hero__achieve-num .odometer-value,
.hero__achieve-num .odometer-formatting-mark {
	font-family: 'Noto Serif', serif;
}

.hero__achieve-num .odometer-formatting-mark {
	font-size: 0.8em;
}

/* 価格バナー */
.hero__price {
	position: relative;
	z-index: 10;
	max-width: 680px;
	margin: 18px auto;
}

.hero__price-header {
	display: block;
	position: relative;
	background: linear-gradient(to right, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.95) 15%, rgba(26, 26, 26, 0.95) 85%, rgba(26, 26, 26, 0) 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 7px 40px;
	margin: 0;
	min-height: 40px;
}

.hero__price-body {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 14px 30px;
}

.hero__price-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero__price-value {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.hero__price-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	flex-shrink: 0;
}

.hero__price-badge--blue {
	background: var(--color-lightblue);
}

.hero__price-badge--red {
	background: #d32013;
}

.hero__price-num {
	font-size: 48px;
	font-weight: 700;
	color: #1a1a1a;
	font-family: 'Yantramanav', sans-serif;
	line-height: 1;
}

.hero__price-unit {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
}

/* ヒーロー内CTAラッパー */
.hero__cta {
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 0;
	width: min(1220px, 96vw);
	z-index: 9999;
}

.hero__cta .cta-btn {
	width: 100%;
	min-width: 0;
}

/* ====================
   CTA Button (共有コンポーネント)
   ==================== */
.cta-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 18px 40px 18px 30px;
	border-radius: 9999px;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	min-width: 520px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow:
		0 0 0 3px currentColor,
		inset 0 0 0 3px rgba(255, 255, 255, 0.1),
		0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn--line:hover {
	box-shadow:
		0 0 0 3px var(--color-blue),
		inset 0 0 0 3px rgba(255, 255, 255, 0.1),
		0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn--mail:hover {
	box-shadow:
		0 0 0 3px #d32013,
		inset 0 0 0 3px rgba(255, 255, 255, 0.1),
		0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn--line {
	background: linear-gradient(to bottom, #4d78ee 0%, #2e62e5 45%, #2049c2 100%);
	border: 3px solid #fff;
	box-shadow:
		0 0 0 3px var(--color-blue),
		inset 0 0 0 8px rgba(255, 255, 255, 0.08),
		0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.cta-btn--line::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 80%;
	height: 200%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
	transform: skewX(-20deg);
	animation: shineSoft 4s ease-in-out infinite;
}

.cta-btn--mail {
	background: linear-gradient(to bottom, #e14d40 0%, #b81e12 100%);
	border: 3px solid #fff;
	box-shadow:
		0 0 0 3px #d32013,
		inset 0 0 0 8px rgba(255, 255, 255, 0.08),
		0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.cta-btn--mail::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -100%;
	width: 80%;
	height: 200%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
	transform: skewX(-20deg);
	animation: shineSoft 4s ease-in-out infinite;
	animation-delay: 2s;
}

@keyframes shineSoft {
	0% {
		left: -100%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	50% {
		left: 150%;
		opacity: 1;
	}
	60% {
		opacity: 0;
	}
	100% {
		left: 150%;
		opacity: 0;
	}
}

@keyframes organicWaveDiagonal {
	0% {
		background-position: 0% 50%;
	}
	25% {
		background-position: 50% 100%;
	}
	50% {
		background-position: 100% 50%;
	}
	75% {
		background-position: 50% 0%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.cta-btn__sub {
	font-size: 18px;
	font-weight: 500;
}

.cta-btn__main {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.cta-btn__arrow {
	position: absolute;
	right: 42px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 32px;
	line-height: 1;
}

/* PC右上：電話番号 */
.hero__tel-pc {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
	display: block;
}

.hero__tel-pc img {
	width: 360px;
	max-width: none;
	height: auto;
}

/* 2セクション目：今日頼める・悩み解決 */
.section-same-day-solution {
	position: relative;
	z-index: 0;
	isolation: isolate;
	overflow: hidden;
	background: #f5f5f5;
}

.section-same-day-solution::before,
.section-same-day-solution::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: clamp(240px, 42vw, 560px);
	pointer-events: none;
}

.section-same-day-solution::before {
	z-index: 0;
	background: url(images/bg-meeting.webp) center bottom / cover no-repeat;
	filter: saturate(12%) brightness(0.92);
	opacity: 0.4;
}

.section-same-day-solution::after {
	z-index: 1;
	background:
		/* 上側を不透明にして境目をフェード */
		linear-gradient(to bottom, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0.85) 14%, rgba(245, 245, 245, 0.35) 36%, rgba(245, 245, 245, 0) 60%),
		/* 水色を薄く重ねる */ linear-gradient(to bottom, rgba(52, 152, 219, 0.22), rgba(52, 152, 219, 0.3));
}

.section-same-day-solution__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 200px 24px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.section-same-day-solution__title {
	margin: 0 auto 24px;
}

.section-same-day-solution__title img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.section-same-day-solution__lead {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 40px;
}

.section-same-day-solution__worry-list {
	list-style: none;
	padding: 0;
	margin: 0 0 48px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

@keyframes worryShake {
	0%,
	70%,
	100% {
		transform: rotate(0deg);
	}
	72% {
		transform: rotate(-2deg);
	}
	74% {
		transform: rotate(2deg);
	}
	76% {
		transform: rotate(-1.5deg);
	}
	78% {
		transform: rotate(1.5deg);
	}
	80% {
		transform: rotate(-1deg);
	}
	82% {
		transform: rotate(0deg);
	}
}

.section-same-day-solution__worry-item {
	flex: 1 1 0;
	min-width: 0;
	max-width: 320px;
	animation: worryShake 4s ease-in-out infinite;
	transform-origin: center bottom;
}

.section-same-day-solution__worry-item:nth-child(1) {
	animation-delay: 0s;
}
.section-same-day-solution__worry-item:nth-child(2) {
	animation-delay: 1s;
}
.section-same-day-solution__worry-item:nth-child(3) {
	animation-delay: 2s;
}
.section-same-day-solution__worry-item:nth-child(4) {
	animation-delay: 3s;
}

.section-same-day-solution__worry-item:nth-child(2),
.section-same-day-solution__worry-item:nth-child(3) {
	margin-top: 48px;
}

.section-same-day-solution__worry-item img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.18));
}

.section-same-day-solution__messages {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-top: 64px;
}

.section-same-day-solution__message-img {
	width: auto;
	height: auto;
	max-width: 100%;
}

.section-same-day-solution__arrow {
	position: relative;
	--arrow-size: 40px;
	--arrow-stroke: 13.3333333333px;
	--arrow-color: rgba(211, 32, 19, 0.7);
	width: var(--arrow-size);
	height: var(--arrow-size);
}

.section-same-day-solution__arrow::before,
.section-same-day-solution__arrow::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-left: var(--arrow-stroke) solid var(--arrow-color);
	border-bottom: var(--arrow-stroke) solid var(--arrow-color);
	animation: sameDayArrowFlow 3s linear infinite;
}

.section-same-day-solution__arrow::before {
	transform: translate(var(--arrow-stroke), calc(var(--arrow-stroke) * 4)) rotate(-45deg);
}

.section-same-day-solution__arrow::after {
	transform: translate(calc(var(--arrow-stroke) * 2), 0) rotate(-45deg);
	animation-delay: -1.5s;
}

@keyframes sameDayArrowFlow {
	0% {
		border-left-color: rgba(211, 32, 19, 0);
		border-bottom-color: rgba(211, 32, 19, 0);
		transform: translate(calc(var(--arrow-stroke) * -0.5), calc(var(--arrow-stroke) * -2)) rotate(-45deg);
	}
	10%,
	90% {
		border-left-color: rgba(211, 32, 19, 0);
		border-bottom-color: rgba(211, 32, 19, 0);
	}
	50% {
		border-left-color: rgba(211, 32, 19, 0.7);
		border-bottom-color: rgba(211, 32, 19, 0.7);
		transform: translate(calc(var(--arrow-stroke) * -0.5), 0) rotate(-45deg);
	}
	100% {
		border-left-color: rgba(211, 32, 19, 0);
		border-bottom-color: rgba(211, 32, 19, 0);
		transform: translate(calc(var(--arrow-stroke) * -0.5), calc(var(--arrow-stroke) * 2)) rotate(-45deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-same-day-solution__arrow::before,
	.section-same-day-solution__arrow::after {
		animation: none;
		border-left-color: var(--arrow-color);
		border-bottom-color: var(--arrow-color);
		transform: translate(calc(var(--arrow-stroke) * -0.5), 0) rotate(-45deg);
	}
}

.section-same-day-solution__cta {
	display: flex;
	justify-content: center;
	margin-top: 56px;
}

.section-same-day-solution__cta-btn {
	width: min(1220px, 100%);
	min-width: 0;
	padding: 22px 64px 22px 44px;
}

.section-feature {
	position: relative;
	padding: 200px 24px 120px;
	background-color: #e8f6fb;
	background-image:
		url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='rgba(30%2C160%2C210%2C0.2)'/%3E%3C/svg%3E"),
		radial-gradient(ellipse 80% 60% at 10% 20%, rgba(30, 160, 210, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 90% 10%, rgba(100, 200, 240, 0.10) 0%, transparent 55%),
		radial-gradient(ellipse 70% 60% at 80% 85%, rgba(30, 160, 210, 0.08) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 30% 90%, rgba(173, 230, 255, 0.05) 0%, transparent 50%);
	display: block;
}

.section-feature__visual {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	z-index: 5;
}

.section-feature__visual img {
	width: auto;
	max-width: none;
	height: auto;
	display: block;
}

.section-feature__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* sample由来クラス */
.u-desktop-only {
	display: block;
}

.u-mobile-only {
	display: none;
}

.u-flex {
	display: flex;
}

.section-feature .feature-overview {
	position: relative;
	width: 100%;
	color: #211513;
}

.section-feature .feature-overview .feature-overview__block .feature-overview__caption {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.42;
}

.section-feature .feature-overview .feature-overview__block .feature-overview__caption .feature-overview__caption-highlight {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	isolation: isolate;
	z-index: 10;
	padding: 2px 8px 3px;
	color: #fff;
}

.section-feature .feature-overview .feature-overview__block .feature-overview__caption .feature-overview__caption-highlight::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 100%;
	background: linear-gradient(to right, var(--color-lightblue) 0%, var(--color-blue) 100%);
	z-index: -1;
	transition: all 0.8s;
}

.section-feature .feature-overview .feature-overview__block .feature-overview__caption.is-caption-highlight-active .feature-overview__caption-highlight::after {
	width: 100%;
}

.section-feature .feature-overview .feature-overview__block--speed {
	width: 100%;
	justify-content: space-between;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__image-wrap {
	margin-left: 30px;
	width: 512px;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content {
	width: 50%;
	margin-right: 8px;
	margin-top: 18px;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__number {
	width: 36px;
	margin-bottom: 20px;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group {
	margin-left: 46px;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group .feature-overview__speed-lead {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.46;
	margin-bottom: 7px;
}

.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group .feature-overview__speed-body {
	margin-top: 32px;
	width: 510px;
	padding: 24px 24px 20px;
	font-size: 16px;
	line-height: 1.87;
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(46, 98, 229, 0.2);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(46, 98, 229, 0.08);
}

.section-feature .feature-overview .feature-overview__block--publish {
	position: relative;
	width: 100%;
	justify-content: space-between;
	margin-top: 86px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__connector {
	position: absolute;
	width: 142px;
	top: -58px;
	left: calc(50% - 70px);
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__image-wrap {
	margin-top: 15px;
	margin-right: 26px;
	width: 498px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content {
	width: 50%;
	margin-left: 42px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__number {
	width: 56px;
	margin-bottom: 20px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__caption-inline {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.53;
	padding-left: 5px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__publish-lead {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.53;
	margin-top: 7px;
}

.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__publish-body {
	margin-top: 22px;
	width: 500px;
	padding: 24px 24px 20px;
	font-size: 16px;
	line-height: 1.87;
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(46, 98, 229, 0.2);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(46, 98, 229, 0.08);
}

.section-feature .feature-overview .feature-overview__flow-title {
	margin-top: 52px;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
}

.section-feature .feature-overview .feature-overview__flow-title .feature-overview__flow-title-highlight {
	padding-top: 0.3em;
	background-position: top left -1px;
	background-repeat: repeat-x;
	background-size: 1.05em 0.5em;
	background-image: radial-gradient(0.1em 0.1em at center center, var(--color-red), var(--color-red) 100%, transparent);
}

.section-feature .feature-overview .feature-overview__flow {
	width: min(1000px, 100%);
	margin: 22px auto 0;
}

.section-feature .feature-overview .quick-flow__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(5, max-content);
	justify-content: center;
	gap: 30px;
}

.section-feature .feature-overview .quick-flow {
	width: min(1080px, 100%);
	margin: 22px auto 0;
	padding: 0;
}

.section-feature .feature-overview .quick-flow__item {
	min-width: auto;
	width: max-content;
	position: relative;
}

.section-feature .feature-overview .quick-flow__card {
	width: 128px;
	height: 100%;
	min-height: 130px;
	padding: 14px 8px 10px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition:
		border-color 0.45s ease,
		transform 0.45s ease;
}

.section-feature .feature-overview .quick-flow__item::before {
	content: attr(data-step);
	position: absolute;
	top: -4px;
	left: -4px;
	padding: 4px 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #fff;
	background: linear-gradient(135deg, var(--color-lightblue) 0%, var(--color-blue) 100%);
	border-radius: 999px;
	pointer-events: none;
	z-index: 2;
}

.section-feature .feature-overview .quick-flow__item:not(:last-child)::after {
	content: '\f061';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: -23px;
	transform: translateY(-50%);
	font-size: 15px;
	line-height: 1;
	color: rgba(46, 98, 229, 0.7);
	pointer-events: none;
	z-index: 2;
}

.section-feature .feature-overview .quick-flow__card-icon {
	width: 56px;
	height: 56px;
	display: block;
	transition: filter 0.35s ease;
}

.section-feature .feature-overview .quick-flow__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #233559;
	letter-spacing: 0.03em;
	text-align: center;
	transition: color 0.45s ease;
}

.section-feature .feature-overview .quick-flow__item.is-active .quick-flow__card {
	background: var(--color-lightblue);
	border-color: rgba(46, 98, 229, 0.95);
	box-shadow: none;
	transform: translateY(-2px);
}

.section-feature .feature-overview .quick-flow__item.is-active .quick-flow__title {
	color: #fff;
}

.section-feature .feature-overview .quick-flow__item.is-active .quick-flow__card-icon {
	filter: brightness(0) saturate(100%) invert(100%);
}

.section-feature .feature-overview .feature-overview__block--target {
	position: relative;
	margin: 128px auto 0;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__divider {
	position: absolute;
	width: 1px;
	height: 80px;
	background-color: #707070;
	top: -120px;
	left: 50%;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__content {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__number {
	width: 55px;
	margin-top: 6px;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group {
	max-width: 860px;
}
.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group .feature-overview__caption {
	text-align: center;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group .feature-overview__target-lead {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-top: 16px;
}

.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group .feature-overview__target-body {
	margin-top: 24px;
	padding: 24px 24px 20px;
	font-size: 16px;
	line-height: 1.87;
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(46, 98, 229, 0.2);
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(46, 98, 229, 0.08);
}

.section-feature .feature-overview .feature-overview__summary {
	margin: 88px auto 60px;
	width: min(832px, 100%);
}

.section-feature .feature-overview .feature-overview__summary img {
	width: 100%;
	height: auto;
	display: block;
}

.section-feature .feature-overview .feature-overview__bakusoku {
	position: relative;
	margin: 32px auto 0;
	width: min(595px, 100%);
	padding: 18px 42px 28px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 14px 30px rgba(26, 46, 84, 0.14);
	overflow: visible;
}

.section-feature .feature-overview .feature-overview__bakusoku img {
	width: 100%;
	height: auto;
	display: block;
	margin-top: -36px;
}

.section-feature .feature-overview .feature-overview__bakusoku-text {
	margin-top: 18px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.85;
	letter-spacing: 0.04em;
	text-align: center;
}

.section-feature .feature-overview .feature-overview__bakusoku-text-accent {
	color: var(--color-red);
}

.section-feature .feature-overview .feature-overview__bakusoku-wrap {
	position: relative;
	padding: 80px 0 80px;
}

.section-feature .feature-overview .feature-overview__bg-slider {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	overflow: hidden;
	z-index: 0;
}

.section-feature .feature-overview .feature-overview__bg-slider::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.section-feature .feature-overview .feature-overview__bg-row {
	width: 100%;
	height: 180px;
	transform: rotate(-5deg);
}

.section-feature .feature-overview .feature-overview__bg-row .swiper-wrapper {
	transition-timing-function: linear !important;
}

.section-feature .feature-overview .feature-overview__bg-row .swiper-slide {
	width: 130px !important;
	height: 180px !important;
}

.section-feature .feature-overview .feature-overview__bg-row .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-feature .feature-overview .feature-overview__bakusoku {
	position: relative;
	z-index: 1;
}

.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-catch {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-lead {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-main {
	margin-top: 20px;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.02em;
	color: #1f57dc;
}

.section-flow {
	position: relative;
	isolation: isolate;
	display: block;
	overflow: hidden;
	padding: 96px 24px 130px;
	background: #fff7f0;
	text-align: center;
}

.section-flow::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	z-index: 0;
	height: min(46vw, 560px);
	background: url(images/bg-flow.webp) center top / cover no-repeat;
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
	pointer-events: none;
}

.section-flow__inner {
	position: relative;
	z-index: 1;
	width: min(1440px, 100%);
	margin: 0 auto;
}

.section-flow__articles {
	width: 1135px;
	max-width: 100%;
	margin: 0 auto 34px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-flow__article {
	margin: 0;
}

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

.section-flow__member {
	width: 1079px;
	max-width: 100%;
	margin: 0 auto 34px;
}

.section-flow__member img {
	width: 100%;
	height: auto;
}

.section-flow__content {
	position: relative;
	z-index: 1;
}

.section-flow__trust-box {
	width: 100vw;
	margin: 40px auto 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 60px 32px;
	background: var(--color-lightblue);
	border-radius: 0;
	overflow: hidden;
}

.section-flow__catch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin: 0;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.45;
	color: #fff;
}

.section-flow__catch-text {
	display: block;
}

.section-flow__catch-icon {
	flex: 0 0 39px;
	width: 39px;
	height: 79px;
}

.section-flow__catch-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.section-flow__catch-icon--right {
	transform: scaleX(-1);
}

.section-flow__logos {
	margin-top: 22px;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

@media (max-width: 1024px) {
	.hero {
		height: auto;
		padding-bottom: 110px;
	}

	.hero__title-layer img {
		width: 1700px;
		min-width: 1200px;
	}

	.hero__title-main::after {
		top: -64px;
		left: calc(56% + 220px);
		width: 110px;
	}

	.hero__tel-pc img {
		width: 280px;
	}

	.hero__price {
		margin: 0 auto;
	}

	.hero__cta {
		gap: 14px;
		width: calc(100% - 48px);
	}

	.cta-btn {
		min-width: 340px;
	}

	.section-feature {
		overflow: visible;
	}

	.section-feature__visual img {
		max-width: min(92vw, 680px);
	}

	.section-legacy-comparison__stars {
		width: 100%;
		gap: 8px;
	}

	.section-legacy-comparison__stars-row {
		gap: clamp(6px, 1.2vw, 10px);
	}

	.section-legacy-comparison__stars-row img {
		width: clamp(52px, 7.8vw, 84px);
		height: auto;
	}

	.fix-side-menu {
		display: none;
	}
}

.section-flow__logos-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: flowLogosMarquee 28s linear infinite;
}

.section-flow__logos-track img {
	width: auto;
	max-width: none;
	height: 100px;
	flex: 0 0 auto;
}

.section-flow__eyebrow {
	margin: 0 0 8px;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.35;
	color: #111;
}

.section-flow__title {
	margin: 0;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.35;
	color: #050505;
}

.section-flow__marker {
	display: inline;
	background: linear-gradient(to top, #e6ff3f 0%, #e6ff3f 42%, transparent 42%, transparent 100%);
}

.section-flow__lead {
	margin: 34px auto 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.65;
	color: #333;
}

.section-legacy-comparison {
	position: relative;
	isolation: isolate;
	display: block;
	padding: 96px 24px 120px;
	background-color: #eef2ff;
	background-image:
		linear-gradient(rgba(46, 98, 229, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(46, 98, 229, 0.08) 1px, transparent 1px),
		linear-gradient(to bottom, #eef2ff 0%, #fff 100%);
	background-size: 20px 20px, 20px 20px, 100% 100%;
	background-position: 0 0, 0 0, 0 0;
	overflow: hidden;
}

.section-legacy-comparison::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('bg_block_left.png'), url('bg_block_right.png');
	background-position: left top, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: auto;
	opacity: 0.1;
	pointer-events: none;
	z-index: -1;
}

.section-legacy-comparison__inner {
	position: relative;
	z-index: 1;
	width: min(1200px, 100%);
	margin: 0 auto;
}

.section-legacy-comparison__title {
	margin: 0 0 52px;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(44px, 5.1vw, 68px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: #1f2530;
}

.section-legacy-comparison__title-text {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	gap: 0.04em;
	padding: 0 0.86em;
	white-space: nowrap;
}

.section-legacy-comparison__title-text::before,
.section-legacy-comparison__title-text::after {
	position: absolute;
	top: 50%;
	transform: translateY(-54%);
	font-size: 0.92em;
	font-weight: 400;
	line-height: 1;
	color: #2b3543;
}

.section-legacy-comparison__title-text::before {
	content: '[';
	left: 0;
}

.section-legacy-comparison__title-text::after {
	content: ']';
	right: 0;
}

.section-legacy-comparison__title-accent {
	color: #d32013;
}

.section-legacy-comparison__arrow {
	margin: 34px auto 0;
	--arrow-size: 42px;
	--arrow-stroke: 13px;
	--arrow-color: rgba(211, 32, 19, 0.75);
}

.section-legacy-comparison__images {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(14px, 2vw, 24px);
}

.section-legacy-comparison__image {
	margin: 0;
	flex: 1 1 0;
	max-width: 548px;
}

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

.section-legacy-comparison__about-image {
	width: min(1200px, 100%);
	margin: 40px auto 0;
}

.section-legacy-comparison__about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.section-legacy-comparison__content-image {
	width: min(1200px, 100%);
	margin: 40px auto 0;
}

.section-legacy-comparison__content-image img {
	width: 100%;
	height: auto;
	display: block;
}

.section-legacy-comparison__stars {
	position: relative;
	z-index: 1;
	margin: 28px auto 0;
	width: min(1200px, 100%);
	display: grid;
	gap: 12px;
}

.section-legacy-comparison__stars-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(8px, 1.4vw, 16px);
}

.section-legacy-comparison__stars-row img {
	display: block;
	width: auto;
	height: auto;
	opacity: 0;
	transform: translateY(-18px) scaleY(0.82);
	transform-origin: top center;
	animation: none;
	will-change: transform, opacity;
}

.section-legacy-comparison__stars.is-inview .section-legacy-comparison__stars-row img {
	animation: legacyStarRise 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.section-legacy-comparison__stars-row img:nth-child(1) {
	animation-delay: 0s;
}

.section-legacy-comparison__stars-row img:nth-child(2) {
	animation-delay: 0.12s;
}

.section-legacy-comparison__stars-row img:nth-child(3) {
	animation-delay: 0.24s;
}

.section-legacy-comparison__stars-row img:nth-child(4) {
	animation-delay: 0.36s;
}

.section-legacy-comparison__stars-row img:nth-child(5) {
	animation-delay: 0.48s;
}

@keyframes legacyStarRise {
	0% {
		opacity: 0;
		transform: translateY(-18px) scaleY(0.82);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scaleY(1);
	}
}

.section-google-reviews {
	padding: 64px 24px 88px;
	background: #efefef;
}

.section-google-reviews__inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}

.section-google-reviews__summary {
	background: #e1e1e1;
	border-radius: 10px;
	padding: 20px 20px 18px;
	text-align: center;
}

.section-google-reviews__heading {
	margin: 0;
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 700;
	line-height: 1.25;
	color: #111;
}

.section-google-reviews__google {
	font-weight: 600;
	background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-google-reviews__score {
	margin: 6px 0 0;
	font-size: clamp(34px, 3.8vw, 52px);
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.section-google-reviews__score .section-google-reviews__stars {
	font-size: clamp(28px, 2.8vw, 40px);
	color: #ff7a00;
	letter-spacing: 0.08em;
}

.section-google-reviews__count {
	font-size: clamp(16px, 1.8vw, 24px);
	font-weight: 500;
	color: #8e8e8e;
}

.section-google-reviews__grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 90px 24px;
}

.section-google-reviews__card {
	position: relative;
	background: #e4e4e4;
	border-radius: 10px;
	padding: 16px 16px 58px;
	min-height: 190px;
}

.section-google-reviews__card::after {
	content: '';
	position: absolute;
	left: 24px;
	bottom: -16px;
	border-top: 16px solid #e4e4e4;
	border-right: 16px solid transparent;
}

.section-google-reviews__card-stars {
	margin: 0;
	font-size: clamp(18px, 1.4vw, 24px);
	letter-spacing: 0.08em;
	color: #ff7a00;
	line-height: 1;
}

.section-google-reviews__text {
	margin: 12px 0 0;
	font-size: clamp(13px, 1vw, 16px);
	font-weight: 500;
	line-height: 1.45;
	color: #111;
}

.section-google-reviews__more {
	margin: 6px 0 0;
	font-size: clamp(12px, 0.95vw, 14px);
	color: #5f5f5f;
}

.section-google-reviews__more.is-hidden {
	display: none;
}

.section-google-reviews__author {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -52px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: clamp(16px, 1.35vw, 20px);
	font-weight: 600;
	color: #111;
}

.section-google-reviews__check {
	color: #4fc3f7;
}

.section-google-reviews__avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.section-google-reviews__avatar--green {
	background: #5f9d3f;
}

.section-google-reviews__avatar--purple {
	background: #6b45c4;
}

.section-google-reviews__avatar--blue {
	background: #3a82d6;
}

.section-google-reviews__avatar--indigo {
	background: #606cc9;
}

.section-google-reviews__avatar--sky {
	background: #7ea8ff;
}

.section-google-reviews__avatar--cyan {
	background: #0d8cd8;
}

.section-google-reviews__avatar--olive {
	background: #88aa37;
}

.section-google-reviews__avatar--navy {
	background: #2d4d8d;
}

@keyframes flowLogosMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 1024px) {
	.u-br-sp-only {
		display: block;
	}
	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__number {
		width: 24px;
	}
	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__number {
		width: 37px;
	}
	.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__number {
		width: 37px;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.hero__tel-pc {
		display: none;
	}

	.u-desktop-only {
		display: none !important;
	}

	.u-mobile-only {
		display: block !important;
	}

	.section-feature .feature-overview .feature-overview__block .feature-overview__caption {
		font-size: 6.4vw;
	}

	.section-google-reviews {
		padding: 52px 16px 70px;
	}

	.section-google-reviews__heading {
		font-size: clamp(22px, 5.5vw, 32px);
	}

	.section-google-reviews__score {
		font-size: clamp(34px, 8vw, 48px);
	}

	.section-google-reviews__score .section-google-reviews__stars {
		font-size: clamp(28px, 6vw, 38px);
	}

	.section-google-reviews__count {
		font-size: clamp(18px, 4.5vw, 26px);
	}

	.section-google-reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 90px 12px;
	}

	.section-google-reviews__card {
		padding: 14px 14px 56px;
		min-height: 162px;
	}

	.section-google-reviews__card-stars {
		font-size: clamp(16px, 3.3vw, 21px);
	}

	.section-google-reviews__text {
		font-size: clamp(12px, 2.9vw, 15px);
	}

	.section-google-reviews__more {
		font-size: clamp(11px, 2.6vw, 13px);
	}

	.section-google-reviews__author {
		font-size: 14px;
		bottom: -48px;
	}
	.section-google-reviews__author span:last-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		min-width: 0;
	}

	.section-google-reviews__avatar {
		width: 34px;
		height: 34px;
		font-size: 17px;
	}

	.section-feature .feature-overview .feature-overview__block .feature-overview__caption .feature-overview__caption-highlight {
		white-space: normal;
		-webkit-box-decoration-break: clone;
		box-decoration-break: clone;
		padding: 0.5333333333vw 1.3333333333vw 0.8vw;
		background: linear-gradient(to right, var(--color-lightblue) 0%, var(--color-blue) 100%);
		background-size: 0% 100%;
		background-repeat: no-repeat;
		transition: background-size 0.8s;
	}

	.section-feature .feature-overview .feature-overview__block .feature-overview__caption .feature-overview__caption-highlight::after {
		display: none;
	}

	.section-feature .feature-overview .feature-overview__block .feature-overview__caption.is-caption-highlight-active .feature-overview__caption-highlight {
		background-size: 100% 100%;
	}

	.section-feature .feature-overview .feature-overview__block--speed {
		display: block;
		width: 90.6666666667vw;
		margin: 0 auto;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__image-wrap {
		margin: 0 auto;
		width: 82vw;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content {
		width: 100%;
		margin: 7.4666666667vw auto 0;
		display: block;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group {
		margin-left: 0;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group .feature-overview__speed-lead {
		font-size: 3.8vw;
		line-height: 1.34;
		margin-bottom: 2.6666666667vw;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group .feature-overview__speed-body {
		margin-top: 8.5333333333vw;
		width: 100%;
		padding: 4.6666666667vw 4.2666666667vw;
		font-size: 3.2vw;
		line-height: 1.84;
	}

	.section-feature .feature-overview .feature-overview__block--publish {
		flex-direction: column-reverse;
		width: 90.6666666667vw;
		margin: 40vw auto 0;
		justify-content: center;
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__connector {
		width: 18.9333333333vw;
		top: -28.8vw;
		left: calc(50% - 9.3333333333vw);
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__image-wrap {
		margin: 0 auto;
		width: 79.7333333333vw;
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content {
		width: 100%;
		margin: 7.2vw auto 0;
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__caption-inline {
		font-size: 3.8vw;
		line-height: 1.34;
		padding-left: 1.3333333333vw;
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__publish-lead {
		font-size: 3.8vw;
		line-height: 1.34;
		margin-top: 1.8666666667vw;
	}

	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__publish-body {
		margin-top: 7.7333333333vw;
		width: 100%;
		padding: 4.6666666667vw 4.2666666667vw;
		font-size: 3.2vw;
		line-height: 1.84;
	}

	.section-feature .feature-overview .feature-overview__flow-title {
		margin-top: 12.5333333333vw;
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}

	.section-feature .feature-overview .feature-overview__flow {
		width: 100vw;
		margin: 4vw auto 0;
	}

	.section-feature .feature-overview .quick-flow {
		width: 100%;
		padding: 0 0 4px;
		overflow-x: auto;
	}

	.section-feature .feature-overview .quick-flow__list {
		min-width: 0;
		grid-template-columns: repeat(3, 1fr);
		justify-content: center;
		gap: 16px;
		padding: 6px 0 0 6px;
	}

	.section-feature .feature-overview .quick-flow__item {
		width: 100%;
		padding: 0;
	}

	.section-feature .feature-overview .quick-flow__item::before {
		top: -4px;
		left: -4px;
		padding: 3px 6px;
		font-size: 9px;
	}

	.section-feature .feature-overview .quick-flow__item:not(:last-child)::after {
		display: none;
	}

	.section-feature .feature-overview .quick-flow__card {
		width: 100%;
		min-height: 90px;
		padding: 12px 6px 8px;
		gap: 6px;
	}

	.section-feature .feature-overview .quick-flow__card-icon {
		width: 34px;
		height: 34px;
	}

	.section-feature .feature-overview .quick-flow__title {
		font-size: 12px;
		line-height: 1.3;
		letter-spacing: 0.02em;
	}

	.section-feature .feature-overview .feature-overview__block--target {
		width: 90.6666666667vw;
		margin: 21.3333333333vw auto 0;
	}

	.section-feature .feature-overview .feature-overview__block--target .feature-overview__divider {
		height: 10.6666666667vw;
		top: -21.3333333333vw;
		left: 50%;
	}

	.section-feature .feature-overview .feature-overview__block--target .feature-overview__content {
		display: block;
		text-align: center;
	}
	.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__number {
		margin-left: auto;
		margin-right: auto;
	}

	.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group .feature-overview__target-lead {
		font-size: 4.3vw;
		line-height: 1.4;
		margin-top: 2.6666666667vw;
	}

	.section-feature .feature-overview .feature-overview__block--target .feature-overview__content .feature-overview__text-group .feature-overview__target-body {
		margin-top: 6.4vw;
		padding: 4.6666666667vw 4.2666666667vw;
		font-size: 3.4666666667vw;
		line-height: 1.84;
	}

	.section-feature .feature-overview .feature-overview__summary {
		margin-top: 18vw;
		width: 90.6666666667vw;
	}

	.section-feature .feature-overview .feature-overview__bakusoku {
		margin-top: 8vw;
		width: 72vw;
		padding: 3.6vw 5.8vw 5.2vw;
	}

	.section-feature .feature-overview .feature-overview__bakusoku img {
		margin-top: -7.2vw;
	}

	.section-feature .feature-overview .feature-overview__bakusoku-text {
		margin-top: 4.6vw;
		font-size: 3.6vw;
		line-height: 1.8;
		letter-spacing: 0.02em;
	}

	.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-catch {
		font-size: 6.1333333333vw;
	}

	.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-lead {
		margin-top: 3.2vw;
		font-size: 3.6vw;
		line-height: 1.8;
	}

	.section-feature .feature-overview .feature-overview__summary .feature-overview__summary-main {
		margin-top: 4.4vw;
		font-size: 8vw;
		line-height: 1.3;
	}

	.section-flow {
		padding: 18vw 4.2666666667vw 24vw;
	}

	.section-flow::before {
		height: 72vw;
		background-size: auto 100%;
	}

	.section-flow__articles {
		width: 100%;
		margin-bottom: 8vw;
		gap: 3.2vw;
	}

	.section-flow__member {
		width: 100%;
		margin-bottom: 8vw;
	}

	.section-flow__trust-box {
		margin-top: 9vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 9vw 4vw 7vw;
		border-radius: 0;
	}

	.section-flow__catch {
		gap: 3vw;
		font-size: 4.8vw;
		line-height: 1.45;
	}

	.section-flow__catch-icon {
		flex-basis: 20px;
		width: 20px;
		height: 40px;
	}

	.section-flow__logos {
		margin-top: 4vw;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}

	.section-flow__logos-track img {
		width: auto;
		height: 72px;
	}

	.section-flow__eyebrow {
		margin-bottom: 1.6vw;
		font-size: 4.8vw;
		line-height: 1.35;
	}

	.section-flow__title {
		font-size: 4.8vw;
		line-height: 1.38;
	}

	.section-flow__marker {
		background: linear-gradient(to top, #e6ff3f 0%, #e6ff3f 38%, transparent 38%, transparent 100%);
	}

	.section-flow__lead {
		margin-top: 7.2vw;
		font-size: 4vw;
		line-height: 1.75;
	}

	.section-legacy-comparison {
		padding: 14vw 4.2666666667vw 18vw;
	}

	.section-legacy-comparison__title {
		margin-bottom: 8vw;
		font-size: clamp(22px, 6.6vw, 32px);
		letter-spacing: 0.01em;
	}

	.section-legacy-comparison__title-text {
		padding: 0 0.72em;
	}

	.section-legacy-comparison__images {
		gap: 3vw;
	}

	.section-legacy-comparison__arrow {
		margin-top: 6vw;
		--arrow-size: 30px;
		--arrow-stroke: 9px;
	}

	.section-legacy-comparison__stars {
		gap: 6px;
	}

	.section-legacy-comparison__stars-row {
		gap: 6px;
	}

	.section-legacy-comparison__stars-row img {
		width: clamp(44px, 14vw, 66px);
	}
}

/* ====================
   レスポンシブ対応
   ==================== */
@media (max-width: 768px) {
	.hero {
		padding: 0;
	}

	.hero__inner {
		width: 100%;
		min-height: calc(156vw + 40px);
	}

	.hero__slider {
		height: auto;
		bottom: 0;
	}

	.hero__slider-col {
		width: 20.5vw;
		height: calc(156vw + 50px);
		top: 0;
		transform: none;
	}

	.hero__slider-col--left {
		left: 0;
	}

	.hero__slider-col--right {
		right: 0;
	}

	.hero__slider-col .swiper-slide {
		width: 20.5vw !important;
		height: 40.9vw !important;
	}

	.hero__countdown {
		margin: 80px auto 0;
		padding: 0 15px;
		transform: none;
	}

	.hero__countdown-deadline {
		font-size: 16px;
	}

	.hero__slash {
		width: 15px;
		height: 18px;
	}

	.hero__badge {
		padding: 10px 20px;
		border-width: 2px;
		margin-bottom: 6px;
	}

	.hero__badge::before {
		border-left-width: 10px;
		border-right-width: 10px;
		border-top-width: 12px;
	}

	.hero__badge::after {
		top: calc(100% - 2px);
		border-left-width: 8px;
		border-right-width: 8px;
		border-top-width: 9px;
	}

	.hero__badge-icon {
		font-size: 20px;
	}

	.hero__badge-text {
		font-size: 16px;
	}

	.hero__timer {
		padding: 12px 48px 8px;
		gap: 4px;
	}

	.hero__timer-col {
		width: 58px;
	}

	.hero__timer-num {
		gap: 6px;
		min-height: 42px;
	}

	.hero__seg-digit {
		width: 24px;
		height: 40px;
	}

	.hero__seg--a,
	.hero__seg--g,
	.hero__seg--d {
		left: 5px;
		width: 14px;
		height: 3px;
	}

	.hero__seg--g {
		top: 18px;
	}

	.hero__seg--f,
	.hero__seg--b,
	.hero__seg--e,
	.hero__seg--c {
		width: 3px;
		height: 16px;
	}

	.hero__seg--f,
	.hero__seg--b {
		top: 2px;
	}

	.hero__seg--e,
	.hero__seg--c {
		bottom: 2px;
	}

	.hero__timer-label {
		font-size: 12px;
	}

	.hero__timer-sep {
		width: 6px;
		height: 42px;
	}

	.hero__timer-sep::before,
	.hero__timer-sep::after {
		width: 6px;
		height: 6px;
	}

	.hero__timer-sep::before {
		transform: translateY(calc(-50% - 7px));
	}

	.hero__timer-sep::after {
		transform: translateY(calc(-50% + 7px));
	}

	.hero__title-main {
		margin: 20px auto;
		overflow: visible;
	}

	.hero__title-layer,
	.hero__title-layer--front {
		display: block;
	}

	.hero__title-layer img {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.hero__title-main::after {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.hero__achieve {
		padding: 0;
		max-width: 89.6vw;
		margin: 0 auto;
	}

	.hero__achieve-text {
		font-size: 3.6vw;
		letter-spacing: 0.04em;
		line-height: 1.3;
	}

	.hero__achieve-laurel {
		width: 8.7vw;
		height: 17.6vw;
	}

	.hero__achieve-laurel--left {
		margin-right: 1vw;
	}

	.hero__achieve-laurel--right {
		margin-left: 1vw;
	}

	.hero__achieve-img1 img {
		width: 10.3vw;
	}

	.hero__achieve-img2 img {
		width: 6.7vw;
	}

	.hero__achieve-num {
		font-size: 16.7vw;
	}

	.hero__deco {
		display: none;
	}

	/* 価格バナー SP */
	.hero__price {
		margin: 0 auto;
	}

	.hero__price-header {
		font-size: 14px;
		padding: 10px 15px;
	}

	.hero__price-body {
		gap: 20px;
		padding: 15px 20px;
	}

	.hero__price-badge {
		width: 55px;
		height: 55px;
		font-size: 11px;
	}

	.hero__price-num {
		font-size: 18px;
	}

	.hero__price-unit {
		font-size: 14px;
	}

	/* CTAボタン SP */
	.hero__cta {
		flex-direction: column;
		gap: 15px;
		margin: 0;
		width: 100%;
		padding: 0;
		display: flex;
		justify-content: center;
		padding: 0 20px;
		width: 100%;
	}

	.cta-btn {
		min-width: auto;
		width: 100%;
		padding: 14px 35px 14px 25px;
	}

	.cta-btn__sub {
		font-size: 14px;
	}

	.cta-btn__main {
		font-size: 18px;
	}

	.cta-btn__arrow {
		font-size: 24px;
		right: 30px;
	}

	.section-same-day-solution__inner {
		padding: 80px 16px;
	}

	.section-same-day-solution__worry-list {
		flex-wrap: wrap;
		gap: 14px;
	}

	.section-same-day-solution__worry-item {
		flex: 1 1 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}

	.section-same-day-solution__worry-item:nth-child(2),
	.section-same-day-solution__worry-item:nth-child(3) {
		margin-top: 0;
	}

	.section-same-day-solution__arrow {
		--arrow-size: 28px;
		--arrow-stroke: 9px;
		width: var(--arrow-size);
		height: var(--arrow-size);
	}

	.section-same-day-solution__cta {
		margin-top: 36px;
	}

	.section-same-day-solution__cta-btn {
		width: 100%;
		padding: 16px 42px 16px 24px;
	}

	.section-feature {
		padding: 80px 16px 80px;
	}
}

/* =====================
   section-plan
   ===================== */

.section-plan {
	background: #fff9f3;
	padding: 80px 4vw 100px;
}

.section-plan__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.section-plan__heading {
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
}

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

.section-plan__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.section-plan__card {
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	position: relative;
	display: flex;
	flex-direction: column;
}

.section-plan__card--recommended {
	box-shadow:
		0 0 0 3px #1d9e73,
		0 4px 24px rgba(29, 158, 115, 0.2);
	transform: translateY(-6px);
}

.section-plan__recommended-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #1d9e73 0%, #25b886 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 20px;
	border-radius: 999px;
	letter-spacing: 0.1em;
	box-shadow: 0 6px 16px rgba(29, 158, 115, 0.4), 0 0 0 3px #fff;
	white-space: nowrap;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.section-plan__recommended-badge::before {
	content: '★';
	font-size: 13px;
	color: #fff5b3;
	line-height: 1;
}

.section-plan__header {
	padding: 28px 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #fff;
	border-radius: 16px 16px 0 0;
}

.section-plan__card--ume .section-plan__header {
	background: #4169e1;
}
.section-plan__card--take .section-plan__header {
	background: #1d9e73;
}
.section-plan__card--matsu .section-plan__header {
	background: #d95858;
}

.section-plan__en-name {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	opacity: 0.95;
}

.section-plan__name {
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 800;
	letter-spacing: 0.02em;
}

.section-plan__sub {
	font-size: 13px;
	opacity: 0.95;
}

.section-plan__price {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-top: 4px;
}

.section-plan__price span {
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 900;
	letter-spacing: -0.02em;
}

.section-plan__price small {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.95;
}

.section-plan__features {
	list-style: none;
	padding: 16px 0 8px;
	margin: 0;
	flex: 1;
}

.section-plan__features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 24px;
	font-size: 14px;
	color: #333;
	border-bottom: 1px solid #f0f0f0;
}

.section-plan__features li:last-child {
	border-bottom: none;
}

.section-plan__features li::before {
	content: '✓';
	font-weight: 700;
	flex-shrink: 0;
}

.section-plan__card--ume .section-plan__features li::before {
	color: #4169e1;
}
.section-plan__card--take .section-plan__features li::before {
	color: #1d9e73;
}
.section-plan__card--matsu .section-plan__features li::before {
	color: #d95858;
}

.section-plan__demo {
	margin: 4px 24px 4px;
	text-align: center;
}

.section-plan__demo-link {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 11px 16px;
	border-radius: 8px;
	background: transparent;
	border: 2px solid currentColor;
	box-shadow: none;
	transition:
		background-color 0.15s ease,
		border-color 0.15s ease,
		color 0.15s ease,
		transform 0.15s ease;
}

.section-plan__demo-icon {
	flex-shrink: 0;
	display: block;
}

.section-plan__card--ume .section-plan__demo-link {
	color: #4169e1;
}

.section-plan__card--take .section-plan__demo-link {
	color: #1d9e73;
}

.section-plan__card--ume .section-plan__demo-link:hover {
	background: rgba(65, 105, 225, 0.1);
	color: #3257c7;
}

.section-plan__card--take .section-plan__demo-link:hover {
	background: rgba(29, 158, 115, 0.1);
	color: #178a5f;
}

.section-plan__demo-link:active {
	transform: scale(0.98);
}

.section-plan__demo-link:focus-visible {
	outline: 2px solid #333;
	outline-offset: 2px;
}

.section-plan__delivery {
	margin: 12px 24px 20px;
	padding: 8px 0;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	border-radius: 6px;
	background: #f0f0f0;
	color: #555;
}

.section-plan__card--take .section-plan__delivery {
	background: #e8f6f0;
	color: #0d6b4c;
}

.section-plan__delivery--consult {
	background: #fbeaea;
	color: #9c2929;
}

.section-plan__note {
	margin-top: 32px;
	text-align: center;
	font-size: 12px;
	color: #888;
	line-height: 1.8;
}

@media (max-width: 768px) {
	.section-plan {
		padding: 60px 16px 80px;
	}

	.section-plan__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section-plan__card--recommended {
		transform: none;
	}
}

/* =====================
   section-flow
   ===================== */

.section-flow {
	background: #fff;
	padding: 100px 4vw 0;
}

.section-flow__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.section-flow__heading {
	text-align: center;
	position: relative;
	margin-bottom: 64px;
}

.section-flow__bg-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	font-size: clamp(80px, 10vw, 140px);
	font-weight: 900;
	color: #f0f0f0;
	letter-spacing: 0.1em;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	white-space: nowrap;
}

.section-flow__title {
	position: relative;
	z-index: 1;
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 800;
	color: #222;
	margin-bottom: 12px;
}

.section-flow__title-line {
	display: block;
	width: 40px;
	height: 3px;
	background: #222;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.flow-steps {
	max-width: 700px;
	margin: 0 auto;
}

.flow-step {
	display: grid;
	grid-template-columns: 80px 1fr;
	column-gap: 28px;
	align-items: start;
}

.flow-step__left {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.flow-step__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--color-blue);
	margin-bottom: 10px;
	line-height: 1;
}

.flow-step__icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-lightblue) 0%, var(--color-blue) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 26px;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(46, 98, 229, 0.22);
}

.flow-step__connector {
	flex: 1;
	border-left: 2px dashed #c5cad6;
	min-height: 40px;
	margin: 10px 0;
}

.flow-step:last-child .flow-step__connector {
	display: none;
}

.flow-step__right {
	padding-bottom: 44px;
}

.flow-step:last-child .flow-step__right {
	padding-bottom: 0;
}

.flow-step__title {
	font-size: clamp(17px, 1.6vw, 21px);
	font-weight: 800;
	color: #222;
	line-height: 1.35;
	margin-bottom: 14px;
	padding-top: 2px;
	text-align: left;
}

.flow-step__body {
	background: #f4f6fb;
	border-radius: 10px;
	padding: 16px 20px;
	font-size: 14px;
	line-height: 1.85;
	color: #555;
	text-align: left;
}

@media (max-width: 768px) {
	.section-flow {
		padding: 60px 16px 0;
	}

	.flow-step {
		grid-template-columns: 64px 1fr;
		column-gap: 16px;
	}

	.flow-step__icon-wrap {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}

	.flow-step__right {
		padding-bottom: 32px;
	}
}

/* =====================
   section-faq
   ===================== */

.section-faq {
	background: #f5f5f5;
	padding: 88px 24px 100px;
}

.section-faq__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-faq__heading {
	margin-bottom: 40px;
}

.section-faq__title {
	font-size: clamp(26px, 2.5vw, 36px);
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #222;
}

.section-faq__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0;
	padding: 0;
	margin: 0;
}

.section-faq__item {
	width: calc(50% - 12px);
}

.section-faq__q-box {
	background: var(--color-blue);
	display: flex;
	align-items: center;
	min-height: 80px;
	padding: 16px 0;
}

.section-faq__icon {
	width: 90px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	font-weight: 900;
}

.section-faq__icon--q {
	color: #fff;
}

.section-faq__icon--a {
	color: var(--color-blue);
	align-self: flex-start;
	padding-top: 4px;
}

.section-faq__q-text {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.02em;
	padding-right: 16px;
}

.section-faq__a-box {
	display: flex;
	padding: 24px 0 32px;
}

.section-faq__a-text {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.04em;
	color: #333;
	padding-right: 16px;
}

@media (max-width: 768px) {
	.section-faq {
		padding: 60px 16px 80px;
	}

	.section-faq__item {
		width: 100%;
	}

	.section-faq__q-text {
		font-size: 15px;
	}
}

/* =====================
   footer
   ===================== */

.footer {
	color: #fff;
}

.footer__upper {
	background-color: #555;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.2px, transparent 1.5px);
	background-size: 14px 14px;
	padding: 36px 24px 32px;
}

.footer__upper-inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.footer__upper-text {
	font-size: 14px;
	color: #fff;
	margin-bottom: 20px;
}

.footer__upper-btns {
	list-style: none;
	display: flex;
	gap: 16px;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__upper-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.15s;
}

.footer__upper-btn:hover {
	opacity: 0.85;
}

.footer__upper-btn--contact {
	background: #fff;
	color: #333;
}

.footer__upper-btn--apply {
	background: var(--color-blue);
	color: #fff;
}

.footer__lower {
	background: #333;
	padding: 28px 24px;
}

.footer__lower-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer__logo {
	line-height: 1;
}

.footer__logo img {
	height: 32px;
	width: auto;
}

.footer__nav {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 12px;
}

.footer__nav a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

.footer__nav a:hover {
	color: #fff;
}

.footer__copy {
	display: block;
	background: #222;
	text-align: center;
	padding: 12px 24px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
	.footer__lower-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* =====================
   section-contact
   ===================== */

.section-contact {
	background: #fff;
	padding: 100px 24px 120px;
}

.section-contact__inner {
	max-width: 960px;
	margin: 0 auto;
}

.section-contact__heading {
	text-align: center;
	margin-bottom: 48px;
}

.section-contact__title {
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 800;
	color: #222;
	margin-bottom: 16px;
}

.section-contact__rule {
	border: none;
	border-top: 1.5px solid #ccc;
	margin: 0 0 24px;
}

.section-contact__note {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
}

.section-contact__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.section-contact__row {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: center;
	gap: 16px;
}

.section-contact__row--textarea {
	align-items: flex-start;
}

.section-contact__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #222;
}

.section-contact__badge {
	display: inline-block;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.section-contact__badge--required {
	background: var(--color-red);
}

.section-contact__badge--optional {
	background: var(--color-lightblue);
}

.section-contact__input {
	width: 100%;
	padding: 14px 16px;
	font-size: 15px;
	line-height: 1.55;
	font-family: inherit;
	background: #f0f0f0;
	border: none;
	border-radius: 6px;
	color: #222;
	outline: none;
	transition: background 0.15s;
	appearance: none;
	-webkit-appearance: none;
}

.section-contact__input:focus {
	background: #e6e6e6;
}

.section-contact__input::placeholder {
	color: #aaa;
	font-size: clamp(12px, 1.2vw, 14px);
	line-height: 1.7;
	letter-spacing: 0.01em;
}

.section-contact__textarea::placeholder {
	line-height: 1.8;
}

select.section-contact__input {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.section-contact__input--select-sm {
	max-width: 240px;
}

.section-contact__textarea {
	resize: vertical;
	min-height: 140px;
}

.section-contact__privacy {
	font-size: 13px;
	color: #555;
	margin-top: 4px;
	text-align: center;
}

.section-contact__privacy-link {
	color: #555;
	text-underline-offset: 3px;
}

.section-contact__submit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}

.section-contact__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 380px;
	padding: 22px 32px;
	font-size: 18px;
	font-weight: 700;
	font-family: inherit;
	color: #222;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(to right, var(--color-red), var(--color-lightblue)) border-box;
	border: 2.5px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	outline: none;
}

@media (max-width: 768px) {
	.section-contact {
		padding: 60px 16px 80px;
	}

	.section-contact__row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.section-contact__input::placeholder {
		font-size: 13px;
		line-height: 1.65;
	}

	.section-contact__input--select-sm {
		max-width: 100%;
	}

	.section-contact__submit {
		width: 100%;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.hero {
		padding-bottom: 0;
	}

	.hero__inner {
		min-height: 800px;
	}

	.hero__slider {
		height: auto;
		bottom: 0;
	}

	.hero__countdown {
		margin: 52px auto -10px;
		transform: scale(0.72);
	}

	.hero__passage img {
		max-width: min(90vw, 520px);
	}

	.hero__achieve-text {
		font-size: clamp(22px, 2.9vw, 30px);
	}

	.hero__price-header {
		font-size: 16px;
	}

	.hero__price-num {
		font-size: clamp(42px, 6vw, 56px);
	}

	.hero__cta {
		width: min(92vw, 760px);
		padding: 0;
		gap: 12px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.cta-btn {
		min-width: 0;
		width: min(48%, 360px);
		padding: 14px 34px 14px 24px;
	}

	.cta-btn__sub {
		font-size: 14px;
	}

	.cta-btn__main {
		font-size: clamp(28px, 3.1vw, 30px);
	}

	.cta-btn__arrow {
		font-size: 26px;
		right: 24px;
	}

	.section-same-day-solution__inner {
		padding: 120px 20px;
	}

	.section-same-day-solution__lead {
		font-size: clamp(20px, 2.5vw, 28px);
	}

	.section-same-day-solution__worry-list {
		flex-wrap: wrap;
		gap: 14px;
	}

	.section-same-day-solution__worry-item {
		flex: 1 1 calc(50% - 10px);
		max-width: calc(50% - 10px);
	}

	.section-same-day-solution__worry-item:nth-child(2),
	.section-same-day-solution__worry-item:nth-child(3) {
		margin-top: 0;
	}

	.section-same-day-solution__messages {
		margin-top: 44px;
		gap: 24px;
	}

	.section-feature {
		padding: 160px 20px 90px;
	}

	.section-feature .feature-overview .feature-overview__block--speed {
		display: block;
		width: min(900px, 100%);
		margin: 0 auto;
	}

	.section-feature .feature-overview .feature-overview__block--publish {
		display: block;
		width: min(900px, 100%);
		margin: 56px auto 0;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__image-wrap,
	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__image-wrap {
		width: min(460px, 100%);
		margin: 0 auto 24px;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content,
	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content {
		width: 100%;
		margin: 0 auto;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group,
	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group {
		margin-left: 0;
	}

	.section-feature .feature-overview .feature-overview__block--speed .feature-overview__content .feature-overview__text-group .feature-overview__speed-body,
	.section-feature .feature-overview .feature-overview__block--publish .feature-overview__content .feature-overview__text-group .feature-overview__publish-body {
		width: 100%;
		padding: 20px;
		font-size: 15px;
	}

	.section-feature .feature-overview .feature-overview__flow-title {
		font-size: 24px;
	}

	.section-feature .feature-overview .quick-flow__list {
		gap: 16px;
	}

	.section-feature .feature-overview .quick-flow__card {
		width: 108px;
		min-height: 98px;
	}

	.section-feature .feature-overview .quick-flow__title {
		font-size: 13px;
	}

	.section-google-reviews {
		padding: 56px 20px 80px;
	}

	.section-google-reviews__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 80px 16px;
	}

	.section-plan {
		padding: 72px 20px 88px;
	}

	.section-plan__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section-plan__card--recommended {
		transform: none;
	}

	.section-faq {
		padding: 72px 20px 88px;
	}

	.section-faq__item {
		width: 100%;
	}

	.section-faq__icon {
		width: 48px;
		font-size: 22px;
	}

	.section-faq__icon--a {
		width: 32px;
	}

	.section-faq__q-text {
		font-size: 16px;
	}

	.section-contact {
		padding: 72px 20px 88px;
	}

	.section-contact__row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.section-contact__input--select-sm {
		max-width: 100%;
	}

	.section-contact__submit {
		width: 100%;
	}

	.footer__lower-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ====================
   プライバシーポリシー
   ==================== */
.section-privacy {
	padding: 96px 24px 80px;
	background: linear-gradient(180deg, #f0f9f4 0%, #e8f5ee 100%);
	min-height: calc(100vh - 200px);
}

.section-privacy__inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}

.section-privacy__heading {
	text-align: center;
	margin-bottom: 48px;
}

.section-privacy__title {
	font-size: clamp(24px, 5vw, 32px);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.section-privacy__title i {
	color: #3cb371;
}

.section-privacy__rule {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #3cb371, #2e8b57);
	border: none;
	margin: 0 auto 24px;
}

.section-privacy__lead {
	font-size: 16px;
	line-height: 1.75;
	color: #444;
	max-width: 720px;
	margin: 0 auto;
}

.section-privacy__content {
	background: #fff;
	border-radius: 12px;
	padding: 48px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.privacy-block {
	margin-bottom: 40px;
}

.privacy-block:last-child {
	margin-bottom: 0;
}

.privacy-block__title {
	font-size: 20px;
	font-weight: 700;
	color: #2e8b57;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(60, 179, 113, 0.3);
}

.privacy-block__text {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 12px;
}

.privacy-block__list {
	list-style: disc;
	padding-left: 24px;
	margin: 12px 0;
}

.privacy-block__list li {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 6px;
}

.privacy-block__info {
	background: linear-gradient(135deg, rgba(60, 179, 113, 0.08) 0%, rgba(46, 139, 87, 0.08) 100%);
	padding: 20px 24px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.8;
	border-left: 4px solid #3cb371;
}

.privacy-block__info p {
	margin-bottom: 8px;
}

.privacy-block__info p:last-child {
	margin-bottom: 0;
}

.privacy-block__contact {
	margin-top: 16px;
}

.privacy-block__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #3cb371, #2e8b57);
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.privacy-block__contact-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(60, 179, 113, 0.3);
}

.section-privacy__footer {
	text-align: center;
	margin-top: 40px;
}

.section-privacy__date {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
}

.section-privacy__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #3cb371;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.section-privacy__back:hover {
	color: #2e8b57;
}

@media (max-width: 768px) {
	.section-privacy {
		padding: 64px 16px 48px;
	}

	.section-privacy__content {
		padding: 32px 20px;
	}

	.privacy-block__title {
		font-size: 18px;
	}

	.privacy-block__text,
	.privacy-block__list li {
		font-size: 14px;
	}
}

/* ====================
   固定サイドメニュー（PC only）
   ==================== */
.fix-side-menu {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%) translateX(100%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.4s ease;
}

.fix-side-menu.is-visible {
	transform: translateY(-50%) translateX(0);
	opacity: 1;
	pointer-events: auto;
}

.fix-side-menu__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.fix-side-menu__item {
	display: block;
}

.fix-side-menu__link {
	display: block;
	padding: 14px 18px 14px 18px;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	background: rgba(255, 255, 255, 1);
	transition:
		background 0.2s,
		color 0.2s,
		padding 0.2s;
	white-space: nowrap;
	min-width: 140px;
	text-align: center;
	border-radius: 9999px 0 0 9999px;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.04);
}

.fix-side-menu__link:hover {
	background: #f5f5f5;
	color: #111;
}

.fix-side-menu__item.is-active .fix-side-menu__link {
	background: #333;
	color: #fff;
	font-weight: 700;
	padding: 14px 48px 14px 48px;
	min-width: 200px;
}

@media (max-width: 768px) {
	.fix-side-menu {
		display: none;
	}
}

@media (max-width: 768px) {
	.section-flow__title {
		font-size: 18px;
	}
}

/* ===== section-rival-debunk ===== */
.section-rival-debunk {
	padding: 80px 20px;
	position: relative;
	overflow: hidden;
}
.section-rival-debunk--delivery {
	background-color: #f7f9fc;
	background-image: url('../images/sokunou_bg.png');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
	background-attachment: fixed;
}
.section-rival-debunk--pricing {
	background: #fff8f0;
}
.rival-debunk__divider {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	margin: 60px 0;
}
.rival-debunk__img-title {
	display: block;
	margin: 0 auto 30px;
}
.rival-debunk__pricing-lead {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 48px;
}
.rival-debunk__img-compare {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
}
.rival-debunk__img-other,
.rival-debunk__img-sokunou {
	display: block;
	width: 400px;
}
.rival-debunk__img-sokunou-wrap {
	position: relative;
	display: inline-block;
}
.rival-debunk__img-sokunou-boy {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.rival-debunk__img-sokunou-boy.is-floating {
	animation: sokunou-boy-float 0.8s ease 3;
}
@keyframes sokunou-boy-float {
	0%,
	100% {
		transform: translate(50%, -50%);
	}
	50% {
		transform: translate(calc(50% + 10px), calc(-50% + 10px));
	}
}
.rival-debunk__img-vs {
	display: block;
}
.rival-debunk__inner {
	max-width: 960px;
	margin: 0 auto;
}
.rival-debunk__badge {
	display: inline-block;
	background: #e8f0fe;
	color: #2e62e5;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: 100px;
	border: 1.5px solid #2e62e5;
	margin-bottom: 16px;
}
.rival-debunk__heading {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 48px;
	text-align: center;
}
.rival-debunk__heading-kicker {
	font-size: 18px;
	color: #888;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.rival-debunk__heading-main {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.4;
}
.rival-debunk__heading-main em {
	font-style: normal;
	color: #d32013;
	position: relative;
}
.rival-debunk__heading-main em::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 3px;
	background: #d32013;
	border-radius: 2px;
}
.rival-debunk__compare {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: start;
}
.rival-debunk__col {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.rival-debunk__col-header {
	padding: 16px 24px;
}
.rival-debunk__col--rival .rival-debunk__col-header {
	background: #f0f0f0;
}
.rival-debunk__col--sokunou .rival-debunk__col-header {
	background: linear-gradient(135deg, #2e62e5, #3498db);
}
.rival-debunk__col-label {
	font-weight: 800;
	font-size: 19px;
	letter-spacing: 0.05em;
}
.rival-debunk__col-label--rival {
	color: #666;
}
.rival-debunk__col-label--sokunou {
	color: #fff;
}
.rival-debunk__list {
	list-style: none;
	padding: 20px 24px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rival-debunk__item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 17px;
	line-height: 1.6;
}
.rival-debunk__item-icon {
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}
.rival-debunk__item strong {
	display: block;
	font-size: 18px;
	margin-bottom: 2px;
}
.rival-debunk__item--bad strong {
	color: #c0392b;
}
.rival-debunk__item--good strong {
	color: #1a7a4a;
}
.rival-debunk__item p {
	color: #666;
	margin: 0;
}
.rival-debunk__result {
	margin: 0 24px 24px;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 19px;
	font-weight: 700;
	text-align: center;
}
.rival-debunk__result--bad {
	background: #fdecea;
	color: #c0392b;
	border: 2px solid #e57373;
}
.rival-debunk__result--good {
	background: #e8f5e9;
	color: #1a7a4a;
	border: 2px solid #66bb6a;
}
.rival-debunk__result strong {
	font-size: 20px;
}
.rival-debunk__vs {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 900;
	color: #2e62e5;
	margin-top: 60px;
	width: 48px;
}
.rival-debunk__cost-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 40px;
	position: relative;
}
.rival-debunk__cost-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 28px;
}
.rival-debunk__cost-card--rival {
	border-top: 4px solid #e0e0e0;
	position: relative;
	z-index: 1;
}
.rival-debunk__cost-boy-thinking {
	position: absolute;
	left: 300px;
	bottom: 75px;
	transform: translateX(-75%) rotate(-45deg);
	z-index: 0;
	transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rival-debunk__cost-boy-thinking.is-visible {
	left: 20px;
}
.rival-debunk__cost-card--sokunou {
	border-top: 4px solid #2e62e5;
	position: relative;
}
.rival-debunk__cost-card--sokunou::before {
	content: 'ランニングコスト¥0';
	position: absolute;
	top: -1px;
	right: 20px;
	background: #2e62e5;
	color: white;
	font-size: 14px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 0 0 8px 8px;
}
.rival-debunk__cost-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
}
.rival-debunk__cost-table {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.rival-debunk__cost-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 17px;
	padding: 8px 0;
	border-bottom: 1px dashed #f0f0f0;
}
.rival-debunk__cost-row--total {
	border-bottom: none;
	border-top: 2px solid #e0e0e0;
	margin-top: 4px;
	padding-top: 12px;
	font-size: 18px;
}
.rival-debunk__cost-table .rival-debunk__cost-row:nth-last-child(2) {
	border-bottom: none;
}
.rival-debunk__cost-label {
	color: #555;
}
.rival-debunk__cost-value {
	font-weight: 700;
	color: #333;
	font-size: 20px;
}
.rival-debunk__cost-value--bad {
	color: #c0392b;
	font-size: 20px;
}
.rival-debunk__cost-value--good {
	color: #1a7a4a;
	font-size: 20px;
}
.rival-debunk__cost-value--zero {
	color: #2e62e5;
	font-size: 20px;
}
.rival-debunk__cost-note {
	font-size: 15px;
	color: #999;
	margin-top: 12px;
	margin-bottom: 0;
}
.rival-debunk__emphasis {
	background: linear-gradient(135deg, #2e62e5 0%, #3498db 100%);
	border-radius: 16px;
	padding: 32px 40px;
	text-align: center;
	color: #fff;
}
.rival-debunk__emphasis-text {
	font-size: clamp(18px, 3vw, 26px);
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 12px;
}
.rival-debunk__emphasis-chars {
	display: inline-block;
	position: relative;
	overflow: hidden;
	padding-bottom: 0.15em;
}
.rival-debunk__char {
	display: inline-block;
	opacity: 0;
}
.rival-debunk__emphasis-chars.is-animated .rival-debunk__char {
	animation: char-pop-up 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes char-pop-up {
	from {
		transform: translateY(0.8em);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.rival-debunk__zero {
	font-size: 1.5em;
	color: #ffd54f;
	font-weight: 900;
}
.rival-debunk__emphasis-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}
@media (max-width: 1024px) {
	.rival-debunk__pricing-lead { font-size: 18px; }
	.rival-debunk__heading-kicker { font-size: 16px; }
	.rival-debunk__col-label { font-size: 17px; }
	.rival-debunk__item { font-size: 15px; }
	.rival-debunk__item strong { font-size: 16px; }
	.rival-debunk__result { font-size: 17px; }
	.rival-debunk__cost-title { font-size: 16px; }
	.rival-debunk__cost-row { font-size: 15px; }
	.rival-debunk__cost-row--total { font-size: 16px; }
	.rival-debunk__cost-value { font-size: 18px; }
	.rival-debunk__cost-value--bad,
	.rival-debunk__cost-value--good,
	.rival-debunk__cost-value--zero { font-size: 18px; }
	.rival-debunk__img-title {
		max-width: 100%;
	}
	.rival-debunk__img-other,
	.rival-debunk__img-sokunou {
		width: min(280px, 38vw);
	}
	.rival-debunk__img-sokunou-boy {
		width: 50%;
	}
	.rival-debunk__cost-boy-thinking {
		display: none;
	}
}
@media (max-width: 768px) {
	.section-rival-debunk {
		padding: 56px 16px;
	}
	.rival-debunk__img-title {
		width: 100%;
	}
	.rival-debunk__img-compare {
		flex-direction: column;
		gap: 8px;
	}
	.rival-debunk__img-other,
	.rival-debunk__img-sokunou {
		width: 100%;
		max-width: 320px;
	}

	.rival-debunk__img-sokunou-wrap {
		width: 100%;
		max-width: 320px;
	}
	.rival-debunk__compare {
		grid-template-columns: 1fr;
	}
	.rival-debunk__vs {
		margin: 0 auto;
		transform: rotate(90deg);
	}
	.rival-debunk__cost-compare {
		grid-template-columns: 1fr;
	}
	.rival-debunk__emphasis {
		padding: 24px 20px;
	}
	.rival-debunk__pricing-lead { font-size: 16px; }
	.rival-debunk__heading-kicker { font-size: 14px; }
	.rival-debunk__col-label { font-size: 15px; }
	.rival-debunk__item { font-size: 14px; }
	.rival-debunk__item strong { font-size: 15px; }
	.rival-debunk__result { font-size: 15px; }
	.rival-debunk__cost-title { font-size: 14px; }
	.rival-debunk__cost-row { font-size: 14px; }
	.rival-debunk__cost-row--total { font-size: 15px; }
	.rival-debunk__cost-value { font-size: 16px; }
	.rival-debunk__cost-value--bad,
	.rival-debunk__cost-value--good,
	.rival-debunk__cost-value--zero { font-size: 16px; }
	.rival-debunk__cost-note { font-size: 12px; }
	.rival-debunk__emphasis-text { font-size: clamp(15px, 4vw, 20px); }
	.rival-debunk__emphasis-sub { font-size: 12px; }
	.rival-debunk__emphasis-last { font-size: 1.5em; }
}

/* rival-debunk summary compare table */
.rival-debunk__summary {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	margin-bottom: 32px;
}
.rival-debunk__summary-row {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1.4fr;
}
.rival-debunk__summary-row--header .rival-debunk__summary-cell {
	background: #f5f5f5;
	font-size: 17px;
	font-weight: 700;
	padding: 12px 16px;
	color: #666;
}
.rival-debunk__summary-row--header .rival-debunk__summary-cell--rival {
	background: #eee;
	color: #555;
	text-align: center;
}
.rival-debunk__summary-row--header .rival-debunk__summary-cell--sokunou {
	background: linear-gradient(135deg, #2e62e5, #3498db);
	color: #fff;
	text-align: center;
}
.rival-debunk__summary-row:not(.rival-debunk__summary-row--header) {
	border-top: 1px solid #eee;
}
.rival-debunk__summary-cell {
	padding: 16px;
	font-size: 18px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
}
.rival-debunk__summary-label {
	justify-content: flex-start;
	font-weight: 700;
	color: #444;
	font-size: 17px;
	background: #fafafa;
}
@media (max-width: 1024px) {
	.rival-debunk__summary-subscript {
		font-size: 12px;
	}
}
.rival-debunk__summary-cell--rival {
	color: #c0392b;
	font-weight: 700;
	flex-direction: column;
}
.rival-debunk__summary-cell--rival small {
	font-size: 14px;
	font-weight: 400;
	color: #999;
	display: block;
}
.rival-debunk__summary-cell--sokunou {
	color: #1a7a4a;
	font-weight: 700;
	flex-direction: column;
}
.rival-debunk__summary-cell--zero {
	color: #2e62e5;
	font-size: 18px;
}
@media (max-width: 768px) {
	.rival-debunk__summary-row {
		grid-template-columns: 0.8fr 1fr 1fr;
	}
	.rival-debunk__summary-cell {
		padding: 12px 8px;
		font-size: 16px;
	}
	.rival-debunk__summary-label {
		font-size: 15px;
	}
	.rival-debunk__summary-cell--rival small {
		font-size: 10px;
	}
}

/* ===== CTAモーダル ===== */
.cta-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.cta-modal[hidden] {
	display: none;
}

.cta-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 50, 0.6);
	backdrop-filter: blur(4px);
	cursor: pointer;
}

.cta-modal__panel {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px 28px;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
	animation: cta-modal-in 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes cta-modal-in {
	from {
		opacity: 0;
		transform: scale(0.92) translateY(16px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.cta-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f0f0f0;
	color: #555;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

.cta-modal__close:hover {
	background: #e0e0e0;
}

/* ② 3ステップ */
.cta-modal__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
	margin-bottom: 16px;
	background: #f7f8fb;
	border: 1px solid #e6e9f1;
	border-radius: 12px;
	padding: 14px 10px;
}

.cta-modal__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.cta-modal__step-num {
	font-size: 10px;
	font-weight: 700;
	color: #6b7280;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.cta-modal__step-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #eef2f8;
	color: #2e62e5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.cta-modal__step-label {
	font-size: 11px;
	font-weight: 700;
	color: #222;
	line-height: 1.35;
}

.cta-modal__step-label span {
	display: block;
	font-size: 10px;
	font-weight: 400;
	color: #888;
}

.cta-modal__step-arrow {
	color: #c2c8d4;
	font-size: 12px;
	margin-top: 24px;
	flex-shrink: 0;
}

/* ③ 所要時間 */
.cta-modal__time-note {
	text-align: center;
	font-size: 12px;
	color: #555;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.cta-modal__time-note i {
	color: var(--color-blue, #2e62e5);
}

.cta-modal__time-note strong {
	color: var(--color-blue, #2e62e5);
}

/* ④ チェックリスト */
.cta-modal__checks {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cta-modal__checks li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: #333;
}

.cta-modal__checks li i {
	color: #16a34a;
	font-size: 16px;
	flex-shrink: 0;
}

/* ⑤ CTAボタン */
.cta-modal__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 20px;
	background: #2e62e5;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition:
		opacity 0.2s,
		transform 0.2s;
}

.cta-modal__btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

@media (max-width: 480px) {
	.cta-modal {
		padding: 12px;
		align-items: center;
	}

	.cta-modal__panel {
		padding: 24px 16px 20px;
		border-radius: 16px;
		max-height: 92vh;
	}

	/* ステップを縦積みに */
	.cta-modal__steps {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px 12px;
	}

	.cta-modal__step {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		text-align: left;
	}

	.cta-modal__step-num {
		font-size: 10px;
		min-width: 40px;
	}

	.cta-modal__step-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
		flex-shrink: 0;
	}

	.cta-modal__step-label {
		font-size: 12px;
		flex: 1;
	}

	.cta-modal__step-label span {
		display: inline;
		font-size: 11px;
	}

	/* 矢印を↓向きに */
	.cta-modal__step-arrow {
		display: flex;
		justify-content: center;
		margin: 4px 0;
		transform: rotate(90deg);
	}

	.cta-modal__time-note {
		font-size: 12px;
	}

	.cta-modal__checks li {
		font-size: 12px;
	}

	.cta-modal__btn {
		font-size: 14px;
		padding: 14px 16px;
		gap: 8px;
	}
}

/* ===== 問い合わせフォーム 送信成功 ===== */
.section-contact__success {
	text-align: center;
	padding: 48px 20px;
}

.section-contact__success-icon {
	font-size: 52px;
	margin-bottom: 16px;
}

.section-contact__success-title {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin-bottom: 12px;
}

.section-contact__success-body {
	font-size: 14px;
	color: #555;
	line-height: 1.9;
}

/* ===== Fade-in on scroll ===== */
.js-fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.3s ease-out, transform 0.5s ease-out;
	will-change: opacity, transform;
}

.js-fade-in.is-inview {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.js-fade-in,
	.js-fade-in.is-inview {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
