@charset "utf-8";



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名
--
lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/


/*================================
ここから全サイズ適用
================================*/

/*================================
共通パーツ
================================*/

/*タイトル*/
/*-----------------------------*/
/*heading01*/
.u-heading01 {
	margin-bottom: 1rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}

/*センシティブな内容*/
/*-----------------------------*/
.img-cover {
	position: relative;
	z-index: 1;
	width: fit-content;
	margin-inline: auto;
}
.img-cover::before {
	transition: 0.4s;
	position: absolute;
	z-index: 10;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(5px);
}
.img-cover.-show::before {
	opacity: 0;
}
.img-cover_caution {
	transition: 0.4s;
	position: absolute;
	z-index: 20;
	left: 0;
	top: 50%;
	width: 100%;
	translate: 0-50%;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #fff;
}
.img-cover.-show .img-cover_caution {
	opacity: 0;
	display: none;
}
.img-cover_btn {
	position: absolute;
	z-index: 20;
	right: 1rem;
	bottom: 1rem;
	padding: 0 2rem;
	background: #333;
	border-radius: 2rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #fff;
}

/*テーブル*/
/*-----------------------------*/
.u-tbl01 {}
.u-tbl01_th01 {
	padding: 6px 10px;
	background: var(--theme-color01);
	border: 1px solid var(--theme-color01);
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #fff;
	vertical-align: middle;
}
.u-tbl01_th02 {
	width: 30rem;
	padding: 6px 10px;
	background: var(--theme-color03);
	border: 1px solid var(--theme-color01);
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	vertical-align: middle;
}
.u-tbl01_td {
	padding: 6px 10px;
	background: #fff;
	border: 1px solid var(--theme-color01);
	text-align: left;
	font-size: 1.8rem;
	line-height: 2;
	vertical-align: middle;
}

/*================================
ページ内リンク
===============================*/
.u-page_menu_group {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-flow: row wrap;
	gap: 1.6rem 2rem;
}
.u-page_menu_item {
	position: relative;
	z-index: 1;
	top: 0;
	transition: 0.4s;
	width: calc(100%/3 - 2rem*2/3);
	padding: 4px;
	background: #fff;
}
.u-page_menu_item:hover {
	top: -4px;
}
.u-page_menu_link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 1rem 2rem;
	border: 1px solid var(--theme-color02);
}
.u-page_menu_p {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: #333;
}


/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {



	/*================================
	共通パーツ
	================================*/

	/*タイトル*/
	/*-----------------------------*/
	/*heading01*/
	.u-heading01 {}

	/*テーブル*/
	/*-----------------------------*/
	.u-tbl01 {
		border-bottom: 1px solid var(--theme-color01);
	}
	.u-tbl01_th01 {
		display: block;
		width: 100%;
		border-bottom: none;
	}
	.u-tbl01_th02 {
		display: block;
		width: 100%;
	}
	.u-tbl01_td {
		display: block;
		width: 100%;
		border-top: none;
		border-bottom: none;
	}

	/*================================
	ページ内リンク
	===============================*/
	.u-page_menu_group {
		gap: 1rem;
	}
	.u-page_menu_item {
		width: calc(100%/2 - 1rem/2);
	}
	.u-page_menu_item:hover {}
	.u-page_menu_link {}
	.u-page_menu_p {}
	
	
}

















