@charset "UTF-8";

/*
========================================
  home.css
  トップページ専用スタイル
========================================
*/


/* ============================================
   メインビジュアル
============================================ */
.sec_mv {
	position: relative;
	width: 100%;
	height: 800px;
	overflow: hidden;
}

/* スライド背景 */
.mv_slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mv_slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.mv_slide.is-active {
	opacity: 1;
}

/* 暗幕オーバーレイ */
.mv_overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* メインコピー：縦中央よりやや上に配置 */
.mv_inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 120px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 大見出し：明朝体・センター */
.mv_catch {
	font-family: "Noto Serif JP", serif;
	font-size: 4.5rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.55;
	letter-spacing: 0.05em;
	text-align: center;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* 下部エリア：左右に分かれたサブテキスト＆ボタン */
.mv_bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

/* サブテキスト：左下 */
.mv_text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0625rem;
	color: #fff;
	line-height: 1.9;
	letter-spacing: 0.03em;
	padding: 0 0 32px 40px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ボタングループ：右下 */
.mv_btn_wrap {
	display: flex;
	align-items: stretch;
	flex-shrink: 0;
}

/* ボタン共通 */
.mv_btn_contact,
.mv_btn_tel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 72px;
	padding: 0 32px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: opacity 0.3s;
	white-space: nowrap;
}

.mv_btn_contact:hover,
.mv_btn_tel:hover {
	opacity: 0.85;
}

/* 「まずは無料で相談する」緑塗り */
.mv_btn_contact {
	background: #009c55;
	color: #fff;
}

.mv_btn_contact:hover {
	background: #007a42;
	color: #fff;
	opacity: 1;
}

/* 電話番号：薄緑背景 */
.mv_btn_tel {
	background: #e9f7ed;
	color: #333;
}

.mv_btn_tel_num {
	color: #009c55;
	font-weight: 700;
}

.mv_btn_icon {
	width: 20px;
	height: auto;
	flex-shrink: 0;
}

/* SP固定フッターCTA（PCでは非表示） */
.mv_sp_cta {
	display: none;
}


/* ============================================
   メインビジュアル SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_mv {
		height: 100svh;
		min-height: 500px;
	}

	.mv_inner {
		bottom: 0;
	}

	.mv_catch {
		font-size: 8.5vw;
		padding: 0 5%;
	}

	.mv_bottom {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 70px; /* SP固定CTA(56px) + 余白 */
		padding: 0 5%;
		z-index: 2;
	}

	.mv_text {
		font-size: 3.7vw;
		line-height: 1.85;
		padding: 0;
		letter-spacing: 0.02em;
	}

	.mv_text br {
		display: none; /* SPでは行の改行を行末に任せる */
	}

	.mv_btn_wrap {
		display: none; /* SPは画面下の固定CTAに集約 */
	}

	/* SP固定フッターCTA */
	.mv_sp_cta {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}

	.mv_sp_cta_contact,
	.mv_sp_cta_tel {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		flex: 1;
		height: 56px;
		font-size: 3.8vw;
		font-weight: 700;
		text-decoration: none;
		white-space: nowrap;
	}

	.mv_sp_cta_contact {
		background: #009c55;
		color: #fff;
	}

	.mv_sp_cta_tel {
		background: #e9f7ed;
		color: #009c55;
		font-weight: 700;
	}

	.mv_sp_cta_icon {
		width: 18px;
		height: auto;
		flex-shrink: 0;
	}
}


/* ============================================
   各セクション
   ★ デザインが出てきたら順番に追記する
============================================ */


/* ============================================
   sec01：なぜ、専門設計が必要なのか
============================================ */
.sec_reason {
	position: relative;
	margin-top: 80px;
	padding: 80px 0 100px;
	overflow: hidden;
}

/* 写真：絶対配置・左40%から右端まで（z-indexは設定しない） */
.reason_photo {
	position: absolute;
	top: 0;
	left: 42%;
	right: 0;
	height: 72%;
}

.reason_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* テキストエリア：写真より下のz-index（写真に被られる） */
.reason_upper_inner {
	position: relative;
	z-index: 1;
}

.reason_text_area {
	max-width: 100%;
}

/* SP用写真：PCでは非表示 */
.reason_photo_sp {
	display: none;
}

/* h2：明朝・グリーン */
.reason_title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.75rem;
	font-weight: 400;
	color: #009c55;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 32px;
}

