@charset "utf-8";

/* =========================================
    ページタイトル
========================================= */
.heading {
	padding: 8rem 0;
	background-image: url(../_image/admissions/admissions_bg_a.svg), url(../_image/admissions/admissions_bg_b.svg);
	background-repeat: no-repeat, no-repeat;
	background-size: 15% auto, 18% auto;
	background-position: left 5% bottom, right 5% bottom;
}

.heading .heading_text {
	position: relative;
	width: 72rem;
	margin: auto;
}

.heading .heading_text::before {
	background-image: url(../_image/admissions/block_top_l.svg);
	right: 100%;
}

.heading .heading_text::after {
	background-image: url(../_image/admissions/block_top_r.svg);
	left: 100%;
}

.heading .heading_text::before,
.heading .heading_text::after {
	content: "";
	position: absolute;
	top: 0;
	width: 120px;
	height: auto;
	aspect-ratio: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

.heading .pageTitle {
	position: relative;
	text-align: center;
	line-height: 6rem;
	padding: 3rem 0;
	font-size: 4rem;
	font-weight: var(--fw-bold);
}

@media only screen and (max-width:640px) {
	.heading {
		padding: 3rem 0 7rem;
		background-image: url(../_image/admissions/admissions_bg_a.svg), url(../_image/admissions/admissions_bg_b.svg);
		background-repeat: no-repeat, no-repeat;
		background-size: 30% auto, 35% auto;
		background-position: left 5% bottom, right 5% bottom;
	}

	.heading .heading_text {
		position: relative;
		width: 90%;
		margin: auto;
	}

	.heading .heading_text::before {
		background-image: none;
		right: 83%;
	}

	.heading .heading_text::after {
		background-image: none;
		left: 83%;
	}

	.heading .heading_text::before,
	.heading .heading_text::after {
		width: 90px;
		height: auto;
	}

	.heading .pageTitle {
		position: relative;
		text-align: center;
		line-height: 3.5rem;
		padding: 0 0 2rem;
		font-size: var(--fz-3xl);
		font-weight: var(--fw-bold);
	}
}


/* =========================================
    募集要項・入試情報
========================================= */
.admissions__container {
	width: 100%;
	padding: 10rem 0;
	background-color: #fff4d6;
}

.admissions__wrap {
	max-width: 96rem;
	margin: auto;
	background-color: var(--c-white);
}

.admissions__container .subTitle {
	margin: 0 auto 2rem 0;
}

.admissions__list {
	padding: 5rem;
}

.admissions__item {
	padding: 3rem 5rem;
	list-style: none;
}

/* table */
.admissions__table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
}

/* セルの幅を設定 */
.col-label {
	width: 70px;
}

.col-type {
	width: 70px;
}

.col-text,
.col-detail {
	width: auto;
}

.admissions__table tr {
	border-top: solid 1px #0a1c4b26;
	border-bottom: solid 1px #0a1c4b26;
}

.admissions__table th,
.admissions__table td {
	padding: 2rem 1rem;
	vertical-align: middle;
}

.admissions__label {
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
	background-color: var(--c-green-pale);
	/* border-right: solid 1px #0a1c4b26; */
}

.admissions__innerList li {
	position: relative;
	padding-left: 1em;
}

.admissions__innerList li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.admissions__method-type {
	text-align: center;
	font-weight: bold;
	border-right: solid 1px #0a1c4b26;
}

.admissions__method-detail ol > li:not(:last-child) {
	margin-bottom: 0.5em;
}

.bank {
	display: inline-flex;
	flex-wrap: wrap;
	width: fit-content;
	margin: 1rem 0 0;
	padding: 1rem 1.5rem;
	background-color: #fff4d6;
}

.bank__row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.bank__label {
	flex: 0 0 auto;
	font-weight: bold;
	margin-right: 0.5em;
}

.bank__info {
	flex: 1 1 0;
	min-width: 0;
}

@media only screen and (max-width:640px) {
	.subTitle {
		width: 100%;
	}

	.admissions__container {
		width: 100%;
		margin-inline: auto;
		padding: 4rem 0;
	}

	.admissions__wrap {
		max-width: 96rem;
		margin: auto;
		background-color: var(--c-white);
		width: 90%;
	}

	.admissions__list {
		padding: 4rem 3rem 0 3rem;
	}

	.admissions__item {
		padding: 0 0 4rem;
	}

	/* table */
	.admissions__table,
	.admissions__table tbody,
	.admissions__table tr,
	.admissions__table th,
	.admissions__table td {
		display: block;
	}

	.admissions__table tr {
		border: none;
	}

	.admissions__table th,
	.admissions__table td {
		padding: 1rem 0.5rem;
	}

	.admissions__label {
		border-right: none;
	}

	.admissions__table.-application tr:not(:last-child) {
		padding-bottom: 4rem;
	}

	.admissions__table.-application tr:nth-child(3) {
		padding-bottom: 2rem;
		margin-bottom: 1rem;
		border-bottom: solid 1px #0a1c4b26;
	}

	.admissions__table .admissions__method-type {
		padding-bottom: 0;
		border-right: none;
	}
}