@charset "utf-8";

/* =============================================================================
   ご寄付ページ専用CSS
   既存テーマへの影響を避けるため、原則 .donation-page 以下に限定しています。
============================================================================= */

.donation-page {
	--donation-green: #073d22;
	--donation-green-dark: #032e15;
	--donation-green-light: #eaf3e9;
	--donation-gold: #c89236;
	--donation-ink: #1d2c23;
	--donation-muted: #5a665e;
	--donation-line: #dfe5df;
	--donation-cream: #fbfaf4;
	--donation-white: #fff;
	color: var(--donation-ink);
	font-family: 'Noto Sans JP', "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
}

.donation-page *,
.donation-page *::before,
.donation-page *::after {
	box-sizing: border-box;
}

.donation-page p {
	margin: 0;
}

.donation-page button,
.donation-page a {
	font: inherit;
}

.donation-container {
	width: min(1120px, calc(100% - 48px));
	margin-inline: auto;
}

.donation-section {
	padding: clamp(64px, 7vw, 104px) 0;
}

.donation-section-heading {
	position: relative;
	max-width: 780px;
	margin: 0 auto clamp(50px, 6vw, 72px);
	text-align: center;
}

.donation-section-heading::before,
.donation-section-heading::after {
	content: "";
	position: absolute;
	top: clamp(19.6px, 2.1vw, 28px);
	width: clamp(40px, 8vw, 110px);
	height: 1px;
	background: #b7c5b9;
}

.donation-section-heading::before {
	right: calc(100% + 12px);
}

.donation-section-heading::after {
	left: calc(100% + 12px);
}

.donation-section-heading h2 {
	margin: 0;
	color: var(--donation-ink);
	font-family: 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.4;
}

.donation-section-heading p {
	margin-top: 12px;
	color: var(--donation-muted);
	font-size: 15px;
}

/* Hero --------------------------------------------------------------------- */
.donation-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 18%, rgba(157, 190, 100, .14) 0 7%, transparent 7.5%),
		linear-gradient(100deg, #fbfdf7 0%, #f5f8ed 48%, #eef5e8 100%);
}

.donation-hero::before,
.donation-hero::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(95, 139, 75, .12);
	border-radius: 60% 40% 65% 35%;
	transform: rotate(24deg);
}

.donation-hero::before {
	top: 36px;
	left: -80px;
}

.donation-hero::after {
	right: -90px;
	bottom: 24px;
}

.donation-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
	align-items: center;
	min-height: clamp(480px, 54vw, 650px);
	padding-block: clamp(56px, 7vw, 88px);
}

.donation-hero__content {
	position: relative;
	z-index: 2;
	padding-right: clamp(24px, 3.5vw, 48px);
}

.donation-eyebrow {
	margin-bottom: 16px !important;
	color: var(--donation-green);
	font-size: clamp(15px, 1.4vw, 19px);
	font-weight: 700;
	letter-spacing: .06em;
	white-space: nowrap;
}

.donation-hero h1 {
	margin: 0 0 24px;
	color: var(--donation-green-dark);
	font-family: 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(34px, 3.8vw, 52px);
	font-weight: 600;
	letter-spacing: .04em;
	line-height: 1.5;
}

.donation-hero h1 span {
	display: block;
	white-space: nowrap;
}

.donation-hero__content > p:last-child {
	max-width: 620px;
	color: #344339;
	font-size: clamp(15px, 1.35vw, 17px);
	line-height: 2;
}

.donation-hero__media {
	width: calc(100% + max(24px, (100vw - 1120px) / 2));
	height: clamp(360px, 34vw, 480px);
	border-radius: 180px 0 0 180px;
	overflow: hidden;
}

.donation-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 52% center;
}

