/* style.css */
@charset "utf-8";

:root {
	--main: #01403b;
	--main-light: #027b71;
	--sub: #93d0e2;
	--sub-dark: #66b2c9;
	--sub-light: #b9ecff;
	--accent: #ad926a;
	--white: #fff;
	--black: #232323;
	--glay: #5f5f5f;
	--silver: #d5d5d5;

	--en-font: 'Girassol', serif;
	--jp-font: 'Noto Serif JP', serif;
	--awesome: 'Font Awesome 6 Free';

	--xsmall: 1rem;
	--small: clamp(1.2rem, calc((100vw - 768px) * 0.002 + 1.2rem), 1.4rem);
	--normal: clamp(1.4rem, calc((100vw - 600px) * 0.003 + 1.4rem), 1.6rem);
	--large: clamp(1.6rem, calc((100vw - 768px) * 0.002 + 1.6rem), 1.8rem);
	--xlarge: clamp(1.8rem, calc((100vw - 768px) * 0.005 + 1.8rem), 2.4rem);
	--xxlarge: clamp(2rem, calc((100vw - 768px) * 0.007 + 2rem), 2.8rem);
}

body,
html {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', sans-serif;
	/* font-family: 'Helvetica Neue', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, sans-serif; */
	font-weight: 400;
	font-size: clamp(1.4rem, calc((100vw - 600px) * 0.003 + 1.4rem), 1.6rem);
	color: var(--black);

	font-optical-sizing: auto;
	line-height: 1.7;
	overflow-x: hidden;
	position: relative;
	background: var(--white);
}

body#home {
	background-color: var(--main);
	color: var(--white);
	position: relative;
}
body#home::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 33%;
	max-width: 600px;
	height: 100%;
	background: url('./img/bg-noise-right.png') repeat-y;
	background-size: 100% auto;
	opacity: 0.3; /* 透明度で強さ調整 */
	pointer-events: none; /* クリックに干渉しない */
	z-index: -1;
}

a {
	color: var(--dark); /* 明示的に宣言 */
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: var(--main);
}
.loader::before {
	content: '';
	display: grid;
	place-items: center;
	/* background-image: url(./img/emblem/emblem-black.svg); */
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50% auto;
	width: 100%;
	height: 100%;
	position: absolute;
}
@media screen and (min-width: 768px) {
	.loader::before {
		background-size: 25% auto;
		width: 100%;
		height: 100%;
	}
}

/* ↓サブメニューベース設定 */
.submenu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
.submenu li {
	display: flex;
	justify-content: space-between;
	flex: 0 1 calc((100% - 1em * 1) / 2);
}
.submenu a {
	color: var(--white);
	text-decoration: none;
	font-weight: 400;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	transition: all 0.3s;
}
.submenu a::after {
	font-family: 'Material Symbols Outlined';
	content: 'chevron_right';
	color: inherit;
	font-weight: 200;
	font-style: normal;
	font-size: 1.2em;
	display: inline-block;
	vertical-align: middle;
}
.submenu a:hover {
	color: var(--accent);
}
/* ↑サブメニューベース設定 */

.submenu__title {
}
.submenu__title::before {
	font-weight: 700;
}

