@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* clearfix */
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/*------------------------------------------------------------
	comBtnList
------------------------------------------------------------*/
.comBtnList li {
	margin-bottom: 1.2rem;
	position: relative;
}
.comBtnList li:last-child {
	margin-bottom: 0;
}
.comBtnList a {
	color: #000;
	display: block;
	position: relative;
}
.comBtnList .num {
	position: absolute;
	top: 47%;
	left: 45%;
	font-weight: 700;
	font-size: 5vw;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
	z-index: 1;
}
.comBtnList img {
	width: 100%;
}
@media all and (min-width: 801px) {
	.comBtnList {
		margin: 0 auto;
		max-width: 50rem;
	}
	.comBtnList .num {
		font-size: 3rem;
	}
}