:root {
	--bg-cream: #fff7ec; /* 全体のベース背景（温かみのある薄ベージュ） */
	--bg-beige: #f6e9d8; /* 全体のベース背景（温かみのある濃ベージュ） */
	--main-green: #6eb944; /* メインカラー（安心感のある深緑） */
	--main-green-light: #eff5e9; /* メニューやハイライト用の薄い緑 */
	--main-green-bg: #f0f6f0; /* PCナビ用などの超極薄緑 */
	--title-brown: #472800; /* 文字色 */
	--text-dark: #3a2101; /* 文字色 */
	--white: #ffffff;
	--accent-pink: #d6454f; /* CTA（お電話）用のピンク・赤 */
	--accent-blue: #0189a4; /* お問い合わせ用の青 */
	--border-pink: #f5dcd3; /* 薄いピンク */
	/* Typekit游ゴシック優先 */
	--font-sans: yu-gothic-pr6n, 'Yu Gothic', YuGothic, sans-serif;
	/* 太字：游ゴシック系（700） */
	--font-sans-bold: yu-gothic-pr6n, 'Yu Gothic', YuGothic, sans-serif;
	/* 太字：ヒラギノ（600）※Apple向け */
	--font-sans-bold-apple: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	/* 固定ヘッダー＋波分。アンカー遷移で見出しがヘッダーに隠れないようにする */
	scroll-padding-top: 12rem;
	overflow-x: clip;
}
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--text-dark);
	background: var(--bg-beige);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
/* 太字：游ゴシックのときは700 */
.lead span,
.about-lead span,
.logo-box,
.kikin-quote-text,
.notice-item-title,
.flow-cta-tel-label,
.flow-cta-tel-info,
.faq-question,
.expert-item-title,
.greeting-org,.greeting-profile-name,.greeting-profile-role,
.footer-info-row dt,
.menu-text {
	font-family: var(--font-sans-bold);
	font-weight: 700;
}
/* ヒラギノが使える環境（主にiPhone/Mac）は600 */
@supports (-webkit-touch-callout: none) {
	.lead span,
	.about-lead span,
	.logo-box,
	.kikin-quote-text,
	.notice-item-title,
	.flow-cta-tel-label,
	.flow-cta-tel-info,
	.faq-question,
	.expert-item-title,
	.greeting-org,.greeting-profile-name,.greeting-profile-role,
	.footer-info-row dt,
	.menu-text {
		font-family: var(--font-sans-bold-apple);
		font-weight: 600;
	}
}
body.menu-open,
body.modal-open {
	overflow: hidden;
	overscroll-behavior: none;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
h2 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: clamp(3rem, 5vw, 6rem);
	text-align: center;
	font-weight: 700;
	margin: 0 0 5rem;
	color: var(--title-brown);
	-webkit-text-stroke: 4px white;
	paint-order: stroke fill;
	line-height: 1.4;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.sp-430 {
	display: none;
}
.wrapper {
	max-width: 1000px;
	margin: 0 auto;
}
.wrapper-830 {
	max-width: 830px;
	margin: 0 auto;
}
/* HEADER */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	/* 波領域は下層のボタン等へクリックを通す */
	pointer-events: none;
}
.header.is-hidden {
	transform: translateY(calc(-100% - 4px));
	overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
	.header {
		transition: none;
	}
}
.header-contents {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 2rem 1rem;
	position: relative;
	/* ロゴ・ナビ・ハンバーガーは優先して操作可能 */
	pointer-events: auto;
}
.header > .wave {
	pointer-events: none;
}
.logo-box {
	width: 15%;
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--main-green);
}
.logo-box img {
	width: 100%;
}

/* 💻 PC用：追従目次ナビ（デザインを維持） */
.toc-nav {
	position: sticky;
	top: 69px;
	z-index: 49;
	background: #fff;
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	margin-left: 10px;
	gap: 10px;
	align-items: baseline;
	touch-action: pan-x pan-y;
	-webkit-overflow-scrolling: touch;
}
.toc-nav a {
	text-decoration: none;
}
.toc-nav .badge-green {
	font-size: clamp(1rem, 1.6vw, 2rem);
	padding: 0.8rem 2rem;
	margin-bottom: 0;
}
.toc-link {
	flex: 1;
	text-align: center;
	white-space: nowrap;
	padding: 1.4rem 1rem 1.4rem 0;
	font-size: clamp(1rem, 1.6vw, 1.8rem);
	font-weight: 700;
	text-decoration: none;
	color: var(--text-dark);
	transition: all 0.2s;
}
.toc-link:last-child {
	border-right: none;
}
.toc-link:hover {
	background: var(--main-green-bg);
	color: var(--main-green);
}
.nav-chevron {
	width: 14px;
	margin-right: 5px;
	align-self: center;
	transform: rotate(-90deg);
}
.menu-trigger {
	display: none;
}
.nav-menu {
	display: none;
}
body.menu-open .logo-box,
body.menu-open .wave {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}
.logo-box,
.wave {
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}
.menu-list {
	list-style: none;
	padding: 0;
	margin: 0 0 3.8rem 0;
}
.menu-item a {
	display: flex;
	align-items: center;
	padding: 1.6rem 0;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--text-dark);
	text-decoration: none;
	border-bottom: 1px dashed var(--title-brown);
}
.menu-item a::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 5px;
	flex-shrink: 0;
	background: url('img/icon_faq_chevron@2x.png') center / contain no-repeat;
	transform: rotate(-90deg);
}
.menu-item a:hover {
	background-color: var(--main-green-light);
}
.menu-cta {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.btn-menu-form {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--accent-blue);
	border: 2px solid var(--accent-blue);
	padding: 1.5rem;
	border-radius: 1.6rem;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.6rem;
	width: 240px;
	margin: 0 auto;
}
.btn-menu-form img {
	width: 20px;
	margin-right: 1.2rem;
}
.btn-menu-tel {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e9545d;
	border: 2px solid var(--accent-pink);
	color: #fff;
	padding: 1.5rem;
	border-radius: 1.6rem;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.6rem;
	width: 240px;
	margin: 0 auto;
}
.btn-menu-tel:hover,
.btn-menu-tel:focus-visible {
	text-decoration: none;
	color: #fff;
}
.btn-menu-tel img {
	width: 15px;
	margin-right: 1.2rem;
}
/* 🌊 波模様（ウェーブ） */
.wave {
	position: relative;
	width: 101%;
	left: -0.5%;
	z-index: 12;
}
.wave img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: -1px;
}
.wave-border {
	position: relative;
}
.about-img {
	position: absolute;
	width: 30%;
	top: -10%;
	right: 0;
	z-index: 1;
}
.wave.wave-border picture:last-of-type {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.wave-cream {
	background: var(--bg-cream);
}
.wave-beige {
	background: var(--bg-beige);
}
.wave-green {
	background: var(--main-green-light);
}
.wave-white {
	background: var(--white);
}
/* -----------　
メインビジュアル
-----------　　*/
.main {
	position: relative;
	z-index: 10;
}
.hero {
	position: relative;
	z-index: 10;
	padding: 0;
	background: var(--bg-cream);
}
/* 2. 背景画像：一番下（レイヤー1） */
.hero-img {
	position: relative;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	border: none;
}
.hero-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}
.hero-img .wave {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	transform: none;
	z-index: 1;
}
.hero-img .wave-border {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	z-index: 3;
	pointer-events: none;
}
.hero-img .wave-border img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: -0.1rem;
}
.hero-img .hero-illust {
	position: absolute;
	height: auto;
	object-fit: contain;
	z-index: 4;
	pointer-events: none;
	width: 100px;
}

