:root {
	--teal: #7BC4A4;
	--teal-soft: #D6EADD;
	--teal-bg: #E9F4ED;
	--orange: #E68A5C;
	--orange-soft: #F5D9C4;
	--orange-bg: #FEF3EB;
	--cream: #FFFBF2;
	--cream-deep: #F7EFE1;
	--paper: #F9F9F7;
	--ink: #4A3F35;
	--ink-soft: #706358;
	--ink-mute: #A1968C;
	--line: #E2DDD5;
	--pink: #F2A490;
	--yellow: #F7D060;
}

html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", "Noto Sans JP", -apple-system, sans-serif;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	line-height: 1.7;
	font-weight: 500;
	overflow-x: hidden;
}

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

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

@media screen and (max-width: 768px) {
	.hide-sp {
		display: none !important;
	}
}

@media screen and (min-width: 769px) {
	.hide-pc {
		display: none !important;
	}
}

.page {
	max-width: 980px;
	margin: 0 auto;
	background: var(--cream);
	position: relative;
	/* overflow: hidden; */
}

.l-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	position: relative;
}

/* ===== HERO ===== */
.hero {
	position: relative;
	padding: 28px 40px 60px;
	overflow: hidden;
}

.hero-bird-tl {
	position: absolute;
	top: 18px;
	left: 60px;
	width: 56px;
	transform: rotate(-8deg);
	z-index: 2;
}

.hero-leaf-tl {
	position: absolute;
	top: -10px;
	left: -20px;
	width: 130px;
	opacity: .85;
	z-index: 1;
}

.hero-leaf-tl2 {
	position: absolute;
	top: 80px;
	left: 350px;
	width: 60px;
	opacity: .9;
	z-index: 1;
	transform: rotate(20deg);
}

.hero-sparkle1 {
	position: absolute;
	top: 120px;
	left: 10px;
	width: 30px;
	z-index: 2;
}

.hero-sparkle2 {
	position: absolute;
	top: 50px;
	right: 40%;
	width: 24px;
	z-index: 2;
}

.hero-sun {
	position: absolute;
	top: 30px;
	right: 90px;
	width: 110px;
	opacity: .85;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 16px;
	align-items: start;
	position: relative;
	z-index: 3;
	padding-top: 40px;
}

.hero-tag {
	display: inline-block;
	background: var(--teal);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 6px 18px;
	border-radius: 999px;
	margin-bottom: 18px;
	box-shadow: 0 2px 0 #5BAA8A;
}

.hero-title {
	font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
	font-weight: 900;
	font-size: 34px;
	line-height: 1.45;
	margin: 0 0 18px;
	letter-spacing: 0.01em;
}

.hero-title .accent {
	color: var(--orange);
	position: relative;
}

.hero-title .accent::before {
	content: "";
	position: absolute;
	inset: auto 0 -2px 0;
	height: 8px;
	background: var(--yellow-soft);
	z-index: -1;
	border-radius: 4px;
}

.hero-divider {
	height: 2px;
	background: repeating-linear-gradient(to right, var(--ink-mute) 0 6px, transparent 6px 12px);
	margin: 14px 0;
	opacity: .4;
}

.hero-lead {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.9;
	margin: 0 0 26px;
}

.cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	border: 0;
	font-family: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 4px 0 #C46550, 0 8px 18px rgba(240, 130, 99, .3);
	padding-right: 30px;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 0 #C46550, 0 10px 22px rgba(240, 130, 99, .4);
}

.btn-primary .icon {
	width: 22px;
	height: 22px;
}

.btn-primary .arrow {
	margin-left: 4px;
}

.btn-ghost {
	background: #fff;
	color: var(--ink);
	border: 2px solid var(--line);
	box-shadow: 0 3px 0 var(--line);
}

.btn-ghost:hover {
	transform: translateY(-2px);
}

.btn-ghost .arrow {
	color: var(--orange);
}

.hero-photo {
	position: relative;
	margin-top: -10px;
	z-index: 2;
}

.hero-photo img.main {
	width: 100%;
}

.hero-mockup-wrap {
	position: relative;
	margin-top: 4px;
}

.hero-laptop {
	width: 92%;
	margin-left: 4%;
}

.hero-phone {
	position: absolute;
	right: -10px;
	bottom: -20px;
	width: 22%;
	z-index: 4;
}

