@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
:root {
	--font-base: "Zen Kaku Gothic New", "Noto Sans", sans-serif;
	--font-serif: "Shippori Mincho", serif;
	--color-bg: #ffffff;
	--color-primary: #f5f1e3;
	--color-accent: #e58c2d;
	--color-dark: #1a1a1a;
	--color-light: #ffffff;
	--color-muted: #999999;
	--color-highlight: #f7c800;
	--color-button: #e58c2d;
	--color-button-text: #ffffff;
}

* {
	/*outline: 1px solid red;*/
}
body {
	margin: 0;
	font-family: var(--font-base);
	background-color: var(--color-bg);
	color: var(--color-dark);
	line-height: 1.8;
	letter-spacing: 0.05em;
	transition: background 0.4s ease, filter 0.4s ease;
	overflow-x: hidden;
}

body.dark-bg {
	background-color: #000;
	color: var(--color-light);
}

.pc {
	display: inherit;
}

.sp {
	display: none;
}

.object-fit-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.sp {
		display: inherit;
	}
	.pc {
		display: none;
	}
}

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

.text-center {
	text-align: center;
}
.section__title {
	font-size: clamp(1.5rem, 2.6vw, 3rem);
	font-weight: bold;
	margin-bottom: 0.5em;
	font-family: var(--font-serif);
}

.section-hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.hero__inner {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: flex-start;
}

.hero__text-block {
	flex: 1 1 300px;
	position: relative;
}

.hero__circle {
	width: min(10vw, 120px);
	height: min(10vw, 120px);
	background-color: var(--color-accent);
	border-radius: 50%;
	position: absolute;
	top: -10%;
	left: -3%;
	z-index: -1;
}

.hero__headline {
	font-size: clamp(1.7rem, 3.6vw, 4rem);
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 3rem;
	font-family: var(--font-serif);
}

.hero__subtext {
	font-size: clamp(1rem, 2.6vw, 1.4rem);
	margin-bottom: 3rem;
}

.hero__cta {
	display: inline-block;
	background-color: var(--color-button);
	color: var(--color-button-text);
	font-size: clamp(1rem, 2.6vw, 1.4rem);
	padding: 0.75em 1.5em;
	border-radius: 4px;
	text-decoration: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: background 0.3s;
}

.hero__cta:hover {
	background-color: var(--color-bg);
	color: var(--color-accent);
}

.hero__images {
	position: absolute;
	width: min(40%, 700px);
	top: 0;
	right: 0;
	z-index: 1;
	filter: drop-shadow(0px 3px 12px rgba(0, 0, 0, 0.16));
}

.hero__image {
	width: 100%;
	height: auto;
	display: block;
}

.hero__image--bottom {
	position: absolute;
	top: 60px;
	left: 80px;
	width: 90%;
	z-index: -1;
}

.blur-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(30vw, 400px);
	height: min(30vw, 400px);
	background-color: var(--color-accent); /* ふんわりした色 */
	opacity: 0.4;
	border-radius: 50%;
	filter: blur(150px); /* 擬似的レイヤーブラー */
	animation: floatScale 10s ease-in-out infinite;
	pointer-events: none; /* 背景演出用 */
	z-index: 0;
}

@keyframes floatScale {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}
	25% {
		transform: translate(calc(-50% + 10px), calc(-50% - 8px)) scale(1.2);
	}
	50% {
		transform: translate(calc(-50% - 5px), calc(-50% + 6px)) scale(1.5);
	}
	75% {
		transform: translate(calc(-50% + 8px), calc(-50% - 10px)) scale(1.2);
	}
	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}

/* =============================
comparison Section - Before / After
============================= */

.comparison {
	padding: 80px 0 160px;
}
.comparison__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 60px;
}

.comparison__card {
	position: relative;
}

.comparison__image-wrapper {
	position: relative;
}

.comparison__label {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: serif;
	font-style: italic;
	font-size: 1.6rem;
	color: var(--color-muted);
}