.hero-illust--left {
	left: 10%;
	bottom: 14%;
}
.hero-illust--right {
	right: 10%;
	bottom: 11%;
}
.hero-illust--center-left {
	left: 22%;
	bottom: 24%;
}
.hero-illust--center-right {
	right: 25%;
	bottom: 9%;
}
.hero-illust--center-left,
.hero-illust--center-right {
	display: block;
}
@media screen and (max-width: 767px) {
	.hero-img .hero-illust {
		min-width: 60px;
		max-width: 100px;
		width: 25%;
	}
	.hero-illust--center-left,
	.hero-illust--center-right {
		display: none;
	}
	.hero-illust--left {
		left: 5%;
		bottom: 1.5rem;
	}
	.hero-illust--right {
		right: 5%;
		bottom: 0.5rem;
	}
}
.btn-top {
	display: none;
}
@media screen and (max-width: 1162px) {
	.btn-top {
		display: block;
		position: absolute;
		width: 20%;
		max-width: 180px;
		top: 0;
		right: 0;
		z-index: 5;
		line-height: 0;
	}
	.btn-top img {
		width: 100%;
		height: auto;
		display: block;
	}
	.toc-nav .badge-green {
		display: none;
	}
}
.eyebrow {
	position: absolute;
	font-family: 'Kiwi Maru', serif;
	font-size: clamp(1.4rem, 4vw, 4rem);
	letter-spacing: 0.15em;
	color: var(--white);
	margin-top: 8rem;
	margin-left: 5%;
	margin-bottom: 0.8rem;
	font-weight: 700;
	text-shadow: 2px 2px 3px #472800;
	top: 14%;
	text-align: left;
	z-index: 2;
	line-height: 1.5;
}
.hero-body {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	padding: 15vw 0 7vw;
	margin-top: -14vw;
}
.hero-body {
	background-image: url(img/img_blur_circle_blue@2x.png), url(img/img_blur_circle_red@2x.png);
	background-size: 25%;
	background-position:
	5% 57%,
	94% 73%;
	background-repeat: no-repeat;
}
.hero-body h1 {
	color: var(--title-brown);
	font-size: clamp(1.6rem, 3vw, 3.2rem);
	margin-top: 0;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	line-height: 1.7;
	margin-bottom: 0;
}
.hero-text {
	padding: 0 2rem;
}
.main-title {
	position: relative;
	display: inline-block;
	font-size: clamp(3.8rem, 6.5vw, 7.6rem);
	font-weight: 700;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: var(--title-brown);
	line-height: 1.6;
	z-index: 1;
	margin: 0;
}
.main-title::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
	text-shadow: 4px 4px 2px rgba(58, 33, 1, 0.35);
}
.lead {
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	color: var(--text-dark);
	max-width: 1000px;
	text-align: center;
	font-weight: 400;
}
.lead span {
	text-decoration: underline;
	text-underline-offset: -1px;
	text-decoration-thickness: 6px;
	text-decoration-color: #6eb94480;
	text-decoration-skip-ink: none;
	padding: 0 0.2rem;
}

/* -----------
遺贈寄付とは
-----------　*/
.about {
	position: relative;
	z-index: 11;
}
.about-content {
	max-width: 1000px;
    margin: 0 auto;
	position: relative;
	padding: 8rem 2rem;
	background: var(--bg-beige);
}
.about-content h2 {
	position: relative;
	z-index: 15;
	text-align: left;
	margin-bottom: 0;
}
.about-lead {
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	margin: 4.5rem 0 0 0;
	position: relative;
	z-index: 2;
	color: var(--text-dark);
}
.about-lead span,
.thema-content .lead span {
	text-decoration: underline;
	text-underline-offset: -1px;
	text-decoration-thickness: 6px;
	text-decoration-color: #ffffffcc;
	padding: 0 0.2rem;
}

/* -----------
3つの安心
-----------　*/
.three-points {
	background: var(--bg-beige);
}
.point-content {
	background-color: var(--main-green-light);
	padding: 8rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Zen Maru Gothic', sans-serif;
	gap: 4rem;
}
.point-header {
	text-align: center;
	margin-bottom: 1rem;
}
.badge-green {
	display: inline-block;
	background: var(--main-green);
	color: #ffffff;
	font-size: clamp(1.6rem, 5vw, 3.2rem);
	font-weight: 700;
	padding: 0.5rem 3.5rem;
	border-radius: 50px;
	margin-bottom: 2rem;
	letter-spacing: -0.05em;
}
.point-header h2 {
	color: var(--main-green);
	margin-bottom: 0;
}
.point-detail {
	display: flex;
	gap: 3rem;
	max-width: 1000px;
}
.point-card {
	position: relative;
	background-color: #ffffff;
	border: 1px dashed var(--border-pink);
	border-radius: 1.6rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
	max-width: 830px;
	width: 100%;
	padding: 2rem 2rem;
}
.card-number {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 43px;
	height: auto;
	z-index: 5;
}
.card-number img {
	width: 100%;
	height: auto;
	display: block;
}
.card-img {
	width: 100%;
	overflow: hidden;
	margin-bottom: 1.6rem;
}
.card-img img {
	width: 100%;
	height: auto;
	display: block;
}
.card-body {
	text-align: center;
}
.card-title {
	font-size: clamp(1.8rem, 5vw, 2rem);
	font-weight: 700;
	color: var(--title-brown);
	margin: 0 0 1.6rem 0;
	letter-spacing: 0.03em;
	line-height: 1.5;
}
.u-text-tight {
	font-feature-settings: 'palt';
	letter-spacing: -0.05em;
}
.card-text {
	font-family: var(--font-sans);
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	line-height: 1.7;
	text-align: left;
	margin: 0;
	font-weight: 500;
	color: var(--text-dark);
}
.card-body a {
	display: inline-block;
	margin-top: 1.6rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: clamp(1.4rem, 4vw, 1.6rem);
	color: var(--accent-blue);
	font-weight: 700;
}
.card-body a span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.card-body a img {
	width: 8px;
	height: auto;
}
.activity-card-more img {
	transform: rotate(-90deg);
}

