@charset "UTF-8";

/* ====================================
	共通スタイル
==================================== */
:root {
	--margin-large: 5rem;
	--margin-medium: 4rem;
	--margin-small: 2rem;
	/* トランジション */
	--hover-transition-opacity: ease opacity 0.3s;
	--hover-opacity: 0.7;
}

/* リセット */
main {
	font-weight: 400;

	a:hover {
		text-decoration: initial;
	}
}

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

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

.max-il-s {
	max-inline-size: 48rem;
}

.max-il-m {
	max-inline-size: 64rem;
}

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

.max-il-xl {
	max-inline-size: 96rem;
}

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

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

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

.line-bottom-dashed {
	border-bottom: dashed 1px var(--middle-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;
}

/* ポジション */
.static {
	position: static;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.sticky {
	position: sticky;
}

/* マージン */
.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;
}

.ml-1em {
	margin-left: 1em;
}

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

.mr-1em {
	margin-right: 1em;
}

/* フォント */
.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;
}

.whitespace-normal {
	white-space: normal;
}

.whitespace-nowrap {
	white-space: nowrap;
}

.whitespace-pre {
	white-space: pre;
}

.whitespace-pre-line {
	white-space: pre-line;
}

.whitespace-pre-wrap {
	white-space: pre-wrap;
}

.whitespace-break-spaces {
	white-space: break-spaces;
}

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

/* displayレイアウト */
.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	/* .flex-nowrapで解除できる */
}

.inline-flex {
	display: inline-flex;
}

.grid {
	display: grid;
}

.inline-grid {
	display: inline-grid;
}

.contents {
	display: contents;
}

.table {
	display: table;
}

.inline-table {
	display: inline-table;
}

.hidden {
	display: none;
}

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

.flex__item {
	inline-size: 100%;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-end-safe {
	justify-content: safe flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-center-safe {
	justify-content: safe center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}

.justify-evenly {
	justify-content: space-evenly;
}

.justify-stretch {
	justify-content: stretch;
}

.justify-baseline {
	justify-content: baseline;
}

.justify-normal {
	justify-content: normal;
}

.items-start {
	align-items: flex-start;
}

.items-end {
	align-items: flex-end;
}

.items-end-safe {
	align-items: safe flex-end;
}

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

.items-center-safe {
	align-items: safe center;
}

.items-baseline {
	align-items: baseline;
}

.items-baseline-last {
	align-items: last baseline;
}

.items-stretch {
	align-items: stretch;
}

/* テキストリンク */
.link-text-underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hover-text--blue {
	color: #0C46A4;

	.ico-line-arrow,
	.ico-circle-arrow {
		fill: #0C46A4;
	}

	.ico-new-window {
		stroke: #0C46A4;
	}
}

/* ボタン */
.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);
}

/* ラインアロー付きタイトル */
.line-arrow-title {
	gap: 0 0.5em;
	text-decoration: none;

	.ico-line-arrow {
		inline-size: 0.45em;
		block-size: 1lh;
	}
}

/* 丸囲みアロー付きタイトル */
.circle-arrow-title {
	gap: 0 1em;

	.ico-circle-arrow {
		inline-size: 1em;
		block-size: 1lh;
	}
}

/* ボタンリンクデザイン */
.button-link {
	--border-color: #959595;
	--hover-color: var(--sharp-red);

	a {
		display: inline-block;
		border: 1px solid var(--border-color);
		font-size: 1.6rem;
		line-height: 1.2;
		padding: 0.8em 1em;
		text-decoration: none;
	}

	a:has(svg) {
		display: inline-flex;
		align-items: center;
		gap: 0 1em;
	}

	/* ボタンリンク内のSVGアイコン */
	.arrow-right {
		inline-size: 1em;
		block-size: 1lh;
	}
}

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

	.info-navi__list a:hover {
		font-weight: 700;
	}

	/* テキストリンク */
	.hover-text:hover {
		color: var(--sharp-red);

		.ico-line-arrow,
		.ico-circle-arrow {
			fill: var(--sharp-red);
		}

		.ico-new-window {
			stroke: var(--sharp-red);
		}
	}

	.link-text-underline:hover {
		text-decoration: none;
	}

	.hover-text--blue:hover {
		color: #0C46A4;

		.ico-line-arrow,
		.ico-circle-arrow {
			fill: #0C46A4;
		}

		.ico-new-window {
			stroke: #0C46A4;
		}
	}

	.hover-text--blue:hover {
		text-decoration: underline;
	}

	.link-text-underline:hover {
		text-decoration: none;
	}

	/* ボタン */
	.button-text:hover {
		border-color: var(--sharp-red);
		color: var(--sharp-red);
		fill: var(--sharp-red);
		text-decoration: none;
	}

	/* ボタンリンクデザイン */
	.button-link a:hover {
		border-color: var(--hover-color);
		color: var(--hover-color);
		fill: var(--hover-color);
	}
}