/* Googleマップ汎用ボックス----------------- */
.gmap {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}
.gmap iframe {
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px) {
	.gmap {
		width: 100%;
		height: 500px;
	}
	.gmap iframe {
		width: 100%;
		height: 100%;
	}
}
/* アクセスページ用 */
.access-map iframe {
	width: 100%;
	height: 400px;
	border: 0;
}
/* youtubeマップ汎用ボックス----------------- */
.youtube {
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

/* ------------------------------------------------------------- */
/* aos設定------------------------------------------------- */
/* ------------------------------------------------------------- */
[data-aos='fade-left'] {
	transform: translate3d(30px, 0, 0);
}
[data-aos='fade-right'] {
	transform: translate3d(-30px, 0, 0);
}
/* ------------------------------------------------------------- */
/* コンテナ設定------------------------------------------------- */
/* ------------------------------------------------------------- */

/* .l-sectionでは横幅100%で左右のパディングのみ設定 */
.l-section {
	position: relative;
	margin: 0 auto;
	padding-top: min(15.4vw, 80px); /*縦方向*/
	padding-bottom: min(15.4vw, 80px); /*縦方向*/
	overflow: hidden;
}
.l-container {
	width: auto;
	margin: 0 auto;
	padding-left: 14px; /*横方向 */
	padding-right: 14px; /*横方向 */
	position: relative;
}
.l-container--fill {
	width: auto;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-inline: 0;
}
.stack-lg > * + * {
	/* margin-block-start: min(15.4vw, 120px); */
	margin-block-start: 120px;
}
.stack-md > * + * {
	margin-block-start: 80px;
}
.flow > * + * {
	margin-block-start: 3em;
}
.fill {
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
	/* .l-sectionでは左右のパディングのみ設定 */
	.l-section {
		padding-top: 120px; /*横方向 */
		padding-bottom: 120px; /*横方向 */
	}
}
@media screen and (min-width: 960px) {
	/* .l-sectionでは左右のパディングのみ設定 */
	.l-section {
		padding-top: 120px; /*横方向 */
		padding-bottom: 120px; /*横方向 */
	}
	.l-container {
		max-width: 1300px;
		width: auto;
		padding-left: min(8.3vw, 100px); /*横方向 */
		padding-right: min(8.3vw, 100px); /*横方向 */
	}
	.l-container--fill {
		width: auto;
		max-width: none;
		margin-left: calc(50% - 50vw + 8px);
		margin-right: calc(50% - 50vw + 8px);
		padding-inline: 0;
	}
}

/* ----------------背景色設定---------------- */
.is-bg--white {
	background: var(--white);
}
.is-bg--green {
	background: var(--main);
}

/* ----------------コンテンツヘッダー設定---------------- */
.content-header {
	background-color: var(--black);
	width: 100%;
	height: 125px;
	margin-top: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.content-header::before {
	content: '';
	background-image: url(./img/hero1.webp);
	background-size: cover;
	background-position: center;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.8;
}
.about .content-header::before {
	background-image: url(./img/hero/pc/hero-07@2560w.webp);
}
.education .content-header::before {
	background-image: url(./img/hero/pc/hero-39@2560w.webp);
}
.ssh .content-header::before {
	background-image: url(./img/hero/pc/hero-29@2560w.webp);
}
.school-life .content-header::before {
	background-image: url(./img/hero/pc/hero-23@2560w.webp);
}
.uniform .content-header::before {
	background-image: url(./img/hero/pc/uniform-23@2560w.webp);
}
.future .content-header::before {
	background-image: url(./img/hero/pc/hero-04@2560w.webp);
}
.student .content-header::before {
	background-image: url(./img/hero/pc/hero-17@2560w.webp);
}
.health-room .content-header::before {
	background-image: url(./img/facility/facility-08@2560w.webp);
}
.graduates .content-header::before {
	background-image: url(./img/hero/pc/hero-07@2560w.webp);
}
.content-header__title {
	font-size: clamp(1.6rem, calc((100vw - 768px) * 0.014 + 1.6rem), 3.2rem);
	text-align: center;
	position: relative;
	color: var(--main-light);
}
.content-header__title::before {
	content: attr(data-en) '';
	font-family: var(--en-font);
	text-transform: uppercase;
	font-size: 1.5em;
	line-height: 1;
	display: block;
}
.content-header__title::after {
	content: '';
	display: block;
	margin-inline: auto;
	background: var(--main);
	border-radius: 0;
	width: 100px;
	height: 8px;
	margin-top: 2px;
}
@media screen and (min-width: 768px) {
	.content-header {
		width: 100%;
		height: 280px;
		margin-top: 56px;
	}
}
/* ----------------見出し設定---------------- */

.content-title {
	position: relative;
	font-weight: 500;
	font-size: clamp(1.5rem, calc((100vw - 768px) * 0.003 + 1.5rem), 1.8rem);
	color: var(--text);
	letter-spacing: 0.07em;
	line-height: 1;
	padding-left: clamp(32px, calc((100vw - 768px) * 0.139 + 32px), 48px);
	padding-block: 1em 1.5em;

	margin-block: 0 5em;
}
.is-nomargin {
	margin-block: 0;
}
.content-title::before {
	content: attr(data-en) '';
	font-weight: normal;
	font-family: var(--en-font);
	text-transform: capitalize;
	font-size: clamp(4rem, calc((100vw - 390px) * 0.159 + 4rem), 10rem);
	letter-spacing: 0;
	line-height: 1;
	display: block;
	margin-bottom: 6px;
}
.content-title::after {
	content: '';
	display: block;
	background: var(--main);
	width: clamp(16px, calc((100vw - 768px) * 0.069 + 16px), 24px);
	height: 100%;
	border-radius: 30px 30px 0 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.content-title.is-red {
	color: var(--white);
}
.content-title.is-red::after {
	background: var(--accent);
}

.menu-title {
	position: relative;
	font-weight: 500;
	font-size: 1.2rem;
	color: var(--white);
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 0 0 0.5em 16px;
	margin-bottom: 1.5em;
}

.menu-title::before {
	content: attr(data-en) '';
	font-weight: normal;
	font-family: var(--en-font);
	text-transform: uppercase;
	font-size: 4rem;
	letter-spacing: 0;
	line-height: 1.5;
	display: block;
	margin-bottom: 6px;
}
.menu-title::after {
	content: '';
	display: block;
	background: var(--main);
	width: 8px;
	height: 100%;
	border-radius: 30px 30px 0 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}

.heading-lg-en {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(3, auto);
	color: black;
	text-align: center;
	margin-block-end: 0.3em;
}
.heading-lg-en::before {
	content: attr(data-en) '';
	font-weight: normal;
	font-family: var(--en-font);
	text-transform: capitalize;
	font-size: clamp(4rem, calc((100vw - 768px) * 0.017 + 4rem), 6rem);
	letter-spacing: 0;
	line-height: 1;
	grid-row: 1 / 2;
}
.heading-lg-en::after {
	content: '=';
	color: var(--accent);
	font-weight: normal;
	font-family: var(--en-font);
	text-transform: capitalize;
	font-size: clamp(4rem, calc((100vw - 768px) * 0.017 + 4rem), 6rem);
	letter-spacing: 0;
	line-height: 1;
	grid-row: 2 / 3;
}

.heading-lg {
	font-weight: 500;
	font-size: clamp(1.9rem, calc((100vw - 390px) * 0.013 + 1.9rem), 2.4rem);
	position: relative;
	background: var(--main);
	border-bottom: 2px solid var(--accent);
	color: var(--white);
	padding: 0.3em 1em;
	margin-block-end: 0.3em;
}

.heading-col {
	font-weight: 500;
	font-size: clamp(1.9rem, calc((100vw - 390px) * 0.013 + 1.9rem), 2.4rem);
	position: relative;
	color: var(--text);
	padding: 0 1em;
	padding-left: clamp(14px, calc((100vw - 768px) * 0.087 + 14px), 24px);
	margin-block-end: 0.3em;
}
.heading-col::before {
	content: '';
	display: block;
	width: 5px;
	height: 100%;
	background: linear-gradient(0deg, var(--main) 50%, var(--accent) 50%);
	position: absolute;
	top: 0;
	left: 0;
}

.heading-md {
	font-weight: 500;
	font-size: clamp(1.9rem, calc((100vw - 390px) * 0.013 + 1.9rem), 2.4rem);
	position: relative;
	color: var(--main);
	margin-block-end: 0.3em;
	padding-block-end: 1em;
}
.heading-md::before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--main) 10%, var(--accent) 10%);
	position: absolute;
	bottom: 0;
	left: 0;
}
.heading-sm {
	font-weight: 500;
	font-size: clamp(1.6rem, calc((100vw - 768px) * 0.003 + 1.6rem), 2rem);
	position: relative;
	border-bottom: 1px solid;
	padding-bottom: 1em;
	margin-block-end: 0.3em;
	color: var(--main-light);
}