/* -----------
ベネッセこども基金について
-----------　*/
.about-kikin {
	position: relative;
	z-index: 11;
}
.kikin-content {
	position: relative;
	padding: 10rem 2rem;
	background-color: var(--bg-cream);
	background-image: url('img/img_blur_circle_blue@2x.png'), url('img/img_blur_circle_red@2x.png');
	    background-size: 30%, 23%;
    background-position: 96% -3%, 8% 0;
	background-repeat: no-repeat;
}
.kikin-content h2 {
	position: relative;
	z-index: 2;
	text-align: center;
}
.kikin-quote {
	position: relative;
	background: var(--white);
	border-radius: 1.6rem;
	padding: 2rem 2rem;
	margin: 0 auto 2rem;
	width: 100%;
	max-width: 730px;
	box-shadow: 0 2px 8px rgba(58, 33, 1, 0.06);
}
.kikin-quote-illust {
	position: absolute;
	right: 0rem;
	bottom: -4rem;
	width: 95px;
	height: auto;
	pointer-events: none;
}
.kikin-quote-text {
	font-size: clamp(1.8rem, 5vw, 2rem);
	color: var(--title-brown);
	padding-left: 1em;
	text-indent: -1em;
	width: fit-content;
	margin: 0 auto;
}
.kikin-profile {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 1.5rem;
	max-width: 730px;
	margin: 0 auto 6rem;
}
.kikin-profile-photo {
	flex-shrink: 0;
	width: 80px;
	height: auto;
	border-radius: 50%;
	border: 2px solid var(--main-green);
	overflow: hidden;
}
.kikin-profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.kikin-profile-caption {
	color: var(--text-dark);
	margin: 0;
	font-size: clamp(1.4rem, 4vw, 1.6rem);
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: -0.1px;
}
.kikin-lead {
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	text-align: left;
}
.kikin-flow-img {
	max-width: 750px;
	margin: 4rem auto;
}
.kikin-flow-img img {
	width: 100%;
}
.btn-kikin-site {
	display: block;
	text-align: center;
	width: fit-content;
	margin: 0 auto;
	border: 3px solid var(--main-green);
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	padding: 1.5rem 5rem;
	border-radius: 1.2rem;
	text-decoration: none;
	margin-top: 4rem;
	margin-bottom: 9rem;
	transition: opacity 0.2s;
}
.btn-kikin-site:hover {
	opacity: 0.8;
}
.kikin-stats {
	position: relative;
	z-index: 2;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}
.kikin-stat {
	flex: 1;
	background: var(--white);
	border-radius: 1.2rem;
	padding: 3rem 0.8rem;
	text-align: center;
	box-shadow: 0 2px 6px rgba(58, 33, 1, 0.06);
}
.kikin-stat-label {
	font-family: 'Zen Maru Gothic', sans-serif;
	margin: -5.5rem 0 0.8rem;
	font-size: clamp(1.2rem, 3vw, 2.6rem);
	font-weight: 700;
	white-space: nowrap;
	-webkit-text-stroke: 4px white;
	paint-order: stroke fill;
}
.kikin-stat-label .unit-small {
	font-size: clamp(0.9rem, 2vw, 2rem);
	font-weight: 500;
}
.kikin-stat-value {
	margin: 0;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: clamp(1.2rem, 3vw, 2.6rem);
	font-weight: 700;
	color: var(--main-green);
	display: flex;
	align-items: baseline;
	justify-content: center;
	white-space: nowrap;
}
.kikin-stat-value .num {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2.4rem, 5vw, 5.3rem);
	color: var(--main-green);
	margin: 0 1rem;
	line-height: 1;
}

/* -----------
活動テーマと実例紹介
-----------　*/
.thema-content {
	padding: 10rem 2rem;
	background: var(--bg-beige);
}
.thema-content h2 {
	text-align: center;
}
.thema-content .lead {
	margin-bottom: 7rem;
}
.activity-list {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	gap: 2.4rem;
}
@media screen and (min-width: 768px) and (max-width: 950px) {
	.activity-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.activity-card {
		max-width: none;
	}
}
.activity-card {
	width: 100%;
	max-width: 830px;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: 2.4rem;
	overflow: hidden;
	box-shadow:
		0 2px 4px rgba(58, 33, 1, 0.04),
		0 8px 20px rgba(58, 33, 1, 0.1),
		0 16px 32px rgba(58, 33, 1, 0.06);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}
.activity-card:active {
	transform: translateY(2px) scale(0.985);
	box-shadow:
		0 1px 2px rgba(58, 33, 1, 0.06),
		0 3px 8px rgba(58, 33, 1, 0.08);
}
.activity-card:focus-visible {
	outline: 2px solid var(--main-green);
	outline-offset: 2px;
}
@media (hover: hover) {
	.activity-card:hover {
		transform: translateY(-4px);
		border-color: rgba(110, 185, 68, 0.35);
		box-shadow:
			0 4px 8px rgba(58, 33, 1, 0.06),
			0 12px 28px rgba(58, 33, 1, 0.14),
			0 24px 40px rgba(58, 33, 1, 0.08);
	}
	.activity-card:focus-visible {
		outline: none;
		transform: translateY(-4px);
		border-color: rgba(110, 185, 68, 0.35);
		box-shadow:
			0 4px 8px rgba(58, 33, 1, 0.06),
			0 12px 28px rgba(58, 33, 1, 0.14),
			0 24px 40px rgba(58, 33, 1, 0.08);
	}
}
.activity-card-img {
	width: 100%;
	overflow: hidden;
}
.activity-card-img picture {
	display: block;
	width: 100%;
	height: 100%;
}
.activity-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.activity-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
}
.activity-card-title {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--title-brown);
	line-height: 1.4;
	margin: 0 0 1rem;
}
.activity-card-text {
	color: var(--text-dark);
	font-size: 1.6rem;
	line-height: 1.8;
	font-weight: 500;
	margin: 0;
}
.activity-card-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: auto 0 0;
	padding-top: 1.2rem;
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}

