:root {
	--bg: #FFFBF5;
	--bg-card: #FFFFFF;
	--ink: #1E293B;
	--ink-light: #64748B;
	--accent: #FF6B6B; /* Coral */
	--accent-dark: #FA5252;
	--accent-soft: #FFF5F5;
	--amber: #F59E0B;
	--mint: #6EDCA0;
	--font-display: 'Outfit', sans-serif;
	--font-body: 'Noto Sans JP', sans-serif;
	--r-md: 16px;
	--r-lg: 32px;
	--r-full: 9999px;
	--dur: 0.8s;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	line-height: 1.8;
	color: var(--ink);
	background: var(--bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Utilities */
.u-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.u-reveal.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* Loader */
.loader {
	position: fixed;
	inset: 0;
	background: var(--accent);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease;
}
.loader__paw {
	font-size: 3rem;
	animation: paw-beat 1s infinite alternate;
}
@keyframes paw-beat { from { transform: scale(0.8); opacity: 0.5; } to { transform: scale(1.2); opacity: 1; } }

/* Header */
.header {
	position: fixed;
	top: 0; left: 0; width: 100%;
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.4s var(--ease);
}
.is-loaded .header {
	padding: 12px 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4%;
}
.header__logo {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.header__logo span { color: var(--accent); }

.nav__list {
	display: flex;
	list-style: none;
	gap: 32px;
	align-items: center;
}
.nav__list a {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
	transition: color 0.3s;
}
.nav__list a:hover { color: var(--accent); }
.nav__cta {
	background: var(--accent);
	color: #fff !important;
	padding: 12px 28px;
	border-radius: var(--r-full);
	box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3); }

.header__hamburger {
	display: none;
	background: none; border: none;
	width: 32px; height: 32px;
	position: relative;
}
@media (max-width: 840px) {
	.nav__list a:not(.nav__cta) { display: none; }
	.header__hamburger { display: block; }
}

/* Hero */
.hero {
	min-height: 90vh;
	padding: 160px 0 100px;
	position: relative;
	display: flex;
	align-items: center;
}
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.hero__blob--1 { width: 40vw; height: 40vw; background: var(--accent); top: -10%; right: -10%; }
.hero__blob--2 { width: 35vw; height: 35vw; background: var(--amber); bottom: -5%; left: -5%; }

.hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero__badge {
	display: inline-block;
	background: #fff;
	padding: 8px 20px;
	border-radius: var(--r-full);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--accent);
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	margin-bottom: 24px;
}
.hero__title {
	font-size: clamp(2.5rem, 7vw, 4rem);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 32px;
}
.hero__title span { color: var(--accent); }
.hero__text {
	font-size: 1.125rem;
	line-height: 1.9;
	color: var(--ink-light);
	max-width: 520px;
	margin-bottom: 48px;
}
.hero__actions { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary {
	background: var(--accent);
	color: #fff;
	padding: 20px 48px;
	border-radius: var(--r-full);
	font-weight: 800;
	font-size: 1.0625rem;
	box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
	transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-4px); box-shadow: 0 20px 45px rgba(255, 107, 107, 0.4); }
.btn-secondary {
	background: #fff;
	color: var(--ink);
	padding: 20px 40px;
	border-radius: var(--r-full);
	font-weight: 700;
	border: 2px solid var(--ink);
	transition: all 0.3s var(--ease);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.hero__trust {
	display: flex;
	gap: 32px;
	margin-top: 60px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item .val { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.trust-item .lab { font-size: 0.75rem; font-weight: 700; color: var(--ink-light); }

.hero__visual { position: relative; }
.hero__image-wrap {
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 1 / 1.1;
	transform: rotate(2deg);
	box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__floating-card {
	position: absolute;
	bottom: -20px;
	left: -40px;
	background: #fff;
	padding: 24px;
	border-radius: var(--r-md);
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	max-width: 280px;
}
.hero__floating-card .user { display: flex; gap: 16px; align-items: center; }
.hero__floating-card img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.hero__floating-card .name { font-weight: 800; font-size: 0.875rem; margin-bottom: 2px; }
.hero__floating-card .comment { font-size: 0.75rem; color: var(--ink-light); line-height: 1.4; }

@media (max-width: 960px) {
	.hero__grid { grid-template-columns: 1fr; gap: 80px; text-align: center; }
	.hero__text, .hero__actions, .hero__trust { margin-left: auto; margin-right: auto; justify-content: center; }
	.hero__image-wrap { transform: none; max-width: 500px; margin: 0 auto; }
	.hero__floating-card { left: 50%; transform: translateX(-50%); bottom: -40px; }
}

/* Benefit */
.benefit { padding: 160px 0; background: #fff; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label { display: block; font-family: var(--font-display); font-size: 0.8125rem; font-weight: 800; color: var(--accent); letter-spacing: 0.3em; margin-bottom: 16px; }
.section-title { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 900; line-height: 1.3; }
.section-title span { color: var(--accent); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.benefit-card { background: var(--bg-card); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: transform 0.4s var(--ease); }
.benefit-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.benefit-card__visual { aspect-ratio: 16 / 10; overflow: hidden; }
.benefit-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.benefit-card__content { padding: 32px; }
.benefit-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; line-height: 1.4; }
.benefit-card p { font-size: 0.9375rem; color: var(--ink-light); }

@media (max-width: 960px) {
	.benefit-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* Flow */
.flow { padding: 160px 0; background: var(--accent-soft); overflow: hidden; }
.flow .container { overflow: hidden; }
.flow__inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: center; }
.flow__intro { font-size: 1.125rem; color: var(--ink-light); margin-bottom: 48px; }
.flow-steps { list-style: none; display: flex; flex-direction: column; gap: 40px; }
.flow-step { display: flex; gap: 24px; align-items: flex-start; }
.flow-step .num { width: 56px; height: 56px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); box-shadow: 0 10px 25px rgba(255, 107, 107, 0.1); flex-shrink: 0; }
.flow-step .txt { flex: 1; min-width: 0; }
.flow-step h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 8px; }
.flow-step p { font-size: 0.9375rem; color: var(--ink-light); }
.flow__visual { overflow: hidden; }
.flow__visual img { width: 100%; border-radius: var(--r-lg); box-shadow: 0 30px 60px rgba(0,0,0,0.1); transform: rotate(-3deg); }

@media (max-width: 1024px) {
	.flow__inner { grid-template-columns: 1fr; text-align: center; }
	.flow-step { text-align: left; }
	.flow__visual { max-width: 400px; margin: 0 auto; }
}

/* Price */
.price { padding: 160px 0; }
.price__box { background: var(--ink); color: #fff; padding: 100px 60px; border-radius: var(--r-lg); text-align: center; position: relative; overflow: hidden; }
.price__box .section-title { color: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 60px 0; position: relative; z-index: 1; }
.price-item { background: rgba(255,255,255,0.05); padding: 48px 24px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.price-item.featured { background: var(--accent); border-color: var(--accent); transform: scale(1.05); }
.price-item .cat { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; opacity: 0.6; margin-bottom: 16px; display: block; }
.price-item .val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; display: block; }
.price-item .val span { font-size: 1rem; opacity: 0.5; }
.price-item .note { font-size: 0.875rem; font-weight: 700; }
.price__footer { opacity: 0.6; font-size: 0.875rem; }

@media (max-width: 960px) {
	.price-grid { grid-template-columns: 1fr; }
	.price-item.featured { transform: none; }
	.price__box { padding: 60px 24px; }
}

/* Contact */
.contact { padding: 160px 0; }
.contact__inner { background: #fff; border-radius: var(--r-lg); box-shadow: 0 40px 100px rgba(0,0,0,0.05); overflow: hidden; display: grid; grid-template-columns: 0.8fr 1.2fr; }
.contact__header { background: var(--accent); color: #fff; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact__header .section-title { color: #fff; text-align: left; margin-bottom: 24px; }
.contact__header p { font-size: 1.125rem; opacity: 0.9; }

.contact-form { padding: 80px 60px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group.full { grid-column: span 2; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 800; color: var(--ink-light); letter-spacing: 0.05em; margin-bottom: 10px; }
.form-group input, .form-group textarea { width: 100%; background: var(--bg); border: 2px solid transparent; padding: 16px 20px; border-radius: var(--r-md); font-size: 1rem; font-family: inherit; transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1); }
.btn-submit { width: 100%; margin-top: 32px; padding: 20px; background: var(--ink); color: #fff; border: none; border-radius: var(--r-full); font-weight: 800; font-size: 1rem; letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s var(--ease); }
.btn-submit:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3); }

@media (max-width: 1024px) {
	.contact__inner { grid-template-columns: 1fr; }
	.contact__header, .contact-form { padding: 60px 24px; }
	.form-grid { grid-template-columns: 1fr; }
	.form-group.full { grid-column: span 1; }
}

/* Footer */
.footer { padding: 80px 0 40px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer__logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.footer__logo span { color: var(--accent); }
.footer__copy { font-size: 0.8125rem; color: var(--ink-light); opacity: 0.6; }

@media (max-width: 640px) {
	.footer__inner { flex-direction: column; gap: 20px; text-align: center; }
}
