@charset "UTF-8";

/* ====================================
	共通スタイル
==================================== */

/* ヘッダーロゴ */
.header-logo {
	padding: 2rem;
	background: #000;
	color: #fff;
	line-height: 1;
	text-align: center;

	img {
		display: block;
		inline-size: auto;
		block-size: 1.6rem;
	}
}

/* アイコン：右アロー */
.icon-arrow-right {
	inline-size: 1em;
	block-size: 2lh;
	font-size: 1.6rem;
	line-height: 1;
}

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

/* リンク：Lサイズ */
.link-l {
	display: flex;
	align-items: center;
	inline-size: 100%;
	background-color: #fff;
	border: solid 1px #000;

	&:hover {
		text-decoration: none;
	}

	.link-l__text {
		flex: 1;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		font-size: 1.6rem;

		.link-l__text-item {
			inline-size: 100%;
			text-align: center;
		}
	}

	.link-l__icon {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		aspect-ratio: 1;
		inline-size: 6rem;
		background-color: var(--sharp-red);
		color: #fff;
	}
}

/* ページ */
.page-basic {
	padding-bottom: 10rem;
}

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

	/* リンク：テキスト */
	.link-text:hover {
		text-decoration: none;
	}

	/* リンク：Lサイズ */
	.link-l {
		transition: background-color 0.3s;

		.link-l__icon {
			transition: background-color 0.3s;
		}
	}

	.link-l:hover {
		background-color: #000;
		color: #fff;

		.link-l__icon {
			background-color: #fff;
			color: var(--sharp-red);
		}
	}
}

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

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

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

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

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

/* ====================================
	1080px以上専用スタイル
==================================== */
@media print,
screen and (1080px <=width) {

/* ヘッダーロゴ */
.header-logo {
	img {
		block-size: 2rem;
	}
}

	/* リンク：Lサイズ */
	.link-l {
		.link-l__text {
			font-size: 2.4rem;
		}

		.link-l__icon {
			inline-size: 10rem;
		}

		.icon-arrow-right {
			font-size: 2rem;
		}
	}

	/* ページ */
	.page-basic {
		padding-bottom: 14rem;
	}
}

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