.reason_lead {
	font-size: 1.125rem;
	color: #333;
	line-height: 2;
}

/* 下段：3カラムBOX（写真と重なる位置・写真より前面） */
.reason_lower {
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 1;
	margin-top: 60px;
}

.reason_box {
	flex: 1;
	background: #faf7f2;
	padding: 44px 32px 48px;
	text-align: center;
}

.reason_icon {
	width: 80px;
	height: auto;
	margin-bottom: 24px;
}

.reason_box_title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #009c55;
	margin-bottom: 20px;
	letter-spacing: 0.03em;
}

.reason_box_text {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.9;
	text-align: left;
}


/* ============================================
   sec01 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_reason {
		margin-top: 30px;
		padding: 0 0 60px;
		overflow: visible;
	}

	/* PC用absoluteの写真を非表示 */
	.reason_photo {
		display: none;
	}

	.reason_upper_inner {
		padding-top: 50px;
	}

	/* h2と写真を横並び */
	.reason_head {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 24px;
	}

	.reason_title {
		flex: 1;
		font-size: 7.5vw;
		margin-bottom: 0;
	}

	/* SP用写真：表示・右端にくっつける */
	.reason_photo_sp {
		display: block;
		flex-shrink: 0;
		width: 48%;
		margin-right: -5vw;
	}

	.reason_photo_sp img {
		width: 100%;
		height: 180px;
		object-fit: cover;
		display: block;
	}

	.reason_lead {
		font-size: 4vw;
		margin-bottom: 0;
	}

	/* 下段：縦積み */
	.reason_lower {
		flex-direction: column;
		gap: 20px;
		margin-top: 36px;
	}

	.reason_box {
		padding: 32px 24px 36px;
	}

	.reason_icon {
		width: 64px;
		margin-bottom: 18px;
	}

	.reason_box_title {
		font-size: 5vw;
		margin-bottom: 14px;
	}

	.reason_box_text {
		font-size: 4vw;
	}
}

/* ============================================
   sec02：こうした技術課題を〜
============================================ */
.sec_expert {
	padding: 0 0 100px;
}

.expert_inner {
	position: relative;
}

/* 枠線ボックス */
.expert_box {
	border: 1px solid #009c55;
	padding: 70px 60px 60px;
	text-align: center;
}

/* 上部の縦線：枠の上辺から上に伸び、20px枠内に刺さる */
.expert_box::before {
	content: '';
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 80px;
	background: #009c55;
}

/* h2：明朝・グリーン */
.expert_title {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 400;
	color: #009c55;
	line-height: 1.7;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}

/* リードテキスト */
.expert_lead {
	font-size: 1.125rem;
	color: #333;
	line-height: 2;
	margin-bottom: 50px;
}

/* タグ一覧 */
.expert_tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

/* タグバッジ */
.expert_tag {
	background: #f0f8f4;
	color: #009c55;
	font-size: 1.125rem;
	font-weight: 500;
	padding: 14px 28px;
	letter-spacing: 0.05em;
}


/* ============================================
   sec02 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_expert {
		padding: 0 0 60px;
	}

	.expert_box {
		padding: 50px 24px 40px;
	}

	.expert_box::before {
		top: -40px;
		height: 60px;
	}

	.expert_title {
		font-size: 6vw;
		margin-bottom: 28px;
	}

	.expert_lead {
		font-size: 4vw;
		margin-bottom: 36px;
		text-align: left;
	}

	.expert_tags {
		gap: 10px;
	}

	.expert_tag {
		width: calc(50% - 5px);
		font-size: 4vw;
		padding: 14px 10px;
		box-sizing: border-box;
		text-align: center;
	}
}

/* ============================================
   sec03：技術の黒子です
============================================ */
.sec_kuronko {
	position: relative;
	background: url(../images/home_bg_kuronko.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

.sec_kuronko::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 120, 70, 0.7);
}

.kuronko_inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 90px 20px;
}

/* 1行目：大きめ・下線付き */
.kuronko_sub1 {
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	display: inline-block;
	border-bottom: 1px solid #fff;
	padding-bottom: 6px;
}

/* 2行目：明朝・大きめ */
.kuronko_sub2 {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	line-height: 1.7;
}

/* 3行目：明朝・さらに大きく */
.kuronko_main {
	font-family: "Noto Serif JP", serif;
	font-size: 3rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.1em;
}