/* 前月の寄付結果 ----------------------------------------------------------- */
.donation-monthly-report {
	position: relative;
	z-index: 3;
	padding: clamp(32px, 4vw, 52px) 0;
	background: linear-gradient(180deg, #fff 0%, #f2f8fb 100%);
}

.donation-monthly-report__panel {
	position: relative;
	margin-top: 0;
	padding: clamp(34px, 4.5vw, 56px);
	border: 1px solid #c6dce8;
	border-radius: 14px;
	background: linear-gradient(145deg, #fafdff 0%, #edf6fb 100%);
	box-shadow: 0 18px 50px rgba(55, 104, 132, .12);
}

.donation-monthly-report__panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: clamp(28px, 5vw, 70px);
	right: clamp(28px, 5vw, 70px);
	height: 4px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, #4f7e99, #72a5bf, #a8cadb);
}

.donation-monthly-report__header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 3px 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid #d1e2eb;
}

.donation-monthly-report__label {
	grid-column: 1;
	color: #668ca3;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.donation-monthly-report__title {
	grid-column: 1;
	display: flex;
	align-items: center;
	gap: 12px;
}

.donation-monthly-report__title-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #5f8da7;
}

.donation-monthly-report__title-icon img {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
}

.donation-monthly-report__header h2 {
	margin: 0;
	color: #31566b;
	font-family: 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(25px, 2.8vw, 36px);
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.4;
}

.donation-monthly-report__month {
	grid-column: 2;
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	min-width: 110px;
	min-height: 62px;
	padding: 10px 18px;
	border-radius: 8px;
	background: #49758e;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .06em;
}

.donation-monthly-report__body {
	display: grid;
	grid-template-columns: minmax(160px, .55fr) minmax(0, 2fr) minmax(280px, 1.15fr);
	gap: 0;
	padding: 28px 0;
}

.donation-monthly-report__item {
	min-width: 0;
	padding: 0 26px;
	border-right: 1px solid #d1e2eb;
}

.donation-monthly-report__item:first-child {
	padding-left: 0;
}

.donation-monthly-report__item:last-child {
	padding-right: 0;
	border-right: 0;
}

.donation-monthly-report__item h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: #345e74;
	font-size: 16px;
	font-weight: 700;
}

.donation-monthly-report__item h3 span {
	color: #78a9c1;
	font-size: 9px;
}

.donation-monthly-report__item:last-child h3 {
	white-space: nowrap;
}

.donation-monthly-report__item p {
	color: #374b56;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.9;
}

.donation-monthly-report__thanks {
	padding-top: 22px;
	border-top: 1px solid #d1e2eb;
	color: #315b72;
	font-family: 'Noto Serif JP', "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 600;
	letter-spacing: .08em;
	text-align: center;
}

/* 画像仮アテ --------------------------------------------------------------- */
.donation-image-placeholder {
	display: grid;
	place-content: center;
	min-height: 180px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0)),
		repeating-linear-gradient(135deg, #dfe9da 0 18px, #eaf0e5 18px 36px);
	color: #6e806f;
	text-align: center;
}

.donation-image-placeholder span,
.donation-image-placeholder small {
	display: block;
}

.donation-image-placeholder span {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: .18em;
}

.donation-image-placeholder small {
	font-size: 12px;
	letter-spacing: .08em;
}

/* 支援内容 ----------------------------------------------------------------- */
.donation-impact {
	padding-top: clamp(36px, 4vw, 52px);
	padding-bottom: clamp(36px, 4vw, 56px);
	background: #fff;
}

.donation-impact__lead span {
	display: inline;
}

.donation-impact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.donation-impact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 46px 18px 18px;
	border: 1px solid var(--donation-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(10, 48, 27, .06);
	text-align: center;
	transition: transform .3s ease, box-shadow .3s ease;
}

.donation-impact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(10, 48, 27, .12);
}

.donation-round-icon {
	position: absolute;
	top: -30px;
	left: 50%;
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	transform: translateX(-50%);
}

