/* =========================================================
   みずの保育園 テーマ
   モチーフ：丘の上の園舎・園庭の青桐・おひさま・園バス
   ========================================================= */

:root {
	--mz-leaf: #4f9d5d;
	--mz-leaf-deep: #3b7d48;
	--mz-leaf-soft: #e6f4e2;
	--mz-sky: #3f9fd6;
	--mz-sky-soft: #e3f3fb;
	--mz-sun: #f5b82e;
	--mz-sun-soft: #fff3cf;
	--mz-peach: #f08a73;
	--mz-peach-soft: #fde8e2;
	--mz-pink: #f3a3bf;
	--mz-cream: #fffaf0;
	--mz-paper: #ffffff;
	--mz-ink: #4a3f35;
	--mz-ink-soft: #7a6c5f;
	--mz-line: #efe4d2;
	--mz-radius: 24px;
	--mz-radius-s: 14px;
	--mz-shadow: 0 6px 0 rgba(74, 63, 53, .06), 0 10px 30px rgba(74, 63, 53, .08);
	--mz-font: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
	--mz-wide: 1160px;
	--mz-narrow: 860px;
	--mz-gutter: clamp(16px, 4vw, 32px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--mz-cream);
	color: var(--mz-ink);
	font-family: var(--mz-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: .03em;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--mz-sky); text-underline-offset: .2em; }
a:hover { color: var(--mz-leaf-deep); }
:focus-visible { outline: 3px solid var(--mz-sun); outline-offset: 3px; border-radius: 6px; }

.mz-icon { width: 1.25em; height: 1.25em; flex: none; }
.mz-pc { display: none; }
@media (min-width: 960px) { .mz-pc { display: inline; } }

.mz-skip {
	position: absolute; left: 12px; top: -60px; z-index: 100;
	background: var(--mz-ink); color: #fff; padding: 8px 16px; border-radius: 999px;
}
.mz-skip:focus { top: 12px; }

.mz-container {
	width: 100%;
	max-width: calc(var(--mz-wide) + var(--mz-gutter) * 2);
	margin: 0 auto;
	padding: 0 var(--mz-gutter);
}
.mz-container--narrow { max-width: calc(var(--mz-narrow) + var(--mz-gutter) * 2); }

/* ---------- サンプル表示 ---------- */
.mz-sample-bar {
	background: repeating-linear-gradient(135deg, #fff3cf 0 14px, #ffeab0 14px 28px);
	color: #6b5316;
	font-size: 13px;
	line-height: 1.6;
	text-align: center;
	padding: 6px var(--mz-gutter);
}

/* ---------- ヘッダー ---------- */
.mz-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--mz-cream);
	border-bottom: 3px dotted var(--mz-line);
}
.mz-header__inner {
	max-width: calc(var(--mz-wide) + var(--mz-gutter) * 2);
	margin: 0 auto;
	padding: 10px var(--mz-gutter);
	display: flex; align-items: center; gap: 16px;
}

.mz-logo { display: flex; align-items: center; gap: 10px; color: var(--mz-ink); text-decoration: none; }
.mz-logo:hover { color: var(--mz-ink); }
.mz-logo__mark { width: 48px; height: 48px; flex: none; }
.mz-logo__text { display: flex; flex-direction: column; line-height: 1.25; }
.mz-logo__corp { font-size: 11px; color: var(--mz-ink-soft); letter-spacing: .08em; }
.mz-logo__name { font-size: 24px; font-weight: 900; letter-spacing: .1em; color: var(--mz-leaf-deep); }

.mz-menu-btn {
	margin-left: auto;
	display: inline-flex; flex-direction: column; align-items: center; gap: 0;
	width: 56px; height: 56px; padding: 6px 0 0;
	border: 0; border-radius: 50%;
	background: var(--mz-leaf); color: #fff;
	font: inherit; font-size: 10px; cursor: pointer;
	box-shadow: 0 4px 0 var(--mz-leaf-deep);
}
.mz-menu-btn .mz-icon { width: 26px; height: 26px; }
.mz-menu-btn__close { display: none; }
.mz-nav-open .mz-menu-btn__open { display: none; }
.mz-nav-open .mz-menu-btn__close { display: block; }

.mz-nav {
	position: fixed; inset: 0 0 0 auto; z-index: 40;
	width: min(86vw, 360px);
	padding: 96px 24px 32px;
	background: var(--mz-cream);
	box-shadow: -10px 0 40px rgba(74, 63, 53, .15);
	transform: translateX(105%);
	visibility: hidden;
	transition: transform .3s ease, visibility .3s;
	overflow-y: auto;
}
.mz-nav-open .mz-nav { transform: none; visibility: visible; }
.mz-nav-open::after {
	content: ""; position: fixed; inset: 0; z-index: 30;
	background: rgba(74, 63, 53, .35);
}
.mz-nav-open .mz-header { z-index: 60; }
.mz-nav-open .mz-menu-btn { position: relative; z-index: 45; }

.mz-nav__list { list-style: none; margin: 0; padding: 0; }
.mz-nav__list a {
	display: block; padding: 14px 8px;
	color: var(--mz-ink); font-weight: 700; text-decoration: none;
	border-bottom: 2px dashed var(--mz-line);
}
.mz-nav__list a::before {
	content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 10px;
	border-radius: 50%; background: var(--mz-sun); vertical-align: .05em;
}
.mz-nav__list li:nth-child(3n+2) a::before { background: var(--mz-peach); }
.mz-nav__list li:nth-child(3n) a::before { background: var(--mz-sky); }
.mz-nav__list .current-menu-item > a,
.mz-nav__list a:hover { color: var(--mz-leaf-deep); }