.heading-ssh {
	display: grid;
	grid-template-areas:
		'en ttl'
		'num ttl';
	grid-template-columns: 6.5rem auto;
	grid-template-rows: 1fr 1fr;
	column-gap: 16px;
	align-items: center;
}
.heading-ssh.is-glhs {
	grid-template-rows: 1fr 1.25fr;
}
.heading-ssh .ttl {
	position: relative;
	font-family: var(--jp-font);
	line-height: 1;
	font-weight: 600;
	font-size: clamp(5rem, calc((100vw - 390px) * 0.132 + 5rem), 10rem);
	grid-area: ttl;
}
.heading-ssh .ttl span {
	display: inline-block;
}
.heading-ssh.is-small-font .ttl {
	line-height: 1.3;
	font-size: clamp(4rem, calc((100vw - 390px) * 0.053 + 4rem), 6rem);
}
.heading-ssh .en {
	font-family: var(--en-font);
	color: var(--accent);
	line-height: 1;
	font-size: 4rem;
	grid-area: en;
	align-self: end;
	text-align: center;
}
.heading-ssh.is-glhs .en {
	font-size: 3rem;
}
.heading-ssh .num {
	font-family: var(--en-font);
	color: var(--main-light);
	line-height: 1;
	font-size: 6rem;
	grid-area: num;
	align-self: start;
	text-align: center;
}

/* ------------------------------------------------------------- */
/* リードエリアスタイル----------------------------------------- */
/* ------------------------------------------------------------- */

.lead-area {
	margin: 80px auto 80px;
	width: auto;
	max-width: 60ch;
	text-align: left;
	line-height: 2.3;
}
.lead-area__ttl {
	font-size: 6rem;
	line-height: 1.7;
	font-weight: 500;
	text-align: left;
	color: var(--main-light);
	font-family: var(--jp-font);
}
.lead-area span {
	display: inline;
}
.lead-area p {
	margin: 2em 0 1em;
	font-weight: 500;
	font-size: clamp(1.6rem, calc((100vw - 600px) * 0.006 + 1.6rem), 2.4rem);
	text-align: left;
}
.lead-area p:first-child {
	margin-top: 0;
}
.lead-area figure {
	margin-left: -5%;
	margin-right: -5%;
}
.lead-area img {
	aspect-ratio: 2 / 1;
	object-fit: cover;
	object-position: center;
}

@media screen and (min-width: 768px) {
	.lead-area {
		width: fit-content;
		max-width: 1100px;
		text-align: center;
	}
	.lead-area__ttl {
		text-align: center;
	}
	.lead-area p {
		text-align: center;
	}
	.lead-area span {
		display: inline-block;
	}
}

/* ------------------------------------------------------------- */
/* ボタンライブラリ--------------------------------------------- */
/* ------------------------------------------------------------- */

.btns {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: flex-start;
	container-type: inline-size;
}
.btn {
	display: block;
	width: 100%;
	max-width: calc((100% - 20px * 2) / 3);
	min-height: 60px;
	text-align: center;
	font-weight: normal;
	position: relative;
	transition: 0.2s;
	color: var(--accent);
	background-color: var(--white);
	/* border: 1px solid var(--accent); */
}
@container (max-width: 600px) {
	.btn {
		max-width: none;
	}
}
.btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	padding: 1.2em 1em;
}
.btn:hover {
	color: var(--white);
	background-color: var(--accent);
}
.btn.--with-border {
	border: 1px solid var(--accent);
}

.btn--ghost {
	border: 1px solid #fff;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
	transition: 0.3s;
}
.btn--ghost:hover {
	background-color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
}
.btn--ghost:visited {
	color: #fff;
}
.btn--reverse {
	color: var(--white);
	background-color: var(--accent);
	border: 1px solid var(--accent);
}
.btn--reverse:hover {
	color: var(--accent);
	background-color: var(--white);
	border: 1px solid var(--accent);
}
.btn--large {
	max-width: none;
	height: 80px;
}
.btn--round {
	border-radius: 100px;
}

.btn.--add-right-arrow::after {
	content: '\f138';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	display: inline-block;
	position: absolute;
	right: 14px;
	transform: translateY(2px);
	transition: 0.3s;
}

