@charset "UTF-8";

/* =========================================================
   Kaitai Wave - Theme Stylesheet
   by Center Light LLC
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
	--navy: #1e2a63;
	--navy-dark: #16204b;
	--navy-soft: #33417f;
	--green: #4ca646;
	--green-dark: #3d8b39;
	--green-soft: #e8f3df;
	--cream: #fbf0d6;
	--cream-dark: #f3e3ba;
	--bg: #f4f9e7;
	--ink: #333333;
	--ink-sub: #6b6f66;
	--white: #ffffff;
	--line-green: #06c755;
	--border: #dfe4d2;

	--font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	--font-en: "Montserrat", "Noto Sans JP", sans-serif;

	--container: 1120px;
	--gutter: clamp(20px, 5vw, 40px);
	--sec-pad: clamp(64px, 8vw, 112px);
	--radius-s: 8px;
	--radius-m: 16px;
	--radius-l: 28px;
	--shadow: 0 10px 30px rgba(30, 42, 99, .08);
	--shadow-hover: 0 16px 40px rgba(30, 42, 99, .16);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset / Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-ja);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .04em;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--navy);
	text-decoration: none;
	transition: color .25s var(--ease), opacity .25s var(--ease);
}

a:hover {
	color: var(--green);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 2px;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: .06em;
}

p {
	margin: 0 0 1.4em;
}

p:last-child {
	margin-bottom: 0;
}

ul, ol, dl, dd, figure {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	color: inherit;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 1000;
	padding: 10px 18px;
	background: var(--navy);
	color: var(--white);
	border-radius: 0 0 var(--radius-s) var(--radius-s);
	transition: top .2s var(--ease);
}

.skip-link:focus {
	top: 0;
	color: var(--white);
}

/* ---------- 3. Layout ---------- */
.container {
	width: min(100% - var(--gutter) * 2, var(--container));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - var(--gutter) * 2, 880px);
}

.site-main {
	display: block;
}

/* ---------- 4. Waves ---------- */
.kw-wave {
	display: block;
	width: 100%;
	pointer-events: none;
}

.kw-wave path {
	fill: var(--bg);
}

/* ---------- 5. Header ---------- */
.site-header {
	position: absolute;
	inset: 0 0 auto;
	z-index: 100;
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header__inner {
	width: min(100% - 32px, 1560px);
	margin-inline: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0 0;
}

.site-header.is-fixed {
	position: fixed;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 2px 18px rgba(30, 42, 99, .1);
	animation: kw-slide-down .4s var(--ease) both;
}

.site-header.is-fixed .site-header__inner {
	padding-block: 10px;
}

.site-header.is-fixed .site-header__utility {
	display: none;
}

@keyframes kw-slide-down {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

/* ロゴ */
.site-logo {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	color: var(--navy);
	line-height: 1.35;
}

.site-logo__catch {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	color: var(--green-dark);
}

.site-logo__text {
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	letter-spacing: .1em;
}

.site-logo__en {
	font-family: var(--font-en);
	font-size: 10px;
	letter-spacing: .28em;
	color: var(--ink-sub);
}

.site-logo__img {
	width: auto;
	max-height: 62px;
}

.site-logo--white,
.site-logo--white .site-logo__text {
	color: var(--white);
}

.site-logo--white .site-logo__catch {
	color: rgba(255, 255, 255, .8);
}

.site-logo--white .site-logo__en {
	color: rgba(255, 255, 255, .6);
}

/* ヘッダー右側 */
.site-header__body {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.site-header__utility {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* 電話ブロック */
.tel-block {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.tel-block__num {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-en);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--navy);
}

.tel-block__icon {
	width: 20px;
	height: 20px;
	color: var(--green);
}

.tel-block__hours {
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--ink-sub);
	text-align: right;
}

.tel-block--large {
	align-items: center;
}

.tel-block--large .tel-block__num {
	font-size: clamp(30px, 4.6vw, 46px);
}

.tel-block--large .tel-block__icon {
	width: 34px;
	height: 34px;
}

.tel-block--large .tel-block__hours {
	font-size: 13px;
	text-align: center;
}

.tel-block--drawer {
	align-items: center;
}

/* CTAボタン */
.cta-buttons {
	display: flex;
	gap: 8px;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.cta-btn svg {
	width: 18px;
	height: 18px;
}

.cta-btn:hover {
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.cta-btn--mail {
	background: var(--navy);
}

.cta-btn--mail:hover {
	background: var(--navy-soft);
}

.cta-btn--line {
	background: var(--line-green);
}

.cta-btn--line:hover {
	background: #05b34c;
}

.cta-btn__line-mark {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(255, 255, 255, .22);
}

.cta-buttons--md .cta-btn {
	padding: 16px 28px;
	font-size: 15px;
}

/* グローバルナビ */
.gnav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.8vw, 30px);
}

.gnav__list > li {
	position: relative;
}

.gnav__list > li > a {
	display: block;
	padding: 8px 2px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--navy);
}

.gnav__list > li > a::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 4px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}