.activity-card-more img {
	width: 12px;
	height: auto;
}
/* 活動テーマ：詳細ポップアップ */
.activity-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(58, 33, 1, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3.2rem 1.6rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease;
	box-sizing: border-box;
}
.activity-modal-overlay.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.activity-modal {
	position: relative;
	width: 100%;
	max-width: 400px;
	/* 画面上下に余白を残す（vhフォールバックでChromeにも対応） */
	max-height: calc(100vh - 6.4rem);
	max-height: calc(100dvh - 6.4rem);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--bg-cream);
	border-radius: 2.4rem;
	padding: 1rem;
	box-shadow: 0 12px 32px rgba(58, 33, 1, 0.22);
	transform: scale(0.96);
	transition: transform 0.25s ease;
	flex-shrink: 0;
	box-sizing: border-box;
}
.activity-modal-overlay.open .activity-modal {
	transform: scale(1);
}
.activity-modal-close {
	position: absolute;
	top: 1.4rem;
	right: 1.4rem;
	width: 3.2rem;
	height: 3.2rem;
	z-index: 5;
	border-radius: 50%;
	background: var(--white);
	border: none;
	color: var(--text-dark);
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px var(--title-brown);
}
.activity-modal-close::before,
.activity-modal-close::after {
	content: '';
	position: absolute;
	width: 1.5rem;
	height: 1px;
	background: var(--text-dark);
	border-radius: 1px;
}
.activity-modal-close::before {
	transform: rotate(45deg);
}
.activity-modal-close::after {
	transform: rotate(-45deg);
}
.activity-modal-header {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 0 2rem;
	justify-content: center;
	margin-bottom: 2.4rem;
}
.activity-modal-icon {
	width: 9rem;
	height: 9rem;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--main-green-light);
}
.activity-modal-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.activity-modal-title {
	position: relative;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: clamp(2rem, 5vw, 2.6rem);
	font-weight: 700;
	color: var(--title-brown);
	-webkit-text-stroke: 3px white;
	paint-order: stroke fill;
	line-height: 1.4;
	line-height: 1.4;
	margin: 0 0 0 -1.6rem;
	border-radius: 0.8rem;
	z-index: 2;
}
.activity-modal-lead {
	font-size: clamp(1.4rem, 4vw, 1.6rem);
	line-height: 1.75;
	font-weight: 500;
	margin: 0 0 2rem;
}
.activity-modal-box {
	background: var(--white);
	border-radius: 1.2rem;
	padding: 1rem;
}
.activity-modal-box-title {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--title-brown);
	line-height: 1.45;
	margin: 0 0 1rem;
}
.activity-modal-box-text {
	font-size: 1.6rem;
	line-height: 1.75;
	font-weight: 500;
	margin: 0;
}
@media (min-width: 768px) {
	.activity-modal {
		max-width: 680px;
		padding: 1.5rem;
	}
	.activity-modal-title {
		font-size: 2.2rem;
		padding: 0.8rem 1.2rem;
		margin-left: -2.2rem;
	}
}
/* theme-list（緊急支援）のポップアップだけ配色を変更 */
.activity-modal-overlay--theme .activity-modal {
	background: #fff3ef;
}
.activity-modal-overlay--theme .lead span {
	text-decoration-color: #e9545d80;
}
.theme-list {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	margin-top: 4rem;
}
.theme-card {
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
}
.theme-card-header {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 2rem;
	justify-content: flex-start;
}
.theme-badge {
	flex-shrink: 0;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: var(--accent-pink);
	color: var(--white);
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 700;
	line-height: 1.3;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.theme-card-title {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: clamp(1.8rem, 4vw, 2rem);
	font-weight: 700;
	color: var(--title-brown);
	line-height: 1.5;
	margin: 0;
}
.theme-card-text {
	color: var(--text-dark);
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	line-height: 1.6;
	font-weight: 500;
	margin: 0;
}
.theme-card-btn {
	min-width: 260px;
	display: block;
	text-align: center;
	border: 3px solid var(--title-brown);
	color: var(--title-brown);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.7rem;
	padding: 1.5rem 1rem;
	border-radius: 1.2rem;
	text-decoration: none;
	transition: opacity 0.2s;
}
.theme-card-btn:hover {
	opacity: 0.7;
}

/* -----------
支援を届けたこどもたちの声
-----------　*/
.voice-list {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 60px;
}
.voice-content {
	padding: 13rem 2rem;
	background: var(--white);
	background-image: url('img/img_blur_circle_blue@2x.png'), url('img/img_blur_circle_red@2x.png');
	background-size: 30%, 23%;
    background-position: 2% -1%, 94% 1%;
	background-repeat: no-repeat;
}
.voice-content h2 {
	text-align: center;
}
.voice-content .lead  {
	margin-bottom: 7rem;
}
/* こどもの声カード */
.voice-card {
	position: relative;
	z-index: 2;
	max-width: 830px;
	margin: 0 auto;
	border-radius: 1.6rem;
	overflow: hidden;
	background: var(--main-green-light);
	border: 1px solid #c1c8c24d;
}
.voice-card-img {
	position: relative;
}
.voice-card-img picture {
	display: block;
	width: 100%;
}
.voice-card-img img {
	width: 100%;
	object-fit: cover;
	display: block;
}
.voice-card-img::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70%;
}
.voice-card-title {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	margin: 0;
	color: var(--white);
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.5;
	text-shadow: 2px 2px 3px #472800;
}
.u-hanging {
	padding-left: 0.5em;
	text-indent: -1em;
}
.voice-card-body {
	padding: 2rem 1.5rem;
}
.voice-card-name {
	margin: 0 0 1.4rem;
	font-size: clamp(1.2rem, 4vw, 1.6rem);
	font-weight: 300;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
.voice-text {
	color: var(--text-dark);
	position: relative;
	overflow: hidden;
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	line-height: 1.8;
	transition: max-height 0.5s ease;
}
.voice-text p {
	margin: 0;
	color: var(--text-dark);
}
.voice-text::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4rem;
	background: linear-gradient(to bottom, rgba(239, 245, 233, 0), var(--main-green-light));
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.voice-text.expanded::after {
	opacity: 0;
}
.voice-toggle {
	display: block;
	margin: 2rem auto;
	background: none;
	border: none;
	padding: 0;
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	cursor: pointer;
	transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
	.voice-text::after {
		display: none;
	}
	.voice-toggle {
		display: none;
	}
}
/* 背景 */
.voice-section {
	position: relative;
	z-index: 2;
	padding: 0 1.5rem 0;
}
@media (max-width: 767px) {
	.voice-section {
		display: none;
	}
	.voice-card:has(.voice-text.expanded) .voice-section {
		display: block;
		padding-top: 2rem;
	}
}
@media (min-width: 768px) {
	.voice-section {
		padding-bottom: 2rem;
	}
}
.voice-heading {
	display: block;
	text-align: center;
	background: var(--main-green);
	color: var(--white);
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	padding: 0.3rem 1rem;
	border-radius: 3.5rem;
	margin-bottom: 1.4rem;
}
.voice-bg-text p {
	font-size: clamp(1.3rem, 4vw, 1.8rem);
	line-height: 1.8;
	margin: 0 0 1.6rem;
}
.voice-bg-text p:last-child {
	margin-bottom: 0;
}

/* -----------
ご寄付実績
-----------　*/
.donation-result {
	position: relative;
	z-index: 11;
	background: var(--bg-cream);
}
.donation-result-content {
	padding: 8rem 5rem 10rem;
	text-align: center;
}
.donation-result-content h2 {
	color: var(--main-green);
	margin-bottom: 5rem;
}
.donation-result-card {
	max-width: 700px;
	margin: 0 auto;
	background: var(--white);
	border-radius: 2rem;
	padding: 4rem;
}
.donation-result-label {
	margin: 0 0 2.4rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2rem);
	color: var(--main-green);
}
.donation-result-amount {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: clamp(3rem, 4vw, 4.5rem);
	line-height: 1;
	color: var(--title-brown);
}
.donation-result-amount .unit {
	position: absolute;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	margin-top: 2.8rem;
	margin-left: 0.2rem;
	font-size: clamp(1.4rem, 4vw, 2.1rem);
}