.btn.--add-left-arrow::after {
	content: '\f137';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	display: inline-block;
	position: absolute;
	left: 14px;
	transform: translateY(2px);
	transition: 0.3s;
}

.btn--ssh {
	background-image: linear-gradient(to right, #00477a, #21b79c);
	color: #fff;
	border-radius: 999px;
	border: none !important;
	transition: 0.3s;
}
.btn--ssh:hover {
	opacity: 0.7;
}
.btn--ssh a {
	color: #fff !important;
}

/* ここから “本文モード”（長文用ラッパー） */
.richtext h2 {
	margin-block: 2em 0.6em;
}
.richtext h3 {
	margin-block: 1.6em 0.5em;
}
.richtext h4 {
	margin-block: 1.2em 0.4em;
}
.richtext :where(h2, h3, h4):first-child {
	margin-block-start: 0;
}
/* リセット（特異性 0,1,0 に落ちる） */
.richtext :where(p, ul, ol, figure) {
	margin: 0;
}
.richtext > * + * {
	margin-block-start: 2em;
} /* で、段落リズムを統一 */

.richtext ul {
	padding-inline-start: 1.2em;
}
.richtext li + li {
	margin-block-start: 0.4em;
}

/* その他・詳細テーブル */
.label-box {
	border: 1px solid var(--main-light);
	border-radius: 12px;
	padding: 40px 20px 40px;
	position: relative;
	margin-top: 80px;
}

.label-box__tag {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--main-light);
	padding: 8px 24px;
	border-radius: 999px;
	color: #fff;
	font-size: 1em;
	white-space: nowrap;
}

.label-box__body {
	margin-top: 20px;
}

/* 汎用テーブル設定--------------------------------------- */
.table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.defalt-table {
	width: 100%;
}
.defalt-table th {
	text-align: center;
	vertical-align: middle;
	background-color: #f5f5f5;
	font-weight: 500;
}
.defalt-table td {
	vertical-align: middle;
}
.defalt-table th,
.defalt-table td {
	border: 1px solid #ccc;
	padding: 1em 1.5em;
	padding: 0.5em 1em;
}
.defalt-table thead th:first-child,
.defalt-table tbody th:first-child {
	width: 30%;
}

/* 汎用データテーブル--------------------------------------- */
.dl-info {
	display: flex;
	flex-direction: column;
}
.dl-info > div {
	display: flex;
	padding: 24px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.dl-info dt {
	flex: 1;
	width: max-content;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.5);
}
.dl-info dd {
	flex: 3;
	font-weight: 500;
}

/* ---------------------------写真ブロック--------------------------- */
.eyecatch-block {
	position: relative;
	background: url(./img/hero/pc/hero-27@2560w.webp) center/cover no-repeat;
	height: 50vh;
	min-height: 320px;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	padding-inline: calc(50vw - 50%);
	display: flex;
	align-items: center; /* 上に文字が乗るなら中央揃え */
	color: #fff; /* 背景が暗い場合 */
}
.eyecatch-block::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(1, 64, 59, 0.4);
	z-index: 1;
}
.eyecatch-block__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding-inline: 20px;
	height: 100%;
}

@media screen and (min-width: 768px) {
	.eyecatch-block {
		height: 55vh;
		min-height: 480px;
		max-height: 720px;
	}
	.eyecatch-block.is-large {
		height: 100vh;
		max-height: 1440px;
	}
}

/* 一覧グリッド--------------------------------- */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

/* スマホ専用設定 */
.card-grid[data-cols-sp='2'] {
	grid-template-columns: repeat(2, 1fr);
}