.gnav__list > li:hover > a::after,
.gnav__list > li.current-menu-item > a::after,
.gnav__list > li.current-menu-parent > a::after {
	transform: scaleX(1);
}

.gnav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 8px);
	min-width: 210px;
	padding: 8px 0;
	background: var(--white);
	border-radius: var(--radius-m);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.gnav__list > li:hover .sub-menu,
.gnav__list > li:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.gnav__list .sub-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	color: var(--navy);
}

.gnav__list .sub-menu a:hover {
	background: var(--green-soft);
}

/* ハンバーガー */
.hamburger {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 56px;
	height: 56px;
	justify-content: center;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
}

.hamburger__bar,
.hamburger__bar::before,
.hamburger__bar::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.hamburger__bar {
	position: relative;
}

.hamburger__bar::before,
.hamburger__bar::after {
	content: "";
	position: absolute;
	left: 0;
}

.hamburger__bar::before { top: -7px; }
.hamburger__bar::after { top: 7px; }

.hamburger__label {
	font-family: var(--font-en);
	font-size: 8px;
	letter-spacing: .1em;
}

.hamburger[aria-expanded="true"] .hamburger__bar {
	background: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__bar::before {
	top: 0;
	transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar::after {
	top: 0;
	transform: rotate(-45deg);
}

/* ドロワー */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--bg);
	overflow-y: auto;
	opacity: 0;
	transition: opacity .3s var(--ease);
}

.drawer.is-open {
	opacity: 1;
}

.drawer[hidden] {
	display: none;
}

.drawer__inner {
	padding: 110px var(--gutter) 60px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.drawer__list > li > a {
	display: block;
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
}

.drawer__list .sub-menu {
	padding: 4px 0 12px 16px;
}

.drawer__list .sub-menu a {
	display: block;
	padding: 8px 0;
	font-size: 14px;
	color: var(--ink);
}

.drawer__list .sub-menu a::before {
	content: "-";
	margin-right: 8px;
	color: var(--green);
}

.drawer__contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* ---------- 6. Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-width: 240px;
	padding: 16px 26px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.btn__arrow {
	position: relative;
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
	flex-shrink: 0;
}

.btn__arrow::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 9px;
	height: 9px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.btn--navy {
	background: var(--navy);
	color: var(--white);
}

.btn--navy:hover {
	background: var(--navy-soft);
	color: var(--white);
}

.btn--green {
	background: var(--green);
	color: var(--white);
}

.btn--green:hover {
	background: var(--green-dark);
	color: var(--white);
}

.btn--white {
	background: var(--white);
	color: var(--navy);
	box-shadow: var(--shadow);
}

.btn--white:hover {
	color: var(--green-dark);
}

/* ---------- 7. Section heading ---------- */
.sec-head {
	margin-bottom: clamp(32px, 4vw, 56px);
}

.sec-head--center {
	text-align: center;
}

.sec-head__en {
	display: block;
	font-family: var(--font-en);
	font-size: clamp(38px, 6vw, 68px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: .04em;
	color: var(--green);
	opacity: .28;
}

.sec-head__en--left {
	text-align: left;
}

.sec-head__ja {
	margin-top: -.4em;
	font-size: clamp(22px, 3vw, 32px);
	color: var(--navy);
}

.sub-title {
	margin: clamp(40px, 5vw, 64px) 0 20px;
	font-size: clamp(18px, 2.2vw, 22px);
	color: var(--navy);
	padding-left: 14px;
	border-left: 5px solid var(--green);
}

/* ---------- 8. Hero ---------- */
.hero {
	position: relative;
	height: min(92vh, 820px);
	min-height: 520px;
	overflow: hidden;
	background: var(--navy);
}

.hero__media {
	position: absolute;
	inset: 0;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: kw-hero-zoom 14s var(--ease) both;
}

@keyframes kw-hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

.hero__wave {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
}

.hero__wave--top {
	top: -1px;
	height: clamp(70px, 9vw, 130px);
}

.hero__wave--bottom {
	bottom: -1px;
	height: clamp(80px, 11vw, 160px);
}

.hero__copy {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: clamp(24px, 6vw, 96px);
	transform: translateY(-50%);
}

.hero__catch {
	margin: 0;
	writing-mode: vertical-rl;
	font-size: clamp(24px, 3.4vw, 42px);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: .18em;
	color: var(--white);
	text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
	animation: kw-fade-up 1s var(--ease) .3s both;
}

@keyframes kw-fade-up {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero__news {
	position: absolute;
	z-index: 3;
	right: clamp(16px, 4vw, 56px);
	bottom: clamp(90px, 12vw, 150px);
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: min(90%, 560px);
	padding: 14px 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--shadow);
}

.hero__news-label {
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--green-dark);
	flex-shrink: 0;
}

.hero__news-link {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: var(--navy);
}

.hero__news-date {
	font-family: var(--font-en);
	font-size: 13px;
	color: var(--ink-sub);
	flex-shrink: 0;
}

.hero__news-title {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hero__news-arrow,
.news-item__arrow {
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--green);
	border-right: 2px solid var(--green);
	transform: rotate(45deg);
	flex-shrink: 0;
}

/* ---------- 9. About ---------- */
.about-sec {
	padding: var(--sec-pad) 0;
}

.about-sec__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.about-sec__ruby {
	margin: 8px 0 0;
	font-size: 12px;
	letter-spacing: .3em;
	color: var(--green-dark);
}

.about-sec__title {
	margin: 4px 0 24px;
	font-size: clamp(22px, 3vw, 34px);
	color: var(--navy);
}

.about-sec__text .btn {
	margin-top: 28px;
}

.marker {
	background: linear-gradient(transparent 62%, var(--cream) 62%);
	font-weight: 700;
	padding: 0 2px;
}

.about-sec__media {
	position: relative;
	padding-bottom: 60px;
}

.about-sec__photo--main img {
	width: 100%;
	border-radius: var(--radius-l);
	box-shadow: var(--shadow);
}

.about-sec__photo--sub {
	position: absolute;
	right: -4%;
	bottom: 0;
	width: 46%;
}

.about-sec__photo--sub img {
	width: 100%;
	border-radius: var(--radius-m);
	border: 6px solid var(--bg);
	box-shadow: var(--shadow);
}

/* ---------- 10. Feature ---------- */
.feature-sec {
	padding: var(--sec-pad) 0;
	background: var(--white);
	border-radius: var(--radius-l) var(--radius-l) 0 0;
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.6vw, 34px);
}

