@charset "UTF-8";
/* ============================================================
   中越ペイント LP - メインスタイル
   コミック調 × ペンキスプラッシュ
   ============================================================ */

/* ---------- デザイントークン ---------- */
:root {
	/* カラーパレット: ピンク主体 > 黄 > 白 > 茶・青 */
	--pink: #E60082;
	--pink-dark: #B00063;
	--pink-light: #FF66B8;
	--yellow: #FFD500;
	--yellow-dark: #E6B800;
	--white: #FFFFFF;
	--paper: #FFF9EE;
	--brown: #7A4A2B;
	--brown-light: #A5754F;
	--blue: #00A3E0;
	--blue-dark: #0079A8;
	--ink: #1A1A1A;

	--font-head: 'Dela Gothic One', 'Zen Kaku Gothic New', sans-serif;
	--font-body: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
	--font-comic: 'Bangers', 'Dela Gothic One', cursive;

	--header-h: 76px;
	--container: 1120px;
}

/* ---------- リセット/ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.8;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; vertical-align: middle; }
button { font-family: inherit; cursor: pointer; }
em { font-style: normal; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.sp-only { display: none; }
@media (max-width: 767px) {
	.sp-only { display: inline; }
	.pc-only { display: none; }
}

/* ============================================================
   ローディング
   ============================================================ */
.loading {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: var(--pink);
	transition: opacity .5s ease, visibility .5s ease;
}
.loading.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.loading__inner {
	position: relative;
	display: grid;
	place-items: center;
}
.loading__splat {
	width: min(420px, 88vw);
	color: var(--white);
	animation: splat-in .55s cubic-bezier(.2, 1.6, .4, 1) both;
}
.loading__logo {
	position: absolute;
	width: min(280px, 58vw);
	height: auto;
	transform: rotate(-4deg);
	animation: pop-in .4s .3s cubic-bezier(.2, 1.6, .4, 1) both;
}
@keyframes splat-in {
	from { transform: scale(0) rotate(-60deg); }
	to   { transform: scale(1) rotate(0); }
}
@keyframes pop-in {
	from { opacity: 0; transform: scale(.2) rotate(-12deg); }
	to   { opacity: 1; transform: scale(1) rotate(-4deg); }
}

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-h);
	background: var(--white);
	border-bottom: 3px solid var(--ink);
	transition: box-shadow .3s;
}
.site-header.is-scrolled {
	box-shadow: 0 6px 0 rgba(26, 26, 26, .12);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.site-header__logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.site-header__logo-img {
	display: block;
	height: 50px;
	width: auto;
}
.site-header__nav { margin-left: auto; }
.site-header__nav ul {
	display: flex;
	gap: 4px;
}
.site-header__nav a {
	display: grid;
	justify-items: center;
	padding: 6px 10px;
	font-weight: 900;
	font-size: .82rem;
	line-height: 1.3;
	border-radius: 8px;
	transition: background .2s;
}
.site-header__nav a:hover { background: rgba(230, 0, 130, .1); }
.site-header__nav .en {
	font-family: var(--font-comic);
	font-size: .95rem;
	letter-spacing: .06em;
	color: var(--pink);
}
.site-header__cta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}
.site-header__tel { display: grid; }
.site-header__tel-num {
	font-family: var(--font-head);
	font-size: 1.3rem;
	line-height: 1.2;
}
.site-header__tel-note {
	font-size: .68rem;
	font-weight: 700;
	color: #666;
}
.menu-toggle { display: none; }