/* PC以降（768px〜）の設定 */
@media screen and (min-width: 768px) {
	.card-grid {
		gap: 40px;
	}
	.card-grid[data-cols-pc='2'] {
		grid-template-columns: repeat(2, 1fr);
	}
	.card-grid[data-cols-pc='3'] {
		grid-template-columns: repeat(3, 1fr);
	}
	.card-grid[data-cols-pc='4'] {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* カードデザイン--------------------------------- */
.card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.card__image {
}
.card__image img {
	object-fit: cover;
	aspect-ratio: 3 / 2;
	width: 100%;
	height: 100%;
}
.card__ttl {
	font-weight: 600;
	margin-block: 0.5em 0.3em;
}
.card__ttl::before {
	content: attr(data-en);
	text-transform: capitalize;
	display: block;
	line-height: 1;
	font-size: 0.75em;
	font-family: var(--en-font);
}
.card__desc {
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 0.5em;
}
.card__dl {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
}
.card__dl > li {
	flex: 100%;
}
.card__dl > li a {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	background: var(--main-light);
	color: #fff;
	font-size: clamp(1.2rem, calc((100vw - 390px) * 0.003 + 1.2rem), 1.3rem);
	text-decoration: none;
	border-radius: 8px;
	padding-inline: 12px;
	padding-block: 8px;
	transition: 0.3s;
}
.card__dl > li a[href$='.pdf'] {
	/* 好きなスタイル */
	background: var(--main-light);
}

/* DOC / DOCX へのリンク */
.card__dl > li a[href$='.doc'],
.card__dl > li a[href$='.docm'],
.card__dl > li a[href$='.docx'] {
	/* 好きなスタイル */
	background: var(--main-light);
}
.card__dl > li a::after {
	content: 'download';
	font-family: 'Material Symbols Outlined';
}
.card__dl > li a:hover {
	opacity: 0.7;
}

/* 公開資料（ダウンロードテーブル) */

.dl-list {
	list-style: circle;
	padding-left: 1em;
}
.dl-list li + li {
	margin-top: 0.2em;
}
.dl-list li a::after {
	content: 'download';
	font-family: 'Material Symbols Outlined';
}

.text-list {
	font-size: 1em;
	text-indent: -1em;
	padding-left: 1em;
}
.text-list li + li {
	margin-top: 0.5em;
}

.child-news {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}
.child-news .news__item {
	flex: 100%;
	display: flex;
	flex-direction: column;
}
.child-news .news__item a {
	color: var(--main);
}
.child-news .news__cate {
	display: none;
}
.child-news .news__date {
	font-weight: 600;
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	.child-news {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.4em;
	}
	.child-news .news__item {
		flex: 100%;
		display: flex;
		flex-direction: row;
		gap: 16px;
	}
}

/* シンプルフェード設定--------------------------------- */
.swiper-fade {
}
.swiper-fade .swiper-wrapper {
}
.swiper-fade .swiper-slide {
	text-align: center;
}
.swiper-fade .swiper-slide figure {
	display: block;
	place-items: center;
	width: 100%;
	margin: 0;
}
.swiper-fade img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
} /* 下の隙間防止＆横幅フィット */
.swiper-fade figcaption {
	margin-top: 0.5rem;
	font-size: 0.9em;
}

/* スマホ（Swiper時）は特に指定なくてもOK。必要なら高さなど */
.js-carousel .swiper-slide img {
	width: 100%;
	height: auto;
	display: block;
}

/* PCはグリッドに切り替え（Swiperは破棄される前提） */
@media (min-width: 768px) {
	.js-carousel .swiper {
		overflow: visible;
	}
	.js-carousel .swiper-pagination {
		display: none;
	}

	.js-carousel .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr)); /* 列数は好みで */
		gap: 16px;
	}

	.js-carousel .swiper-slide {
		width: auto;
	} /* 念のため */
}

.double-swiper img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.text-deco__left {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14vw;
	white-space: nowrap;
	line-height: 1;
	color: var(--accent);
	font-family: var(--jp-font);
	rotate: 90deg;
	translate: -10px -50%;
	transform-origin: left top;
	margin: 0;
	z-index: -1;
}
.text-deco__right {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 14vw;
	white-space: nowrap;
	line-height: 1;
	color: var(--accent);
	font-family: var(--jp-font);
	rotate: -90deg;
	translate: 10px -50%;
	transform-origin: right top;
	margin: 0;
	z-index: -1;
}

/* --------------------------------------------------- */
/* 学校案内---------------------------------------- */
/* --------------------------------------------------- */
.motto {
	font-size: 5rem;
	font-family: var(--jp-font);
}
.motto span {
	display: block;
	text-align: center;
}
@media screen and (min-width: 900px) {
	.motto {
		font-size: 8rem;
	}
}
/* 沿革テーブル */
.history-line {
	display: flex;
	flex-direction: column;
}