.feature-card {
	position: relative;
	background: var(--bg);
	border-radius: var(--radius-m);
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.feature-card__num {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 700;
}

.feature-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.feature-card__body {
	padding: 22px 24px 28px;
}

.feature-card__title {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--navy);
}

.feature-card__text {
	font-size: 14px;
	line-height: 1.85;
	color: var(--ink-sub);
}

/* ---------- 11. SDGs banner ---------- */
.sdgs-banner {
	padding: 0 0 var(--sec-pad);
	background: var(--white);
}

.sdgs-banner__inner {
	display: grid;
	grid-template-columns: 42% 1fr;
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
	padding: clamp(24px, 3vw, 40px);
	border-radius: var(--radius-l);
	background: var(--cream);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.sdgs-banner__inner:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.sdgs-banner__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--radius-m);
}

.sdgs-banner__title {
	margin-bottom: 12px;
	font-size: clamp(20px, 2.6vw, 28px);
	color: var(--navy);
}

.sdgs-banner__text {
	font-size: 15px;
	color: var(--ink);
}

.sdgs-banner__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	font-weight: 700;
	color: var(--green-dark);
}

.sdgs-banner__more i {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform .25s var(--ease);
}

.sdgs-banner__inner:hover .sdgs-banner__more i {
	transform: rotate(45deg) translate(3px, -3px);
}

/* ---------- 12. Service ---------- */
.service-sec {
	padding: var(--sec-pad) 0;
	background: var(--white);
	text-align: center;
}

.service-sec__catch {
	font-size: clamp(18px, 2.4vw, 26px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 14px;
}

.service-sec__lead {
	font-size: 15px;
	color: var(--ink-sub);
	margin-bottom: clamp(32px, 4vw, 52px);
}

.service-panel {
	padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px);
	border-radius: var(--radius-l);
	background: var(--bg);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 26px);
	text-align: left;
}

.service-card__link {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
	padding: 26px 24px 30px;
	border-radius: var(--radius-m);
	background: var(--white);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.service-card__link:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.service-card__label {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
}

.service-card__icon {
	display: block;
	width: 68px;
	color: var(--green);
}

.service-card__link:hover .service-card__icon {
	color: var(--navy);
}

.service-card__text {
	font-size: 13.5px;
	line-height: 1.85;
	color: var(--ink-sub);
}

.service-panel__action {
	margin-top: clamp(28px, 3.4vw, 44px);
}

/* ---------- 13. Equipment ---------- */
.equipment-sec {
	padding: var(--sec-pad) 0;
	background: var(--navy);
	color: var(--white);
	text-align: center;
}

.equipment-sec__title {
	font-size: clamp(24px, 3.4vw, 36px);
	margin-bottom: 16px;
}

.equipment-sec__lead {
	color: rgba(255, 255, 255, .8);
	margin-bottom: clamp(36px, 4.4vw, 60px);
}

.equipment-list {
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 3.6vw, 48px);
	text-align: left;
}