.mz-nav__tel {
	display: flex; align-items: center; gap: 10px;
	margin-top: 24px; padding: 12px 18px;
	border-radius: 999px; background: var(--mz-peach); color: #fff;
	font-size: 20px; font-weight: 900; text-decoration: none; line-height: 1.2;
	box-shadow: 0 4px 0 #d86d57;
}
.mz-nav__tel:hover { color: #fff; }
.mz-nav__tel small { display: block; font-size: 11px; font-weight: 500; }

@media (min-width: 960px) {
	.mz-menu-btn { display: none; }
	.mz-nav {
		position: static; width: auto; padding: 0; margin-left: auto;
		background: none; box-shadow: none; transform: none; overflow: visible; visibility: visible;
		display: flex; align-items: center; gap: 18px;
	}
	.mz-nav__list { display: flex; gap: 4px; }
	.mz-nav__list a {
		padding: 8px 12px; border: 0; border-radius: 999px; font-size: 15px;
	}
	.mz-nav__list a::before { display: none; }
	.mz-nav__list a:hover,
	.mz-nav__list .current-menu-item > a { background: var(--mz-leaf-soft); }
	.mz-nav__tel { margin: 0; font-size: 17px; padding: 8px 18px; }
}

/* ---------- 共通パーツ ---------- */
.mz-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 52px; padding: 10px 28px;
	border-radius: 999px; border: 3px solid transparent;
	font-weight: 700; font-size: 16px; text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease;
}
.mz-btn:hover { transform: translateY(2px); }
.mz-btn--primary { background: var(--mz-leaf); color: #fff; box-shadow: 0 5px 0 var(--mz-leaf-deep); }
.mz-btn--primary:hover { color: #fff; box-shadow: 0 3px 0 var(--mz-leaf-deep); }
.mz-btn--ghost { background: #fff; color: var(--mz-leaf-deep); border-color: var(--mz-leaf); box-shadow: 0 5px 0 var(--mz-leaf-soft); }
.mz-btn--ghost:hover { color: var(--mz-leaf-deep); box-shadow: 0 3px 0 var(--mz-leaf-soft); }
.mz-btn--white { background: #fff; color: var(--mz-peach); box-shadow: 0 5px 0 rgba(0, 0, 0, .1); }
.mz-btn--white:hover { color: var(--mz-peach); }

.mz-tag {
	display: inline-block; padding: 0 12px; border-radius: 999px;
	background: var(--mz-sun-soft); color: #8a6412;
	font-size: 12px; font-weight: 700; line-height: 1.9; white-space: nowrap;
}

.mz-more {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 700; color: var(--mz-leaf-deep); text-decoration: none;
}
.mz-more:hover .mz-icon { transform: translateX(3px); }
.mz-more .mz-icon { transition: transform .15s ease; }

.mz-wave { display: block; width: 100%; height: 40px; }
@media (min-width: 960px) { .mz-wave { height: 60px; } }

.mz-section { padding: 56px 0; }
@media (min-width: 960px) { .mz-section { padding: 88px 0; } }
.mz-section__head { text-align: center; margin-bottom: 36px; }
.mz-section__en {
	margin: 0; color: var(--mz-sun); font-size: 15px; font-weight: 900; letter-spacing: .2em;
}
.mz-section__title {
	margin: 0; font-size: clamp(24px, 4.5vw, 34px); font-weight: 900; line-height: 1.5; letter-spacing: .08em;
}
.mz-section__title::after {
	content: ""; display: block; width: 72px; height: 10px; margin: 12px auto 0;
	background:
		radial-gradient(circle, var(--mz-leaf) 4px, transparent 5px) 0 50% / 24px 10px repeat-x;
}

/* ---------- ヒーロー ---------- */
.mz-hero {
	position: relative;
	background: linear-gradient(180deg, #d9f0fb 0%, #eef8fc 55%, var(--mz-cream) 100%);
}
.mz-hero__inner {
	max-width: calc(var(--mz-wide) + var(--mz-gutter) * 2);
	margin: 0 auto;
	padding: 36px var(--mz-gutter) 0;
	display: grid; gap: 12px;
}
.mz-hero__badge {
	display: inline-flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px;
}
.mz-hero__badge span {
	padding: 2px 14px; border-radius: 999px; background: #fff;
	font-size: 13px; font-weight: 700; color: var(--mz-peach);
	box-shadow: 0 3px 0 rgba(240, 138, 115, .25);
}
.mz-hero__badge span + span { color: var(--mz-sky); box-shadow: 0 3px 0 rgba(63, 159, 214, .25); }
.mz-hero__title {
	margin: 0; font-size: clamp(27px, 7vw, 48px); font-weight: 900; line-height: 1.4; letter-spacing: .06em;
}
.mz-hero__title > span { display: block; white-space: nowrap; }
.mz-hero__title em {
	font-style: normal; color: var(--mz-leaf-deep);
	background: linear-gradient(transparent 62%, #fff0a8 62%);
}
.mz-hero__lead { margin: 18px 0 24px; font-size: 16px; }
.mz-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.mz-hero__visual { padding-bottom: 8px; }
.mz-hero__art { filter: drop-shadow(0 12px 24px rgba(63, 159, 214, .18)); }
.mz-hero__art { display: block; width: 100%; height: auto; }
.mz-wave--hero { fill: var(--mz-cream); margin-top: -2px; }

@media (min-width: 960px) {
	.mz-hero__inner { grid-template-columns: 1fr 1.15fr; align-items: center; padding-top: 48px; }
	.mz-hero__copy { padding-bottom: 60px; }
	.mz-hero__lead { font-size: 17px; }
}

/* イラストのちいさな動き（動きを減らす設定の方には止める） */
@media (prefers-reduced-motion: no-preference) {
	.mz-art-cloud--a { animation: mz-float 9s ease-in-out infinite; }
	.mz-art-cloud--b { animation: mz-float 12s ease-in-out infinite reverse; }
	.mz-art-sun { transform-origin: 610px 92px; animation: mz-bob 5s ease-in-out infinite; }
	.mz-art-bus { animation: mz-bus 2.4s ease-in-out infinite; }
}
@keyframes mz-float { 50% { transform: translateX(22px); } }
@keyframes mz-bob { 50% { transform: translateY(-6px) rotate(6deg); } }
@keyframes mz-bus { 50% { transform: translateY(-2px); } }

/* ---------- トップ：お知らせ ---------- */
.mz-news-top { padding-top: 12px; }
.mz-news-top__box {
	position: relative;
	background: var(--mz-paper); border-radius: var(--mz-radius);
	box-shadow: var(--mz-shadow);
	padding: 28px 22px 22px;
	display: grid; gap: 8px;
}
.mz-news-top__title {
	display: flex; align-items: center; gap: 8px; margin: 0;
	font-size: 20px; font-weight: 900; color: var(--mz-leaf-deep);
}
.mz-news-top .mz-more { justify-self: end; }
.mz-news-list { list-style: none; margin: 0; padding: 0; }
.mz-news-list li + li { border-top: 2px dashed var(--mz-line); }
.mz-news-list a {
	display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 4px 14px;
	padding: 14px 4px; color: var(--mz-ink); text-decoration: none;
}
.mz-news-list a:hover .mz-news-list__title { color: var(--mz-leaf-deep); text-decoration: underline; }
.mz-news-list time { color: var(--mz-ink-soft); font-size: 14px; font-variant-numeric: tabular-nums; }
.mz-news-list__title { grid-column: 1 / -1; }
@media (min-width: 768px) {
	.mz-news-top__box { grid-template-columns: 200px 1fr; padding: 32px 40px; column-gap: 32px; }
	.mz-news-top__title { grid-row: 1 / 3; align-self: start; font-size: 22px; padding-top: 12px; }
	.mz-news-list__title { grid-column: auto; }
}

/* ---------- トップ：とくちょう ---------- */
.mz-features__grid { display: grid; gap: 28px; }
@media (min-width: 768px) { .mz-features__grid { grid-template-columns: repeat(3, 1fr); } }
.mz-feature {
	--c: var(--mz-leaf); --c-soft: var(--mz-leaf-soft);
	position: relative;
	background: var(--mz-paper); border-radius: var(--mz-radius);
	padding: 16px 16px 26px; box-shadow: var(--mz-shadow);
	border-top: 8px solid var(--c);
}
.mz-feature--sun { --c: var(--mz-sun); --c-soft: var(--mz-sun-soft); }
.mz-feature--sky { --c: var(--mz-sky); --c-soft: var(--mz-sky-soft); }
.mz-feature__photo { margin: 0 0 18px; border-radius: 18px; overflow: hidden; aspect-ratio: 3 / 2; background: var(--c-soft); }
.mz-feature__photo img { width: 100%; height: 100%; object-fit: cover; }
.mz-feature__num {
	position: absolute; top: -26px; left: 18px;
	display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
	background: var(--c); color: #fff; font-size: 18px; font-weight: 900;
	border: 4px solid var(--mz-cream);
}
.mz-feature__title { margin: 0 6px 8px; font-size: 19px; font-weight: 900; line-height: 1.5; color: var(--mz-ink); }
.mz-feature p { margin: 0 6px; font-size: 15px; }

/* ---------- トップ：保育目標 ---------- */
.mz-goals { padding: 0; }
.mz-goals .mz-wave { fill: var(--mz-leaf-soft); }
.mz-goals .mz-wave--bottom { transform: scaleY(-1); margin-top: -1px; }
.mz-goals .mz-wave--top { margin-bottom: -1px; }
.mz-goals__body { background: var(--mz-leaf-soft); padding: 40px 0 48px; text-align: center; }
.mz-goals__main {
	display: inline-block; margin: 0 0 28px; padding: 6px 28px;
	font-size: clamp(24px, 5vw, 34px); font-weight: 900; color: var(--mz-leaf-deep);
	background: #fff; border-radius: 999px; box-shadow: 0 5px 0 rgba(59, 125, 72, .15);
}
.mz-goals__list {
	list-style: none; margin: 0 auto; padding: 0; max-width: 880px;
	display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.mz-goal {
	--c: var(--mz-leaf);
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
	aspect-ratio: 1; max-width: 240px; width: 100%; margin: 0 auto;
	border-radius: 50%; background: #fff;
	border: 5px dashed color-mix(in srgb, var(--c) 45%, white);
	font-size: 18px; font-weight: 900; line-height: 1.5;
}
.mz-goal .mz-icon { width: 44px; height: 44px; color: var(--c); }
.mz-goal--peach { --c: var(--mz-peach); }
.mz-goal--sky { --c: var(--mz-sky); }
.mz-goals__note { margin: 28px auto 0; max-width: 640px; }

/* ---------- トップ：リンクカード ---------- */
.mz-links__grid {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 960px) { .mz-links__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.mz-link-card {
	--c: var(--mz-leaf); --c-soft: var(--mz-leaf-soft);
	display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
	height: 100%; padding: 22px 12px;
	background: #fff; border-radius: var(--mz-radius);
	border: 3px solid var(--c-soft);
	color: var(--mz-ink); text-decoration: none;
	transition: transform .15s ease, border-color .15s ease;
}
.mz-link-card:hover { transform: translateY(-4px); border-color: var(--c); color: var(--mz-ink); }
.mz-link-card .mz-icon {
	width: 64px; height: 64px; padding: 14px; margin-bottom: 6px;
	border-radius: 50%; background: var(--c-soft); color: var(--c);
}
.mz-link-card__title { font-size: 17px; font-weight: 900; }
.mz-link-card__text { font-size: 13px; color: var(--mz-ink-soft); line-height: 1.6; }
.mz-link-card--sun { --c: #d99a12; --c-soft: var(--mz-sun-soft); }
.mz-link-card--peach { --c: var(--mz-peach); --c-soft: var(--mz-peach-soft); }
.mz-link-card--sky { --c: var(--mz-sky); --c-soft: var(--mz-sky-soft); }

/* ---------- トップ：採用バナー ---------- */
.mz-recruit-band { padding-top: 0; }
.mz-recruit-band__box {
	position: relative; overflow: hidden;
	display: grid; gap: 20px; align-items: center;
	padding: 32px 24px; border-radius: 32px;
	background: var(--mz-peach) radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .25) 0 80px, transparent 81px);
	color: #fff;
}
.mz-recruit-band__en { margin: 0; font-weight: 900; letter-spacing: .2em; opacity: .85; }
.mz-recruit-band h2 { margin: 0 0 10px; font-size: clamp(22px, 4.5vw, 30px); font-weight: 900; line-height: 1.5; }
.mz-recruit-band p { margin: 0 0 20px; }
.mz-recruit-band__photo { margin: 0; border-radius: 50%; overflow: hidden; aspect-ratio: 1; border: 8px solid rgba(255, 255, 255, .6); max-width: 280px; justify-self: center; }
.mz-recruit-band__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
	.mz-recruit-band__box { grid-template-columns: 1.4fr 1fr; padding: 48px 56px; }
}

/* ---------- トップ：概要 ---------- */
.mz-info { padding-top: 0; }
.mz-info__grid { display: grid; gap: 28px; }
@media (min-width: 960px) { .mz-info__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.mz-info__title { margin: 0 0 12px; font-size: 22px; font-weight: 900; color: var(--mz-leaf-deep); }
.mz-info__table dl { margin: 0; background: #fff; border-radius: var(--mz-radius); padding: 8px 24px; box-shadow: var(--mz-shadow); }
.mz-info__table dl > div { display: grid; grid-template-columns: 6.5em 1fr; gap: 12px; padding: 12px 0; }
.mz-info__table dl > div + div { border-top: 2px dashed var(--mz-line); }
.mz-info__table dt { font-weight: 700; color: var(--mz-leaf-deep); }
.mz-info__table dd { margin: 0; }
.mz-info__map iframe { display: block; width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--mz-radius); box-shadow: var(--mz-shadow); background: var(--mz-leaf-soft); }
.mz-info__map p { display: flex; gap: 6px; align-items: center; margin: 12px 0 0; font-size: 14px; color: var(--mz-ink-soft); }

/* ---------- 下層ページ見出し ---------- */
.mz-page-head {
	position: relative; overflow: hidden;
	background: linear-gradient(180deg, #d9f0fb, #eaf6fb);
	text-align: center;
}
.mz-page-head__inner { position: relative; z-index: 1; padding: 44px var(--mz-gutter) 8px; }
.mz-page-head__en { margin: 0; color: var(--mz-sky); font-weight: 900; letter-spacing: .2em; }
.mz-page-head__title { margin: 0; font-size: clamp(26px, 5.5vw, 38px); font-weight: 900; letter-spacing: .08em; line-height: 1.5; }
.mz-page-head__lead { margin: 10px auto 0; max-width: 640px; }
.mz-page-head__deco { position: absolute; right: 2%; top: 8px; width: clamp(110px, 18vw, 200px); opacity: .95; }
.mz-page-head .mz-wave { fill: var(--mz-cream); }

.mz-breadcrumb { max-width: calc(var(--mz-narrow) + var(--mz-gutter) * 2); margin: 0 auto; padding: 0 var(--mz-gutter); }
.mz-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 4px 0 0; font-size: 13px; color: var(--mz-ink-soft); }
.mz-breadcrumb li + li::before { content: "›"; margin: 0 6px; }
.mz-breadcrumb a { color: var(--mz-ink-soft); }

/* ---------- 本文（ブロックエディタの出力） ---------- */
.mz-entry { padding: 24px 0 72px; }
.mz-entry > * { margin-top: 0; margin-bottom: 1.4em; }
.mz-entry h2 {
	text-wrap: balance;
	position: relative; margin: 2.4em 0 1em; padding: 12px 20px 12px 56px;
	background: #fff; border-radius: 999px; box-shadow: 0 4px 0 var(--mz-leaf-soft);
	font-size: clamp(20px, 4vw, 24px); font-weight: 900; line-height: 1.5;
}
.mz-entry h2::before {
	content: ""; position: absolute; left: 16px; top: 50%; width: 28px; height: 28px; margin-top: -14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath d='M22.5 42V28h3v14z' fill='%23a8744f'/%3E%3Ccircle cx='16' cy='23' r='9' fill='%236cbf6c'/%3E%3Ccircle cx='32' cy='23' r='9' fill='%235aae62'/%3E%3Ccircle cx='24' cy='15' r='10' fill='%237fcd76'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mz-entry > h2:first-child { margin-top: .6em; }
.mz-entry h3 {
	margin: 2em 0 .8em; padding-left: 14px;
	border-left: 6px solid var(--mz-sun); border-radius: 3px;
	font-size: 19px; font-weight: 900; line-height: 1.5;
}
.mz-entry p { margin: 0 0 1.2em; }
.mz-entry ul:not([class*="mz-"]),
.mz-entry ol { padding-left: 1.4em; }
.mz-entry ul.wp-block-list { list-style: none; padding-left: 0; }
.mz-entry ul.wp-block-list > li { position: relative; padding-left: 1.6em; margin: .35em 0; }
.mz-entry ul.wp-block-list > li::before {
	content: ""; position: absolute; left: .2em; top: .62em; width: .72em; height: .72em; border-radius: 50%;
	background: var(--mz-leaf);
}
.mz-entry ul.wp-block-list > li:nth-child(3n+2)::before { background: var(--mz-sun); }
.mz-entry ul.wp-block-list > li:nth-child(3n)::before { background: var(--mz-peach); }

.mz-entry .wp-block-image { text-align: center; }
.mz-entry .wp-block-image img { display: inline-block; border-radius: var(--mz-radius-s); }
.mz-entry .wp-block-image figcaption,
.mz-entry .wp-element-caption { text-align: center; font-size: 13px; color: var(--mz-ink-soft); margin-top: 6px; }
.mz-entry .wp-block-gallery { gap: 12px; }

.mz-entry .wp-block-quote {
	margin: 1.6em 0; padding: 20px 24px 20px 56px; position: relative;
	background: var(--mz-sun-soft); border: 0; border-radius: var(--mz-radius);
}
.mz-entry .wp-block-quote::before {
	content: "“"; position: absolute; left: 16px; top: 2px; font-size: 56px; line-height: 1; color: var(--mz-sun);
}

.mz-entry .wp-block-separator {
	border: 0; height: 12px; margin: 2.4em auto;
	background: radial-gradient(circle, var(--mz-line) 3px, transparent 4px) center / 18px 12px repeat-x;
}

/* 表：角丸・しま模様 */
.mz-entry .wp-block-table { margin: 1.4em 0 2em; overflow-x: auto; }
.mz-entry .wp-block-table table {
	width: 100%; border-collapse: separate; border-spacing: 0;
	background: #fff; border-radius: var(--mz-radius-s); overflow: hidden; box-shadow: var(--mz-shadow);
}
.mz-entry .wp-block-table th,
.mz-entry .wp-block-table td { padding: 12px 16px; border: 0; border-bottom: 1px solid var(--mz-line); text-align: left; vertical-align: top; }
.mz-entry .wp-block-table thead th { background: var(--mz-leaf); color: #fff; font-weight: 700; border-bottom: 0; }
.mz-entry .wp-block-table tbody tr:nth-child(even) td { background: #fdfaf3; }
.mz-entry .wp-block-table tbody tr:last-child td { border-bottom: 0; }
.mz-entry .wp-block-table td:first-child { font-weight: 700; white-space: nowrap; color: var(--mz-leaf-deep); }
.mz-entry .wp-block-table figcaption { font-size: 13px; color: var(--mz-ink-soft); }

/* 表：保育園の一日（時間の列を丸いバッジに） */
.mz-entry .mz-timeline thead th { background: var(--mz-sky); }
.mz-entry .mz-timeline td:first-child { color: var(--mz-sky); font-size: 18px; font-variant-numeric: tabular-nums; }

/* 表：年間行事（月の列をカラフルに） */
.mz-entry .mz-events thead th { background: var(--mz-peach); }
.mz-entry .mz-events td:first-child { color: var(--mz-peach); font-size: 18px; }

/* 1列目（項目・時間・月）は必要な幅だけ */
@media (min-width: 641px) {
	.mz-entry .wp-block-table th:first-child,
	.mz-entry .wp-block-table td:first-child { width: 10em; }
	.mz-entry .mz-timeline th:first-child,
	.mz-entry .mz-timeline td:first-child { width: 8.5em; }
	.mz-entry .mz-timeline th:nth-child(2),
	.mz-entry .mz-timeline td:nth-child(2) { width: 11em; }
	.mz-entry .mz-events th:first-child,
	.mz-entry .mz-events td:first-child { width: 5.5em; }
}

/* スマホでは表を縦積みに（見出しは data-label から表示） */
@media (max-width: 640px) {
	.mz-entry .wp-block-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.mz-entry .wp-block-table table,
	.mz-entry .wp-block-table tbody,
	.mz-entry .wp-block-table tr,
	.mz-entry .wp-block-table td { display: block; width: 100%; }
	.mz-entry .wp-block-table tr { padding: 10px 0; border-bottom: 2px dashed var(--mz-line); }
	.mz-entry .wp-block-table tbody tr:nth-child(even) td { background: none; }
	.mz-entry .wp-block-table td { border: 0; padding: 2px 16px; white-space: normal; }
	.mz-entry .wp-block-table td[data-label]:not(:first-child)::before {
		content: attr(data-label); display: inline-block; margin-right: 8px; padding: 0 8px;
		border-radius: 999px; background: var(--mz-leaf-soft); color: var(--mz-leaf-deep);
		font-size: 12px; font-weight: 700;
	}
	.mz-entry .wp-block-table td[data-label=""]::before { display: none; }
	.mz-entry .wp-block-table td:empty { display: none; }
}

/* 囲みボックス（グループブロックに「mz-box」クラスを付けると使える） */
.mz-entry .mz-box {
	padding: 22px 26px; border-radius: var(--mz-radius);
	background: var(--mz-leaf-soft); border: 3px dashed #bfe0b6;
}
.mz-entry .mz-box > :last-child { margin-bottom: 0; }
.mz-entry .mz-box--sun { background: var(--mz-sun-soft); border-color: #f6dc93; }
.mz-entry .mz-box--sky { background: var(--mz-sky-soft); border-color: #b8def2; }
.mz-entry .mz-note { font-size: 14px; color: var(--mz-ink-soft); }

/* ボタンブロック */
.mz-entry .wp-block-button__link {
	border-radius: 999px; padding: 12px 30px; background: var(--mz-leaf); color: #fff; font-weight: 700;
	box-shadow: 0 5px 0 var(--mz-leaf-deep); text-decoration: none;
}
.mz-entry .wp-block-button__link:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--mz-leaf-deep); color: #fff; }

/* 地図の埋め込み（カスタムHTML） */
.mz-entry .mz-map iframe { display: block; width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--mz-radius); box-shadow: var(--mz-shadow); }

/* 投稿 */
.mz-entry__meta { display: flex; align-items: center; gap: 12px; color: var(--mz-ink-soft); font-size: 14px; }
.mz-entry__thumb { margin: 0 0 24px; }
.mz-entry__thumb img { border-radius: var(--mz-radius); }

.mz-post-nav { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 2px dashed var(--mz-line); font-size: 14px; }
.mz-post-nav div:last-child { text-align: right; }
.mz-back { text-align: center; margin: 24px 0 72px; }

/* ---------- お知らせ一覧 ---------- */
.mz-post-list { display: grid; gap: 18px; padding: 24px 0 32px; }
.mz-post-card a {
	display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start;
	padding: 16px; background: #fff; border-radius: var(--mz-radius); box-shadow: var(--mz-shadow);
	color: var(--mz-ink); text-decoration: none; transition: transform .15s ease;
}
.mz-post-card a:hover { transform: translateY(-3px); color: var(--mz-ink); }
.mz-post-card a:hover .mz-post-card__title { color: var(--mz-leaf-deep); }
@media (min-width: 640px) { .mz-post-card a { grid-template-columns: 180px 1fr; gap: 24px; padding: 20px; } }
.mz-post-card__thumb { margin: 0; aspect-ratio: 4 / 3; border-radius: var(--mz-radius-s); overflow: hidden; background: var(--mz-leaf-soft); }
.mz-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mz-post-card__thumb--none { display: grid; place-items: center; }
.mz-post-card__thumb--none svg { width: 56%; height: auto; }
.mz-post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 4px; font-size: 13px; color: var(--mz-ink-soft); }
.mz-post-card__title { margin: 0 0 4px; font-size: 18px; font-weight: 900; line-height: 1.5; }
.mz-post-card__excerpt { margin: 0; font-size: 14px; color: var(--mz-ink-soft); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.navigation.pagination { margin: 0 0 72px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.nav-links .page-numbers {
	display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
	border-radius: 999px; background: #fff; color: var(--mz-ink); text-decoration: none; font-weight: 700; box-shadow: var(--mz-shadow);
}
.nav-links .page-numbers.current { background: var(--mz-leaf); color: #fff; }

.mz-empty, .mz-404 { padding: 32px 0 72px; text-align: center; }

/* ---------- フッター ---------- */
.mz-footer { margin-top: 40px; }
.mz-wave--footer { fill: var(--mz-leaf); }
.mz-footer__body { background: var(--mz-leaf); color: #fff; padding: 24px 0 20px; }
.mz-footer__inner {
	max-width: calc(var(--mz-wide) + var(--mz-gutter) * 2); margin: 0 auto; padding: 0 var(--mz-gutter);
	display: grid; gap: 28px;
}
@media (min-width: 960px) { .mz-footer__inner { grid-template-columns: 1.3fr 1fr 1fr; } }
.mz-footer a { color: #fff; }
.mz-logo--footer, .mz-logo--footer:hover { color: #fff; }
.mz-logo--footer .mz-logo__corp { color: rgba(255, 255, 255, .85); }
.mz-logo--footer .mz-logo__name { color: #fff; }
.mz-footer__addr { margin: 14px 0 6px; }
.mz-footer__tel { margin: 0; font-size: 20px; font-weight: 900; }
.mz-footer__tel a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.mz-footer__hours { margin: 4px 0 0; font-size: 14px; opacity: .9; }
.mz-footer__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 16px; }
.mz-footer__list a { text-decoration: none; font-weight: 700; }
.mz-footer__list a::before { content: "●"; font-size: .6em; margin-right: 8px; color: var(--mz-sun); vertical-align: .2em; }
.mz-footer__list a:hover { text-decoration: underline; }
.mz-footer__heading { margin: 0 0 6px; font-weight: 900; }
.mz-footer__sister p { margin: 0; font-size: 14px; }
.mz-footer__sister strong { font-size: 16px; }
.mz-footer__bottom {
	max-width: calc(var(--mz-wide) + var(--mz-gutter) * 2); margin: 28px auto 0; padding: 16px var(--mz-gutter) 0;
	border-top: 2px dashed rgba(255, 255, 255, .35); font-size: 12px; text-align: center;
}
.mz-footer__bottom p { margin: 0; }
.mz-footer__sample { opacity: .8; margin-top: 4px !important; }

/* ---------- トップ：園のようす（写真を少し傾けて並べる） ---------- */
.mz-gallery { padding-top: 0; }
.mz-gallery__list {
	list-style: none; margin: 0; padding: 8px 0 0;
	display: grid; gap: 28px 18px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 960px) { .mz-gallery__list { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; } }
.mz-photo figure {
	margin: 0; padding: 10px 10px 4px; background: #fff; border-radius: 6px;
	box-shadow: 0 8px 22px rgba(74, 63, 53, .14);
	transform: rotate(-2deg); transition: transform .2s ease;
	position: relative;
}
.mz-photo:nth-child(even) figure { transform: rotate(2.2deg); }
.mz-photo:nth-child(3n) figure { transform: rotate(-1deg); }
.mz-photo figure:hover { transform: rotate(0) scale(1.03); }
.mz-photo figure::before {
	content: ""; position: absolute; top: -12px; left: 50%; width: 70px; height: 24px; margin-left: -35px;
	background: rgba(245, 184, 46, .55); transform: rotate(-3deg); border-radius: 2px;
}
.mz-photo:nth-child(3n+2) figure::before { background: rgba(240, 138, 115, .5); }
.mz-photo:nth-child(3n) figure::before { background: rgba(63, 159, 214, .45); }
.mz-photo img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 3px; }
.mz-photo figcaption { padding: 8px 4px 6px; font-size: 14px; font-weight: 700; text-align: center; line-height: 1.5; }
@media (max-width: 480px) { .mz-photo figcaption { font-size: 12px; } }

/* ---------- 共通：読み上げ専用テキスト ---------- */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- サンプル帯：デザイン切り替え ---------- */
.mz-sample-bar__switch { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-left: 8px; font-weight: 700; }
.mz-sample-bar__switch a {
	padding: 0 10px; border-radius: 999px; background: #fff; color: #6b5316; text-decoration: none; line-height: 1.8;
}
.mz-sample-bar__switch a[aria-current="page"] { background: #6b5316; color: #fff; }

/* =========================================================
   デザインB：写真を大きく使う版
   ========================================================= */
.mz-design-b .mz-header { background: #fff; border-bottom: 1px solid var(--mz-line); }
.mz-design-b { background: #fff; }

.mzb-section { padding: 64px 0; }
@media (min-width: 960px) { .mzb-section { padding: 96px 0; } }
.mzb-center { text-align: center; margin: 32px 0 0; }
.mzb-kicker { margin: 0 0 6px; color: var(--mz-peach); font-weight: 900; letter-spacing: .12em; }

.mzb-pill {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 8px 32px; border-radius: 999px;
	font-weight: 900; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.mzb-pill:hover { transform: translateY(2px); }
.mzb-pill--green { background: #5fbf4a; color: #fff; box-shadow: 0 4px 0 #3f9a32; }
.mzb-pill--green:hover { color: #fff; box-shadow: 0 2px 0 #3f9a32; }
.mzb-pill--red { background: #ef5b5b; color: #fff; box-shadow: 0 4px 0 #c94242; }
.mzb-pill--red:hover { color: #fff; box-shadow: 0 2px 0 #c94242; }
.mzb-pill--line { background: #fff; color: #3f9a32; border: 2px solid #5fbf4a; }
.mzb-pill--line:hover { color: #3f9a32; background: #f1fbef; }
.mzb-pill--big { font-size: 22px; min-height: 60px; padding: 8px 40px; }
.mzb-pill .mz-icon { width: 1.1em; height: 1.1em; }

.mzb-title {
	display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 0 0 32px;
	font-family: "Kiwi Maru", var(--mz-font); font-size: clamp(30px, 6vw, 44px); font-weight: 500;
	color: #5fbf4a; letter-spacing: .16em;
}
.mzb-title__icon { width: 48px; height: 48px; }

/* ヒーロー（スライド） */
.mzb-hero { padding: 12px 12px 0; }
@media (min-width: 960px) { .mzb-hero { padding: 16px 16px 0; } }
.mzb-hero__stage {
	position: relative; overflow: hidden; border-radius: 20px;
	height: clamp(420px, 62vw, 680px); background: var(--mz-leaf-soft);
}
.mzb-slide {
	position: absolute; inset: 0; display: grid; gap: 6px;
	opacity: 0; transition: opacity 1.2s ease;
}
.mzb-slide.is-active { opacity: 1; }
.mzb-slide img { width: 100%; height: 100%; object-fit: cover; }
.mzb-slide--trio img:not(:first-child) { display: none; }
@media (min-width: 768px) {
	.mzb-slide--trio { grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; }
	.mzb-slide--trio img:first-child { grid-row: 1 / 3; }
	.mzb-slide--trio img:not(:first-child) { display: block; }
}
@media (prefers-reduced-motion: no-preference) {
	.mzb-slide.is-active img { animation: mzb-zoom 7s ease-out both; }
}
@keyframes mzb-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }

.mzb-hero__copy {
	position: absolute; left: clamp(16px, 5vw, 72px); bottom: clamp(56px, 12%, 120px); z-index: 2;
	display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.mzb-hero__title { margin: 0 0 8px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.mzb-hero__title span {
	display: inline-block; padding: 6px 18px; background: rgba(255, 255, 255, .94);
	font-family: "Kiwi Maru", var(--mz-font); font-weight: 500; font-size: clamp(22px, 4.6vw, 40px);
	letter-spacing: .12em; line-height: 1.4; color: var(--mz-ink);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}
.mzb-hero__title span:nth-child(2) { margin-left: clamp(12px, 3vw, 40px); }
.mzb-hero__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2; display: flex; justify-content: center; gap: 10px; }
.mzb-hero__dots button {
	width: 12px; height: 12px; padding: 0; border: 2px solid #fff; border-radius: 50%;
	background: rgba(255, 255, 255, .4); cursor: pointer;
}
.mzb-hero__dots button[aria-selected="true"] { background: #fff; }
.mzb-hero__since { text-wrap: balance; padding: 0 8px; margin: 12px 0 0; text-align: center; font-size: 14px; font-weight: 700; color: var(--mz-ink-soft); letter-spacing: .08em; }

/* お知らせ（カード横並び・スマホは横スクロール） */
.mzb-news__list {
	list-style: none; margin: 0 calc(var(--mz-gutter) * -1); padding: 4px var(--mz-gutter) 16px;
	display: grid; grid-auto-flow: column; grid-auto-columns: min(78%, 300px); gap: 20px;
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--mz-gutter); scrollbar-width: thin;
}
@media (min-width: 960px) {
	.mzb-news__list { margin: 0; padding: 4px 0; grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; overflow: visible; }
}
.mzb-news-card { scroll-snap-align: start; }
.mzb-news-card a { display: block; color: var(--mz-ink); text-decoration: none; }
.mzb-news-card__thumb {
	position: relative; margin: 0 0 12px; aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden;
	background: var(--mz-leaf-soft); box-shadow: 0 4px 14px rgba(74, 63, 53, .12);
}
.mzb-news-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.mzb-news-card a:hover .mzb-news-card__thumb img { transform: scale(1.05); }
.mzb-news-card__noimg { display: grid; place-items: center; height: 100%; background: var(--mz-sun-soft); }
.mzb-news-card__noimg svg { width: 40%; height: auto; }
.mzb-news-card__cat {
	position: absolute; top: 10px; right: 10px; padding: 0 10px; border-radius: 999px;
	background: #5fbf4a; color: #fff; font-size: 12px; font-weight: 700; line-height: 1.9;
}
.mzb-news-card__title { margin: 0 0 4px; font-size: 16px; font-weight: 900; line-height: 1.5; }
.mzb-news-card a:hover .mzb-news-card__title { color: #3f9a32; text-decoration: underline; }
.mzb-news-card__excerpt { margin: 0 0 6px; font-size: 13px; line-height: 1.7; color: var(--mz-ink-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mzb-news-card time { font-size: 12px; color: var(--mz-ink-soft); }

/* みずの保育園について（緑の帯＋丸い写真のカード） */
.mzb-about { background: #8fd16f; padding: 56px 0 72px; }
.mzb-about__deco { display: block; width: min(600px, 90%); height: auto; margin: 0 auto; }
.mzb-about__title {
	margin: 4px 0 36px; text-align: center; color: #fff;
	font-family: "Kiwi Maru", var(--mz-font); font-weight: 500; font-size: clamp(28px, 6vw, 48px); letter-spacing: .14em;
	text-shadow: 0 3px 0 rgba(63, 154, 50, .35);
}
.mzb-about__cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
@media (min-width: 768px) { .mzb-about__cards { grid-template-columns: repeat(3, 1fr); } }
.mzb-card {
	--c: #5fbf4a;
	display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 28px 20px 32px; background: #fff; border-radius: 6px;
}
.mzb-card--sky { --c: #3f9fd6; }
.mzb-card--sun { --c: #f39a2e; }
.mzb-card__title {
	margin: 0 0 18px; font-size: clamp(22px, 3vw, 28px); font-weight: 900; color: #ef5b5b;
	background: linear-gradient(transparent 60%, #fff3a8 60%); padding: 0 4px;
}
.mzb-card__photo {
	position: relative; margin: 0 0 18px; width: min(220px, 70vw); aspect-ratio: 1; border-radius: 50%;
}
.mzb-card__photo::after {
	content: ""; position: absolute; inset: -8px; border-radius: 50%;
	border: 6px solid var(--c); border-left-color: transparent; border-bottom-color: transparent; transform: rotate(20deg);
}
.mzb-card__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.mzb-card__text { margin: 0 0 18px; font-size: 14px; flex: 1; }

/* 青桐 */
.mzb-aogiri__grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 960px) { .mzb-aogiri__grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.mzb-aogiri__photo { margin: 0; position: relative; }
.mzb-aogiri__photo img { width: 100%; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; aspect-ratio: 3 / 2; object-fit: cover; }
.mzb-aogiri__photo::before {
	content: ""; position: absolute; inset: 6% -3% -5% 4%; z-index: -1;
	background: var(--mz-leaf-soft); border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
}
.mzb-aogiri__title { margin: 0 0 16px; font-family: "Kiwi Maru", var(--mz-font); font-weight: 500; font-size: clamp(24px, 4vw, 34px); line-height: 1.5; color: var(--mz-leaf-deep); }
.mzb-goals { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.mzb-goals li { padding: 6px 16px; border-radius: 999px; background: var(--mz-leaf-soft); color: var(--mz-leaf-deep); font-weight: 700; font-size: 15px; }
.mzb-goals li:first-child { background: var(--mz-leaf); color: #fff; }

/* 写真が流れる帯 */
.mzb-strip { overflow: hidden; padding: 8px 0 16px; }
.mzb-strip__track { display: flex; gap: 14px; width: max-content; }
.mzb-strip__track img { height: clamp(160px, 22vw, 260px); width: auto; border-radius: 14px; }
@media (prefers-reduced-motion: no-preference) {
	.mzb-strip__track { animation: mzb-marquee 60s linear infinite; }
	.mzb-strip:hover .mzb-strip__track { animation-play-state: paused; }
}
@keyframes mzb-marquee { to { transform: translateX(calc(-50% - 7px)); } }

/* 園長あいさつ */
.mzb-message__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 960px) { .mzb-message__grid { grid-template-columns: 340px 1fr; gap: 56px; } }
.mzb-message__photo { margin: 0 auto; width: min(300px, 80vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 10px solid var(--mz-sky-soft); }
.mzb-message__photo img { width: 100%; height: 100%; object-fit: cover; }
.mzb-message__title { text-wrap: balance; margin: 0 0 14px; font-family: "Kiwi Maru", var(--mz-font); font-weight: 500; font-size: clamp(22px, 3.6vw, 30px); line-height: 1.6; }

/* お問い合わせ */
.mzb-contact { padding: 72px 0 40px; text-align: center; background: #fff; }
.mzb-contact__icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #f1fbef; color: #5fbf4a; }
.mzb-contact__icon .mz-icon { width: 38px; height: 38px; }
.mzb-contact__title { margin: 8px 0 12px; font-family: "Kiwi Maru", var(--mz-font); font-weight: 500; font-size: clamp(21px, 5.6vw, 46px); color: #5fbf4a; letter-spacing: .06em; text-wrap: balance; }
.mzb-contact__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 24px 0 0; }

.mz-design-b .mz-wave--footer { fill: #5fbf4a; }
.mz-design-b .mz-footer__body { background: #5fbf4a; }