.history-line dt {
	color: var(--accent);
	font-weight: 500;
	font-size: 0.9em;
}
.history-line dd {
	font-weight: 400;
}
.history-line dd + dt {
	margin-top: 0.3em;
}
.relative {
	position: relative;
	/* border: 1px solid blue; */
}
.flag {
	position: absolute;
	width: 40%;
	max-width: 400px;
	right: 0;
	top: 0;
	margin-right: calc(50% - 50vw);
	opacity: 0.6;
	z-index: -1;
	transform: translateY(-35%);
}
.emblem {
	display: grid;
	grid-template-columns: 1fr;
	margin-inline: auto;
	gap: 80px;
	width: 72%;
}
.emblem-item {
	display: grid;
	grid-template-rows: 2fr 1fr;
	align-items: center;
	gap: 20px;
}
.emblem-item figcaption {
	font-size: 0.9em;
}
.symbol__img {
	display: block;
	width: 70%;
	margin-inline: auto;
}
@media screen and (min-width: 768px) {
	.emblem {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 120px;
	}
	.symbol {
		padding-inline: 100px;
	}
	.symbol__img {
		display: block;
		width: 100%;
		margin-inline: auto;
	}
}
.song__wrapper {
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.song-item {
	min-width: 0;
	flex: 1;
}
.song {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.song__lyrics {
	font-style: italic;
	font-size: 1em;
	text-align: center;
	line-height: 2;
}
.emblem-info {
	margin-top: 16px;
	padding-inline: 1em;
}
@media (min-width: 768px) {
	.song__wrapper {
		display: flex;
		flex-direction: row;
		gap: 40px;
		justify-content: center;
		width: 70%;
		margin-inline: auto;
	}
}

/* 校長挨拶------------------------------------------- */
.principal-img {
	width: 50%;
}
@media screen and (min-width: 768px) {
	.principal-img {
		width: 100%;
	}
}

/* スクールポリシー---------------------------- */
.policy-list {
	color: var(--main);
	font-size: 1em;
	font-weight: 600;
	text-indent: -1em;
	padding-left: 1em;
}
.policy-list li + li {
	margin-top: 1em;
}

/* カリキュラム------------------------------ */
.scroll_aria {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	/* white-space: nowrap; */
}
.curriculum_scroll {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 520px) {
	.curriculum_scroll {
		display: none;
	}
}
.scroll_aria::-webkit-scrollbar {
	height: 5px;
}
.scroll_aria::-webkit-scrollbar-track {
	background: #ccc;
}
.scroll_aria::-webkit-scrollbar-thumb {
	background: var(--accent);
}
.curriculum {
	font-size: 0.8em;
	margin-right: 3px;
	margin-bottom: 3px;
	table-layout: fixed;
	box-sizing: border-box;
	white-space: nowrap;
}
.curriculum tr {
	border-bottom: 1px solid #fff;
}
.curriculum th {
	background: var(--accent);
	border: 1px solid #766448;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}
.curriculum td {
	border: 1px solid #555;
	text-align: center;
	vertical-align: middle;
	padding: 1em 1em;
	line-height: 1.5;
	background: #eee;
}
.curriculum thead th {
	padding: 1em 0.5em;
}
.curriculum tbody td {
	padding: 2em 0.5em;
	color: #333;
}
.curriculum_cap {
	padding: 10px 16px;
	margin-top: 6px;
	background: #fff;
}
.curriculum_cap h3 {
	font-size: 1em;
	font-weight: 500;
	padding: 6px 0 2px;
	margin-bottom: 3px;
	border-bottom: 1px solid silver;
}
.curriculum_cap h3::before {
	content: '●';
	color: #5ddbbc;
	margin-right: 0.3em;
}
.curriculum_cap p {
	font-size: 0.8em;
	line-height: 1.5;
}
@media screen and (min-width: 520px) {
	.curriculum {
		width: 100%;
		white-space: normal;
	}
	.curriculum thead th {
		padding: 1em 0;
	}
	.curriculum tbody th,
	.curriculum tbody td {
		padding: 1.5em 0;
	}
}
.scroll_aria figcaption {
	font-size: 0.8em;
}

/* 円グラフ */
.chart__data {
	width: 100%;
}
.chart {
	width: 100%;
	height: auto; /* 高さは自動調整 */
	aspect-ratio: 1; /* 幅と高さの比率を指定 */
}
.chart__desc {
	font-size: clamp(1.7rem, calc((100vw - 768px) * 0.003 + 1.7rem), 2.1rem);
	line-height: 2.3;
}

/* GLHS-------------------------------------------------------- */
.glhs-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 12px;
}
.glhs-list > li {
	text-align: center;
}
.glhs-list > li span {
	font-size: 0.8em;
	display: block;
	color: var(--main-light);
}
@media screen and (min-width: 768px) {
	.glhs-list {
		grid-template-columns: repeat(5, 1fr);
	}
}
.to-world-rogo {
	position: absolute;
	width: 70%;
	max-width: 300px;
	top: 15%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
	filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
}
.c-circle {
	width: 90%;
	max-width: 500px;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.c-circle img {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 768px) {
	.to-world-rogo {
		position: absolute;
		width: 50%;
		max-width: 400px;
		top: 25%;
		left: auto;
		right: 0%;
		transform: translate(0%, -50%);
		-webkit-filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
		filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
	}
	.c-circle {
		width: 70%;
		max-width: 780px;

		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(-60px, -50%);
	}
	.c-circle img {
		width: 100%;
		height: auto;
	}
}

/* 進路実績一覧 */
.shinro-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.shinro-list li {
	display: inline-block;
	font-size: 0.9em;
	padding: 0.4em;
	border-bottom: 1px solid silver;
}
.shinro-list li::before {
	content: '■';
	content: none;
	margin-right: 0.3em;
}
@media screen and (min-width: 768px) {
	.shinro-list {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}
}
.shinro-list > li span:nth-child(1)::before {
}
.shinro-list > li span:nth-child(2) {
	/* margin-left: 0.5em; */
	opacity: 0.8; /* トーン抑えて視覚的階層をつけても◎ */
	font-size: 0.95em; /* 少しだけ小さくして“注釈感”出すのもあり */
}

/* ---------------------------------------- */
/* 制服紹介------------------------------ */
/* ---------------------------------------- */
.heading-uniform {
}
.heading-uniform::before {
	content: attr(data-en);
	font-family: var(--en-font);
	text-transform: capitalize;
	font-size: 7.5rem;
	display: block;
	line-height: 1.1;
}
.uniform-info {
}
.uniform-info__text {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 40px;
}
.unifrom-info__desc {
	line-height: 2.3;
}
.uniform-info__img-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	position: relative;
}
.uniform-info__item {
	width: 70%;
	position: relative;
	background-color: #f4f4f4;
	padding: 8px 16px 32px 12px;
	box-shadow: 20px 40px 40px rgba(0, 0, 0, 0.1);
	aspect-ratio: 2 / 3;
}
.uniform-info__item::after {
	content: attr(data-ttl);
	position: absolute;
	text-transform: capitalize;
	font-family: var(--en-font);
	font-size: 1.3rem;
	color: #333;
	top: 0;
	right: 0;
	rotate: -90deg;
	transform-origin: right bottom;
	translate: 1rem 0;
}
.uniform-info__item:nth-child(odd) {
}
.uniform-info__item:nth-child(even) {
	align-self: flex-end;
}
.uniform-info__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 768px) {
	.uniform-info__text {
		display: flex;
		flex-direction: row;
		gap: 60px;
		align-items: center;
		margin-bottom: 120px;
	}
	.uniform-info__text h3:before {
		white-space: nowrap;
	}
	.uniform-info__img-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 40px 8%;
		padding-bottom: 50px;
		padding-inline: 4%;
		/* margin-inline: calc(50% - 50vw); */
	}
	.uniform-info__item {
		flex: 0 1 calc((100% - 8% * 1) / 2);
		position: relative;
	}
	.uniform-info__item:nth-child(odd) {
	}
	.uniform-info__item:nth-child(even) {
		align-self: auto;
		top: 50px;
	}
}
@media screen and (min-width: 1100px) {
	.uniform-info__img-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 80px 4%;
		padding-bottom: 50px;
		padding-inline: 4%;
		margin-inline: calc(50% - 50vw);
	}
	.uniform-info__item {
		flex: 0 1 calc((100% - 4% * 3) / 4);
	}
}