.equipment-row {
	display: grid;
	grid-template-columns: 42% 1fr;
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
}

.equipment-row--reverse .equipment-row__media {
	order: 2;
}

.equipment-row__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-m);
}

.equipment-row__title {
	margin-bottom: 12px;
	font-size: clamp(18px, 2.2vw, 24px);
	padding-left: 14px;
	border-left: 5px solid var(--green);
}

.equipment-row__text {
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
}

/* ---------- 14. Works CTA ---------- */
.works-cta {
	padding: var(--sec-pad) 0;
	background: var(--green);
	text-align: center;
	color: var(--white);
}

.works-cta__title {
	font-size: clamp(20px, 3vw, 32px);
	margin-bottom: 14px;
}

.works-cta__text {
	margin-bottom: 32px;
	color: rgba(255, 255, 255, .92);
}

/* ---------- 15. Recruit ---------- */
.recruit-sec {
	padding: var(--sec-pad) 0;
	background: var(--white);
}

.recruit-sec__inner {
	position: relative;
	padding: clamp(36px, 5vw, 72px);
	border-radius: var(--radius-l);
	background: var(--cream);
	text-align: center;
}

.recruit-sec .sec-head__en {
	text-align: center;
}

.recruit-sec__title {
	margin: -.3em 0 18px;
	font-size: clamp(22px, 3vw, 32px);
	color: var(--navy);
}

.recruit-sec__text {
	color: var(--ink);
}

.recruit-sec__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

/* ---------- 16. Contact ---------- */
.contact-sec {
	padding: var(--sec-pad) 0 clamp(72px, 9vw, 120px);
	background: var(--bg);
	text-align: center;
}

.contact-sec__lead {
	margin-bottom: 36px;
	color: var(--ink);
}

.contact-sec__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

/* ---------- 17. Footer ---------- */
.site-footer {
	position: relative;
	background: var(--navy);
	color: var(--white);
	padding-top: clamp(120px, 14vw, 200px);
	overflow: hidden;
}

.site-footer__wave {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: clamp(90px, 12vw, 170px);
}

.site-footer__wave path {
	fill: var(--green);
}

.pagetop {
	position: absolute;
	top: clamp(20px, 3vw, 40px);
	right: clamp(16px, 3vw, 40px);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-family: var(--font-en);
	font-size: 11px;
	letter-spacing: .16em;
	writing-mode: vertical-rl;
}

.pagetop:hover {
	color: var(--white);
	opacity: .75;
}

.pagetop__line {
	width: 1px;
	height: 44px;
	background: currentColor;
}

.site-footer__inner {
	width: min(100% - var(--gutter) * 2, var(--container));
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(240px, 1fr) 2fr;
	gap: clamp(32px, 5vw, 64px);
	padding-bottom: 48px;
}

.site-footer__address {
	margin-top: 20px;
	font-size: 13px;
	line-height: 2;
	color: rgba(255, 255, 255, .78);
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.fnav__list li {
	margin-bottom: 10px;
}

.fnav__list a {
	font-size: 14px;
	color: rgba(255, 255, 255, .85);
}

.fnav__list a:hover {
	color: var(--white);
	text-decoration: underline;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .16);
	padding: 20px var(--gutter);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px 24px;
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
}

.site-footer__copy,
.site-footer__credit {
	margin: 0;
}

.site-footer__credit a {
	color: rgba(255, 255, 255, .9);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__credit a:hover {
	color: var(--white);
}

/* ---------- 18. Page head (下層ヘッダー) ---------- */
.page-head {
	position: relative;
	height: clamp(240px, 34vw, 420px);
	overflow: hidden;
	background: var(--navy);
}

.page-head__media {
	position: absolute;
	inset: 0;
}

.page-head__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-head__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 42, 99, .38), rgba(30, 42, 99, .52));
}

.page-head__wave {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
}

.page-head__wave--top {
	top: -1px;
	height: clamp(50px, 7vw, 100px);
}

.page-head__wave--bottom {
	bottom: -1px;
	height: clamp(60px, 8vw, 120px);
}

