/* ==========================================================================
   トップページ専用スタイル（Figmaデザイン準拠）
   ========================================================================== */

/* --------------------------------------------------------------------------
   共通セクションレイアウト
   -------------------------------------------------------------------------- */
.section {
	padding: 80px 20px;
}

.section__inner {
	max-width: 1160px;
	margin: 0 auto;
}

.section__label-wrap {
	text-align: center;
	margin-bottom: 56px;
	position: relative;
}

/* Figma準拠：大きな英字（薄い）＋日本語タイトル重ねるスタイル */
.section__en-bg {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(3rem, 8vw, 4.375rem);
	/* 70px */
	font-weight: 700;
	color: rgba(81, 81, 81, 0.15);
	line-height: 1.2;
	letter-spacing: 0.05em;
	margin-bottom: -0.6em;
	user-select: none;
}

.section__title {
	font-family: "Noto Serif JP", var(--font-heading), serif;
	font-size: clamp(1.375rem, 3vw, 1.875rem);
	/* 30px */
	font-weight: 700;
	color: var(--color-navy);
	margin: 0;
	line-height: 1.4;
	position: relative;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	height: 100svh;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.04);
	transition: transform 8s ease-out;
}

.hero.is-visible .hero__bg {
	transform: scale(1);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.45);
}

.hero__inner {
	position: relative;
	z-index: 1;
	padding: 0 80px;
	max-width: 560px;
}

@media (max-width: 767px) {
	.hero__inner {
		padding: 0 24px;
		max-width: 100%;
		text-align: center;
	}
}

.hero__title {
	font-family: "Noto Serif JP", var(--font-heading), serif;
	font-size: clamp(2.5rem, 7vw, 5rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 28px;
	color: var(--color-navy);
	text-shadow: 0 2px 16px rgba(255, 255, 255, 0.5);
}

.hero__sub {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	line-height: 2;
	margin: 0 0 44px;
	color: var(--color-navy);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

@media (max-width: 767px) {
	.hero__actions {
		justify-content: center;
	}
}

.hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 11px;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 1.125rem;
	/* 18px */
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	min-width: 220px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero__cta--primary {
	background: var(--color-navy);
	color: #fff;
}

.hero__cta--line {
	background: #06c755;
	color: #fff;
}

/* --------------------------------------------------------------------------
   CONCERNS
   -------------------------------------------------------------------------- */
.concerns {
	background: rgb(245, 244, 232);
}

.concerns__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 48px;
}

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

.concerns__card {
	background: #fff;
	border: 1px solid rgb(197, 197, 197);
	border-radius: 11px;
	padding: 28px 28px 32px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.concerns__card-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 12px;
	line-height: 1.5;
}

.concerns__card-text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	color: var(--color-text);
	margin: 0;
	line-height: 1.8;
}

.concerns__lead {
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	line-height: 1.9;
	color: var(--color-text);
	margin: 0;
}

/* --------------------------------------------------------------------------
   REASONS
   -------------------------------------------------------------------------- */
.reasons {
	background: #fff;
}

.reasons__list {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.reasons__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

@media (max-width: 767px) {
	.reasons__item {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.reasons__item--img-left .reasons__img-wrap {
		order: 1;
	}
}

.reasons__img-wrap {
	overflow: hidden;
	border-radius: 8px;
}

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

.reasons__img-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: rgb(217, 217, 217);
	border-radius: 8px;
}

.reasons__heading {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	/* 24px */
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 20px;
	line-height: 1.4;
}

.reasons__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	color: var(--color-text);
	margin: 0;
	line-height: 2.2;
}

/* --------------------------------------------------------------------------
   STEPS
   -------------------------------------------------------------------------- */
.steps {
	position: relative;
	overflow: hidden;
	padding: 80px 20px;
}

.steps__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #c8c0b8;
}

.steps__overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.70);
}

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