/* ---------- CTAボタン共通 ---------- */
.btn-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--font-head);
	font-size: 1rem;
	color: var(--ink);
	background: var(--yellow);
	border: 3px solid var(--ink);
	border-radius: 999px;
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform .15s, box-shadow .15s;
}
.btn-cta svg { width: 1.3em; height: 1.3em; }
.btn-cta:hover {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--ink);
}
.btn-cta--big {
	padding: 20px 44px;
	font-size: clamp(1.05rem, 2.4vw, 1.4rem);
	box-shadow: 7px 7px 0 var(--ink);
}
.btn-cta--big:hover {
	transform: translate(4px, 4px);
	box-shadow: 3px 3px 0 var(--ink);
}
.btn-tel {
	display: grid;
	justify-items: center;
	padding: 12px 32px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 16px;
	box-shadow: 5px 5px 0 var(--ink);
	transition: transform .15s, box-shadow .15s;
}
.btn-tel:hover {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--ink);
}
.btn-tel__label {
	font-size: .8rem;
	font-weight: 900;
	color: var(--pink);
}
.btn-tel__num {
	font-family: var(--font-head);
	font-size: 1.5rem;
	line-height: 1.2;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	padding: calc(var(--header-h) + 40px) 0 90px;
	background: var(--pink);
	overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* 集中線 */
.hero__speedlines {
	position: absolute;
	inset: -20%;
	background: repeating-conic-gradient(
		from 0deg at 50% 42%,
		rgba(26, 26, 26, .16) 0deg .6deg,
		transparent .6deg 7deg
	);
	-webkit-mask-image: radial-gradient(ellipse 62% 55% at 50% 42%, transparent 38%, #000 72%);
	mask-image: radial-gradient(ellipse 62% 55% at 50% 42%, transparent 38%, #000 72%);
}

/* ハーフトーン */
.hero__halftone {
	position: absolute;
	width: 46vw;
	height: 46vw;
	max-width: 560px;
	max-height: 560px;
	background-image: radial-gradient(var(--pink-dark) 22%, transparent 24%);
	background-size: 14px 14px;
	opacity: .5;
}
.hero__halftone--tl {
	top: -8%;
	left: -6%;
	-webkit-mask-image: radial-gradient(circle at 0 0, #000 30%, transparent 70%);
	mask-image: radial-gradient(circle at 0 0, #000 30%, transparent 70%);
}
.hero__halftone--br {
	bottom: -8%;
	right: -6%;
	-webkit-mask-image: radial-gradient(circle at 100% 100%, #000 30%, transparent 70%);
	mask-image: radial-gradient(circle at 100% 100%, #000 30%, transparent 70%);
}

/* ペンキ飛び散り */
.hero__splat { position: absolute; }
.hero__splat--1 {
	top: 4%;
	right: -4%;
	width: clamp(180px, 24vw, 360px);
	color: var(--yellow);
	transform: rotate(20deg);
}
.hero__splat--2 {
	bottom: 10%;
	left: -6%;
	width: clamp(160px, 22vw, 330px);
	color: var(--blue);
	transform: rotate(-12deg);
	opacity: .9;
}
.hero__splat--3 {
	top: 12%;
	left: 4%;
	width: clamp(90px, 12vw, 180px);
	color: var(--white);
	opacity: .85;
}
.hero__splat--4 {
	bottom: 22%;
	right: 6%;
	width: clamp(80px, 10vw, 150px);
	color: var(--ink);
	opacity: .5;
	transform: rotate(140deg);
}
.hero__star {
	position: absolute;
	color: var(--yellow);
	animation: star-blink 2.4s ease-in-out infinite;
}
.hero__star--1 { top: 16%; right: 20%; width: 46px; }
.hero__star--2 { top: 58%; left: 10%; width: 34px; animation-delay: .8s; }
.hero__star--3 { top: 30%; left: 22%; width: 24px; animation-delay: 1.6s; }
@keyframes star-blink {
	0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
	50% { transform: scale(.55) rotate(20deg); opacity: .6; }
}

.hero__inner {
	position: relative;
	display: grid;
	justify-items: center;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

/* ヒーロー要素の登場アニメーション */
.js-hero-item {
	opacity: 0;
	transform: scale(.3) rotate(-6deg);
}
body.is-loaded .js-hero-item {
	animation: hero-pop .5s cubic-bezier(.2, 1.6, .4, 1) forwards;
}
@keyframes hero-pop {
	to { opacity: 1; transform: scale(1) rotate(0); }
}

/* キャッチコピーのストンプ演出(画面手前からドンっ!と着地) */
.js-hero-stomp {
	opacity: 0;
	transform: scale(4);
	filter: blur(10px);
}
body.is-loaded .hero__catch-line1.js-hero-stomp {
	animation: hero-stomp .5s .3s both;
}
body.is-loaded .hero__catch-line2.js-hero-stomp {
	animation: hero-stomp .6s .6s both;
}
@keyframes hero-stomp {
	0% {
		opacity: 0;
		transform: scale(4);
		filter: blur(10px);
		animation-timing-function: cubic-bezier(.5, 0, .9, .4); /* 加速して落ちる */
	}
	12% { opacity: 1; }
	45% {
		transform: scale(1);
		filter: blur(0);
		animation-timing-function: ease-out; /* 着地の瞬間 */
	}
	60% { transform: scale(1.08, .88); } /* ドンっ!と潰れる */
	78% { transform: scale(.96, 1.05); } /* 跳ね返り */
	100% {
		opacity: 1;
		transform: scale(1);
		filter: none;
	}
}

/* 着地の衝撃で画面が揺れる(1発目=小 / 2発目=大) */
body.is-loaded .hero__inner,
body.is-loaded .hero__bg {
	animation:
		hero-shake-sm .25s .52s linear both,
		hero-shake .5s .88s linear both;
}
@keyframes hero-shake-sm {
	0%, 100% { translate: 0 0; }
	30% { translate: -3px 4px; }
	60% { translate: 3px -3px; }
	80% { translate: -2px 2px; }
}
@keyframes hero-shake {
	0%, 100% { translate: 0 0; }
	15% { translate: -8px 7px; }
	30% { translate: 7px -6px; }
	45% { translate: -6px 4px; }
	60% { translate: 5px -4px; }
	75% { translate: -3px 2px; }
	90% { translate: 2px -1px; }
}

.hero__area {
	display: inline-block;
	padding: 6px 22px;
	font-weight: 900;
	font-size: clamp(.8rem, 1.8vw, 1rem);
	color: var(--white);
	background: var(--ink);
	border-radius: 999px;
	transform: rotate(-1.5deg);
}

/* 吹き出し「ちょっと待った!!」 */
.hero__bubble {
	position: relative;
	margin-top: 26px;
	padding: 10px 30px;
	font-family: var(--font-head);
	font-size: clamp(1rem, 2.6vw, 1.5rem);
	color: var(--pink);
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 999px;
	box-shadow: 4px 4px 0 rgba(26, 26, 26, .35);
}
.hero__bubble span {
	display: inline-block;
	transform: rotate(-3deg);
}
.hero__bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -11px;
	width: 18px;
	height: 18px;
	background: var(--white);
	border-right: 3px solid var(--ink);
	border-bottom: 3px solid var(--ink);
	transform: translateX(-50%) rotate(45deg);
}

/* メインキャッチ */
.hero__catch {
	margin-top: 40px;
	font-family: var(--font-head);
	font-weight: 400;
	line-height: 1.18;
}
.hero__catch-line1 {
	display: block;
	white-space: nowrap;
	font-size: clamp(2.2rem, 7vw, 4.6rem);
	color: var(--white);
	-webkit-text-stroke: 0.13em var(--ink);
	paint-order: stroke fill;
	text-shadow: 0.06em 0.08em 0 var(--pink-dark);
	rotate: -2deg;
}
.hero__catch-line2 {
	display: block;
	margin-top: 6px;
	white-space: nowrap;
	font-size: clamp(2.6rem, 8.6vw, 5.6rem);
	color: var(--white);
	-webkit-text-stroke: 0.13em var(--ink);
	paint-order: stroke fill;
	text-shadow: 0.06em 0.08em 0 var(--pink-dark);
	rotate: -2deg;
}
.hero__catch-line2 em {
	font-size: 1.18em;
	color: var(--yellow);
	-webkit-text-stroke: 0.115em var(--ink);
	paint-order: stroke fill;
}

/* バッジ2連 */
.hero__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 44px;
}
.hero__badge {
	padding: 12px 30px;
	font-family: var(--font-head);
	font-size: clamp(1.05rem, 2.8vw, 1.6rem);
	line-height: 1.4;
	border: 3px solid var(--ink);
	box-shadow: 6px 6px 0 var(--ink);
	border-radius: 14px;
}
.hero__badge--1 {
	background: var(--yellow);
	color: var(--ink);
	rotate: -2.5deg;
}
.hero__badge--1 em { color: var(--pink); font-size: 1.25em; }
.hero__badge--2 {
	background: var(--white);
	color: var(--ink);
	rotate: 1.8deg;
}
.hero__badge--2 span { color: var(--pink); margin: 0 2px; }
.hero__badge--2 em { color: var(--pink); font-size: 1.25em; }

.hero__sub {
	margin-top: 36px;
	font-size: clamp(.95rem, 2vw, 1.15rem);
	font-weight: 700;
	color: var(--white);
}
.hero__sub strong {
	font-weight: 900;
	color: var(--yellow);
	font-size: 1.15em;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 22px;
	margin-top: 38px;
}

/* 滴りエッジ共通 */
.sec-drip {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: clamp(60px, 8vw, 120px);
	z-index: 5;
	pointer-events: none;
}
/* ============================================================
   マーキー
   ============================================================ */
.marquee {
	position: relative;
	background: var(--ink);
	padding: calc(clamp(46px, 6vw, 78px) + 14px) 0 18px;
	overflow: hidden;
	z-index: 4;
}
.sec-drip--marquee {
	top: -1px;
	height: clamp(46px, 6vw, 78px);
	color: var(--pink);
}
.marquee__track {
	display: inline-flex;
	gap: 48px;
	padding-right: 48px;
	white-space: nowrap;
	animation: marquee 22s linear infinite;
	will-change: transform;
}
.marquee__item {
	font-family: var(--font-comic);
	font-size: clamp(1.4rem, 3vw, 2rem);
	line-height: 1.2;
	letter-spacing: .08em;
	color: var(--yellow);
}
.marquee__item--stroke {
	color: transparent;
	-webkit-text-stroke: 1.5px var(--white);
	font-family: var(--font-head);
	font-size: clamp(1.2rem, 2.6vw, 1.7rem);
}
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ============================================================
   セクション見出し共通
   ============================================================ */
.sec-head {
	display: grid;
	justify-items: center;
	text-align: center;
	margin-bottom: clamp(40px, 6vw, 64px);
}
.sec-head__en {
	font-family: var(--font-comic);
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	line-height: 1;
	letter-spacing: .1em;
	color: var(--pink);
	-webkit-text-stroke: 0.06em var(--ink);
	paint-order: stroke fill;
	text-shadow: 0.08em 0.1em 0 rgba(26, 26, 26, .18);
	rotate: -2deg;
}
.sec-head__ja {
	margin-top: 10px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(1.5rem, 3.6vw, 2.3rem);
	line-height: 1.4;
}
.sec-head__ja em { color: var(--pink); }
.sec-head--onDark .sec-head__en {
	color: var(--yellow);
	text-shadow: 0.08em 0.1em 0 rgba(0, 0, 0, .4);
}
.sec-head--onDark .sec-head__ja { color: var(--white); }
.sec-head--onDark .sec-head__ja em { color: var(--yellow); }

/* スクロール出現アニメーション */
.js-reveal {
	opacity: 0;
	translate: 0 36px;
	transition: opacity .6s ease, translate .6s cubic-bezier(.2, 1.2, .4, 1);
}
.js-reveal.is-visible {
	opacity: 1;
	translate: 0 0;
}

/* ============================================================
   お悩み
   ============================================================ */
.worries {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0 clamp(90px, 12vw, 150px);
	background: var(--paper);
	overflow: hidden;
}
.worries .container { position: relative; }

/* 背景のペンキ飛び散り(セクション入場時に一回だけ弾ける) */
.worries__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.worries__bg.js-reveal {
	opacity: 1;
	translate: none;
	transition: none;
}
.worries-splat {
	position: absolute;
	opacity: 0;
	-webkit-mask-image: linear-gradient(var(--sweep, 120deg), #000 42%, transparent 58%);
	mask-image: linear-gradient(var(--sweep, 120deg), #000 42%, transparent 58%);
	-webkit-mask-size: 300% 300%;
	mask-size: 300% 300%;
	-webkit-mask-position: 115% 115%;
	mask-position: 115% 115%;
}
.worries__bg.is-visible .worries-splat {
	animation: splat-brush-in .8s ease-out forwards;
}
/* ブラシで描かれるように斜めに塗り上がる */
@keyframes splat-brush-in {
	from {
		opacity: var(--splat-o, .8);
		scale: .94;
		-webkit-mask-position: 115% 115%;
		mask-position: 115% 115%;
	}
	to {
		opacity: var(--splat-o, .8);
		scale: 1;
		-webkit-mask-position: 0% 0%;
		mask-position: 0% 0%;
	}
}
.worries-splat--1 {
	--sweep: 115deg;

	top: -40px;
	left: -50px;
	width: clamp(130px, 16vw, 210px);
	color: var(--pink);
	rotate: 15deg;
	--splat-o: .8;
}
.worries-splat--2 {
	--sweep: 165deg;

	top: 60px;
	right: -40px;
	width: clamp(100px, 13vw, 170px);
	color: var(--blue);
	rotate: -20deg;
	--splat-o: .7;
	animation-delay: .1s !important;
}
.worries-splat--3 {
	--sweep: 100deg;

	bottom: 24%;
	left: -60px;
	width: clamp(130px, 17vw, 220px);
	color: var(--yellow);
	rotate: -10deg;
	--splat-o: .85;
	animation-delay: .2s !important;
}
.worries-splat--4 {
	--sweep: 150deg;

	bottom: -55px;
	right: -55px;
	width: clamp(130px, 16vw, 215px);
	color: var(--blue);
	rotate: 40deg;
	--splat-o: .7;
	animation-delay: .3s !important;
}
.worries-splat--5 {
	--sweep: 135deg;

	top: 42%;
	left: 6%;
	width: clamp(56px, 7vw, 95px);
	color: var(--pink);
	rotate: 70deg;
	--splat-o: .45;
	animation-delay: .38s !important;
}
.worries__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 24px;
	max-width: 880px;
	margin: 0 auto;
}
.worries__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px;
	font-weight: 700;
	font-size: clamp(.92rem, 1.8vw, 1.05rem);
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 14px;
	box-shadow: 5px 5px 0 rgba(26, 26, 26, .14);
}
.worries__item svg {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	padding: 5px;
	color: var(--white);
	background: var(--pink);
	border: 2px solid var(--ink);
	border-radius: 8px;
}
.worries__item-text { flex: 1; }
.worries__item em {
	color: var(--pink);
	font-weight: 900;
}
/* 劣化症状の実例 */
.symptoms {
	margin-top: clamp(44px, 6vw, 70px);
}
.symptoms__lead {
	margin-bottom: 22px;
	text-align: center;
	font-family: var(--font-head);
	font-size: clamp(1.15rem, 2.6vw, 1.6rem);
}
.symptoms__lead em {
	color: var(--pink);
	font-size: 1.2em;
}
.symptoms__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(12px, 1.8vw, 20px);
}
.symptoms__item {
	display: grid;
	grid-template-rows: auto auto 1fr;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 5px 5px 0 rgba(26, 26, 26, .14);
}
.symptoms__name {
	padding: 8px 6px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(.88rem, 1.4vw, 1.02rem);
	text-align: center;
	color: var(--white);
	background: var(--pink);
	border-bottom: 3px solid var(--ink);
}
.symptoms__photo {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	border-bottom: 2px solid var(--ink);
	background: repeating-linear-gradient(-45deg, #EEE 0 12px, #F7F7F7 12px 24px);
}
.symptoms__photo span {
	font-size: .72rem;
	font-weight: 700;
	color: #999;
}
.symptoms__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.symptoms__text {
	padding: 10px 12px 12px;
	font-size: .8rem;
	font-weight: 700;
	line-height: 1.6;
}

.worries__answer {
	display: grid;
	place-items: center;
	margin: clamp(40px, 5vw, 60px) auto 0;
	text-align: center;
}
/* ブリッジコピーはポップ登場(js-revealの標準挙動を上書き) */
.worries__answer.js-reveal {
	opacity: 0;
	scale: .4;
	translate: none;
	transition: none;
}
.worries__answer.js-reveal.is-visible {
	animation: answer-pop .6s cubic-bezier(.2, 1.5, .4, 1) forwards;
}
@keyframes answer-pop {
	to { opacity: 1; scale: 1; }
}

/* ミニ集中線 */
.worries__answer-lines {
	grid-area: 1 / 1;
	width: clamp(340px, 62vw, 820px);
	aspect-ratio: 1;
	background: repeating-conic-gradient(
		from 0deg at 50% 50%,
		rgba(26, 26, 26, .13) 0deg .8deg,
		transparent .8deg 9deg
	);
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 63%);
	mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 63%);
}
.worries__answer-splat {
	grid-area: 1 / 1;
	width: clamp(340px, 50vw, 640px);
	color: var(--yellow);
	filter: drop-shadow(6px 6px 0 rgba(26, 26, 26, .2));
	animation: splat-spin 40s linear infinite;
}
@keyframes splat-spin {
	to { rotate: 360deg; }
}
.worries__answer-text {
	grid-area: 1 / 1;
	z-index: 1;
	font-family: var(--font-head);
	font-size: clamp(1.5rem, 4vw, 2.8rem);
	line-height: 1.45;
	color: var(--white);
	-webkit-text-stroke: 0.12em var(--ink);
	paint-order: stroke fill;
	text-shadow: 0.05em 0.07em 0 rgba(26, 26, 26, .25);
	rotate: -2.5deg;
}
.worries__answer-text em {
	font-size: 1.2em;
	color: var(--pink);
	-webkit-text-stroke: 0.11em var(--ink);
	paint-order: stroke fill;
}

/* スクロール誘導の∨矢印 */
.worries__answer-arrow {
	grid-row: 2;
	width: 30px;
	height: 30px;
	margin-top: 22px;
	border-right: 7px solid var(--ink);
	border-bottom: 7px solid var(--ink);
	border-radius: 2px;
	rotate: 45deg;
	animation: answer-arrow-bounce 1.6s ease-in-out infinite;
}
@keyframes answer-arrow-bounce {
	0%, 100% { translate: 0 0; opacity: 1; }
	50% { translate: 0 12px; opacity: .5; }
}

/* ============================================================
   選ばれる理由
   ============================================================ */
.reason {
	position: relative;
	padding: clamp(120px, 15vw, 190px) 0 clamp(80px, 10vw, 130px);
	background: var(--yellow);
	color: var(--ink);
}
.sec-drip--reason { top: -1px; color: var(--paper); }

.reason__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.4vw, 32px);
}
.reason__item {
	position: relative;
	padding: 34px 30px 30px;
	background: var(--white);
	color: var(--ink);
	border: 3px solid var(--ink);
	border-radius: 20px;
	box-shadow: 8px 8px 0 var(--pink);
	overflow: hidden;
}
.reason__item:nth-child(even) { box-shadow: 8px 8px 0 var(--blue); }
.reason__num {
	position: absolute;
	top: -6px;
	right: 10px;
	font-family: var(--font-comic);
	font-size: clamp(4rem, 7vw, 5.5rem);
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px var(--pink);
	opacity: .85;
}
.reason__item:nth-child(even) .reason__num { -webkit-text-stroke-color: var(--blue); }
.reason__body { position: relative; }
.reason__title {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(1.25rem, 2.6vw, 1.6rem);
	line-height: 1.45;
}
.reason__title em {
	color: var(--pink);
	font-size: 1.2em;
}
.reason__item:nth-child(even) .reason__title em { color: var(--blue); }
.reason__text {
	margin-top: 14px;
	font-size: .95rem;
}
.reason__text strong { color: var(--pink-dark); }
.reason__splat {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 130px;
	color: var(--yellow);
	opacity: .3;
	rotate: -15deg;
}

/* ---------- 中間マージンの仕組み図解 ---------- */
.margin-diagram {
	margin-top: clamp(44px, 6vw, 70px);
	padding: clamp(24px, 4vw, 44px) clamp(16px, 3.5vw, 40px) clamp(22px, 3.5vw, 36px);
	background: var(--white);
	color: var(--ink);
	border: 3px solid var(--ink);
	border-radius: 22px;
	box-shadow: 8px 8px 0 var(--pink);
}
.margin-diagram__title {
	text-align: center;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(1.25rem, 3vw, 1.9rem);
}
.margin-diagram__title em {
	display: inline-block;
	color: var(--pink);
	font-size: 1.2em;
	opacity: 0;
}
/* 「なし」だけ手前からドン!と着地 */
.margin-diagram.is-visible .margin-diagram__title em {
	animation: hero-stomp .5s .2s both;
}
.margin-diagram__row {
	position: relative;
	margin-top: 30px;
	padding: 30px 18px 18px;
	border-radius: 16px;
}
.margin-diagram__row--others {
	background: #F2F0EB;
	border: 2px dashed #A8A296;
}
.margin-diagram__row--ours {
	background: #FFF0F8;
	border: 2px solid var(--pink);
}
.margin-diagram__tag {
	position: absolute;
	top: -16px;
	left: 16px;
	padding: 4px 18px;
	font-family: var(--font-head);
	font-size: .85rem;
	color: var(--white);
	border: 2px solid var(--ink);
	border-radius: 999px;
}
.margin-diagram__tag--gray { background: #777; }
.margin-diagram__tag--pink { background: var(--pink); }
.margin-diagram__flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(10px, 3.2vw, 46px);
	margin-top: 6px;
}
.md-node {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 4px;
	min-width: clamp(64px, 9vw, 100px);
}
.md-node__icon {
	width: clamp(44px, 6.6vw, 68px);
	height: clamp(44px, 6.6vw, 68px);
	color: #8B857A;
}
.md-node__icon--customer { color: var(--blue); }
.md-node__icon--builder { color: var(--brown); }
.md-node > span {
	font-weight: 900;
	font-size: clamp(.72rem, 1.5vw, .92rem);
	white-space: nowrap;
}
.md-node__coins {
	position: absolute;
	bottom: 24px;
	height: auto;
	overflow: visible;
}
/* コインが上から1枚ずつ降ってきて積み上がる */
.md-coin { opacity: 0; }
.margin-diagram.is-visible .md-coin {
	animation: coin-drop .5s cubic-bezier(.35, 0, .35, 1) var(--d, 0s) forwards;
}
@keyframes coin-drop {
	0%   { transform: translateY(-58px); opacity: 0; }
	15%  { opacity: 1; }
	55%  { transform: translateY(0); }
	72%  { transform: translateY(-7px); } /* 着地バウンド */
	100% { transform: translateY(0); opacity: 1; }
}
.md-node__coins--5 {
	right: -20px;
	width: clamp(24px, 3.2vw, 36px);
}
.md-node__coins--10 {
	right: -38px;
	width: clamp(33px, 4.4vw, 50px);
}
.md-fee {
	position: absolute;
	top: -24px;
	left: 50%;
	translate: -50% 0;
	rotate: -4deg;
	padding: 3px 10px;
	font-size: .68rem;
	font-weight: 900;
	white-space: nowrap;
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: 999px;
	z-index: 1;
}
.md-arrow {
	font-family: var(--font-comic);
	font-size: clamp(1.3rem, 2.6vw, 2rem);
	color: var(--ink);
}
.margin-diagram__note {
	margin-top: 16px;
	text-align: center;
	font-weight: 900;
	font-size: clamp(.8rem, 1.7vw, .95rem);
	color: #B3261E;
}
.md-direct {
	display: grid;
	justify-items: center;
	gap: 2px;
	flex: 0 1 320px;
	min-width: 150px;
}
.md-direct__label {
	font-family: var(--font-head);
	font-size: clamp(1rem, 2.1vw, 1.4rem);
	color: var(--pink);
	-webkit-text-stroke: 0.04em var(--ink);
	paint-order: stroke fill;
	text-shadow: 0.05em 0.07em 0 rgba(26, 26, 26, .18);
	white-space: nowrap;
	opacity: 0;
	rotate: -2deg;
}
/* コインが積み終わった直後にボンッと登場 */
.margin-diagram.is-visible .md-direct__label {
	animation: label-pop .5s cubic-bezier(.2, 1.6, .4, 1) 2.1s both;
}
@keyframes label-pop {
	from { opacity: 0; scale: .2; rotate: -8deg; }
	to   { opacity: 1; scale: 1; rotate: -2deg; }
}
.md-direct__arrow {
	width: 100%;
	max-width: 300px;
	height: auto;
	color: var(--yellow);
	/* ラベル登場後、左から右へシュッと伸びる */
	clip-path: inset(-10% 100% -10% 0);
	transition: clip-path .55s cubic-bezier(.6, 0, .2, 1) 2.4s;
}
.margin-diagram.is-visible .md-direct__arrow {
	clip-path: inset(-10% 0 -10% 0);
}
.md-node--logo img {
	width: clamp(130px, 19vw, 200px);
	height: auto;
}
.md-burst {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(150px, 21vw, 230px);
	flex-shrink: 0;
}
.md-burst svg {
	width: 100%;
	color: var(--yellow);
	animation: splat-spin 40s linear infinite;
}
.md-burst > span {
	position: absolute;
	text-align: center;
	font-family: var(--font-head);
	font-size: clamp(.74rem, 1.4vw, .98rem);
	line-height: 1.55;
	rotate: -4deg;
}
.md-burst em {
	display: block;
	margin-top: 2px;
	color: var(--pink);
	font-size: 1.9em;
	line-height: 1.1;
}
.margin-diagram__footer {
	margin: 26px auto 0;
	width: fit-content;
	padding: 10px 26px;
	text-align: center;
	font-weight: 900;
	font-size: clamp(.82rem, 1.8vw, 1rem);
	color: var(--white);
	background: var(--ink);
	border-radius: 999px;
}
.margin-diagram__footer strong { color: var(--yellow); }

/* ============================================================
   施工メニュー
   ============================================================ */
.service {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0 clamp(90px, 12vw, 150px);
	background: var(--paper);
}
.service__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(18px, 2.6vw, 28px);
	max-width: 760px;
	margin-inline: auto;
}
.service__item {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 6px 6px 0 rgba(26, 26, 26, .16);
	transition: transform .2s, box-shadow .2s;
}
.service__item:hover {
	transform: translateY(-6px) rotate(-.6deg);
	box-shadow: 8px 12px 0 rgba(26, 26, 26, .18);
}
.service__thumb {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	border-bottom: 3px solid var(--ink);
}
.service__thumb--wall {
	background: repeating-linear-gradient(-45deg, var(--pink) 0 14px, var(--pink-light) 14px 28px);
}
.service__thumb--roof {
	background: repeating-linear-gradient(-45deg, var(--brown) 0 14px, var(--brown-light) 14px 28px);
}
.service__thumb--water {
	background: repeating-linear-gradient(-45deg, var(--blue) 0 14px, #4FC6F0 14px 28px);
}
.service__thumb--repair {
	background: repeating-linear-gradient(-45deg, var(--yellow) 0 14px, #FFE566 14px 28px);
}
.service__thumb-note {
	padding: 6px 16px;
	font-size: .8rem;
	font-weight: 900;
	color: var(--white);
	background: rgba(26, 26, 26, .75);
	border-radius: 999px;
}
.service__title {
	padding: 16px 18px 0;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 1.2rem;
}
.service__text {
	padding: 8px 18px 0;
	font-size: .88rem;
}
.service__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 14px 18px 18px;
	padding: 9px 12px;
	font-weight: 900;
	font-size: .85rem;
	text-align: center;
	color: var(--pink);
	background: var(--paper);
	border: 2px dashed var(--pink);
	border-radius: 10px;
	transition: background .15s, color .15s, border-style .15s;
}
.service__cta span {
	font-family: var(--font-comic);
	font-size: 1.1em;
	transition: translate .15s;
}
.service__cta:hover {
	background: var(--pink);
	color: var(--white);
	border-style: solid;
}
.service__cta:hover span { translate: 3px 0; }

/* ============================================================
   施工事例
   ============================================================ */
.works {
	position: relative;
	padding: clamp(120px, 15vw, 190px) 0 clamp(80px, 10vw, 130px);
	background: var(--blue);
}
.sec-drip--works { top: -1px; color: var(--yellow); }
.works .sec-head__en { color: var(--yellow); }
.works .sec-head__ja { color: var(--white); }
.works .sec-head__ja em { color: var(--yellow); }

.works__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 32px);
}
.works__item {
	padding: 20px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 18px;
	box-shadow: 7px 7px 0 var(--ink);
}
.works__ba {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
}
.works__before, .works__after {
	display: grid;
	gap: 6px;
	text-align: center;
}
.works__before > span, .works__after > span {
	font-family: var(--font-comic);
	font-size: 1rem;
	letter-spacing: .1em;
}
.works__before > span { color: #888; }
.works__after > span { color: var(--pink); }
.works__ph {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	font-size: .72rem;
	font-weight: 700;
	color: #999;
	background: repeating-linear-gradient(-45deg, #EEE 0 12px, #F7F7F7 12px 24px);
	border: 2px solid var(--ink);
	border-radius: 10px;
}
.works__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border: 2px solid var(--ink);
	border-radius: 10px;
}
.works__after .works__ph {
	background: repeating-linear-gradient(-45deg, #FFE9F5 0 12px, #FFF6FB 12px 24px);
	color: var(--pink-dark);
}
.works__arrow {
	font-family: var(--font-comic);
	font-size: 1.8rem;
	color: var(--pink);
}
.works__title {
	margin-top: 14px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 1.02rem;
}
.works__text {
	margin-top: 6px;
	font-size: .85rem;
	color: #555;
}
.works__swipe-hint { display: none; }

/* ============================================================
   お客様の声(1件以上で自動表示)
   ============================================================ */
.voice {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0;
	background: var(--paper);
}
.voice__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(20px, 3vw, 32px);
	align-items: flex-start;
}
/* 件数に応じて中央寄せ。1〜2件でも間延びせず、3件以上で自動的に横並び・折返し */
.voice__item {
	flex: 0 1 340px;
	max-width: 360px;
	min-width: 0;
}
.voice__bubble {
	position: relative;
	padding: 22px 22px 20px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 18px;
	box-shadow: 5px 5px 0 rgba(26, 26, 26, .14);
}
.voice__bubble::after {
	content: "";
	position: absolute;
	left: 34px;
	bottom: -13px;
	width: 20px;
	height: 20px;
	background: var(--white);
	border-right: 3px solid var(--ink);
	border-bottom: 3px solid var(--ink);
	transform: rotate(45deg);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.voice__title {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--pink);
}
.voice__body {
	margin-top: 10px;
	font-size: .9rem;
}
.voice__photo {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 12px;
	border: 2px solid var(--ink);
	border-radius: 10px;
}
.voice__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0 0 24px;
}
.voice__customer {
	font-weight: 900;
	font-size: .92rem;
}
.voice__service {
	padding: 2px 12px;
	font-size: .74rem;
	font-weight: 700;
	color: var(--white);
	background: var(--brown);
	border-radius: 999px;
}
/* 背景装飾(淡く敷いて温かみを出す。可読性のため低不透明度) */
.voice__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}
.voice > .container { position: relative; z-index: 1; }
.voice__halftone {
	position: absolute;
	width: 32vw;
	height: 32vw;
	max-width: 340px;
	max-height: 340px;
	background-image: radial-gradient(var(--pink) 22%, transparent 24%);
	background-size: 14px 14px;
	opacity: .1;
}
.voice__halftone--tl { top: -50px; left: -50px; }
.voice__halftone--br { bottom: -50px; right: -50px; }
.voice-splat {
	position: absolute;
	width: 130px;
	opacity: .12;
}
.voice-splat--1 { top: 30px; right: 5%; color: var(--pink); rotate: 12deg; }
.voice-splat--2 { bottom: 24px; left: 4%; color: var(--yellow); rotate: -10deg; opacity: .16; }