.page-head__title {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	font-size: clamp(24px, 4vw, 42px);
	color: var(--white);
	text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

/* ---------- 19. Breadcrumb ---------- */
.breadcrumb {
	padding: 16px 0 0;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-size: 12px;
	color: var(--ink-sub);
}

.breadcrumb__item + .breadcrumb__item::before {
	content: "／";
	margin-right: 10px;
	color: var(--border);
}

.breadcrumb__item a {
	color: var(--ink-sub);
}

.breadcrumb__item a:hover {
	color: var(--green-dark);
}

/* ---------- 20. Sections (下層共通) ---------- */
.page-sec,
.single-sec,
.news-archive,
.works-archive,
.contact-page,
.service-intro,
.sdgs-intro,
.recruit-lead-sec {
	padding: clamp(48px, 6vw, 84px) 0;
}

.greeting-sec,
.outline-sec,
.license-sec,
.access-sec,
.person-sec,
.education-sec,
.welfare-sec,
.requirements-sec,
.sdgs-list-sec {
	padding: clamp(48px, 6vw, 88px) 0;
}

.outline-sec,
.education-sec,
.sdgs-list-sec {
	background: var(--white);
}

.access-sec,
.welfare-sec {
	background: var(--white);
}

.empty-message {
	padding: 40px 0;
	text-align: center;
	color: var(--ink-sub);
}

/* ---------- 21. News list ---------- */
.news-list {
	border-top: 1px solid var(--border);
}

.news-item {
	border-bottom: 1px solid var(--border);
}

.news-item__link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 8px 24px;
	padding: 24px 8px;
	color: var(--ink);
	transition: background .25s var(--ease);
}

.news-item__link:hover {
	background: var(--white);
	color: var(--ink);
}

.news-item__meta {
	display: flex;
	align-items: center;
	gap: 14px;
}

.news-item__date {
	font-family: var(--font-en);
	font-size: 14px;
	color: var(--ink-sub);
}

.news-item__cat,
.entry__cat {
	display: inline-block;
	padding: 3px 14px;
	border-radius: 999px;
	background: var(--green);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
}

.news-item__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}

.news-item__link:hover .news-item__title {
	color: var(--green-dark);
}

/* ---------- 22. Pagination ---------- */
.pagination {
	margin-top: 48px;
}

.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--white);
	color: var(--navy);
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 600;
	box-shadow: var(--shadow);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--navy);
	color: var(--white);
}

/* ---------- 23. Entry (記事本文) ---------- */
.entry__head {
	padding-bottom: 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--border);
}

.entry__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.entry__date {
	font-family: var(--font-en);
	font-size: 14px;
	color: var(--ink-sub);
}

.entry__title {
	font-size: clamp(20px, 2.8vw, 30px);
	color: var(--navy);
}

.entry__thumb {
	margin-bottom: 32px;
}

.entry__thumb img {
	width: 100%;
	border-radius: var(--radius-m);
}

.entry__body > * + * {
	margin-top: 1.4em;
}

.entry__body h2 {
	margin-top: 2.2em;
	padding: 12px 18px;
	border-radius: var(--radius-s);
	background: var(--navy);
	color: var(--white);
	font-size: clamp(18px, 2.2vw, 22px);
}

.entry__body h3 {
	margin-top: 2em;
	padding-left: 14px;
	border-left: 5px solid var(--green);
	font-size: clamp(17px, 2vw, 20px);
	color: var(--navy);
}

.entry__body h4 {
	margin-top: 1.8em;
	color: var(--navy);
}

.entry__body ul,
.entry__body ol {
	padding-left: 1.4em;
}

.entry__body ul li {
	list-style: disc;
	margin-bottom: .5em;
}

.entry__body ol li {
	list-style: decimal;
	margin-bottom: .5em;
}

.entry__body a {
	color: var(--green-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry__body img {
	border-radius: var(--radius-m);
}

.entry__body blockquote {
	margin: 0;
	padding: 20px 24px;
	border-left: 4px solid var(--green);
	background: var(--white);
	border-radius: 0 var(--radius-s) var(--radius-s) 0;
	color: var(--ink-sub);
}

.entry-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
	font-size: 14px;
}

.entry-nav__next {
	text-align: right;
}

/* ---------- 24. Spec table ---------- */
.spec-table {
	background: var(--white);
	border-radius: var(--radius-m);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
	padding: 18px 24px;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
	font-size: 15px;
	line-height: 1.9;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
	border-bottom: 0;
}

.spec-table th {
	width: 30%;
	background: var(--green-soft);
	color: var(--navy);
	font-weight: 700;
	white-space: nowrap;
}

/* ---------- 25. Works ---------- */
.work-filter {
	margin-bottom: clamp(28px, 3.4vw, 44px);
}

.work-filter__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.work-filter__btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--white);
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
	box-shadow: var(--shadow);
	transition: background .25s var(--ease), color .25s var(--ease);
}