.comparison__label--after {
	color: var(--color-accent);
}

.comparison__text {
	padding-top: 1.5rem;
	font-size: 1rem;
}

.comparison__image {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.zoom {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: var(--color-accent);
	padding: min(10%, 100px) 0;
}
.zoom__card {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	padding: 6rem 8rem;
	border-radius: 24px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transform: scale(1);
	transition: transform 0.05s ease-out;
	max-width: 1500px;
	width: 90%;
}
.zoom__content {
	flex: 1;
	max-width: 630px;
	padding-right: 4rem;
}
.zoom__content h2 {
	font-size: clamp(1.4rem, 2.5vw, 2.4rem);
	margin-bottom: 1rem;
	font-weight: bold;
}

.zoom__text {
	font-size: clamp(1rem, 1.5vw, 1.4rem);
}
.zoom__image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.image-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.impact {
	width: 100%;
	background: linear-gradient(to bottom, #fff, #fef3e3);
	padding: min(10%, 100px) 0 min(20%, 200px);
}

.impact__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: min(8vw, 16rem);
	padding: 6rem 0;
	margin-left: calc((100% - 980px) / 2);
}

.impact__heading {
	font-size: clamp(1.8rem, 2.5vw, 2.4rem);
	font-weight: bold;
	font-family: var(--font-serif);
	margin-bottom: 1.8rem;
	line-height: 1.4;
}

.impact__text p {
	font-size: clamp(1.2rem, 1.3vw, 1.5rem);
	font-weight: 400;
	margin-bottom: 1.6rem;
	line-height: 1.8;
}

.impact__image {
	flex: 1;
	aspect-ratio: 9 / 12;
	background-color: #dbdbdb;
	z-index: 0;
}

.impact__metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
}

.metric {
	text-align: center;
	position: relative;
}

.metric:not(:last-child)::before {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #505050;
	right: -0.75rem;
}

.metric__label {
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.metric__value {
	font-size: min(2vw, 2rem);
	font-family: var(--font-serif);
	font-weight: bold;
	line-height: 1.4;
	padding-top: 10%;
}

.metric__value small {
	font-size: 50%;
	font-weight: 400;
}

.reasons {
	position: relative;
	background-color: var(--color-accent);
	color: #fff;
	padding: 6rem 0;
}

.reasons__backgroundwrapper {
	width: 100%;
	overflow: hidden;
	margin-bottom: -1.2em;
	background-color: #fef3e3;
}

.reasons__background {
	display: flex;
	pointer-events: none;
}

.reasons__background-text {
	font-size: 10rem;
	line-height: 0.9;
	font-weight: bold;
	color: var(--color-accent);
	font-family: "Georgia", serif;
	white-space: nowrap;
	z-index: 0;
}

.reasons__inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
}

.reasons__heading {
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 3rem;
	font-weight: bold;
}

.reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.reason-card {
	position: relative;
	background-color: #ddd;
}

.reason-card__imagewrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.reason-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reason-card__text {
	position: absolute;
	bottom: 10px;
	left: 20px;
	font-size: 1.1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	font-weight: 500;
	color: #fff;
	margin-bottom: auto;
}

.reason-card__tagline {
	font-size: 1.2rem;
	color: var(--color-accent);
	background-color: #fff;
	padding: 0.5em 1em;
}
.reason-card__tagline span {
	font-size: 80%;
	font-weight: normal;
	color: #111;
	margin-top: 0.2em;
}

/* =============================
Flow Section - 支援の流れ
============================= */
.flow {
	text-align: center;
	padding: 4rem 1rem 6rem;
	background-color: var(--color-light);
	color: #0b1269;
	position: relative;
}

.flow__subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #444;
}

/* ステップエリア */
.flow-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 3rem;
}

.flow-step {
	flex: 1;
	text-align: left;
	background-color: #fdfdfd;
	padding: 1.5em;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
	transition: transform 0.3s ease;
}