.uniform-gallery {
	max-width: 1200px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 400px 200px 200px;
	gap: 8px;
}
.uniform-gallery img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.uniform-gallery__item:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}
.uniform-gallery__item:nth-child(2) {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}
.uniform-gallery__item:nth-child(3) {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.uniform-gallery__item:nth-child(4) {
	grid-column: 1 / 3;
	grid-row: 3 / 4;
}
@media screen and (min-width: 768px) {
	.uniform-gallery {
		max-width: none;
		margin-inline: calc(50% - 50vw);
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 8px;
	}
	.uniform-gallery__item:nth-child(1) {
		grid-column: 1 / 4;
		grid-row: 1 / 2;
		aspect-ratio: 16 / 9;
	}
	.uniform-gallery__item:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		aspect-ratio: 1;
	}
	.uniform-gallery__item:nth-child(3) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		aspect-ratio: 1;
	}
	.uniform-gallery__item:nth-child(4) {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
		aspect-ratio: 1;
	}
}

/* ---------------------------------------- */
/* 教室・施設------------------------------ */
/* ---------------------------------------- */
.facility {
}
.facility__item {
	position: relative;
}
.facility__item + .facility__item {
	margin-top: 80px;
}
.facility__img {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.facility__img img {
	aspect-ratio: 16/9;
	object-fit: cover;
}
.facility__caption {
	background-color: transparent;
	position: relative;
	margin-top: 24px;
	padding-left: min(7.9%, 40px);
	padding-right: min(7.9%, 40px);
}
.facility__ttl {
	margin-bottom: 16px;
	text-align: center;
	font-size: var(--xlarge);
	font-weight: 500;
}
.facility__ttl::before {
	content: attr(data-en);
	display: block;
	font-family: var(--en-font);
	color: var(--main-light);
	text-transform: capitalize;
	line-height: 1;
}
.facility__txt {
	line-height: 2;
	text-align: justify;
}
.facilities-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.facility {
	}
	.facility__item {
		position: relative;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.facility__item + .facility__item {
		margin-top: 120px;
	}
	.facility__img {
		margin-left: auto;
		margin-right: auto;
	}
	.facility__img img {
	}
	.facility__caption {
		display: flex;
		align-items: center;
		width: min(90%, 990px);
		margin-left: auto;
		margin-right: auto;
		margin-top: 48px;
		padding: 0;
	}
	.facility__ttl {
		font-size: var(--xlarge);
		margin-bottom: 0;
		flex: 1;
	}
	.facility__ttl::before {
		content: attr(data-en);
		display: block;
		font-family: var(--en-font);
		text-transform: capitalize;
		line-height: 1;
	}
	.facility__txt {
		flex: 2;
	}
}

.swiper-pagination {
	text-align: center;
	margin-top: 10px;
	position: static; /* ← 重ならないように */
}
.swiper-pagination-bullet {
	width: 4px;
	height: 4px;
}
.swiper-pagination-bullet-active {
	background: var(--accent);
}
.event__photo .swiper-button-next,
.event__photo .swiper-button-prev {
	color: var(--white);
	font-size: 2rem !important;
	opacity: 0.5;
}

/* 年間スケジュールピックアップ--------------------------------- */
.event__item {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 80px;
}
.event__title {
	font-size: 40px;
	position: relative;
	padding-left: 8px;
	margin-bottom: 50px;
	font-family: var(--jp-font);
	z-index: 0;
}
.event__title::before {
	content: attr(data-en);
	font-family: var(--en-font);
	text-transform: uppercase;
	font-size: 0.5em;
	line-height: 1;
	display: block;
}
.event__title::after {
	content: attr(data-month);
	font-family: var(--en-font);
	line-height: 1;
	font-size: 120px;
	font-size: 220px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-0.25em, -60%);
	color: var(--main);
	opacity: 0.5;
	z-index: -1;
}
.event__theme {
	font-size: 1.4em;
}
.event__theme span {
	font-size: 1.4rem;
}
.event__desc {
	line-height: 2;
	margin-top: 1.5em;
}
.event__desc p {
	margin-bottom: 1em;
}
.event__desc ul {
	border-top: 1px solid var(--silver);
	padding-top: 1em;
}
@media screen and (min-width: 768px) {
	.event__item {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 40px;
		margin-top: 120px;
	}

	.event__body {
		width: 50%;
	}
	.event__photo {
		width: 50%;
	}
}

/* 年間スケジュール表--------------------------------- */
.schedule {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.schedule__item {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 40px;
}
.schedule__month-name {
	text-transform: capitalize;
	position: relative;
	flex: 4;
	font-family: var(--en-font);
	text-align: center;
	line-height: 1;
}
.schedule__month-name::before {
	content: attr(data-title);
	display: block;
	font-size: 4em;
	margin-bottom: 16px;
}
.schedule__month-name::after {
	content: '';
	display: block;
	width: 20%;
	height: 2px;
	background-color: var(--main);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0%, -50%);
}
.schedule__list {
	flex: 6;
	font-size: 0.9em;
	line-height: 2;
}
@media screen and (min-width: 768px) {
	.schedule {
		display: grid;
		grid-template-columns: repeat(2, minmax(auto, 500px));
		grid-template-rows: repeat(6, 1fr);
		grid-auto-flow: column;
		justify-content: center;
		gap: 20px;
	}
}