/* -----------
各寄付の流れ
-----------　*/
.flow {
	position: relative;
	z-index: 11;
	background: var(--bg-beige);
}
.flow-wrap {
	padding: 8rem 5rem 15rem;
}
.flow-wrap h2 {
	text-align: center;
	color: var(--main-green);
	margin-bottom: 5rem;
}
.tab-list {
	display: flex;
	border: 3px solid var(--main-green);
	border-radius: 1.2rem;
	overflow: hidden;
	margin-bottom: 2rem;
	background: var(--white);
	box-shadow: 0 8px 20px rgba(58, 33, 1, 0.08);
}
.tab-list-sticky {
	position: sticky;
	top: 0;
	z-index: 40;
	margin-bottom: 2rem;
	padding: 1rem 0;
	background: var(--bg-beige);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	transition:
		background 0.25s ease,
		backdrop-filter 0.25s ease,
		-webkit-backdrop-filter 0.25s ease;
}
.tab-list-sticky.is-pinned {
	/* 本体は透明にし、背景は画面幅いっぱいの ::before に任せる */
	background: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
.tab-list-sticky.is-pinned::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	z-index: -1;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.tab-list-sticky.is-pinned::before {
		background: rgba(255, 255, 255, 0.9);
	}
}
.tab-list-sticky .tab-list {
	margin-bottom: 0;
}
.tab-list-sticky.is-pinned .tab-list {
	background: transparent;
	box-shadow: none;
}
.tab-list-sticky.is-pinned .tab {
	/* 未選択は親のすりガラスをそのまま見せる */
	background: transparent;
}
.tab-list-sticky.is-pinned .tab.active {
	background: var(--main-green);
	color: var(--white);
}
.tab-list-sticky.is-pinned.is-scrolling .tab-list {
	pointer-events: none;
}
.tab {
	flex: 1;
	background: var(--white);
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	padding: 2.4rem 0.5rem;
	border: none;
	border-right: 2px solid var(--main-green);
	cursor: pointer;
	transition:
		background 0.2s,
		color 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tab:last-child {
	border-right: none;
}
.tab.active {
	background: var(--main-green);
	color: var(--white);
}
/* index.html 固定タブ専用（padding はここだけ調整） */
.tab-flow {
	padding: 1.2rem 0;
}
.flow-content {
	display: none;
}
.flow-content.active {
	display: block;
}
.flow-text {
	color: var(--text-dark);
	text-align: center;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	margin: 0 0 2rem;
	scroll-margin-top: 10rem;
}
.flow-jump-tabs {
	max-width: 1000px;
	margin: 6rem auto 0;
}
/* ほかの寄付の流れへ */
.flow-other-tabs {
	max-width: 830px;
	margin: 6rem auto 0;
	text-align: center;
}
.flow-other-tabs-heading {
	margin: 0 0 2rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2rem);
	color: var(--title-brown);
}
.flow-other-tabs-heading span {
	text-decoration: underline;
	text-underline-offset: -1px;
	text-decoration-thickness: 6px;
	text-decoration-color: #6eb94480;
	text-decoration-skip-ink: none;
	padding: 0 0.2rem;
}
.flow-other-tabs-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2rem;
}
.flow-other-tab {
	flex: 1 1 220px;
	max-width: 360px;
	background: var(--white);
	border: 3px solid var(--main-green);
	border-radius: 1.2rem;
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	padding: 1.6rem 1.2rem;
	cursor: pointer;
	transition:
		background 0.2s,
		color 0.2s;
}
.flow-other-tab:hover,
.flow-other-tab:focus-visible {
	background: var(--main-green);
	color: var(--white);
}
.flow-other-tab[hidden] {
	display: none;
}
.flow-text:last-of-type {
	margin-top: 6rem;
	margin-bottom: 6rem;
}
.flow-step {
	max-width: 830px;
	margin: 0 auto;
	background: var(--white);
	border-radius: 1.5rem;
	padding: 1.5rem 2rem;
}
.flow-step-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}
.flow-number {
	width: 30px;
	height: auto;
	z-index: 5;
}
.flow-number img {
	width: 100%;
	height: auto;
	display: block;
}
.flow-step-title {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	font-size: 2rem;
	color: var(--title-brown);
	margin: 0;
	line-height: 1.4;
}
.flow-step-text {
	font-size: 1.8rem;
	line-height: 1.6;
	margin: 0;
}
/* ステップ間の矢印 */
.flow-arrow {
	display: flex;
	justify-content: center;
}
.flow-arrow img {
	height: 20px;
	display: block;
}
/* ステップ本文：続きを読む対応 */
.flow-step-text.collapsible {
	color: var(--text-dark);
	position: relative;
	max-height: 12.8rem;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.flow-step-text.collapsible::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3.2rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.flow-step-text.collapsible.expanded::after {
	opacity: 0;
}
.flow-step-toggle {
	display: block;
	margin: 1.2rem auto 0;
	background: none;
	border: none;
	padding: 0;
	color: var(--accent-blue);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	cursor: pointer;
	transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
	.flow-step-text.collapsible {
		max-height: none;
		overflow: visible;
	}
	.flow-step-text.collapsible::after {
		display: none;
	}
	.flow-step-toggle {
		display: none;
	}
}
/* 留意点 */
.notice-block {
	margin-top: 8rem;
}
.notice-heading {
	text-align: center;
	color: var(--accent-pink);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	margin: 0 0 2rem;
}
.notice-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.notice-item-header {
	display: flex;
	align-items: baseline;
	gap: 0.8rem;
	margin-bottom: 0.5rem;
}
.notice-item-header img {
	width: 15px;
	margin-top: 0.3rem;
}
.notice-item-title {
	color: var(--title-brown);
	font-size: clamp(1.4rem, 4vw, 2rem);
	margin: 0;
	line-height: 1.6;
}
.notice-item-text {
	color: var(--text-dark);
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	line-height: 1.6;
	margin: 0;
	padding-left: 2.3rem;
}
/* 電話・お問い合わせCTA */
.flow-cta {
	max-width: 1000px;
	display: flex;
	gap: 1.5rem;
	margin: 4rem auto 0;
	justify-content: center;
}
.flow-cta-tel {
	display: block;
	width: 100%;
	background: var(--accent-pink);
	border-radius: 1.6rem;
	padding: 2rem;
	text-align: center;
	color: var(--white);
	margin: 0 auto;
	flex: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s;
	box-sizing: border-box;
}
.flow-cta-tel:hover,
.flow-cta-tel:focus-visible {
	opacity: 0.9;
	text-decoration: none;
	color: var(--white);
}
.flow-cta-tel-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin: 0;
	font-weight: 700;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.flow-cta-tel-label img {
	width: 20px;
}
.flow-cta-tel-number {
	display: block;
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 3rem;
	color: var(--white);
	text-decoration: none;
	border-bottom: none;
	line-height: 1.5;
}
.flow-cta-tel-info {
	display: block;
	margin: 0;
	font-size: clamp(1.2rem, 4vw, 1.8rem);
	font-weight: 700;
	line-height: 1.8;
	text-decoration: none;
}
.flow-cta-tel-info span {
	font-family: 'Outfit', sans-serif;
}
.flow-cta-form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	width: 100%;
	background: var(--white);
	border: 3px solid var(--accent-blue);
	border-radius: 1.6rem;
	padding: 1.8rem 1rem;
	color: var(--accent-blue);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	text-decoration: none;
	margin: 0 auto;
	flex: 0.8;
}
.flow-cta-form img {
	width: 40px;
}