.steps .section__en-bg {
	color: rgba(81, 81, 81, 0.26);
}

.steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

@media (max-width: 899px) {
	.steps__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.steps__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.steps__num-wrap {
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.steps__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgb(37, 42, 118);
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	/* 24px */
	font-weight: 700;
	flex-shrink: 0;
}

.steps__content {
	background: rgb(255, 252, 252);
	border: 1px solid rgb(197, 197, 197);
	border-radius: 12px;
	padding: 16px 18px 20px;
	flex: 1;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.steps__heading {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 10px;
	line-height: 1.5;
}

.steps__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	color: var(--color-text);
	margin: 0;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   NEWS
   -------------------------------------------------------------------------- */
.news {
	background: rgb(244, 244, 231);
}

.news__label-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.news__heading-wrap {
	position: relative;
}

.news__en-bg {
	text-align: left;
}

.news__title {
	text-align: left;
}

.news__more-link {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	color: rgb(81, 81, 81);
	text-decoration: none;
	border-bottom: 1px solid rgb(81, 81, 81);
	padding-bottom: 2px;
	white-space: nowrap;
	transition: opacity 0.2s ease;
	margin-bottom: 8px;
}

.news__more-link:hover {
	opacity: 0.7;
}

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

@media (max-width: 899px) {
	.news__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.news__card {
	overflow: hidden;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news__card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.news__card-thumb-wrap {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: rgb(217, 217, 217);
}

.news__card-thumb-wrap--noimg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.news__card-noimg {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(81, 81, 81, 0.3);
	letter-spacing: 0.1em;
}

.news__card-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.news__card:hover .news__card-thumb {
	transform: scale(1.04);
}

.news__card-body {
	padding: 12px 8px;
}

.news__card-date {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	color: var(--color-text);
	font-weight: 400;
	margin-bottom: 6px;
}

.news__card-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-text);
	margin: 0;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news__empty {
	text-align: center;
	color: var(--color-text-sub);
	font-size: 0.9375rem;
	padding: 40px 0;
}

/* --------------------------------------------------------------------------
   MESSAGE
   -------------------------------------------------------------------------- */
.message {
	background: #fff;
}

.message__inner {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 64px;
	align-items: flex-start;
	max-width: 1000px;
	margin-inline: auto;
}

@media (max-width: 767px) {
	.message__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

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

.message__photo-wrap {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

@media (max-width: 767px) {
	.message__photo-wrap {
		width: 200px;
		height: 200px;
	}
}

.message__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position: center top; */
	display: block;
}

.message__sign {
	margin: 0;
	text-align: center;
	line-height: 1.6;
}

.message__sign-role {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	/* 20px */
	font-weight: 700;
	color: rgb(81, 81, 81);
}

.message__sign-name {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: rgb(81, 81, 81);
}

.message__body {
	display: flex;
	flex-direction: column;
	padding-top: 20px;
}

.message__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	line-height: 2.2;
	color: var(--color-text);
	margin: 0 0 20px;
}

.message__text:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 80px 20px;
}

.cta-section__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #8b7355;
}

.cta-section__overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.70);
}

.cta-section__inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.cta-section__title {
	font-family: "Noto Serif JP", var(--font-heading), serif;
	font-size: clamp(1.25rem, 3vw, 1.875rem);
	/* 30px */
	font-weight: 700;
	color: rgb(37, 42, 118);
	margin: 0 0 32px;
	line-height: 1.5;
}

.cta-section__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	/* 18px */
	color: var(--color-text);
	line-height: 2;
	margin: 0 0 48px;
}

.cta-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.cta-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	padding: 18px 40px;
	border-radius: 11px;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 1.5rem;
	/* 24px */
	text-decoration: none;
	letter-spacing: 0.04em;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-section__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-section__btn--primary {
	background: var(--color-navy);
	color: #fff;
}

.cta-section__btn--line {
	background: #06c755;
	color: #fff;
}