.donation-round-icon img {
	display: block;
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.donation-impact-card--blue .donation-round-icon img {
	width: 39px;
	height: 39px;
}

.donation-impact-card--pink .donation-round-icon { background: #a94d60; }
.donation-impact-card--green .donation-round-icon { background: #557a3b; }
.donation-impact-card--orange .donation-round-icon { background: #a96d26; }
.donation-impact-card--blue .donation-round-icon { background: #3f7393; }

.donation-impact-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.donation-impact-card > p {
	flex: 1;
	margin-bottom: 16px;
	color: var(--donation-muted);
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}

.donation-impact-card__image {
	height: 142px;
	min-height: 142px;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
}

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

/* 共通パネル --------------------------------------------------------------- */
.donation-panel-section {
	padding: 0 0 clamp(32px, 4vw, 48px);
}

.donation-panel {
	padding: clamp(34px, 4vw, 52px);
	border: 1px solid var(--donation-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(24, 50, 31, .05);
}

.donation-panel .donation-section-heading {
	margin-bottom: 48px;
}

.donation-type-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.donation-type-card {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 20px;
	align-items: center;
	min-width: 0;
	padding: 26px;
	border: 1px solid transparent;
	border-radius: 10px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.donation-type-card:hover {
	transform: translateY(-3px);
}

.donation-type-card--money {
	border-color: #efcbd5;
	background: linear-gradient(135deg, #fff8fa 0%, #fbecef 100%);
}

.donation-type-card--money:hover {
	box-shadow: 0 12px 28px rgba(157, 67, 93, .12);
}

.donation-type-card--goods {
	border-color: #cfe1c9;
	background: linear-gradient(135deg, #f8fbf5 0%, #edf6e9 100%);
}

.donation-type-card--goods:hover {
	box-shadow: 0 12px 28px rgba(77, 118, 64, .12);
}

.donation-type-card__icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border: 0;
	border-radius: 50%;
}

.donation-type-card__icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.donation-type-card--money .donation-type-card__icon { background: #b75470; }
.donation-type-card--goods .donation-type-card__icon { background: #5f8c54; }

.donation-type-card h3 {
	margin: 0 0 6px;
	font-size: 21px;
	font-weight: 700;
}

.donation-type-card p {
	color: var(--donation-muted);
	font-size: 14px;
	line-height: 1.8;
}

.donation-tax-note,
.donation-method-note {
	margin-top: 20px !important;
	color: var(--donation-muted);
	font-size: 13px;
	text-align: center;
}

.donation-tax-note {
	font-size: 15px;
	line-height: 1.8;
}

/* 寄付方法・ほしいものリスト（コンバージョンエリア） --------------------- */
.donation-conversion-section {
	position: relative;
	padding: clamp(36px, 4vw, 52px) 0;
	background: #fffff9;
}

.donation-conversion {
	position: relative;
	padding: clamp(36px, 4.5vw, 56px);
	border: 1px solid #eadba8;
	border-radius: 20px;
	background: none;
	box-shadow: 0 22px 54px rgba(121, 91, 24, .12);
	overflow: hidden;
}

.donation-conversion::before {
	content: "";
	position: absolute;
	top: 0;
	left: clamp(34px, 6vw, 82px);
	right: clamp(34px, 6vw, 82px);
	height: 5px;
	border-radius: 0 0 5px 5px;
	background: linear-gradient(90deg, #b98525, #e0b447, #f1d57d);
}

.donation-conversion::after {
	content: "";
	position: absolute;
	top: -110px;
	right: -90px;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(200, 158, 55, .18);
	border-radius: 50%;
	pointer-events: none;
}

.donation-conversion .donation-section-heading,
.donation-conversion .donation-method-grid,
.donation-conversion .donation-wishlist {
	position: relative;
	z-index: 1;
}

.donation-conversion .donation-section-heading {
	margin-bottom: clamp(48px, 5vw, 60px);
}

.donation-method-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.donation-method-card {
	position: relative;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	grid-template-rows: auto 1fr auto;
	column-gap: 8px;
	align-items: center;
	min-width: 0;
	min-height: 254px;
	padding: 24px 14px 18px;
	border: 1px solid #dce5d9;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(20, 56, 34, .07);
	overflow: hidden;
	color: var(--donation-ink);
	text-align: left;
	cursor: pointer;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.donation-method-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	right: 20px;
	height: 3px;
	border-radius: 0 0 3px 3px;
	background: #89a979;
	transition: left .25s ease, right .25s ease, background .25s ease;
}

.donation-method-card:hover,
.donation-method-card:focus-visible {
	border-color: #94ad8c;
	box-shadow: 0 18px 34px rgba(3, 46, 21, .14);
	transform: translateY(-6px);
}

.donation-method-card:hover::before,
.donation-method-card:focus-visible::before {
	left: 0;
	right: 0;
	background: var(--donation-gold);
}

.donation-method-card:focus-visible {
	outline: 3px solid rgba(33, 116, 69, .25);
	outline-offset: 3px;
}

.donation-method-card__icon {
	display: grid;
	place-items: center;
	grid-column: 1;
	grid-row: 1;
	width: 38px;
	height: 38px;
	margin-bottom: 0;
	background: none;
}

.donation-method-card__icon img {
	display: block;
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.donation-method-card__icon--postal {
	position: relative;
}

.donation-method-card__icon--postal img {
	position: relative;
	z-index: 1;
}

.donation-method-card__title,
.donation-method-card__text,
.donation-method-card__button {
	display: block;
	width: 100%;
}

.donation-method-card__title {
	grid-column: 2;
	grid-row: 1;
	margin-bottom: 0;
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 700;
	line-height: 1.55;
	white-space: nowrap;
}

.donation-method-card__text {
	grid-column: 1 / -1;
	grid-row: 2;
	margin: 14px 0 16px;
	color: #35463b;
	font-size: 13px;
	line-height: 1.75;
}

.donation-method-card__button {
	grid-column: 1 / -1;
	grid-row: 3;
	position: relative;
	padding: 11px 38px 11px 15px;
	border-radius: 6px;
	background: #a47428;
	box-shadow: 0 5px 14px rgba(151, 101, 22, .2);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	transition: background .25s ease;
}

.donation-method-card:hover .donation-method-card__button {
	background: #895d20;
}

.donation-method-card__button i {
	position: absolute;
	top: 50%;
	right: 14px;
	font-size: 20px;
	line-height: 1;
	transform: translateY(-53%);
}

/* ほしいものリスト --------------------------------------------------------- */
.donation-wishlist {
	margin-top: clamp(24px, 3vw, 34px);
	padding-top: 0;
	border-top: 0;
}

.donation-wishlist__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	padding: clamp(30px, 4vw, 48px);
	border: 1px solid #dfcda7;
	border-radius: 16px;
	background: none;
	box-shadow: 0 14px 34px rgba(121, 91, 39, .1);
}

.donation-wishlist__copy {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 22px;
	align-items: center;
}

.donation-wishlist__icon {
	display: grid;
	place-items: center;
	color: var(--donation-gold);
	font-size: 50px;
}

.donation-wishlist__icon {
	width: 78px;
	height: 78px;
	border: 0;
}

.donation-wishlist__icon img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
}

.donation-wishlist h2 {
	margin: 0 0 8px;
	font-family: 'Noto Serif JP', "Yu Mincho", serif;
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 600;
}

.donation-wishlist__copy p {
	color: #3d463f;
	font-size: 14px;
	line-height: 1.85;
}

.donation-wishlist__button {
	display: grid;
	grid-template-columns: 1fr 22px;
	gap: 18px;
	align-items: center;
	min-height: 106px;
	padding: 18px 22px;
	border: 2px solid #a47428;
	border-radius: 12px;
	background: #a47428;
	box-shadow: 0 10px 24px rgba(151, 101, 22, .24);
	color: #fff;
	text-decoration: none;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}

.donation-wishlist__button:hover,
.donation-wishlist__button:focus-visible {
	border-color: #895d20;
	background: #895d20;
	color: #fff;
	box-shadow: 0 14px 30px rgba(133, 83, 15, .3);
	transform: translateY(-4px);
}

.donation-wishlist__button strong,
.donation-wishlist__button small {
	display: block;
}

.donation-wishlist__button strong span {
	display: inline;
}

.donation-wishlist__button strong {
	font-size: 16px;
	line-height: 1.5;
}

.donation-wishlist__button small {
	margin-top: 3px;
	font-size: 13px;
}

.donation-wishlist__button > i {
	font-size: 28px;
}

.donation-method-note a {
	color: var(--donation-green);
	font-weight: 700;
	text-underline-offset: 3px;
}

.donation-method-note {
	font-size: 14px;
	line-height: 1.8;
}

/* 寄付のお礼 --------------------------------------------------------------- */
.donation-thanks {
	padding: clamp(36px, 4vw, 52px) 0 0;
	background: #fff;
}

.donation-thanks-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.donation-thanks-card {
	min-width: 0;
	border: 1px solid var(--donation-line);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(10, 48, 27, .05);
	overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease;
}

.donation-thanks-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(10, 48, 27, .1);
}

.donation-thanks-card > a,
.donation-thanks-card--sample {
	color: inherit;
	text-decoration: none;
}

.donation-thanks-card > a {
	display: block;
	height: 100%;
}

.donation-thanks-card__image {
	position: relative;
	height: 210px;
	overflow: hidden;
}

.donation-thanks-card__image img,
.donation-thanks-card__image .donation-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.donation-thanks-card__image time,
.donation-thanks-card__month {
	position: absolute;
	top: 0;
	left: 0;
	padding: 6px 12px;
	background: var(--donation-green-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.donation-thanks-card h3,
.donation-thanks-card > p,
.donation-thanks-card > a > p,
.donation-thanks-card__date {
	margin-right: 20px;
	margin-left: 20px;
}

.donation-thanks-card h3 {
	margin-top: 18px;
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
}

.donation-thanks-card > p,
.donation-thanks-card > a > p {
	color: var(--donation-muted);
	font-size: 13px;
	line-height: 1.75;
}

.donation-thanks-card__date {
	display: block;
	margin-top: 12px;
	margin-bottom: 20px;
	color: #394b40;
	font-size: 12px;
	font-weight: 600;
}

.donation-thanks__more {
	margin-top: 36px !important;
	text-align: center;
}

.donation-thanks__more a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: min(100%, 300px);
	padding: 15px 28px;
	border: 1px solid var(--donation-green-dark);
	border-radius: 5px;
	background: var(--donation-green-dark);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s ease, color .25s ease;
}

.donation-thanks__more a:hover,
.donation-thanks__more a:focus-visible {
	background: #fff;
	color: var(--donation-green-dark);
}

/* モーダル ----------------------------------------------------------------- */
body.donation-modal-open {
	overflow: hidden;
}

.donation-modal[hidden] {
	display: none;
}

.donation-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	transition: opacity .22s ease;
}

.donation-modal.is-open {
	opacity: 1;
}

.donation-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 25, 12, .72);
	backdrop-filter: blur(3px);
}

.donation-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(650px, 100%);
	max-height: min(86vh, 760px);
	padding: clamp(30px, 5vw, 52px);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 26px 80px rgba(0, 0, 0, .3);
	overflow-y: auto;
	transform: translateY(18px) scale(.98);
	transition: transform .22s ease;
}

.donation-modal.is-open .donation-modal__dialog {
	transform: translateY(0) scale(1);
}

.donation-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #cfd7d0;
	border-radius: 50%;
	background: #fff;
	color: var(--donation-green-dark);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}

.donation-modal__close:hover,
.donation-modal__close:focus-visible {
	background: var(--donation-green-dark);
	color: #fff;
}

.donation-modal__label {
	margin-bottom: 5px !important;
	color: #6f8d77;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
}

.donation-modal h2 {
	margin: 0 50px 18px 0;
	color: var(--donation-green-dark);
	font-family: 'Noto Serif JP', "Yu Mincho", serif;
	font-size: clamp(25px, 4vw, 34px);
	font-weight: 600;
	line-height: 1.5;
}

.donation-modal__dialog > p:not(.donation-modal__label):not(.donation-modal__note) {
	color: var(--donation-muted);
	font-size: 15px;
}

.donation-modal__steps {
	margin: 22px 0 0;
	padding: 18px 22px 18px 46px;
	border-radius: 8px;
	background: #f3f7f1;
}

.donation-modal__steps li {
	list-style: decimal;
	margin: 4px 0;
	font-size: 14px;
}

.donation-modal__details {
	margin: 22px 0 0;
	border-top: 1px solid #d9e0da;
}

.donation-modal__details > div {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	border-bottom: 1px solid #d9e0da;
}

.donation-modal__details dt,
.donation-modal__details dd {
	padding: 13px 16px;
}

.donation-modal__details dt {
	background: #f3f7f1;
	font-size: 13px;
	font-weight: 700;
}

.donation-modal__details dd {
	font-size: 14px;
	word-break: break-word;
}

.donation-modal__note {
	margin-top: 16px !important;
	color: var(--donation-muted);
	font-size: 12px;
	line-height: 1.75;
}

.donation-modal__action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: 100%;
	margin-top: 24px;
	padding: 15px 22px;
	border: 1px solid var(--donation-green-dark);
	border-radius: 6px;
	background: var(--donation-green-dark);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.donation-modal__action:hover,
.donation-modal__action:focus-visible {
	background: #fff;
	color: var(--donation-green-dark);
}

@media screen and (max-width: 1180px) {
	.donation-method-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Tablet ------------------------------------------------------------------- */
@media screen and (max-width: 999px) {
	.donation-container {
		width: min(100% - 40px, 900px);
	}

	.donation-hero__inner {
		grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
	}

	.donation-hero__media {
		height: 360px;
	}

	.donation-eyebrow {
		font-size: clamp(13px, 1.65vw, 16px);
		letter-spacing: .025em;
	}

	.donation-hero h1 {
		font-size: clamp(32px, 4.5vw, 43px);
	}

	.donation-monthly-report__body {
		grid-template-columns: 1fr 2fr;
		gap: 24px 0;
	}

	.donation-monthly-report__item:nth-child(2) {
		padding-right: 0;
		border-right: 0;
	}

	.donation-monthly-report__item:last-child {
		grid-column: 1 / -1;
		padding: 22px 0 0;
		border-top: 1px solid #d1e2eb;
	}

	.donation-impact-grid,
	.donation-method-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 18px;
	}

	.donation-method-grid {
		gap: 18px;
	}

	.donation-method-card {
		min-height: 230px;
	}

	.donation-wishlist__inner {
		grid-template-columns: 1fr;
	}
}

/* Mobile ------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
	.donation-page {
		font-size: 15px;
	}

	.donation-container {
		width: min(100% - 32px, 640px);
	}

	.donation-section {
		padding: 56px 0;
	}

	.donation-thanks {
		padding: 32px 0 0;
	}

	.donation-section-heading::before,
	.donation-section-heading::after {
		display: none;
	}

	.donation-section-heading h2 {
		font-size: 27px;
	}

	.donation-section-heading {
		margin-bottom: 50px;
	}

	.donation-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-block: 48px;
	}

	.donation-hero__content {
		padding-right: 0;
	}

	.donation-eyebrow {
		font-size: clamp(10.5px, 3.1vw, 13px);
		letter-spacing: 0;
	}

	.donation-hero h1 {
		font-size: clamp(24px, 7.3vw, 36px);
		letter-spacing: .015em;
		line-height: 1.48;
	}

	.donation-hero__media {
		width: 100%;
		height: 260px;
		border-radius: 90px 12px 12px 12px;
	}

	.donation-hero__media img {
		object-position: 50% center;
	}

	.donation-monthly-report {
		padding: 24px 0;
	}

	.donation-monthly-report__panel {
		width: min(100% - 24px, 640px);
		margin: 0 auto;
		padding: 30px 18px;
	}

	.donation-monthly-report__header {
		grid-template-columns: 1fr auto;
		gap: 3px 12px;
	}

	.donation-monthly-report__title {
		gap: 8px;
	}

	.donation-monthly-report__title-icon {
		width: 34px;
		height: 34px;
	}

	.donation-monthly-report__title-icon img {
		width: 20px;
		height: 20px;
	}

	.donation-monthly-report__header h2 {
		font-size: clamp(21px, 6vw, 27px);
	}

	.donation-monthly-report__month {
		min-width: 72px;
		min-height: 54px;
		padding: 8px 10px;
		font-size: 15px;
	}

	.donation-monthly-report__body {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 10px 0 22px;
	}

	.donation-monthly-report__item,
	.donation-monthly-report__item:first-child,
	.donation-monthly-report__item:nth-child(2),
	.donation-monthly-report__item:last-child {
		grid-column: auto;
		padding: 18px 0;
		border-top: 0;
		border-right: 0;
		border-bottom: 1px solid #d1e2eb;
	}

	.donation-monthly-report__item:last-child {
		border-bottom: 0;
	}

	.donation-monthly-report__item:last-child h3 {
		font-size: 15px;
	}

	.donation-impact-grid,
	.donation-type-grid,
	.donation-thanks-grid {
		grid-template-columns: 1fr;
	}

	.donation-impact-grid {
		gap: 50px;
	}

	.donation-panel-section {
		padding-bottom: 36px;
	}

	.donation-panel {
		width: min(100% - 24px, 640px);
		padding: 32px 18px;
	}

	.donation-panel .donation-section-heading {
		margin-bottom: 46px;
	}

	.donation-type-card {
		grid-template-columns: 54px 1fr;
		gap: 15px;
		padding: 20px 16px;
	}

	.donation-type-card__icon {
		width: 54px;
		height: 54px;
	}

	.donation-type-card__icon img {
		width: 34px;
		height: 34px;
	}

	.donation-method-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.donation-method-card {
		min-height: 0;
	}

	.donation-conversion-section {
		padding: 36px 0;
	}

	.donation-conversion {
		width: min(100% - 24px, 640px);
		padding: 36px 18px;
		border-radius: 16px;
	}

	.donation-conversion .donation-section-heading {
		margin-bottom: 46px;
	}

	.donation-wishlist {
		margin-top: 22px;
		padding-top: 0;
	}

	.donation-wishlist__inner {
		width: 100%;
		padding: 28px 18px;
	}

	.donation-wishlist__copy {
		grid-template-columns: 58px 1fr;
		gap: 15px;
	}

	.donation-wishlist__icon {
		width: 58px;
		height: 58px;
	}

	.donation-wishlist__icon img {
		width: 54px;
		height: 54px;
	}

	.donation-wishlist__button {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 15px 12px;
	}

	.donation-wishlist__button strong {
		font-size: 13px;
	}

	.donation-impact__lead span,
	.donation-wishlist__button strong span {
		display: block;
	}

	.donation-wishlist__button strong span {
		white-space: nowrap;
	}

	.donation-wishlist__button > i {
		display: none;
	}

	.donation-thanks-card__image {
		height: 220px;
	}

	.donation-modal {
		padding: 14px;
	}

	.donation-modal__dialog {
		padding: 34px 20px 24px;
	}

	.donation-modal__details > div {
		grid-template-columns: 1fr;
	}

	.donation-modal__details dt,
	.donation-modal__details dd {
		padding: 10px 12px;
	}

	.donation-modal__details dd {
		padding-top: 3px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.donation-page *,
	.donation-page *::before,
	.donation-page *::after,
	.donation-modal,
	.donation-modal__dialog {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