/* ===== SECTION HEADERS ===== */
.section-title {
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: 26px;
	margin: 0 0 30px;
	letter-spacing: 0.05em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.section-title::before,
.section-title::after {
	content: "";
	width: 36px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.section-title::before {
	background-image: url(images/webp/img2_003.webp);
	transform: scaleX(-1);
}

.section-title::after {
	background-image: url(images/webp/img2_003.webp);
}

/* ===== WORRIES ===== */
.worries {
	padding: 50px 40px 30px;
	position: relative;
}

.worries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.worry-card {
	background: #fff;
	border-radius: 18px;
	padding: 22px 16px 20px;
	text-align: center;
	box-shadow: 0 2px 0 var(--line);
	border: 1px solid #F2EBDB;
}

.worry-card .icon-wrap {
	width: 70px;
	height: 70px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.worry-card .icon-wrap img {
	max-width: 100%;
	max-height: 100%;
}

.worry-card p {
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	font-weight: 700;
	color: var(--ink);
}

.worries .deco-leaf-l {
	position: absolute;
	left: 6px;
	bottom: 30px;
	width: 70px;
	opacity: .8;
}

.worries .deco-flower-r {
	position: absolute;
	right: 12px;
	bottom: 20px;
	width: 70px;
	opacity: .9;
}

.worries .deco-bug {
	position: absolute;
	right: 8%;
	top: 20px;
	width: 22px;
	opacity: .9;
}

/* ===== FEATURES ===== */
.features {
	padding: 30px 40px 40px;
	position: relative;
}

.features .section-title {
	font-size: 24px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.feature-card {
	background: var(--teal-bg);
	border-radius: 18px;
	padding: 22px 18px;
	border: 1px solid #C9E4D6;
	position: relative;
}

.feature-card .head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.feature-card .icon-circle {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-card .icon-circle img {
	width: 32px;
	height: 32px;
}

.feature-card h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.4;
}

.feature-card p {
	margin: 0;
	font-size: 12px;
	color: var(--ink-soft);
	line-height: 1.8;
}

/* ===== CONTENTS ===== */
.contents {
	padding: 50px 40px 30px;
	position: relative;
}

.contents-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.content-tile {
	background: #fff;
	border-radius: 14px;
	padding: 16px 6px 14px;
	text-align: center;
	border: 1px solid #F2EBDB;
	box-shadow: 0 2px 0 var(--line);
}

.content-tile img {
	width: 38px;
	height: 38px;
	margin: 0 auto 6px;
}

.content-tile span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
}

.contents .deco-cloud {
	position: absolute;
	top: 10px;
	right: 30px;
	width: 60px;
	opacity: .8;
}

.contents .deco-cloud2 {
	position: absolute;
	top: 50px;
	left: 40px;
	width: 50px;
	opacity: .7;
}

/* ===== FLOW ===== */
.flow {
	padding: 50px 40px;
	position: relative;
	background: linear-gradient(to bottom, transparent, var(--cream-deep) 60%, transparent);
}

.flow-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	position: relative;
}

.flow-step {
	text-align: center;
	position: relative;
}

.flow-step .num-bubble {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 6px;
	font-size: 14px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .1);
}

.flow-step .step-circle {
	width: 130px;
	height: 130px;
	background: #fff;
	border: 2px dashed var(--teal-soft);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.flow-step .step-circle img {
	width: 70px;
	height: 70px;
}

.flow-step h4 {
	color: var(--teal);
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
}

.flow-step p {
	margin: 0;
	font-size: 11px;
	color: var(--ink-soft);
	line-height: 1.7;
	padding: 0 6px;
}

.flow-step:nth-child(2) .num-bubble {
	background: var(--yellow);
}

.flow-step:nth-child(2) h4 {
	color: var(--yellow);
}

.flow-step:nth-child(3) .num-bubble {
	background: #6BAEDC;
}

.flow-step:nth-child(3) h4 {
	color: #6BAEDC;
}

.flow-step:nth-child(4) .num-bubble {
	background: var(--orange);
}

.flow-step:nth-child(4) h4 {
	color: var(--orange);
}

.flow .deco-tree-l {
	position: absolute;
	left: -30px;
	bottom: 20px;
	width: 100px;
	opacity: .9;
}

.flow .deco-leaf-l {
	position: absolute;
	left: 10px;
	top: 30px;
	width: 50px;
	opacity: .8;
	transform: rotate(-20deg);
}

.flow .deco-tree-r {
	position: absolute;
	right: -10px;
	top: 40px;
	width: 70px;
	opacity: .9;
}

.flow .deco-cloud-r {
	position: absolute;
	right: 20px;
	bottom: 30px;
	width: 70px;
	opacity: .7;
}

/* ===== PRICING ===== */
.pricing {
	padding: 30px 40px 40px;
	position: relative;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 980px;
	margin: 0 auto;
}

.price-card {
	background: var(--teal-bg);
	border-radius: 16px;
	padding: 28px 24px 24px;
	text-align: center;
	border: 2px solid #BFE1CF;
	position: relative;
}

.price-card.orange {
	background: var(--orange-bg);
	border-color: #F4C7B6;
}

.price-card .ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--teal);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 4px 22px;
	border-radius: 999px;
	white-space: nowrap;
}