/* -----------
よくあるご質問
-----------　*/
.faq {
	position: relative;
	z-index: 11;
	background: var(--main-green-light);
}
.faq-content {
	padding: 8rem 5rem 10rem;
}
.faq-content h2 {
	text-align: center;
	color: var(--main-green);
	margin-bottom: 8rem;
}
.faq-group {
	margin-bottom: 2rem;
}
.faq-group:last-child {
	margin-bottom: 0;
}
.faq-category {
	margin: 7rem 0 3rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 2rem);
	color: var(--title-brown);
}
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.faq-item {
	background: var(--white);
	border-radius: 1.6rem;
	overflow: hidden;
	border: 1px solid #c1c8c24d;
}
.faq-question {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 2rem 1.2rem;
	cursor: pointer;
	font-weight: 700;
	font-size: clamp(1.6rem, 4vw, 1.8rem);
	line-height: 1.5;
	color: var(--title-brown);
}
.faq-icon-q {
	width: 25px;
	flex-shrink: 0;
}
.faq-question-text {
	font-family: var(--font-sans);
	flex: 1;
}
.faq-chevron {
	width: 14px;
	flex-shrink: 0;
	transition: transform 0.2s;
	align-self: center;
}
.faq-item.active .faq-chevron {
	transform: rotate(180deg);
}
.faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		opacity 0.3s ease 0.05s;
}
.faq-item.active .faq-answer {
	max-height: 600px;
	opacity: 1;
}
.faq-answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.8rem 1.2rem;
	border-top: 1px solid #c1c8c21a;
}
.faq-icon-a {
	width: 25px;
	flex-shrink: 0;
}
.faq-answer-text {
	color: var(--text-dark);
	margin: 0;
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	line-height: 1.8;
}