/* ============================================
   sec03 SP
============================================ */
@media screen and (max-width: 768px) {
	.kuronko_inner {
		padding: 70px 20px;
	}

	.kuronko_sub1 {
		font-size: 5vw;
		margin-bottom: 28px;
	}

	.kuronko_sub2 {
		font-size: 5.5vw;
		margin-bottom: 16px;
	}

	.kuronko_main {
		font-size: 8vw;
	}
}

/* ============================================
   sec04：設計専門に頼むと、何が変わるか
============================================ */
.sec_benefit {
	background: #faf7f2;
	padding: 100px 0 120px;
}

/* セクション見出しエリア */
.benefit_head {
	text-align: center;
	margin-bottom: 80px;
}

.benefit_title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 400;
	color: #009c55;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 24px;
}

.benefit_lead {
	font-size: 1.125rem;
	color: #333;
	line-height: 2;
}

/* アイテム：繰り返し */
.benefit_item {
	margin-bottom: 80px;
}

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

/* 写真を前面・テキストを後ろにするためposition:relativeをラッパーに */
.benefit_item_inner {
	position: relative;
	display: flex;
	align-items: flex-start;
}

/* 写真：前面・上に50px飛び出す */
.benefit_photo {
	flex-shrink: 0;
	width: 520px;
	position: relative;
	z-index: 2;
}

.benefit_photo img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

/* 白ボックス：写真の後ろ・左に120px重なる */
.benefit_body {
	flex: 1;
	background: #fff;
	padding: 50px 50px 44px 180px;
	position: relative;
	z-index: 1;
	margin-left: -120px;
	margin-top: 50px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* h3：グリーン */
.benefit_item_title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #009c55;
	letter-spacing: 0.03em;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* 本文 */
.benefit_item_text {
	font-size: 1.125rem;
	color: #333;
	line-height: 2;
	margin-bottom: 28px;
}

/* チェックリスト */
.benefit_checklist {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.benefit_checklist li {
	font-size: 0.9rem;
	color: #333;
	background: #f7f7f7;
	padding: 10px 16px 10px 36px;
	position: relative;
	line-height: 1.5;
}

/* チェックマーク：CSSで再現（オレンジ） */
.benefit_checklist li::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 5px;
	height: 10px;
	border-right: 2px solid #e07a00;
	border-bottom: 2px solid #e07a00;
}


/* ============================================
   sec04 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_benefit {
		padding: 60px 0 70px;
	}

	.benefit_head {
		margin-bottom: 50px;
		text-align: center;
	}

	.benefit_title {
		font-size: 6.5vw;
		margin-bottom: 16px;
	}

	.benefit_lead {
		font-size: 4.4vw;
		line-height: 1.9;
		letter-spacing: 0.02em;
	}

	.benefit_item {
		margin-bottom: 40px;
	}

	.benefit_item_inner {
		flex-direction: column;
		align-items: stretch;
	}

	.benefit_photo {
		width: 100%;
	}

	.benefit_photo img {
		height: 56vw;
	}

	.benefit_body {
		margin-left: 0;
		margin-top: 0;
		padding: 32px 24px 36px;
		min-height: auto;
	}

	.benefit_item_title {
		font-size: 5vw;
		margin-bottom: 14px;
	}

	.benefit_item_text {
		font-size: 4vw;
		margin-bottom: 20px;
	}

	.benefit_checklist {
		gap: 8px;
	}

	.benefit_checklist li {
		font-size: 3.6vw;
		padding: 8px 12px 8px 30px;
	}

	.benefit_checklist li::before {
		left: 10px;
		width: 12px;
		height: 12px;
	}
}

/* ============================================
   sec05：あなたの状況に合った情報へ
============================================ */
.sec_customer {
	background: #faf7f2;
	padding: 0 0 100px;
}

.customer_inner {
	position: relative;
}

/* 枠線ボックス */
.customer_box {
	border: 1px solid #009c55;
	padding: 70px 60px 60px;
	text-align: center;
}

/* h2：明朝・グリーン */
.customer_title {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 400;
	color: #009c55;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-bottom: 20px;
}

.customer_lead {
	font-size: 1.125rem;
	color: #333;
	margin-bottom: 60px;
}

/* 3カラム */
.customer_cols {
	display: flex;
	gap: 60px;
}

.customer_col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* アイコン画像（丸含む） */
.customer_icon {
	width: 120px;
	height: auto;
	margin-bottom: 28px;
}

/* カラム見出し：グリーン・太め */
.customer_col_title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #009c55;
	letter-spacing: 0.03em;
	margin-bottom: 20px;
}

