@charset "UTF-8";

/* ====================================
	共通スタイル
==================================== */
:root {
	--middle-gray: #959595;
	--margin-large: 4rem;
	--margin-medium: 3rem;
	--margin-small: 2rem;
}

/* サイズ */
.il-fit {
	inline-size: fit-content;
}

.size-fit-bl {
	inline-size: auto;
	block-size: 100%;
}

.max-il-l {
	max-inline-size: 86rem;
}

/* カラー */
.bg-white {
	background-color: #fff;
}

.color-caption {
	color: var(--cyan);
}

/* ライン */
.line-gray {
	border-top: solid 1px var(--light-gray);
}

/* ボーダー */
.bdr-bk {
	border: solid 1px #000;
}

.border-radius-5 {
	border-radius: 5px;
}

.border-radius-10 {
	border-radius: 10px;
}

.border-radius-15 {
	border-radius: 15px;
}

.border-radius-20 {
	border-radius: 20px;
}

.border-radius-25 {
	border-radius: 25px;
}

.border-radius-30 {
	border-radius: 30px;
}

.border-radius-50 {
	border-radius: 50px;
}

/* overflow */
.overflow-hidden {
	overflow: hidden;
}

.overflow-scroll {
	overflow: scroll;
}

/* マージン */
.mx-auto {
	margin-inline: auto;
}

.mt-s {
	margin-top: var(--margin-small);
}

.mt-m {
	margin-top: var(--margin-medium);
}

.mt-l {
	margin-top: var(--margin-large);
}

.mt-0-5em {
	margin-top: 0.5em;
}

.mt-0-8em {
	margin-top: 0.8em;
}

.mt-1em {
	margin-top: 1em;
}

.mt-1-25em {
	margin-top: 1.25em;
}

.mt-1-5em {
	margin-top: 1.5em;
}

.mt-2em {
	margin-top: 2em;
}

.mt-2-5em {
	margin-top: 2.5em;
}

.ml-0-5em {
	margin-left: 0.5em;
}

.mr-0-5em {
	margin-right: 0.5em;
}

/* パディング */
.px-s {
	padding: 0 2rem;
}

.pt-page-bottom {
	padding-bottom: 5rem;
}