.price-card.orange .ribbon {
	background: var(--orange);
}

.price-card .ribbon::before,
.price-card .ribbon::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 14px;
	height: 14px;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
}

.price-card .ribbon::before {
	left: -20px;
	background-image: url(images/webp/img2_003.webp);
	transform: translateY(-50%) scaleX(-1);
}

.price-card .ribbon::after {
	right: -20px;
	background-image: url(images/webp/img2_003.webp);
}

.price-card .desc {
	font-size: 12px;
	color: var(--ink-soft);
	margin: 14px 0 12px;
	line-height: 1.7;
}

.price-card .price {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-size: 38px;
	color: var(--ink);
	line-height: 1;
}

.price-card.orange .price {
	color: var(--orange);
}

.price-card.premium .ribbon {
	background: var(--ink-soft);
}

.price-card .price .yen {
	font-size: 24px;
}

.price-card .price .tilde {
	font-size: 24px;
	color: var(--ink-mute);
}

.pricing .note {
	text-align: center;
	font-size: 11px;
	color: var(--ink-mute);
	margin-top: 16px;
}

.pricing .deco-house {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 90px;
}

.pricing .deco-flower-l {
	position: absolute;
	left: 10px;
	bottom: 30px;
	width: 60px;
	opacity: .9;
}

/* ===== DESIGN EXAMPLES ===== */
.designs {
	padding: 50px 0 50px;
	position: relative;
	overflow: hidden;
}

.designs .section-title {
	padding: 0 40px;
	margin-bottom: 8px;
}

.designs .section-lead {
	text-align: center;
	font-size: 13px;
	color: var(--ink-soft);
	margin: 0 0 30px;
	line-height: 1.8;
}

.designs-track-wrap {
	position: relative;
}

.designs-track {
	display: flex;
	gap: 20px;
	padding: 12px 40px 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.designs-track::-webkit-scrollbar {
	display: none;
}

.design-card {
	flex-shrink: 0;
	width: 220px;
	scroll-snap-align: start;
	background: #fff;
	border-radius: 20px;
	border: 1.5px solid #EAE0CC;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
}

.design-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .13);
}

.design-card .screen {
	width: 100%;
	height: 320px;
	overflow: hidden;
	position: relative;
	background: #f8f8f8;
}

.design-card .screen img {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: top center;
	transition: transform 6s ease;
}

.design-card:hover .screen img {
	transform: translateY(-60%);
}

.design-card .card-foot {
	padding: 14px 16px;
	border-top: 1px solid #F2EBDB;
}

.design-card .card-name {
	font-weight: 700;
	font-size: 13px;
	color: var(--ink);
	margin: 0 0 4px;
}

.design-card .card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 6px;
}

.design-card .tag {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--cream-deep);
	color: var(--ink-soft);
}

.design-card .tag.green {
	background: var(--teal-bg);
	color: #4A9A7C;
}

.design-card .tag.pink {
	background: #FCE7DF;
	color: #C95E4A;
}

.design-card .tag.yellow {
	background: #FFF4C2;
	color: #9A7A20;
}

.designs-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.designs-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	display: block;
	cursor: pointer;
	transition: background .2s, transform .2s;
}

.designs-dots span.active {
	background: var(--teal);
	transform: scale(1.3);
}

.designs .deco-leaf-r {
	position: absolute;
	right: 0;
	top: 40px;
	width: 70px;
	opacity: .7;
}

.designs .deco-leaf-l {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 60px;
	opacity: .7;
	transform: scaleX(-1);
}

/* ===== PLAN COMPARISON ===== */
.comparison {
	padding: 50px 40px 40px;
	position: relative;
}

.comparison-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 20px;
	box-shadow: 0 4px 0 var(--line), 0 10px 28px rgba(74, 63, 53, .07);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
}

.comparison-table th,
.comparison-table td {
	padding: 11px 18px;
	font-size: 13px;
	vertical-align: middle;
}