/* 本文：中央寄せ */
.customer_col_text {
	font-size: 1.125rem;
	color: #333;
	line-height: 2;
	text-align: center;
	margin-bottom: 32px;
	flex: 1;
}

/* ボタン：枠線のみ */
.customer_btn {
	display: block;
	width: 100%;
	padding: 18px 20px;
	border: 1px solid #009c55;
	color: #009c55;
	text-align: center;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: background 0.3s, color 0.3s;
	box-sizing: border-box;
}

.customer_btn:hover {
	background: #009c55;
	color: #fff;
}


/* ============================================
   sec05 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_customer {
		padding: 0 0 60px;
	}

	.customer_box {
		padding: 50px 24px 40px;
	}

	.customer_title {
		font-size: 6.5vw;
		margin-bottom: 14px;
	}

	.customer_lead {
		font-size: 4vw;
		margin-bottom: 40px;
	}

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

	.customer_icon {
		width: 100px;
		margin-bottom: 20px;
	}

	.customer_col_title {
		font-size: 5vw;
		margin-bottom: 14px;
	}

	.customer_col_text {
		font-size: 4vw;
		margin-bottom: 24px;
	}

	.customer_btn {
		font-size: 4vw;
		padding: 16px 20px;
	}
}

/* ============================================
   sec06：選ばれ続けている理由があります
============================================ */

/* 外側：上半分#faf7f2・下半分白 */
.sec_achievement {
	position: relative;
	padding: 0;
	background: linear-gradient(to bottom, #faf7f2 50%, #fff 50%);
}

.achievement_inner {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
}

/* 緑ボックス：sec_inner内のコンテナ */
.achievement_box_outer {
	position: relative;
	overflow: hidden;
	background: url(../images/home_bg_achievement.jpg) no-repeat center center;
	background-size: cover;
	padding: 70px 60px 60px;
}

.achievement_box_outer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 110, 65, 0.82);
	z-index: 0;
}

.achievement_box_outer > * {
	position: relative;
	z-index: 1;
}