/* ====================================
	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) {

	/* ページ上部サイト内検索 */
	.site-search__form {
		inline-size: 620px;
		--site-search-height: 5rem;
		margin-inline: auto;
	}

	.site-search__button-submit img {
		inline-size: 28px;
	}

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

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

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

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

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

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

/* ====================================
	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;
	}

	/* ボタン */
	.button-text {
		font-size: 1.6rem;
	}

	/* info共通ナビ */
	.info-navi-pc {
		display: none;
	}

	.info-navi-accordion {
		display: none;
	}

	.info-navi__list {
		font-size: 1.4rem;
	}

	.info-navi__list>li {
		border-top: 1px solid #d9d9d9;
	}

	.info-navi__list>li:last-child {
		border-bottom: 1px solid #d9d9d9;
	}

	.info-navi__list a {
		display: block;
		position: relative;
	}

	.info-navi__list>li:not(:has(button))>a {
		padding: 1.1em 0;
	}

	/* info共通ナビ・開閉ボタン */
	.info-navi__button {
		display: block;
		inline-size: 100%;
		text-align: left;
		font-weight: inherit;
		padding: 1.1em 0;
		position: relative;
	}

	/* info共通ナビ・アコーディオン要素 */
	.info-navi-accordion__list {
		font-size: 1.2rem;
		padding-left: 1em;
		border-top: 1px solid #d9d9d9;
	}

	.info-navi-accordion__list>li:not(:first-child) {
		border-top: 1px solid #d9d9d9;
	}

	.info-navi-accordion__list>li>a {
		padding: 1em 0 1em 0.5em;
	}

	.info-navi-accordion__list>li>a.active {
		color: var(--sharp-red);

		&::before {
			background-image: url('/assets/common/images/chevron-right-solid-r.svg');
		}
	}

	/* info共通ナビ・アイコン定義 */
	.info-navi__list a::before,
	.info-navi__button::before {
		content: '';
		display: block;
		inline-size: 12px;
		block-size: 14px;
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-50%);
	}

	.info-navi__button::before {
		background: url('/assets/common/images/plus-solid.svg') no-repeat center center/auto 100%;
	}

	.info-navi__button.is-open::before {
		background: url('/assets/common/images/minus-solid.svg') no-repeat center center/auto 100%;
	}

	.info-navi__list>li:not(:has(button))>a::before,
	.info-navi-accordion__list>li>a::before {
		background: url('/assets/common/images/chevron-right-solid.svg') no-repeat center center/auto 100%;
	}

}

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

	.disp-s {
		display: none;
	}

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

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

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

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

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

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

	/* フレックス：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;
	}

	/* ボタンリンクデザイン */
	.button-link a {
		font-size: 1.8rem;
		padding: 1em 1em 1em 1.2em;

		&:has(svg) {
			gap: 0 1.5em;
		}
	}

	/* info共通ナビ */
	.info-navi-mobile {
		display: none;
	}

	.info-navi-pc {
		min-block-size: 40px;
		background-color: var(--white-gray);
	}

	.info-navi__list {
		display: flex;
		flex-wrap: wrap;
		gap: 0 1.5em;
	}

	.info-navi__list a {
		display: inline-block;
		font-size: 1.3rem;
		font-weight: 400;
		padding: 0.8em 0;
		text-decoration: none;
	}

	.info-navi__list a.active {
		font-weight: 700;
	}
}

/* ====================================
	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) {}