.comparison-th-label {
	width: 34%;
	background: var(--cream-deep);
	font-weight: 700;
	font-size: 12px;
	color: var(--ink-mute);
}

.comparison-th-plan {
	width: 22%;
	text-align: center;
	font-weight: 800;
	font-size: 14px;
	padding: 18px 16px;
	white-space: nowrap;
}

.comparison-th-plan.is-simple {
	background: var(--teal-bg);
	color: #3E8269;
}

.comparison-th-plan.is-standard {
	background: var(--orange-bg);
	color: #B05C3E;
}

.comparison-th-plan.is-premium {
	background: #EEE9E3;
	color: var(--ink-soft);
}

.comparison-th-plan .plan-price {
	display: block;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 22px;
	margin-top: 4px;
	color: var(--ink);
}

.comparison-th-plan.is-standard .plan-price {
	color: var(--orange);
}

.comparison-th-plan.is-premium .plan-price {
	color: var(--ink-soft);
}

.comparison-th-plan .plan-tax {
	display: block;
	font-size: 10px;
	font-weight: 500;
	color: var(--ink-mute);
	margin-top: 2px;
}

.comparison-row td {
	border-bottom: 1px solid #F0EAE0;
}

.comparison-row:last-child td {
	border-bottom: none;
}

.comparison-row td:first-child {
	font-weight: 700;
	color: var(--ink);
	background: var(--paper);
}

.comparison-row td:not(:first-child) {
	text-align: center;
}

.comparison-row.is-use td:first-child {
	color: var(--ink-soft);
	font-size: 12px;
}

.comparison-row.is-use td:not(:first-child) {
	font-size: 12px;
	color: var(--ink-soft);
	line-height: 1.6;
}

.comparison-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
}

.comparison-badge.is-ok {
	background: var(--teal-bg);
	color: #3E8269;
}

.comparison-badge.is-partial {
	background: #FFF4C2;
	color: #8A6E1A;
}

.comparison-badge.is-no {
	background: var(--cream-deep);
	color: var(--ink-mute);
}

.comparison-note {
	font-size: 11px;
	color: var(--ink-mute);
	display: block;
	margin-top: 2px;
}

.comparison-extra {
	font-size: 11px;
	color: var(--ink-mute);
	font-weight: 700;
	display: inline-block;
	background: var(--cream-deep);
	padding: 3px 10px;
	border-radius: 999px;
}

/* ===== FAQ ===== */
.faq {
	padding: 50px 40px 40px;
	position: relative;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #F2EBDB;
	box-shadow: 0 2px 0 var(--line);
	overflow: hidden;
}

.faq-q {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 22px;
	cursor: pointer;
	user-select: none;
	list-style: none;
}

.faq-q::-webkit-details-marker {
	display: none;
}

.faq-q-badge {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "M PLUS Rounded 1c", sans-serif;
	margin-top: 1px;
}

.faq-q-text {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.6;
}

.faq-arrow {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--teal);
	transition: transform .25s ease;
	margin-top: 2px;
	border: 1px solid var(--line);
}

details[open] .faq-arrow {
	transform: rotate(180deg);
}

.faq-a {
	padding: 0 22px 18px 64px;
	font-size: 13px;
	color: var(--ink-soft);
	line-height: 1.9;
	border-top: 1px dashed #EAE0CC;
	margin-top: 0;
	padding-top: 14px;
}

.faq-a p {
	margin: 0 0 6px;
}

.faq-a p:last-child {
	margin: 0;
}

.faq-a .note-tag {
	display: inline-block;
	background: var(--orange-bg);
	color: var(--orange);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
	margin-top: 6px;
}

.faq .deco-sparkle {
	position: absolute;
	top: 30px;
	right: 50px;
	width: 24px;
	opacity: .8;
}

.faq .deco-sparkle2 {
	position: absolute;
	bottom: 50px;
	left: 30px;
	width: 20px;
	opacity: .7;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
	padding: 50px 40px 56px;
	position: relative;
}

.contact-form-section .deco-cloud {
	position: absolute;
	top: 32px;
	left: 34px;
	width: 62px;
	opacity: .7;
}

.contact-form-section .deco-flower {
	position: absolute;
	right: 28px;
	/* bottom: 28px; */
	bottom: -27px;
	width: 68px;
	opacity: .85;
}

.contact-form-lead {
	text-align: center;
	font-size: 13px;
	color: var(--ink-soft);
	line-height: 1.9;
	margin: -10px auto 26px;
}