/* ------------------------------------------ */
/* SSHについて-------------------- */
/* ------------------------------------------ */
.ssh-rogo {
	width: 70%;
	max-width: 320px;
	margin-inline: auto;
}
.ssh-flow__wrapper {
	width: 90%;
	margin-inline: auto;
}
.ssh-flow__wrapper figcaption {
	margin-top: 0.5em;
}
.ssh-flow__wrapper figcaption h5 {
	font-weight: 600;
	color: var(--main-light);
}
.ssh-flow {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.ssh-flow__item {
	background: #eee;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	gap: 24px;
	text-align: center;
}
.ssh-flow__item figure {
	text-align: center;
}
.ssh-flow__item figcaption {
	margin-top: 20px;
}
.ssh-flow__item h4 {
	color: var(--main-light);
	font-family: var(--jp-font);
	font-weight: 600;
	font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
	.ssh-flow {
		display: flex;
		flex-direction: row;
		gap: 40px;
	}
	.ssh-flow__item {
		background: #eee;
		border-radius: 16px;
		padding: 24px;
		flex: 0 1 calc((100% - 40px * 2) / 3);
	}
}

/* よくある質問----------------------------------- */
.qa-list {
}
.qa-item {
	position: relative;
	padding-left: 60px;
}
.qa-item + .qa-item {
	margin-block-start: 40px;
}
.qa-item::before {
	content: 'Q.';
	position: absolute;
	top: 16px;
	left: 0;
	font-family: var(--en-font);
	font-size: clamp(7.5rem, calc((100vw - 390px) * 0.066 + 7.5rem), 10rem);
	line-height: 1;
	color: var(--main);
	color: var(--accent);
}
.qa-item__q {
	border-left: 1px solid var(--main-light);
	padding: 20px;
	font-size: clamp(1.4rem, calc((100vw - 390px) * 0.016 + 1.4rem), 2rem);
	color: var(--main-light);
}
.qa-item__a {
	border-left: 1px solid var(--accent);
	padding: 0 16px 20px;
	font-size: clamp(1.3rem, calc((100vw - 390px) * 0.008 + 1.3rem), 1.6rem);
}
@media screen and (min-width: 768px) {
	.qa-list {
	}
	.qa-item {
		padding-left: 100px;
	}
	.qa-item::before {
		top: 20px;
	}
	.qa-item__q {
		padding: 30px 40px 20px;
		border-left-width: 2px;
	}
	.qa-item__a {
		padding: 20px 40px 30px;
		border-left-width: 2px;
	}
}

/* コストテーブル */
.cost-table {
	width: 100%;
	table-layout: fixed;
	background-color: #fff;
}
.cost-table th,
.cost-table td {
	vertical-align: middle;
	font-weight: normal;
	padding: 1em 1.5em;
}
.cost-table thead th {
	text-align: center;
	background-color: var(--accent);
	color: #fff;
}
.cost-table tbody tr {
	border-bottom: 1px solid #999;
}
.cost-table tbody th {
	text-align: center;
}
.cost-table tbody td {
	text-align: center;
}
.cost-table tbody td:last-child {
	text-align: left;
}
.cost-table tfoot th,
.cost-table tfoot td {
	text-align: center;
	font-weight: 600;
}

/* -------------------------------------- */
/* ------------在校生と保護者------------ */
/* -------------------------------------- */

/* 在校生と保護者・項目一覧 */
.parent-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.parent-box__item {
	flex: 0 1 100%;
	position: relative;
	background-color: var(--accent);
	height: 200px;
}
.parent-box__item a {
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-left: 44%;
	padding-right: 4%;
	font-size: var(--small);
	font-weight: 600;
}
.parent-box__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background-image: url('./img/okawa_kocho2.jpg');
	background-size: auto 105%;
	background-position: center;
	opacity: 0.8;
	transition: all 0.3s;
}
.--emergency::before {
	background-image: url('./img/content-index/rain.jpg');
}
.--questionnaire::before {
	background-image: url('./img/snap/questionnaire.jpg');
}
.--public::before {
	background-image: url('./img/content-index/mail.jpg');
}
.--health-room::before {
	background-image: url('./img/facility/facility-08@800w.webp');
}
.--scholarship::before {
	background-image: url('./img/okawa_kocho2.jpg');
}
.--certificate::before {
	background-image: url('./img/content-index/jimu2.jpg');
}
.--expenses::before {
	background-image: url('./img/okawa_kocho2.jpg');
}
.--anti-bullying::before {
	background-image: url('./img/okawa_kocho2.jpg');
}
.--life-tips::before {
	background-image: url('./img/okawa_kocho2.jpg');
}
@media screen and (min-width: 768px) {
	.parent-box {
		gap: 40px;
	}
	.parent-box__item {
		flex: 0 1 calc((100% - 40px * 1) / 2);
		height: 300px;
		transition: 0.3s;
	}
	.parent-box__item:hover {
		background-color: var(--main);
	}
	.parent-box__item:hover::before {
		background-size: auto 110%;
		opacity: 1;
	}
}