/* -----------
士業・金融機関・公証人等の皆さまへ
-----------　*/
.expert {
	position: relative;
	z-index: 11;
	background: var(--bg-cream);
}
.expert-hero {
	position: relative;
	padding: 8rem 2.4rem 2rem;
}
.expert-hero-img {
	width: 78%;
	margin: 0 0 0 auto;
	border-radius: 45% 55% 52% 48% / 55% 45% 55% 45%;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(58, 33, 1, 0.1);
}
.expert-hero-img img {
	position: absolute;
	width: 30%;
	top: -10%;
	left: -2%;
	z-index: 1;
}
.expert-hero-title {
	font-size: clamp(2.4rem, 5vw, 6rem);
	position: absolute;
	z-index: 15;
	top: 80%;
	right: 25%;
	color: var(--main-green);
	line-height: 1.4;
	text-align: left;
}
@media screen and (max-width: 430px) {
	.expert-hero-title {
		top: 115%;
		right: 0;
		padding-right: 2rem;
	}
}
.expert-content {
	padding: 23rem 5rem 8rem;
}
.expert-lead {
	margin-bottom: 6rem;
}
.expert-lead-text {
	font-size: clamp(1.6rem, 5vw, 1.8rem);
	line-height: 1.9;
	margin: 0;
}
.expert-cta {
	display: flex;
	gap: 1rem;
	margin-bottom: 8.5rem;
}
.expert-cta-tel,
.expert-cta-form {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 1.6rem;
	padding: 1rem 0.5rem;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s;
}
.expert-cta-tel:hover,
.expert-cta-form:hover,
.expert-cta-tel:focus-visible,
.expert-cta-form:focus-visible {
	opacity: 0.8;
	text-decoration: none;
}
.expert-cta-tel {
	background: var(--main-green);
	color: var(--white);
	flex: 1;
}
.expert-cta-tel:hover,
.expert-cta-tel:focus-visible {
	color: var(--white);
}
.expert-cta-tel-label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.6rem;
}
.expert-cta-tel-label img {
	width: 18px;
}
.expert-cta-tel-sub {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}
.expert-cta-form {
	background: var(--white);
	border: 3px solid var(--title-brown);
	color: var(--title-brown);
	flex: 1;
}
.expert-cta-form-label {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}
.expert-cta-form-sub {
	font-size: 1rem;
	font-weight: 700;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
.expert-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2rem 1.5rem;
	background: var(--white);
	border-radius: 1.5rem;
}
.expert-list.collapsible {
	position: relative;
	max-height: 14rem;
	overflow: hidden;
	transition: max-height 0.55s ease;
}
.expert-list.collapsible::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3.2rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.expert-list.collapsible.expanded::after {
	opacity: 0;
}
.expert-item-title {
	font-size: clamp(1.4rem, 4vw, 2rem);
	color: var(--title-brown);
	margin: 0 0 0.5rem;
	position: relative;
	padding-left: 1.2em;
	line-height: 1.5;
}
.expert-item-title::before {
	content: '・';
	position: absolute;
	left: 0;
	top: 0;
}
.expert-item-text {
	font-size: clamp(1.2rem, 4vw, 1.8rem);
	line-height: 1.7;
	margin: 0;
	padding-left: 1.2em;
}
.expert-list-toggle {
	display: block;
	margin: 1.2rem auto 0;
	background: none;
	border: none;
	padding: 0;
	color: var(--main-green);
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	cursor: pointer;
	transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
	.expert-list.collapsible {
		max-height: none;
	}
	.expert-list.collapsible::after {
		display: none;
	}
	.expert-list-toggle {
		display: none;
	}
}
/* -----------
ご挨拶
-----------　*/
.greeting {
	position: relative;
	z-index: 11;
	background: var(--main-green-light);
}
.greeting-content {
	position: relative;
	background: var(--white);
	padding: 10rem 2rem 8rem;
	text-align: center;
}
.greeting-title {
	color: var(--main-green);
	text-align: center;
	margin-bottom: 6rem;
	width: 500px;
}
.greeting-org {
	font-size: 1.8rem;
	line-height: 1.7;
	margin: 0 0 1rem;
}
.greeting-profile {
	display: flex;
	align-items: center;
	gap: 3rem;
	margin-bottom: 3rem;
}
.greeting-profile-photo {
	flex-shrink: 0;
	width: 147px;
	height: 147px;
	border-radius: 50%;
	overflow: hidden;
}
.greeting-profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.greeting-profile-info {
	text-align: left;
}
.greeting-profile-name {
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--main-green);
	margin: 0;
}
.greeting-profile-role {
	font-size: 2rem;
	font-weight: 700;
	color: var(--main-green);
	margin: 0;
}
.greeting-text {
	text-align: left;
	font-size: clamp(1.4rem, 4vw, 1.8rem);
}
.greeting-text p {
	margin: 0 0 1.6rem;
}
.greeting-text p:last-child {
	margin-bottom: 0;
}
/* -----------
フッター
-----------　*/
.site-footer {
	position: relative;
	z-index: 11;
	background: var(--main-green-light);
	padding: 1rem 2rem 3rem;
	text-align: center;
	padding-bottom: 100px;
}
.footer-about {
	max-width: 1000px;
    margin: 8rem auto 0;
	display: flex;
	gap: 17%;
	justify-content: center;
}
.footer-logo {
	margin-bottom: 2.5rem;
}
.footer-logo img {
	width: 300px;
	height: auto;
}
.footer-info {
	margin: 0 0 2.5rem;
	text-align: left;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.footer-info-row {
	display: flex;
	gap: 1.5rem;
	padding: 1rem 0;
}
.footer-info-row dt {
	flex-shrink: 0;
	width: 5em;
	font-size: 1.4rem;
	color: var(--title-brown);
}
.footer-info-row dd {
	margin: 0;
	font-size: clamp(1.3rem, 4vw, 1.4rem);
	line-height: 1.7;
}
.footer-info-row dd a {
	color: var(--text-dark);
	text-decoration: underline;
}
.footer-info-mail-label {
	font-size: 1.3rem;
}
.footer-note {
	font-size: 1.4rem;
	line-height: 1.8;
	color: var(--text-dark);
	margin: 0 auto;
	text-align: left;
	max-width: 400px;
    padding-left: 1em;
	text-indent: -1em;
}
.footer-note + .footer-note {
	margin-top: 0;
}
.footer-note:last-of-type {
	margin-bottom: 7rem;
}
.footer-copyright {
	font-size: clamp(1.1rem, 3vw, 1.4rem);
	color: var(--text-dark);
	margin: 0;
}

/* -----------
画面下部追従バナー
-----------　*/
.fixed-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 149;
	display: flex;
	gap: 1rem;
	padding: 0.8rem 1.2rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
	background: var(--white);
	box-shadow: 0 -2px 10px rgba(58, 33, 1, 0.12);
}
.fixed-cta-form,
.fixed-cta-tel {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	border-radius: 1.2rem;
	padding: 0.7rem 0.5rem;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s;
}
.fixed-cta-form:hover,
.fixed-cta-tel:hover,
.fixed-cta-form:focus-visible,
.fixed-cta-tel:focus-visible {
	opacity: 0.8;
	text-decoration: none;
}
.fixed-cta-form {
	background: var(--white);
	border: 3px solid var(--accent-blue);
	color: var(--accent-blue);
}
.fixed-cta-tel {
	background: #e9545d;
	border: 2px solid var(--accent-pink);
	color: var(--white);
	flex: 1;
}
.fixed-cta-tel:hover,
.fixed-cta-tel:focus-visible {
	color: var(--white);
}
.fixed-cta-form-label,
.fixed-cta-tel-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}
.fixed-cta-tel-label img {
	width: 16px;
}
.fixed-cta-form-sub,
.fixed-cta-tel-sub {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	html {
		scroll-padding-top: 10rem;
	}
	.header.is-hidden {
		/* 波SVGのはみ出し・サブピクセルで先端が残らないよう余裕を持たせる */
		transform: translateY(calc(-100% - 3rem));
		overflow: hidden;
	}
	h2 {
		margin-bottom: 0;
		-webkit-text-stroke: 2px white;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.logo-box {
		width: 135px;
	}
	.toc-nav {
		display: none;
	}
	.btn-top {
		display: block;
		position: absolute;
		width: 30%;
		top: 0;
		right: 0;
	}
	/* 📱 スマホ用：ハンバーガーメニュー */
	.menu-trigger {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 210;
		width: auto;
		padding: 0;
	}
	.menu-icon {
		position: relative;
		width: 30px;
		height: 14px;
		margin-bottom: 0.2rem;
	}
	.menu-icon span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: var(--main-green);
		transition: all 0.3s;
		border-radius: 0.2rem;
	}
	.menu-icon span:nth-child(1) {
		top: 0;
	}
	.menu-icon span:nth-child(2) {
		top: 10px;
	}
	.menu-icon span:nth-child(3) {
		top: 20px;
	}
	.menu-text {
		font-size: 9px;
		font-weight: 700;
		color: var(--text-dark);
		padding-top: 1.2rem;
	}

	.menu-trigger.active .menu-icon span:nth-child(1) {
		transform: translateY(14px) rotate(-35deg);
	}
	.menu-trigger.active .menu-icon span:nth-child(2) {
		opacity: 0;
	}
	.menu-trigger.active .menu-icon span:nth-child(3) {
		transform: translateY(-6px) rotate(35deg);
	}
	.nav-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background-color: var(--bg-cream);
		z-index: 150;
		padding: 8rem 2.4rem 4rem;
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.3s,
			visibility 0.3s;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		font-family: 'Zen Kaku Gothic New', sans-serif;
	}
	.nav-menu.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	body.menu-open .header-contents {
		background-color: var(--bg-cream);
		transition: background-color 0.3s ease;
	}
	.eyebrow {
		margin-top: 3rem;
		margin-left: 2rem;
	}
	.lead {
		text-align: left;
	}
	.about-content {
		padding: 5rem 2rem;
	}
	.about-img {
		width: 180px;
		top: -23px;
		right: -14px;
	}
	.about-lead {
		/* 320px幅でタイトルとの間が約45px（45/320 ≈ 14.0625vw） */
		margin: 4.5rem 0 0 0;
	}

	.hero-body {
		background-image: url(img/img_blur_circle_blue@2x.png), url(img/img_blur_circle_red@2x.png);
        background-size: 60%;
        background-position: -38% -35%, 147% -11%;
		padding: 10vw 0 5vw;
	}
	.main-title::before {
		text-shadow: 2px 2px 1px rgba(58, 33, 1, 0.35);
	}
	/* -----------
3つの安心
-----------　*/
	.badge-green {
		margin-bottom: 1rem;
		padding: 0.5rem 2.5rem;
	}
	.point-header {
		margin-bottom: 2rem;
	}
	.point-content {
		padding: 5rem 2rem;
		gap: 0;
	}
	.point-detail {
		flex-direction: column;
	}
	/* -----------
ベネッセこども基金について
-----------　*/
	.kikin-content {
		padding: 5rem 2rem 6rem;
		background-size: 55%, 45%;
		background-position:
			130% -1%,
			-25% 4%;
	}
	.kikin-content h2 {
		text-align: left;
		margin-bottom: 2rem;
	}
	.kikin-quote-illust {
		bottom: -2rem;
		width: 64px;
	}
	.kikin-profile {
		align-items: center;
		margin: 0 auto 4rem;
	}
	.btn-kikin-site {
		width: 100%;
		margin-top: 0;
		margin-bottom: 2.5rem;
		border: 2px solid var(--main-green);
	}
	.kikin-stats {
		gap: 0.5rem;
	}
	.kikin-lead {
		margin-bottom: 1rem;
	}
	.kikin-flow-img {
		margin: 0 auto;
	}
	.kikin-stat {
		padding: 1.2rem 0.8rem;
	}
	.kikin-stat-label {
		margin: -2rem 0 0.8rem;
		-webkit-text-stroke: 2px white;
	}
	.kikin-stat-value .num {
		margin: 0 0.2rem;
	}
	/* -----------
活動テーマと実例紹介
-----------　*/
	.thema-content {
		padding: 5rem 2rem;
	}
	.thema-content h2 {
		text-align: left;
		margin-bottom: 0;
	}
	.thema-content .lead {
		margin-bottom: 1rem;
	}
	.activity-list {
		flex-direction: column;
	}
	.activity-modal-header {
		justify-content: flex-start;
	}
	.theme-card {
		flex-direction: column;
	}
	.theme-card-header {
		justify-content: center;
	}
	.theme-card-btn {
		width: 100%;
		border: 2px solid var(--title-brown);
	}
	.theme-card-text {
		margin: 0 0 1.5rem;
	}
	.activity-modal-title {
		bottom: -1.5rem;
		left: -2rem;
	}
	.theme-badge {
		width: 56px;
		height: 56px;
	}
	/* -----------
支援を届けたこどもたちの声
-----------　*/
	.voice-content {
		padding: 5rem 2rem;
		background-size: 55%, 45%;
		background-position:-25% -1%,100% 1%;
	}
	.voice-content h2 {
		text-align: left;
	}
	.voice-text {
		max-height: 19.2rem;
		line-height: 1.6;
	}
	.voice-list {
		flex-direction: column;
		gap: 30px;
	}
	.voice-content .lead {
		margin-bottom: 30px;
	}
	.voice-card {
		margin: 0 auto;
	}
	.voice-card-body {
		padding: 2rem 1.5rem 0;
	}
	/* -----------
ご寄付実績
-----------　*/
.donation-result-content h2 {
	margin-bottom: 3rem;
}
.donation-result-amount .unit {
	margin-left: -0.8rem;
}
	.donation-result-content {
		padding: 5rem 2rem 6rem;
	}
	/* -----------
各寄付の流れ
-----------　*/
	.flow-wrap {
		padding: 5rem 2rem 6rem;
	}
	.flow-wrap h2 {
		margin-bottom: 2rem;
	}
	.flow-cta {
		flex-direction: column;
	}
	.flow-jump-tabs {
		margin-top: 4rem;
	}
	.flow-other-tabs {
		margin-top: 4rem;
	}
	.flow-other-tabs-list {
		flex-direction: column;
		align-items: stretch;
	}
	.flow-other-tab {
		flex: none;
		max-width: none;
		border-width: 2px;
		padding: 1.4rem 1rem;
	}
	.flow-text {
		text-align: left;
		scroll-margin-top: 8rem;
	}
	.flow-step-header,
	.notice-item-header {
		align-items: flex-start;
	}
	.tab {
		padding: 1.6rem 0.5rem;
	}
	.tab-flow {
		padding: 1rem 0;
	}
	.tab-list {
		border: 2px solid var(--main-green);
	}
	.tab-list-sticky {
		top: 0;
		margin-left: -2rem;
		margin-right: -2rem;
		padding: 1rem 2rem;
	}
	.flow-text:last-of-type {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	.flow-cta-tel-label img {
		width: 15px;
	}
	.flow-cta-tel-number {
		line-height: unset;
	}
	.flow-cta-form {
		gap: 1rem;
		border: 2px solid var(--accent-blue);
	}
	.flow-cta-form img {
		width: 20px;
	}
.notice-heading {
	margin: 0 0 1rem;
}
	.notice-block {
		margin-top: 2rem;
	}
	.flow-cta {
		margin: 3.2rem auto 0;
	}
	/* -----------
よくあるご質問
-----------　*/
	.faq-content {
		padding: 5rem 2rem 6rem;
	}
	.faq-content h2 {
		margin-bottom: 3.2rem;
	}
	.faq-category {
		margin: 0 0 1rem;
	}
	.faq-list {
		gap: 1rem;
	}
	/* -----------
士業・金融機関・公証人等の皆さまへ
-----------　*/
.expert-hero {
	padding: 3.2rem 2.4rem 2rem;
}
	.expert-hero-img img {
		width: 50%;
		max-width: 180px;
		top: -10%;
		left: -3%;
	}
	.expert-content {
		padding: 12rem 2rem 6rem;
	}
	.expert-lead {
		margin-bottom: 3.2rem;
	}
	.expert-lead-text {
		font-size: 1.6rem;
		line-height: 1.9;
		margin: 0;
	}
	.expert-cta {
		margin-bottom: 3.6rem;
	}
	.expert-cta-tel {
		flex: 1.5;
	}
	.expert-cta-form {
		border: 2px solid var(--title-brown);
	}
	/* -----------
ご挨拶
-----------　*/
	.greeting-content {
		padding: 5rem 2rem 6rem;
		margin: 0 auto;
	}
	.greeting-title {
	margin-bottom: 2.5rem;
	width: 100%;
	}
	.greeting-profile {
		gap: 1.2rem;
	}
	.greeting-profile-photo {
		width: 64px;
		height: 64px;
	}
	.greeting-org {
		font-size: 1.2rem;
		margin: 0;
	}
	.greeting-profile-name {
		font-size: 1.8rem;
		margin: 0 0 0.3rem;
	}
	.greeting-profile-role {
		font-size: 1.2rem;
	}
	/* -----------
フッター
-----------　*/
.site-footer {
	padding: 6rem 2rem 10rem;
}
	.footer-about {
		flex-direction: column;
		align-items: center;
		gap: 20%;
		margin: 0 auto;
	}
	.footer-note:last-of-type {
		margin-bottom: 2rem;
	}
	.footer-logo img {
		width: 220px;
		max-width: 80%;
		height: auto;
	}
	.fixed-cta-form {
		border: 2px solid var(--accent-blue);
	}
	.fixed-cta-tel {
		flex: 1.5;
	}
}

@media screen and (max-width: 430px) {
	.sp-430 {
		display: block;
	}
}
@media (min-width: 400px) and (max-width: 767px) {
	.btn-top {
		width: 25%;
	}
}