.work-filter__btn:hover,
.work-filter__btn.is-current {
	background: var(--navy);
	color: var(--white);
}

.works-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.6vw, 32px);
}

.work-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--white);
	border-radius: var(--radius-m);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.work-card__link:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.work-card__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.work-card__body {
	padding: 20px 22px 26px;
}

.work-card__title {
	margin-bottom: 12px;
	font-size: 17px;
	color: var(--navy);
}

.work-card__spec div {
	display: flex;
	gap: 10px;
	font-size: 13px;
	line-height: 1.9;
}

.work-card__spec dt {
	flex-shrink: 0;
	width: 3em;
	color: var(--green-dark);
	font-weight: 700;
}

.work-card__spec dd {
	color: var(--ink-sub);
}

/* ---------- 26. About page ---------- */
.greeting-sec__grid {
	display: grid;
	grid-template-columns: 34% 1fr;
	gap: clamp(28px, 4vw, 60px);
	align-items: start;
}

.greeting-sec__photo img {
	width: 100%;
	border-radius: var(--radius-m);
	box-shadow: var(--shadow);
}

.greeting-sec__caption {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}

.greeting-sec__role {
	font-size: 12px;
	color: var(--ink-sub);
	letter-spacing: .1em;
}

.greeting-sec__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
}

.greeting-sec__title {
	margin-bottom: 20px;
	font-size: clamp(20px, 2.6vw, 28px);
	color: var(--navy);
}

.badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.badge-list__item {
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--border);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--navy);
}

.access-sec__map {
	margin-bottom: 32px;
	border-radius: var(--radius-m);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--bg);
}

.access-sec__map iframe {
	display: block;
	width: 100%;
	height: clamp(280px, 40vw, 420px);
	border: 0;
}

.access-sec__placeholder {
	padding: 40px 24px;
	text-align: center;
	font-size: 14px;
	color: var(--ink-sub);
}

/* ---------- 27. Service page ---------- */
.service-intro {
	text-align: center;
}

.service-intro__catch {
	font-size: clamp(20px, 2.8vw, 30px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 16px;
}

.service-intro__lead {
	color: var(--ink-sub);
}

.service-detail {
	padding: clamp(44px, 5.4vw, 80px) 0;
}

.service-detail--alt {
	background: var(--white);
}

.service-detail__grid {
	display: grid;
	grid-template-columns: 46% 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}

.service-detail--alt .service-detail__media {
	order: 2;
}

.service-detail__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--radius-l);
	box-shadow: var(--shadow);
}

.service-detail__en {
	display: block;
	font-family: var(--font-en);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .2em;
	color: var(--green);
}

.service-detail__title {
	margin: 6px 0 18px;
	font-size: clamp(21px, 2.8vw, 30px);
	color: var(--navy);
}

.service-detail__lead {
	font-weight: 700;
	color: var(--navy);
}

.service-detail__text {
	font-size: 15px;
	color: var(--ink-sub);
}

.check-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.check-list__item {
	position: relative;
	padding-left: 32px;
	font-size: 14.5px;
	font-weight: 500;
}

.check-list__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: .45em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--green);
}

.check-list__item::after {
	content: "";
	position: absolute;
	left: 6px;
	top: .75em;
	width: 5px;
	height: 9px;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(45deg);
}

/* ---------- 28. SDGs page ---------- */
.sdgs-intro {
	text-align: center;
}

.sdgs-intro__lead {
	font-size: clamp(16px, 2vw, 19px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 18px;
}

.sdgs-intro__text {
	color: var(--ink-sub);
	font-size: 15px;
}

.sdgs-list {
	display: grid;
	gap: clamp(18px, 2.2vw, 28px);
}

.sdgs-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: clamp(16px, 2.4vw, 32px);
	align-items: start;
	padding: clamp(24px, 3vw, 36px);
	border-radius: var(--radius-m);
	background: var(--bg);
}

.sdgs-card__num {
	font-family: var(--font-en);
	font-size: clamp(34px, 4.6vw, 52px);
	font-weight: 700;
	line-height: 1;
	color: var(--green);
	opacity: .4;
}

.sdgs-card__title {
	margin-bottom: 10px;
	font-size: clamp(17px, 2.2vw, 22px);
	color: var(--navy);
}

.sdgs-card__text {
	font-size: 14.5px;
	color: var(--ink-sub);
}

.sdgs-card__goals {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.sdgs-goal {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-s);
	background: var(--navy);
	color: var(--white);
	font-family: var(--font-en);
	font-size: 15px;
	font-weight: 700;
}