.flow-step__number {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--color-highlight);
	margin-bottom: 0.5rem;
}

.flow-step__heading {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: var(--color-dark);
}

.flow-step__text {
	font-size: 0.875rem;
	color: #333;
	line-height: 1.6;
}

/* バナー */
.flow__banner {
	background-color: var(--color-highlight);
	color: #0b1269;
	font-weight: bold;
	padding: 1rem 2rem;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	margin: 0 auto;
	width: fit-content;
}

/* 基本スタイル調整 */
.form-section {
	max-width: 1400px;
	margin: 0 auto;
	background-color: #fff;
}

.form-section__container {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.form-section__visual {
	flex: 1;
}

.form-section__image {
	max-width: 100%;
	height: auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section__form-area {
	flex: 1;
}

.form-section__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 8px;
}

.form-section__lead {
	font-size: 14px;
	color: #555;
	margin-bottom: 24px;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

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

.form__label {
	font-size: 14px;
	margin-bottom: 4px;
}

.form__input,
.form__textarea {
	font-size: 14px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.form__textarea {
	height: 100px;
	resize: vertical;
}

.form__checkbox-group {
	margin-top: 12px;
}

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

.form__submit {
	margin-top: 20px;
	padding: 12px 20px;
	background-color: #333;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
}

.form__submit:hover {
	background-color: #000;
}

/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 768px) {
	.form-section__container {
		flex-direction: column;
		gap: 20px;
	}

	.form-section__title {
		font-size: 20px;
	}

	.form-section__lead {
		font-size: 13px;
	}

	.form__submit {
		width: 100%;
	}
}

/* モバイル対応 */
@media (max-width: 768px) {
	.container {
		padding: 0 min(20px, 5%);
		flex-direction: column;
	}
	.section-hero {
		height: auto;
		min-height: 100vh;
	}
	.section__title {
		font-size: min(6vw, 24px);
	}
	.hero__inner {
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		padding-top: 20%;
		padding-bottom: 10%;
	}

	.hero__circle {
		width: min(20vw, 120px);
		height: min(20vw, 120px);
		top: 8%;
		left: 14%;
	}
	.hero__images {
		position: static;
		width: 100%;
	}
	.hero__image--top,
	.hero__image--bottom {
		position: static;
		width: 100%;
	}

	.comparison {
		padding: 80px 0;
	}

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

	.zoom__card {
		padding: 2rem;
		gap: 2rem;
		flex-direction: column;
	}

	.zoom__content {
		padding-right: 0;
	}

	.impact {
		padding-bottom: min(90px, 20%);
	}

	.impact__metrics {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 1.5rem;
	}
	.impact__inner {
		position: relative;
		flex-direction: column;
		padding: 0 min(20px, 5%);
		margin-left: 0;
		margin-bottom: 5rem;
	}

	.impact__text {
		position: relative;
		z-index: 1;
	}

	.impact__image {
		width: 70%;
		aspect-ratio: 9 / 14;
		background-color: #dbdbdb;
		z-index: 0;
	}

	.metric:nth-of-type(2n)::before {
		content: none;
	}

	.metric__title {
		font-size: min(4vw, 22px);
	}

	.metric__value {
		font-size: min(6vw, 26px);
	}
	.reasons {
		padding: 3rem min(20px, 5%);
	}

	.reasons__grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.reasons__background-text {
		font-size: 5rem;
	}
	.reasons__backgroundwrapper {
		margin-bottom: -0.9em;
	}
	.flow {
		padding: 4rem min(20px, 5%) 4rem;
	}
	.flow-steps {
		flex-direction: column;
		align-items: center;
	}

	.flow-step {
		max-width: 85%;
		text-align: center;
	}

	.flow__banner {
		flex-direction: column;
		gap: 0.5rem;
	}

	.form-section {
		padding: 0 min(20px, 5%) 8rem;
	}
}
