@charset "UTF-8";
/*contact-list_area*/
#contact-list_area .contact-link{
	max-width: 1040px;
	margin: 0 auto 30px;
}
#contact-list_area .contact-link-title{
	font-size: 2.6rem;
	text-align: center;
	margin-bottom: 30px;
}
.contact-link-list{
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
}
.contact-link-btn{
	width: calc(33.3333% - 7px);
	margin-bottom: 10px;
}
.contact-link-btn a{
	border-radius: 6px;
	border: solid 1px #005aa0;
	color: #005aa0;
	font-size: 1.8rem;
	font-weight: bold;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease .5s;
}
.contact-link-btn a:hover{
	background: #005aa0;
	color: #fff;
	transition: all ease .5s;
}
.contact-list-text{
	text-align: center!important;
	font-size: 1.8rem;
	margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
	.contact-link-list{
		display: block;
	}
	.contact-link-btn{
		width: 100%;
		margin-bottom: 10px;
	}
	#contact-list_area .contact-link-title{
		font-size: 2.1rem;
		margin-bottom: 20px;
	}
	.contact-link-btn a{
		border-radius: 5px;
		border: solid 1px #005aa0;
		color: #005aa0;
		font-size: 1.5rem;
		font-weight: bold;
		width: 100%;
		height: 55px;
	}
	#contact-list_area .btn_area{
		width: 230px;
		margin: 0 auto;
	}
}