/* h2：明朝・白 */
.achievement_title {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* リード：白／見出しと書体を統一（Task #5） */
.achievement_lead {
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.9;
	margin-bottom: 50px;
}

/* 4カラム */
.achievement_cols {
	display: flex;
	gap: 24px;
}

/* ボックス */
.achievement_box {
	flex: 1;
	border: 1px solid #fff;
	padding: 36px 20px 32px;
	text-align: center;
}

/* ラベル：小テキスト・白／書体統一 */
.achievement_label {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

/* 数字行：数字は視認性重視でゴシックのまま */
.achievement_num {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 4.5rem;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* 単位：数字の右下に小さく */
.achievement_unit {
	font-size: 1.25rem;
	font-weight: 400;
	vertical-align: bottom;
	letter-spacing: 0.05em;
	padding-bottom: 6px;
	display: inline-block;
	margin-left: 4px;
}

/* サブテキスト（長野・山梨）／書体統一 */
.achievement_sub {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	margin-top: 8px;
	letter-spacing: 0.03em;
}

/* 対応エリアボックス：数字ではなく地名を表示するため専用クラス（Task #7） */
.achievement_box.achievement_box--area {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.achievement_box--area .achievement_area_main {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 400;
	color: #fff !important;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-top: 14px;
}

.achievement_box--area .achievement_area_sub {
	font-family: "Noto Serif JP", serif;
	font-size: 0.95rem;
	font-weight: 400;
	color: #fff !important;
	margin-top: 10px;
	letter-spacing: 0.05em;
}


/* ============================================
   sec06 SP
============================================ */
@media screen and (max-width: 768px) {
	.achievement_inner {
		padding-top: 50px;
		padding-bottom: 60px;
	}

	.achievement_title {
		font-size: 6vw;
		margin-bottom: 14px;
	}

	.achievement_lead {
		font-size: 4.2vw;
		line-height: 1.85;
		margin-bottom: 36px;
	}

	.achievement_box_outer {
		padding: 70px 30px 60px;
	}

	/* 2カラム */
	.achievement_cols {
		flex-wrap: wrap;
		gap: 16px;
	}

	.achievement_box {
		width: calc(50% - 8px);
		flex: none;
		padding: 24px 16px 22px;
	}

	.achievement_label {
		font-size: 3.6vw;
		margin-bottom: 10px;
	}

	.achievement_num {
		font-size: 11vw;
	}

	.achievement_unit {
		font-size: 4vw;
	}

	.achievement_sub {
		font-size: 3.4vw;
		margin-top: 6px;
	}

	/* 対応エリアSP（Task #7） */
	.achievement_box--area .achievement_area_main {
		font-size: 5.8vw;
		margin-top: 10px;
		color: #fff !important;
	}

	.achievement_box--area .achievement_area_sub {
		font-size: 3.2vw;
		margin-top: 8px;
		color: #fff !important;
	}
}

/* ============================================
   sec07：ご相談から運転開始まで
============================================ */
.sec_flow {
	background: linear-gradient(to bottom left, #fff 40%, #f4fcf0 100%);
	padding: 100px 0 100px;
}

/* 左右レイアウト */
.flow_inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* 左：見出しエリア */
.flow_left {
	flex-shrink: 0;
	width: 280px;
	padding-top: 20px;
}

.flow_title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.25rem;
	font-weight: 400;
	color: #009c55;
	line-height: 1.5;
	letter-spacing: 0.03em;
	margin-bottom: 28px;
}

.flow_lead {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.9;
}

/* 右：ステップエリア */
.flow_right {
	flex: 1;
	min-width: 0;
}

/* ステップボックス */
.flow_item {
	display: flex;
	border: 1px solid #009c55;
	overflow: hidden;
}

/* 左側：番号＋テキスト */
.flow_item_body {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex: 1;
	padding: 32px 36px;
}

/* 番号バッジ */
.flow_num {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #009c55;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* テキストエリア */
.flow_item_text {
	flex: 1;
}

.flow_item_title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #009c55;
	margin-bottom: 12px;
	line-height: 1.5;
}

.flow_item_desc {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.9;
}

/* 右側：写真（背景画像） */
.flow_item_photo {
	flex-shrink: 0;
	width: 200px;
	background-size: cover;
	background-position: center center;
}

.flow_item_photo--01 { background-image: url(../images/home_flow_photo01.jpg); }
.flow_item_photo--02 { background-image: url(../images/home_flow_photo02.jpg); }
.flow_item_photo--03 { background-image: url(../images/home_flow_photo03.jpg); }
.flow_item_photo--04 { background-image: url(../images/home_flow_photo04.jpg); }

/* ステップ間の点線 */
.flow_dots {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	position: relative;
}

.flow_dots::before {
	content: '';
	display: block;
	width: 2px;
	height: 100%;
	border-left: 3px dotted #009c55;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

/* 注記ボックス */
.flow_note {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #e9f7ed;
	padding: 24px 32px;
	margin-top: 40px;
}

.flow_note_icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #009c55;
	color: #009c55;
	font-size: 1.125rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flow_note_text {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.8;
}

.flow_note_text strong {
	color: #009c55;
	font-weight: 700;
}


/* ============================================
   sec07 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_flow {
		padding: 60px 0 70px;
	}

	.flow_inner {
		flex-direction: column;
		gap: 36px;
	}

	.flow_left {
		width: 100%;
		padding-top: 0;
	}

	.flow_title {
		font-size: 8vw;
		margin-bottom: 16px;
	}

	.flow_lead {
		font-size: 4vw;
	}

	.flow_item_body {
		padding: 24px 20px;
		gap: 16px;
	}

	.flow_num {
		width: 36px;
		height: 36px;
		font-size: 4.5vw;
	}

	.flow_item_title {
		font-size: 4.5vw;
		margin-bottom: 8px;
	}

	.flow_item_desc {
		font-size: 4vw;
	}

	/* SP時：写真をテキストの下に表示 */
	.flow_item {
		flex-direction: column;
	}

	.flow_item_photo {
		display: block;
		width: 100%;
		height: 50vw;
	}

	.flow_dots::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.flow_note {
		gap: 14px;
		padding: 20px;
		margin-top: 30px;
	}

	.flow_note_icon {
		width: 30px;
		height: 30px;
		font-size: 4vw;
	}

	.flow_note_text {
		font-size: 3.8vw;
	}
}

/* ============================================
   sec08：お役立ち情報
============================================ */
.sec_info {
	background: #faf7f2;
	padding: 100px 0 100px;
}

/* 上段：見出しとリードを横並び */
.info_head {
	display: flex;
	align-items: baseline;
	gap: 40px;
	margin-bottom: 40px;
}

.info_title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.25rem;
	font-weight: 400;
	color: #009c55;
	letter-spacing: 0.05em;
	flex-shrink: 0;
}

.info_lead {
	font-size: 1.125rem;
	color: #333;
	line-height: 1.8;
}

/* カテゴリボタン */
.info_cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.info_cat {
	padding: 12px 24px;
	border: 1px solid #009c55;
	background: #fff;
	color: #009c55;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
	letter-spacing: 0.03em;
	font-family: "Noto Sans JP", sans-serif;
}

.info_cat:hover {
	background: #009c55;
	color: #fff;
}

.info_cat.is-active {
	background: #009c55;
	color: #fff;
}

/* カルーセルラッパー */
.info_carousel_wrap {
	position: relative;
	overflow: hidden;
	padding: 0 0 20px;
	margin-bottom: 25px;
}

/* カルーセル本体 */
.info_carousel {
	display: flex;
	gap: 0;
	transition: transform 0.8s ease;
	padding: 20px 4% 20px 4%;
}

/* 記事カード：3枚＋左右はみ出し分をcalcで */
.info_card {
	flex-shrink: 0;
	width: calc((100% - 8%) / 3 - 20px);
	margin-right: 20px;
	background: #fff;
	padding: 36px 32px 36px;
	text-decoration: none;
	color: inherit;
	display: block;
	transition: box-shadow 0.3s;
	box-sizing: border-box;
}

.info_card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	color: inherit;
}

/* メタ情報：日付＋カテゴリバッジ */
.info_card_meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.info_date {
	font-size: 0.9375rem;
	color: #009c55;
	letter-spacing: 0.03em;
}

.info_cat_badge {
	font-size: 0.875rem;
	color: #009c55;
	background: #e9f7ed;
	padding: 3px 12px;
	letter-spacing: 0.03em;
}

/* カードタイトル */
.info_card_title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 16px;
}

/* 区切り線 */
.info_card_hr {
	border: none;
	border-top: 1px solid #009c55;
	margin: 0 0 20px;
}

/* 本文 */
.info_card_text {
	font-size: 1rem;
	color: #555;
	line-height: 1.9;
}

/* 前へ・次へボタン */
.info_prev,
.info_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: #009c55;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
	z-index: 2;
}