.sdgs-goal--3 { background: #4c9f38; }
.sdgs-goal--4 { background: #c5192d; }
.sdgs-goal--5 { background: #ff3a21; }
.sdgs-goal--7 { background: #fcc30b; color: var(--navy); }
.sdgs-goal--8 { background: #a21942; }
.sdgs-goal--11 { background: #fd9d24; color: var(--navy); }
.sdgs-goal--12 { background: #bf8b2e; }
.sdgs-goal--13 { background: #3f7e44; }
.sdgs-goal--14 { background: #0a97d9; }
.sdgs-goal--17 { background: #19486a; }

.sdgs-note {
	margin-top: 32px;
	font-size: 12.5px;
	color: var(--ink-sub);
	text-align: center;
}

/* ---------- 29. Recruit page ---------- */
.recruit-lead-sec {
	text-align: center;
}

.recruit-lead-sec__catch {
	font-size: clamp(22px, 3.2vw, 34px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 18px;
}

.recruit-lead-sec__text {
	color: var(--ink-sub);
}

.person-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2.4vw, 30px);
}

.person-card {
	padding: clamp(24px, 3vw, 36px);
	border-radius: var(--radius-m);
	background: var(--white);
	box-shadow: var(--shadow);
}

.person-card__title {
	margin-bottom: 12px;
	font-size: 18px;
	color: var(--navy);
	padding-left: 12px;
	border-left: 4px solid var(--green);
}

.person-card__text {
	font-size: 14.5px;
	color: var(--ink-sub);
}

.step-list {
	display: grid;
	gap: 0;
}

.step-item {
	position: relative;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: clamp(16px, 2.4vw, 32px);
	padding: 0 0 40px 0;
}

.step-item::before {
	content: "";
	position: absolute;
	left: 59px;
	top: 34px;
	bottom: 0;
	width: 2px;
	background: var(--border);
}

.step-item:last-child::before {
	display: none;
}

.step-item__num {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 120px;
	height: 34px;
	border-radius: 999px;
	background: var(--green);
	color: var(--white);
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
}

.step-item__title {
	margin-bottom: 8px;
	font-size: 18px;
	color: var(--navy);
}

.step-item__body p {
	font-size: 14.5px;
	color: var(--ink-sub);
}

.welfare-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.welfare-list__item {
	position: relative;
	padding: 16px 20px 16px 46px;
	border-radius: var(--radius-s);
	background: var(--bg);
	font-size: 14.5px;
	font-weight: 500;
}

.welfare-list__item::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-radius: 50%;
	background: var(--green);
}

.requirements-sec__action {
	margin-top: 40px;
	text-align: center;
}

/* ---------- 30. Contact page / CF7 ---------- */
.contact-page__lead {
	text-align: center;
	margin-bottom: 32px;
}

.contact-page__tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 28px;
	margin-bottom: 40px;
	border-radius: var(--radius-m);
	background: var(--white);
	box-shadow: var(--shadow);
}

.contact-page__tel-note {
	margin: 0;
	font-size: 13px;
	color: var(--ink-sub);
}

.contact-page__privacy {
	margin-top: 28px;
	text-align: center;
	font-size: 13px;
	color: var(--ink-sub);
}

.contact-page__privacy a {
	color: var(--green-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.notice-box {
	padding: 24px;
	border-radius: var(--radius-m);
	background: var(--cream);
	font-size: 14px;
}

.kw-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.kw-form {
	padding: clamp(24px, 3.4vw, 44px);
	border-radius: var(--radius-m);
	background: var(--white);
	box-shadow: var(--shadow);
}

.kw-form .form-row {
	margin-bottom: 24px;
}

.kw-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.kw-form .req,
.kw-form .any {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	vertical-align: 2px;
}

.kw-form .req {
	background: var(--green);
	color: var(--white);
}

.kw-form .any {
	background: var(--border);
	color: var(--ink-sub);
}

.kw-form input[type="text"],
.kw-form input[type="email"],
.kw-form input[type="tel"],
.kw-form input[type="url"],
.kw-form select,
.kw-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-s);
	background: var(--bg);
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	transition: border-color .25s var(--ease), background .25s var(--ease);
}

.kw-form input:focus,
.kw-form select:focus,
.kw-form textarea:focus {
	border-color: var(--green);
	background: var(--white);
}

.kw-form textarea {
	min-height: 200px;
	resize: vertical;
}

.kw-form .form-privacy {
	padding: 20px;
	border-radius: var(--radius-s);
	background: var(--bg);
	font-size: 13.5px;
}

.kw-form .wpcf7-list-item {
	margin: 0;
}

.kw-form .form-submit {
	text-align: center;
	margin-top: 32px;
}

.kw-form input[type="submit"] {
	min-width: 280px;
	padding: 18px 32px;
	border: 0;
	border-radius: 999px;
	background: var(--navy);
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	cursor: pointer;
	transition: background .25s var(--ease), transform .25s var(--ease);
}

.kw-form input[type="submit"]:hover {
	background: var(--green);
	transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12.5px;
	color: #c5192d;
}

.wpcf7-response-output {
	margin: 24px 0 0 !important;
	padding: 16px 20px !important;
	border-radius: var(--radius-s);
	border-width: 2px !important;
	font-size: 14px;
}

/* ---------- 31. Search form / 404 ---------- */
.searchform {
	margin-top: 32px;
}

.searchform__label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
}

.searchform__row {
	display: flex;
	gap: 8px;
}

.searchform__input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-s);
	background: var(--white);
	font: inherit;
}

.searchform__submit {
	padding: 12px 24px;
	border-radius: var(--radius-s);
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
}

.search-summary {
	margin-bottom: 24px;
	font-size: 14px;
	color: var(--ink-sub);
}

.notfound {
	text-align: center;
	padding: clamp(32px, 5vw, 64px) 0;
}

.notfound__code {
	font-family: var(--font-en);
	font-size: clamp(64px, 12vw, 120px);
	font-weight: 700;
	line-height: 1;
	color: var(--green);
	opacity: .35;
	margin: 0;
}

.notfound__title {
	margin: 8px 0 20px;
	font-size: clamp(20px, 2.6vw, 26px);
	color: var(--navy);
}

.notfound__text {
	margin-bottom: 32px;
	color: var(--ink-sub);
}

/* ---------- 32. Widget ---------- */
.widget {
	margin-bottom: 32px;
}

.widget__title {
	margin-bottom: 12px;
	font-size: 16px;
	color: var(--navy);
	padding-left: 12px;
	border-left: 4px solid var(--green);
}

/* ---------- 33. Reveal animation ---------- */
.js-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- 34. Responsive ---------- */
@media (max-width: 1280px) {
	.site-header__inner {
		align-items: center;
	}

	.gnav {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.site-header__utility {
		gap: 12px;
	}

	.cta-buttons--sm .cta-btn span:not(.cta-btn__line-mark) {
		display: none;
	}

	.cta-buttons--sm .cta-btn {
		padding: 12px;
	}
}

@media (max-width: 1024px) {
	.feature-list,
	.service-list,
	.works-list,
	.person-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.site-header__utility .tel-block {
		display: none;
	}

	.about-sec__grid,
	.greeting-sec__grid,
	.service-detail__grid,
	.equipment-row,
	.sdgs-banner__inner {
		grid-template-columns: 1fr;
	}

	.service-detail--alt .service-detail__media,
	.equipment-row--reverse .equipment-row__media {
		order: 0;
	}

	.about-sec__media {
		padding-bottom: 48px;
	}

	.about-sec__photo--sub {
		width: 40%;
		right: 0;
	}

	.hero__catch {
		writing-mode: horizontal-tb;
		text-align: left;
	}

	.hero__copy {
		top: auto;
		bottom: clamp(150px, 26vw, 220px);
		transform: none;
	}

	.hero__news {
		bottom: clamp(70px, 14vw, 110px);
	}
}

@media (max-width: 767px) {
	body {
		font-size: 15px;
	}

	html {
		scroll-padding-top: 90px;
	}

	.feature-list,
	.service-list,
	.works-list,
	.person-list,
	.welfare-list,
	.site-footer__nav {
		grid-template-columns: 1fr;
	}

	.news-item__link {
		grid-template-columns: 1fr auto;
	}

	.news-item__meta {
		grid-column: 1 / -1;
	}

	.spec-table,
	.spec-table tbody,
	.spec-table tr,
	.spec-table th,
	.spec-table td {
		display: block;
		width: 100%;
	}

	.spec-table th {
		border-bottom: 0;
		padding-bottom: 8px;
	}

	.spec-table td {
		padding-top: 12px;
	}

	.entry-nav {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.entry-nav__next {
		text-align: center;
	}

	.step-item {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.step-item::before {
		display: none;
	}

	.sdgs-card {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.btn {
		min-width: min(100%, 280px);
	}

	.cta-buttons--md {
		flex-direction: column;
		width: min(100%, 320px);
	}

	.cta-buttons--md .cta-btn {
		justify-content: center;
	}

	.pagetop {
		top: 16px;
		right: 12px;
	}
}

/* ---------- 35. Motion / Print ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}

	.js-reveal {
		opacity: 1;
		transform: none;
	}
}

@media print {
	.site-header,
	.drawer,
	.pagetop,
	.contact-sec,
	.hamburger {
		display: none !important;
	}

	body {
		background: #fff;
	}
}