/* ============================================================
   施工の流れ
   ============================================================ */
.flow {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0;
	background: var(--paper);
	overflow: hidden;
}
.flow .container { position: relative; }

/* 背景のペンキ跳ね(セクション入場時に一回だけ弾ける) */
.flow__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.flow__bg.js-reveal {
	opacity: 1;
	translate: none;
	transition: none;
}
.flow-splat {
	position: absolute;
	opacity: 0;
	-webkit-mask-image: linear-gradient(var(--sweep, 120deg), #000 42%, transparent 58%);
	mask-image: linear-gradient(var(--sweep, 120deg), #000 42%, transparent 58%);
	-webkit-mask-size: 300% 300%;
	mask-size: 300% 300%;
	-webkit-mask-position: 115% 115%;
	mask-position: 115% 115%;
}
.flow__bg.is-visible .flow-splat {
	animation: splat-brush-in .8s ease-out forwards;
}
.flow-splat--1 {
	--sweep: 160deg;

	top: -35px;
	right: -45px;
	width: clamp(120px, 15vw, 195px);
	color: var(--pink);
	rotate: 25deg;
	--splat-o: .6;
}
.flow-splat--2 {
	--sweep: 110deg;

	bottom: 6%;
	left: -40px;
	width: clamp(110px, 13vw, 175px);
	color: var(--blue);
	rotate: 10deg;
	--splat-o: .5;
	animation-delay: .12s !important;
}
.flow-splat--3 {
	--sweep: 145deg;

	bottom: -45px;
	right: 8%;
	width: clamp(90px, 10vw, 140px);
	color: var(--yellow);
	rotate: -20deg;
	--splat-o: .8;
	animation-delay: .24s !important;
}

/* 見出しのハケ塗りワイプ */
.sec-head--brush { position: relative; }
.sec-head--brush .sec-head__en,
.sec-head--brush .sec-head__ja {
	position: relative;
	z-index: 1;
}
.sec-head__brush {
	position: absolute;
	top: -14px;
	left: 50%;
	translate: -50% 0;
	width: min(125%, 500px);
	height: calc(100% + 26px);
	color: var(--yellow);
	rotate: -1.5deg;
	clip-path: inset(-10% 100% -10% 0);
	transition: clip-path .8s cubic-bezier(.65, 0, .3, 1) .15s;
}
.sec-head--brush.is-visible .sec-head__brush {
	clip-path: inset(-10% 0 -10% 0);
}
/* セクションごとのハケの色(淡色でテキストの可読性を維持) */
.worries .sec-head__brush {
	color: #8EDCFF; /* 水色 */
	rotate: 1.2deg;
}
.service .sec-head__brush {
	color: #FFB6DE; /* 淡ピンク */
	rotate: -1.8deg;
}
.company .sec-head__brush {
	color: #DDBE97; /* ベージュ(茶系) */
	rotate: 1.5deg;
	scale: -1 1; /* 左右反転で塗り始まりの表情を変える */
}
.voice .sec-head__brush {
	color: #FFB6DE; /* 淡ピンク */
	rotate: 1.2deg;
}
.flow__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 32px);
	max-width: 980px;
	margin: 0 auto;
}
.flow__item {
	position: relative;
	padding: 26px 24px 22px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 16px;
	box-shadow: 5px 5px 0 rgba(26, 26, 26, .14);
}
.flow__icon {
	position: absolute;
	top: -16px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	background: var(--pink);
	--icon-cutout: var(--pink);
	border: 3px solid var(--ink);
	border-radius: 50%;
	rotate: 8deg;
	box-shadow: 3px 3px 0 rgba(26, 26, 26, .18);
}
.flow__item:nth-child(even) .flow__icon { rotate: -8deg; }
.flow__icon svg {
	width: 30px;
	height: 30px;
	color: var(--white);
}
.flow__step {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-family: var(--font-comic);
	font-size: .95rem;
	letter-spacing: .1em;
	color: var(--white);
	background: var(--pink);
	border: 2px solid var(--ink);
	border-radius: 999px;
	padding: 4px 16px;
	rotate: -2deg;
}
.flow__step em { font-size: 1.3em; }
.flow__title {
	margin-top: 12px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 1.15rem;
}
.flow__free {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 12px;
	font-size: .78em;
	color: var(--ink);
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: 999px;
	rotate: -3deg;
}
.flow__text {
	margin-top: 8px;
	font-size: .88rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
	position: relative;
	padding: clamp(70px, 10vw, 120px) 0;
	background:
		radial-gradient(rgba(230, 0, 130, .07) 22%, transparent 24%) 0 0 / 16px 16px,
		var(--white);
}
.faq__list {
	display: grid;
	gap: 16px;
	max-width: 880px;
	margin: 0 auto;
}
.faq__item {
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 5px 5px 0 rgba(26, 26, 26, .14);
}
.faq__q {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 64px 16px 18px;
	font-weight: 900;
	font-size: clamp(.95rem, 2vw, 1.08rem);
	cursor: pointer;
}
.faq__q > span {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	font-family: var(--font-comic);
	font-size: 1.3rem;
	color: var(--white);
	background: var(--pink);
	border: 2px solid var(--ink);
	border-radius: 50%;
}
.faq__toggle {
	position: absolute;
	right: 14px;
	top: 50%;
	width: 34px;
	height: 34px;
	transform: translateY(-50%);
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: 50%;
}
.faq__toggle span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 3px;
	background: var(--ink);
	transform: translate(-50%, -50%);
	transition: transform .25s;
}
.faq__toggle span:last-child {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__toggle span:last-child {
	transform: translate(-50%, -50%) rotate(0deg);
}
.faq__a {
	display: none;
	gap: 14px;
	padding: 4px 18px 18px;
	font-size: .95rem;
}
.faq__item.is-open .faq__a { display: flex; }
.faq__a > span {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	font-family: var(--font-comic);
	font-size: 1.3rem;
	color: var(--ink);
	background: var(--yellow);
	border: 2px solid var(--ink);
	border-radius: 50%;
}

/* ============================================================
   会社概要
   ============================================================ */
.company {
	padding: clamp(70px, 10vw, 120px) 0;
	background: var(--paper);
}
.company__table {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	border: 3px solid var(--ink);
	border-radius: 16px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 6px 6px 0 rgba(26, 26, 26, .14);
	display: table;
}
.company__table th, .company__table td {
	padding: 14px 20px;
	font-size: .95rem;
	text-align: left;
	border-bottom: 2px solid rgba(26, 26, 26, .12);
}
.company__table tr:last-child th,
.company__table tr:last-child td { border-bottom: none; }
.company__table th {
	width: 160px;
	font-family: var(--font-head);
	font-weight: 400;
	color: var(--white);
	background: var(--brown);
	border-bottom-color: rgba(255, 255, 255, .18);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
	position: relative;
	padding: clamp(120px, 15vw, 190px) 0 clamp(90px, 12vw, 140px);
	background: var(--pink);
	overflow: hidden;
}
.sec-drip--contact { top: -1px; color: var(--paper); }
.hero__halftone--contact {
	top: auto;
	bottom: -10%;
	left: -8%;
	-webkit-mask-image: radial-gradient(circle at 0 100%, #000 30%, transparent 70%);
	mask-image: radial-gradient(circle at 0 100%, #000 30%, transparent 70%);
}
.contact__lead {
	position: relative;
	text-align: center;
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	font-weight: 700;
	color: var(--white);
}
.contact__lead strong {
	color: var(--yellow);
	font-size: 1.15em;
}
.contact__tel-box {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 4px;
	max-width: 640px;
	margin: 36px auto 0;
	padding: 26px 20px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 20px;
	box-shadow: 7px 7px 0 var(--ink);
	text-align: center;
	transition: transform .15s, box-shadow .15s;
}
/* ボックス全体をタップ領域にして、他ボタンと同じ押し込みホバー */
.contact__tel::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 17px;
}
.contact__tel-box:hover {
	transform: translate(4px, 4px);
	box-shadow: 3px 3px 0 var(--ink);
}
.contact__tel-label {
	font-weight: 900;
	color: var(--pink);
}
.contact__tel {
	font-family: var(--font-head);
	font-size: clamp(2rem, 6vw, 3.2rem);
	line-height: 1.2;
}
.contact__tel-note {
	font-size: .85rem;
	font-weight: 700;
	color: #666;
}
.contact__form {
	position: relative;
	max-width: 640px;
	margin: 30px auto 0;
	padding: 30px 28px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 20px;
	box-shadow: 7px 7px 0 var(--ink);
}
.contact__form-note {
	margin-bottom: 18px;
	padding: 8px 14px;
	font-size: .8rem;
	font-weight: 700;
	color: var(--brown);
	background: #FFF3E2;
	border: 2px dashed var(--brown);
	border-radius: 10px;
}
.contact__form-row {
	display: grid;
	gap: 6px;
	margin-bottom: 18px;
}
.contact__form-row label,
.contact__form-row .contact__form-label {
	font-weight: 900;
	font-size: .92rem;
}
.contact__form-row .req {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 10px;
	font-size: .72rem;
	color: var(--white);
	background: var(--pink);
	border-radius: 999px;
}
.contact__form-row input,
.contact__form-row textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 1rem;
	border: 2px solid var(--ink);
	border-radius: 10px;
	background: var(--paper);
}
.contact__form-row input:focus,
.contact__form-row textarea:focus {
	outline: 3px solid var(--yellow);
	outline-offset: 1px;
}
.contact__submit { width: 100%; }
.contact__submit:disabled {
	opacity: .55;
	cursor: not-allowed;
}

/* Contact Form 7 */
.contact__form .wpcf7-form-control-wrap { display: block; }

/* 選択制ラジオ(ピル型ボタン) */
.contact__form .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.contact__form .wpcf7-radio .wpcf7-list-item {
	margin: 0;
}
.contact__form .wpcf7-radio label { cursor: pointer; }
.contact__form-row input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	opacity: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
.contact__form .wpcf7-radio .wpcf7-list-item-label {
	display: inline-block;
	padding: 9px 20px;
	font-weight: 700;
	font-size: .92rem;
	background: var(--paper);
	border: 2px solid var(--ink);
	border-radius: 999px;
	transition: background .15s, color .15s, transform .15s;
}
.contact__form .wpcf7-radio input:checked + .wpcf7-list-item-label {
	background: var(--pink);
	color: var(--white);
	transform: scale(1.04);
}
.contact__form .wpcf7-radio input:focus-visible + .wpcf7-list-item-label {
	outline: 3px solid var(--yellow);
	outline-offset: 1px;
}
.contact__form .wpcf7-radio label:hover .wpcf7-list-item-label {
	background: #FFE9F5;
}
.contact__form .wpcf7-radio input:checked + .wpcf7-list-item-label:hover {
	background: var(--pink);
}
.contact__form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 4px;
	font-size: .8rem;
	font-weight: 700;
	color: #D8000C;
}
.contact__form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 16px;
	font-size: .9rem;
	font-weight: 700;
	border: 2px solid var(--ink) !important;
	border-radius: 10px;
	background: var(--paper);
}
.contact__form .wpcf7 form.sent .wpcf7-response-output {
	background: #E8F7E4;
	border-color: #2E7D32 !important;
	color: #2E7D32;
}
.contact__form .wpcf7 form.invalid .wpcf7-response-output,
.contact__form .wpcf7 form.failed .wpcf7-response-output {
	background: #FDECEA;
	border-color: #D8000C !important;
	color: #D8000C;
}
.contact__form .wpcf7-spinner { display: block; margin: 8px auto 0; }

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
	padding: 50px 0 60px;
	background: var(--ink);
	color: var(--white);
	text-align: center;
}
.site-footer__logo a {
	display: inline-block;
}
.site-footer__logo img {
	width: min(260px, 70vw);
	height: auto;
	padding: 14px 24px;
	background: var(--white);
	border: 3px solid var(--ink);
	border-radius: 18px;
	box-shadow: 5px 5px 0 var(--pink);
	transform: rotate(-1.5deg);
	transition: transform .15s, box-shadow .15s;
}
.site-footer__logo a:hover img {
	transform: rotate(-1.5deg) translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--pink);
}
.site-footer__address {
	margin-top: 14px;
	font-size: .85rem;
	color: #BBB;
}
.site-footer__group {
	margin-top: 10px;
	font-size: .85rem;
	color: #BBB;
}
.site-footer__group a {
	color: var(--yellow);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.site-footer__group a:hover { color: var(--pink-light); }
.site-footer__copy {
	margin-top: 22px;
	font-size: .75rem;
	color: #888;
}
.company__link {
	color: var(--blue-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.company__link:hover { color: var(--pink); }

/* ============================================================
   トップへ戻る(ハケ)
   ============================================================ */
.to-top {
	position: fixed;
	right: 20px;
	bottom: 26px;
	z-index: 950;
	width: 58px;
	padding: 0;
	background: none;
	border: none;
	opacity: 0;
	visibility: hidden;
	translate: 0 14px;
	transition: opacity .3s, translate .3s, visibility .3s;
	filter: drop-shadow(3px 3px 0 rgba(26, 26, 26, .25));
}
.to-top.is-shown {
	opacity: 1;
	visibility: visible;
	translate: 0 0;
}
.to-top__brush {
	display: block;
	width: 100%;
	height: auto;
	rotate: -6deg;
	transition: translate .2s;
}
.to-top:hover .to-top__brush {
	translate: 0 -6px;
}

/* クリック時: ハケ先からペンキが上にスーッと伸びる */
.to-top__trail {
	position: absolute;
	left: 50%;
	bottom: 82%;
	width: 15px;
	height: 72vh;
	translate: -50% 0;
	border-radius: 999px;
	background: linear-gradient(to top, #E60082, #FFD500 45%, #00A3E0 90%);
	transform-origin: bottom center;
	scale: 1 0;
	opacity: 0;
	pointer-events: none;
}
.to-top.is-painting .to-top__trail {
	animation: paint-trail .9s cubic-bezier(.3, 0, .3, 1) forwards;
}
.to-top.is-painting .to-top__brush {
	animation: brush-flick .45s ease-out;
}
@keyframes paint-trail {
	0%   { scale: 1 0; opacity: 1; }
	55%  { scale: 1 1; opacity: 1; }
	100% { scale: 1 1; opacity: 0; }
}
@keyframes brush-flick {
	0%   { translate: 0 0; }
	35%  { translate: 0 -12px; }
	100% { translate: 0 0; }
}

/* ============================================================
   スマホ固定CTA
   ============================================================ */
.sp-fixed-cta { display: none; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1080px) {
	.reason__list { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
	.site-header__nav {
		margin-left: 0;
		position: fixed;
		inset: var(--header-h) 0 0;
		z-index: 90;
		background: var(--pink);
		padding: 40px 24px;
		overflow-y: auto;
		/* 上から下へハケで塗るようにピンクが降りてくる */
		clip-path: inset(0 0 100% 0);
		visibility: hidden;
		transition: clip-path .55s cubic-bezier(.66, 0, .2, 1), visibility 0s linear .55s;
	}
	.site-header__nav.is-open {
		clip-path: inset(0 0 0 0);
		visibility: visible;
		transition: clip-path .55s cubic-bezier(.66, 0, .2, 1), visibility 0s;
	}
	/* 降りてくるピンクの先端で滴る(clip と同時間・同イージングで同期) */
	.nav-drip {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		height: 42px;
		color: var(--pink);
		z-index: 91;
		pointer-events: none;
		visibility: hidden;
		translate: 0 0;
		transition: translate .55s cubic-bezier(.66, 0, .2, 1), visibility 0s linear .55s;
	}
	.nav-drip svg { display: block; width: 100%; height: 100%; }
	.site-header__nav.is-open ~ .nav-drip {
		visibility: visible;
		translate: 0 calc(100dvh - var(--header-h));
		transition: translate .55s cubic-bezier(.66, 0, .2, 1), visibility 0s;
	}
	.site-header__nav ul {
		flex-direction: column;
		gap: 10px;
		max-width: 480px;
		margin: 0 auto;
	}
	.site-header__nav a {
		grid-template-columns: 100px 1fr;
		align-items: center;
		justify-items: start;
		padding: 14px 18px;
		font-size: 1.05rem;
		color: var(--white);
		background: rgba(26, 26, 26, .25);
		border-radius: 12px;
	}
	.site-header__nav .en { color: var(--yellow); }
	/* メニュー項目がピンクの後に時差で現れる */
	.site-header__nav li {
		opacity: 0;
		translate: 0 -14px;
		transition: opacity .3s ease, translate .3s ease;
	}
	.site-header__nav.is-open li {
		opacity: 1;
		translate: 0 0;
	}
	.site-header__nav.is-open li:nth-child(1) { transition-delay: .2s; }
	.site-header__nav.is-open li:nth-child(2) { transition-delay: .28s; }
	.site-header__nav.is-open li:nth-child(3) { transition-delay: .36s; }
	.site-header__nav.is-open li:nth-child(4) { transition-delay: .44s; }
	.site-header__nav.is-open li:nth-child(5) { transition-delay: .52s; }
	.menu-toggle {
		display: grid;
		place-items: center;
		gap: 3px;
		width: 58px;
		height: 58px;
		background: var(--yellow);
		border: 3px solid var(--ink);
		border-radius: 14px;
		padding: 10px 12px 6px;
	}
	.menu-toggle span:not(.menu-toggle__label) {
		width: 24px;
		height: 3px;
		background: var(--ink);
		border-radius: 2px;
		transition: transform .25s, opacity .25s;
	}
	.menu-toggle__label {
		font-family: var(--font-comic);
		font-size: .62rem;
		letter-spacing: .08em;
	}
	.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
	.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.site-header__cta { margin-left: auto; }
	.site-header__tel { display: none; }
}

@media (max-width: 767px) {
	:root { --header-h: 64px; }

	.site-header__logo-img { height: 40px; }
	.site-header__btn { display: none; }
	.menu-toggle { width: 50px; height: 50px; }

	.hero { padding-bottom: 110px; }
	.hero__badges { gap: 12px; margin-top: 30px; }
	.hero__cta { gap: 16px; }
	.btn-cta--big { padding: 16px 22px; font-size: 1rem; }
	.btn-tel { padding: 10px 26px; }

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

	/* 図解: スマホも横並び(縮小表示) */
	.margin-diagram { padding-left: 12px; padding-right: 12px; }
	.margin-diagram__row { padding: 30px 8px 14px; }
	.margin-diagram__flow { gap: 6px; }
	.md-node { min-width: 0; flex: 1 1 0; gap: 2px; }
	.md-node__icon { width: 34px; height: 34px; }
	.md-node__coins { bottom: 16px; }
	.md-node__coins--5 { right: -4px; width: 16px; }
	.md-node__coins--10 { right: -10px; width: 22px; }
	.md-node > span { font-size: .6rem; }
	.md-fee { top: -14px; padding: 2px 7px; font-size: .52rem; }
	.md-arrow { font-size: .95rem; }
	.margin-diagram__note { margin-top: 10px; font-size: .72rem; }
	.margin-diagram__flow--direct { gap: 6px; }
	.md-direct { flex: 1 1 auto; min-width: 0; margin: 0; }
	.md-direct__label { white-space: normal; font-size: .82rem; line-height: 1.5; text-align: center; }
	.md-direct__arrow { max-width: 150px; margin: 0; }
	.md-node--logo { flex: none; }
	.md-node--logo img { width: 104px; }
	.md-burst {
		position: absolute;
		top: -44px;
		right: -8px;
		width: 112px;
		margin: 0;
		z-index: 1;
	}
	.md-burst > span { font-size: .55rem; }
	.margin-diagram__footer { padding: 8px 16px; }

	.symptoms__list { grid-template-columns: repeat(2, 1fr); }
	.reason__list { grid-template-columns: 1fr; }
	.service__list { grid-template-columns: repeat(2, 1fr); }
	/* WORKS: 横スクロールのカルーセル */
	.works__list {
		display: flex;
		gap: 14px;
		margin: 0 -24px;
		padding: 4px 24px 16px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.works__item {
		flex: 0 0 80%;
		max-width: 320px;
		scroll-snap-align: center;
	}
	.works__list::-webkit-scrollbar { height: 6px; }
	.works__list::-webkit-scrollbar-track { background: rgba(255, 255, 255, .3); border-radius: 999px; }
	.works__list::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 999px; }
	.works__swipe-hint {
		display: block;
		margin-top: 10px;
		text-align: center;
		font-weight: 900;
		font-size: .8rem;
		color: var(--white);
	}
	.voice__list { max-width: 460px; margin-inline: auto; }
	.flow__list { grid-template-columns: 1fr; max-width: 480px; }
	.company__table th { width: 106px; padding: 12px 12px; font-size: .85rem; }
	.company__table td { padding: 12px 14px; font-size: .88rem; }

	.site-footer { padding-bottom: 130px; }

	/* スマホ固定CTA */
	.sp-fixed-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 900;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		background: rgba(26, 26, 26, .92);
	}
	.sp-fixed-cta a {
		display: grid;
		justify-items: center;
		align-content: center;
		padding: 8px 6px;
		font-family: var(--font-head);
		font-size: 1rem;
		line-height: 1.3;
		border-radius: 12px;
	}
	.sp-fixed-cta__label {
		font-size: .68rem;
		font-family: var(--font-body);
		font-weight: 900;
	}
	.sp-fixed-cta__tel { background: var(--white); color: var(--ink); }
	.sp-fixed-cta__tel .sp-fixed-cta__label { color: var(--pink); }
	.sp-fixed-cta__contact { background: var(--yellow); color: var(--ink); }

	/* トップへ戻る: 固定CTAバーの上に退避・控えめサイズ */
	.to-top {
		right: 10px;
		bottom: calc(96px + env(safe-area-inset-bottom));
		width: 44px;
		opacity: 0;
	}
	.to-top.is-shown { opacity: .88; }
}

@media (max-width: 420px) {
	.service__list { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.site-header__nav,
	.site-header__nav li { transition: none; }
	.site-header__nav.is-open li { transition-delay: 0s; }
	.nav-drip { display: none; }
	.js-hero-item, body.is-loaded .js-hero-item,
	.js-hero-stomp,
	body.is-loaded .hero__catch-line1.js-hero-stomp,
	body.is-loaded .hero__catch-line2.js-hero-stomp {
		animation: none;
		opacity: 1;
		transform: none;
		filter: none;
	}
	body.is-loaded .hero__inner,
	body.is-loaded .hero__bg {
		animation: none;
	}
	.js-reveal {
		opacity: 1;
		translate: none;
		transition: none;
	}
	.worries-splat, .worries__bg.is-visible .worries-splat,
	.flow-splat, .flow__bg.is-visible .flow-splat {
		animation: none !important;
		scale: 1;
		opacity: var(--splat-o, .8);
		-webkit-mask: none;
		mask: none;
	}
	.sec-head__brush {
		clip-path: none;
		transition: none;
	}
	.to-top.is-painting .to-top__trail,
	.to-top.is-painting .to-top__brush {
		animation: none;
	}
	.md-coin, .margin-diagram.is-visible .md-coin {
		animation: none !important;
		opacity: 1;
	}
	.md-direct__label, .margin-diagram.is-visible .md-direct__label {
		animation: none !important;
		opacity: 1;
	}
	.md-direct__arrow {
		clip-path: none;
		transition: none;
	}
	.margin-diagram__title em,
	.margin-diagram.is-visible .margin-diagram__title em {
		animation: none !important;
		opacity: 1;
	}
	.marquee__track, .hero__star, .worries__answer-splat,
	.worries__answer-arrow { animation: none; }
	.worries__answer.js-reveal,
	.worries__answer.js-reveal.is-visible {
		animation: none;
		opacity: 1;
		scale: 1;
	}
}