.info_prev:hover,
.info_next:hover {
	background: #007a42;
}

.info_prev {
	left: 0;
}

.info_next {
	right: 0;
}

/* すべての記事を見るボタン */
.info_btn_wrap {
	text-align: center;
}

.info_btn {
	display: inline-block;
	padding: 20px 80px;
	border: 1px solid #009c55;
	color: #009c55;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: background 0.3s, color 0.3s;
}

.info_btn:hover {
	background: #009c55;
	color: #fff;
}


/* ============================================
   sec08 SP
============================================ */
@media screen and (max-width: 768px) {
	.sec_info {
		padding: 60px 0 70px;
	}

	/* 見出しとリードを縦並び */
	.info_head {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 28px;
	}

	.info_title {
		font-size: 7vw;
	}

	.info_lead {
		font-size: 3.8vw;
	}

	.info_cats {
		gap: 8px;
		margin-bottom: 30px;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.info_cat {
		font-size: 3.8vw;
		padding: 10px 16px;
		flex-shrink: 0;
	}

	/* カルーセル：中央1枚+左右少し見える */
	.info_carousel {
		padding: 20px 10% 20px 10%;
	}

	.info_card {
		width: 80vw;
		margin-right: 16px;
		padding: 24px 20px;
	}

	.info_date {
		font-size: 3.4vw;
	}

	.info_cat_badge {
		font-size: 3.2vw;
	}

	.info_card_title {
		font-size: 4.5vw;
	}

	.info_card_text {
		font-size: 3.8vw;
	}

	.info_prev,
	.info_next {
		width: 40px;
		height: 40px;
		font-size: 0.8rem;
	}

	.info_btn {
		font-size: 4vw;
		padding: 16px 40px;
	}
}