/* フォント */
.font-caption {
	font-size: 1.2rem;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.font-extrabold {
	font-weight: 800;
}

.font-black {
	font-weight: 900;
}

/* テキスト */
.text-left {
	text-align: left;
}

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

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

.text-justify {
	text-align: justify;
}

.text-start {
	text-align: start;
}

.text-end {
	text-align: end;
}

.leading-none {
	line-height: 1;
}

.leading-m {
	line-height: 1.7;
}

.leading-l {
	line-height: 2;
}

.leading-xl {
	line-height: 2.2;
}

/* 動画 */
.video {
	position: relative;
	inline-size: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}

/* フレックス */
.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex__item {
	inline-size: 100%;
}

/* ボタン */
.button-text {
	display: grid;
	justify-content: center;
	align-items: center;
	inline-size: fit-content;
	block-size: fit-content;
	padding: 1em 1em 1em 1em;
	font-size: 1.8rem;
	font-weight: 400;
	border: 1px solid #000;
	text-decoration: none;
}

.button-text.arrow-right {
	grid-template-columns: auto 1fr;
	grid-column-gap: 1em;
}

.button-text.arrow-right svg {
	inline-size: 1em;
	block-size: 1em;
}

.button-m {
	inline-size: min(100%, 380px);
}

/* ボタン・アローつき */
.btn-has-arrow-left {
	display: grid;
	inline-size: fit-content;
	block-size: fit-content;
	font-weight: 400;
	border: 1px solid #000;
	border-radius: 5px;
	padding: .5em 1em;
}

.btn-has-arrow-left::after {
	content: '';
}

.btn-has-arrow-left svg {
	inline-size: 0.6em;
	block-size: 1em;
}

/* ページヘッダー */
.notice-header {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.notice-header-date {
	margin-bottom: 2rem;
	font-size: 1.6rem;
}

.notice-header-title {
	padding-bottom: 1em;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	border-bottom: solid 5px var(--light-gray);
}

/* タイトル */
.title-gray-box {
	padding: 0.65em 0.85em;
	margin-bottom: 1.65em;
	font-size: 1.8rem;
	font-weight: 700;
	background-color: var(--light-gray);
}

.title-bdr-gray-bottom {
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	font-size: 1.8rem;
	font-weight: 700;
	border-bottom: solid 3px var(--light-gray);
}

/* リスト */
.list-arrow-left .list-item {
	padding-left: 1.25em;
	background: url(/assets/common/images/chevron-right-solid.svg) no-repeat left center / auto 1em;
}

.list-arrow-left .list-item:not(:first-child) {
	margin-top: 0.25em;
}

.list-arrow-left .list-item a {
	text-decoration: underline;
}

/* アイコン */
.text-icon {
	inline-size: 1em;
	block-size: 1em;
}

/* ====================================
	ホバー、マウスポインタが有効なデバイス
==================================== */
@media (hover:hover) and (pointer: fine) {

	/* リスト */
	.list-arrow-left .list-item a:hover {
		text-decoration: none;
	}
}

/* ====================================
	480px以上専用スタイル
==================================== */
@media screen and (width >=480px) {
	.disp-xs {
		display: none;
	}
}

/* ====================================
	768px未満専用スタイル
==================================== */
@media screen and (width <768px) {
	.disp-lm {
		display: none;
	}
}

/* ====================================
	768px以上専用スタイル
==================================== */
@media screen and (width >=768px) {}

/* ====================================
	768px以上1080px未満専用スタイル
==================================== */
@media screen and (768px <=width < 1080px) {}

/* ====================================
	1080px未満専用スタイル
==================================== */
@media screen and (width <1080px) {
	.disp-m {
		display: none;
	}

	/* フレックス：2列 */
	.flex-col2>.flex__item:not(:first-child) {
		margin-top: 3rem;
	}

	/* フレックス：3列 */
	.flex-col3>.flex__item:not(:first-child) {
		margin-top: 3rem;
	}
}

/* ====================================
	1080px以上専用スタイル
==================================== */
@media print,
screen and (1080px <=width) {
	:root {
		--margin-large: 5rem;
		--margin-medium: 4rem;
		--margin-small: 3rem;
	}

	.disp-s {
		display: none;
	}

	/* パディング */
	.pt-page-bottom {
		padding-bottom: 12rem;
	}

	.disp-m-px-s {
		padding: 0 2rem;
	}

	/* フレックス：2列 */
	.flex-col2 {
		justify-content: space-between;
	}

	.flex-col2>.flex__item {
		width: 46.7%;
	}

	.flex-col2>.flex__item:not(:nth-child(-n+2)) {
		margin-top: 7rem;
	}

	/* フレックス：3列 */
	.flex-col3>.flex__item {
		width: 30.5%;
		margin-top: 3%;
		margin-left: 4.25%;
	}

	.flex-col3>.flex__item:nth-of-type(3n-2) {
		margin-left: 0;
	}

	.flex-col3>.flex__item:nth-of-type(-n+3) {
		margin-top: 0;
	}

	/* ページヘッダー */
	.notice-header {
		padding-top: 4rem;
		padding-bottom: 5rem;
	}

	.notice-header-date {
		margin-bottom: 4rem;
	}
}

/* ====================================
	1200px以上専用スタイル
==================================== */
@media screen and (1200px <=width) {
	.base-width {
		max-inline-size: 120rem;
	}
}

/* ====================================
	1280px未満専用スタイル
==================================== */
@media screen and (width <1280px) {
	.disp-l {
		display: none;
	}
}

/* ====================================
	1280px以上専用スタイル
==================================== */
@media screen and (width >=1280px) {}