.contact-form-card {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 2px solid #D6EADD;
	border-radius: 22px;
	box-shadow: 0 4px 0 #C7DDCF, 0 12px 28px rgba(74, 63, 53, .08);
	padding: 30px;
	position: relative;
	z-index: 2;
}

.contact-form-status {
	border-radius: 14px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 20px;
	padding: 12px 16px;
}

.contact-form-status.is-success {
	background: var(--teal-bg);
	color: #3E8269;
	border: 1px solid #B7D9C8;
}

.contact-form-status.is-error {
	background: var(--orange-bg);
	color: #B95744;
	border: 1px solid #F0B9A6;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-form-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.contact-form-field.is-full {
	grid-column: 1 / -1;
}

.contact-form-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
}

.contact-form-required,
.contact-form-optional {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	border-radius: 999px;
	font-size: 10px;
	line-height: 1;
	padding: 4px 8px;
}

.contact-form-required {
	background: var(--orange);
	color: #fff;
}

.contact-form-optional {
	background: var(--cream-deep);
	color: var(--ink-mute);
}

.contact-form-input,
.contact-form-textarea {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 14px;
	background: var(--paper);
	color: var(--ink);
	font: inherit;
	font-size: 14px;
	padding: 13px 14px;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
	background: #fff;
	border-color: var(--teal);
	box-shadow: 0 0 0 4px rgba(123, 196, 164, .18);
}

.contact-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form-error {
	min-height: 1.5em;
	color: #C85E4B;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.contact-form-privacy {
	margin: 18px 0 0;
	background: var(--cream);
	border-radius: 14px;
	padding: 13px 16px;
	font-size: 12px;
	color: var(--ink-soft);
	line-height: 1.8;
}

.contact-form-actions {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.contact-form-submit[disabled] {
	opacity: .65;
	cursor: not-allowed;
	transform: none;
}

/* ===== CTA ===== */
.cta-final {
	background: var(--cream-deep);
	padding: 30px 0;
	position: relative;
	margin-top: 20px;
	overflow: hidden;
}

.cta-grid {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 20px;
	align-items: end;
}

.cta-person {
	width: 100%;
}

.cta-content {
	padding-bottom: 8px;
}

.cta-content h2 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 800;
	font-size: 22px;
	margin: 0 0 8px;
	color: var(--ink);
}

.cta-content p {
	font-size: 12px;
	color: var(--ink-soft);
	margin: 0 0 14px;
	line-height: 1.7;
}

.cta-content .btn-primary {
	font-size: 16px;
	padding: 16px 36px;
}

.cta-final .deco-crayon-l {
	position: absolute;
	left: 8px;
	/* bottom: 8px; */
	width: 60px;
	/* transform: rotate(-30deg); */
	bottom: -52px;
	transform: rotate(-70deg);
}

.cta-final .deco-crayon-r {
	position: absolute;
	/* right: 30px;
	bottom: 8px; */
	right: 20px;
	bottom: -32px;
	width: 70px;
	transform: rotate(20deg);
}

/* ===== FOOTER ===== */
footer {
	background: #fff;
	padding: 22px 0;
	border-top: 1px solid var(--line);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.brand {
	display: flex;
	flex-direction: column;
}

.brand .logo {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 26px;
	letter-spacing: 0.05em;
	color: var(--ink);
}

.brand .tagline {
	font-size: 10px;
	color: var(--ink-mute);
	margin-top: 2px;
}

.footer-nav {
	display: flex;
	gap: 20px;
	font-size: 12px;
	color: var(--ink-soft);
}

.footer-nav a:hover {
	color: var(--orange);
}

.copyright {
	font-size: 10px;
	color: var(--ink-mute);
}

/* responsive small */
@media (max-width: 768px) {
	.hero {
		padding: 20px;
	}

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

	.hero-title {
		font-size: 26px;
	}

	.worries-grid,
	.features-grid,
	.flow-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contents-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.comparison {
		padding: 42px 20px 36px;
	}

	.contact-form-section {
		padding: 42px 20px 46px;
	}

	.contact-form-card {
		padding: 22px 18px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

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

	.cta-person {
		width: 140px;
	}

	.l-inner {
		padding: 0 20px;
	}
}

/* tiny floaty animation for sparkles */
@keyframes float {

	0%,
	100% {
		transform: translateY(0) rotate(0);
	}

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

.float {
	animation: float 4s ease-in-out infinite;
}

.float.d2 {
	animation-delay: 1.5s;
}