@charset "UTF-8";
/* CSS Document */

/* 中身======================================================================================================== */
.top_copy{
	font-size: 4vw;
	font-weight: bold;
}

#contents ol{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}
#contents ol li{
	width: 48%;
	border: solid 3px #111;
	border-radius: 10px;
	padding: 10px;
	margin-top: 4%;
}
#contents ol li .icon{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	margin-bottom: 10px;
}
#contents ol li .icon img{
	max-width: 60px;
	max-height: 60px;
}

.bottom_copy{
	font-size: 4vw;
	font-weight: bold;
}

#contents ul li{
	font-size: 4vw;
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 10px;
}

.color_red{
	color: #DD0003;
}


/* PCのみ======================================================================================================== */
@media print and (min-width: 671px), screen and (min-width: 671px){
.top_copy{
	font-size: 20px;
	text-align: center;
}

#contents ol li{
	width: 30%;
	padding: 20px;
	margin-top: 5%;
	text-align: center;
	font-size: 18px;
}
#contents ol li .icon{
	height: 80px;
}
#contents ol li .icon img{
	max-width: 80px;
	max-height: 80px;
}


.bottom_copy{
	font-size: 20px;
	text-align: center;
}

#contents ul li{
	font-size: 18px;
}



}


