
/***************************************
ROOT
****************************************/

:root {
  --link_color: #264a83;
  --color-1: #1a335b;
}


/*=================================================
 * CSS for PC
 * ================================================= */

/** list_common **/

.list_common{}
.list_common h3{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	background: var(--color-1);
	border-radius: 10px 10px 0 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list_common .subt{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 35px;
	font-size: 16px;
	line-height: 1;
	background: #f5f5f5;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list_common dl{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
}
.list_common dl:nth-of-type(odd){	background: #fff;}
.list_common dl:nth-of-type(even){	background: #f5f5f5;}
.list_common dd{
	font-size: 13px;
	line-height: 15px;
	text-align: left;
	padding: 10px 15px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list_common dd a,
.list_common dd a:hover{	color: var(--link_color);}
.list_common dd a:hover{	text-decoration: underline;}

.list_common .name{
	width: 260px;
}
.list_common .name:only-child{	width: 100%;}
.list_common .cont{
	position: relative;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	width: calc(100% - 260px);
	padding: 10px 10px 10px 0;
}
.list_common .cont .icon{
	display: inline-block;
	vertical-align: top;
	font-size: 11px;
	line-height: 16px;
	padding: 0 4px;
	border-radius: 2px;
	color: #fff;
	position: absolute;
	top: 7.5px;
	left: 0;
}
.list_common .cont a{
	color: currentColor;
	text-decoration: none;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	padding: 0;
	margin: 0;
}
.list_common .cont a:hover{	color: currentColor;}
.list_common .cont .icon+a{
	display: inline-block;
	padding-left: 35px;
}
.list_common_btm{
	font-size: 13px;
	line-height: 15px;
	text-align: center;
	padding: 10px 15px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.list_common_btm a,
.list_common_btm a:hover{	color: currentColor;}
.list_common_btm a:hover{	text-decoration: underline;}
.list_common_btm:nth-child(even){	background: #fff;}
.list_common_btm:nth-child(odd){	background: #f5f5f5;}



@media (max-width: 750px) {
	.list_common h3{
		font-size: 17px;
	}
	.list_common dd{
		font-size: 13px;
		line-height: 18px;
	}
	.list_common dl{
		display: block;
	}
	.list_common dd{
		font-size: 13px;
		line-height: 15px;
		text-align: left;
		padding: 7.5px 15px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	.list_common .cont{
		width: 100%;
		padding: 10px 10px 10px 10px;
	}
	.list_common .cont .icon{
		position: absolute;
		top: 10px;
		left: 10px;
	}
	.list_common .name+.cont{	padding-top: 0;}
	.list_common .name+.cont .icon{	top: 0;}
	.list_common .name{
		width: 100%;
		padding: 10px;
	}
}



/*************************************
BUTTON
*************************************/

.as_bt{
	text-align: center;
	padding: 50px 0;
	background: #fff;
}

.bt_common{
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 280px;
	height: 55px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	border-radius: 27.5px;
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.bt_common:hover{
	text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.bt_common img{
	width: 30px;
	height: auto;
	margin-right: 5px;
}

.bt_black{	background: #000;}


@media (max-width: 750px) {
	.as_bt{
		padding: 30px 0;
	}
}










.pc_none{	display: none;}


/*=================================================
 * CSS for SP
 * ================================================= */

@media (max-width: 750px) {




	.pc_none{	display: inline;}
	.sp_none{	display: none;}
}