@charset "UTF-8";

.contact_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact_box li {
	width: 31.52%;
	margin-bottom: 40px;
}
.contact_box li a {
	height: 140px;
	display: flex;
	align-items: center;
	width: 100%;
	border: 1px solid #ccc;
	border-top: 3px solid #c30000;
	transition: .25s;
	position: relative;
}
.contact_box li a[target="_blank"]:after {
	content: "";
	display: block;
	background: url(../../shared/v0010/img/ico_tab.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: 11px;
	position: absolute;
	right: 20px;
	bottom: 60px;
	transition: .25s;
}
.contact_box li a:hover {
	text-decoration: none;
	opacity: .75;
}
.contact_box li a p {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-align: center;
	color: #222;
}
.text01 {
	font-size: 15.04px;
	margin-bottom: 30px;
}
@media only screen and (max-width:767.98px){
	.contact_box li {
		width: 100%;
		margin-bottom: 20px;
	}
	.contact_box li a {
		height: 100px;
	}
	.contact_box li a p {
		font-size: 15.04px;
	}
	.contact_box li a[target="_blank"]:after {
		right: 10px;
		bottom: 40px;
	}
}