@charset "utf-8";
/* CSS Document */

.flex {
	display: flex;
	justify-content: center;
}
.bold {
	font-weight: bold;
}
a.btn {
	display: block;
	text-align: center;
	width: 80%;
	max-width: 260px;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 50px;
	margin: 0 10px;
	font-size: 1.6rem;
	font-weight: normal;
	padding: 18px 10px 16px;
	box-sizing: border-box;
	box-shadow: 0 0 6px 0 rgb(0 0 0 / 10%);
	background-color: #fff;
	position: relative;
}
a.btn:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 30px;
	background: url(/sevice_shared/img/top/icn_arrow.svg) no-repeat 94% 50% / 10px;
	top: 50%;
	right: 18px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn:hover {
	color: #333;
	border-color: #009dd3;
	box-shadow: none;
	transition: .8s;
	background-color: #fff!important;
}
a.btn.request {
	background: linear-gradient(to right, #ff7002 , #ffbf00);
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
}
a.btn.request:after {
	background: url(/sevice_shared/img/top/icn_arrow_w.svg) no-repeat 94% 50% / 10px;
}
.inquiry_box {
	background: #2f5597;
	padding: 25px 10px 30px;
	margin-top: 30px;
}
.g_local_nav_hdg {
	background: #2f5597;
	font-weight: bold;
	text-align: center;
	padding: 18px 10px 15px;
}
.inquiry {
	font-size: 1.4rem;
	font-weight: normal;
	text-align: center;
}
.g_sidebar .btn {
	margin: 0 auto 10px;
	width: 100%;
	font-size: 1.4rem;
}
.g_sidebar .btn:hover {
	background: #fff;
}
.hdg_01_plain_sub {
	max-width: 1040px;
}

@media screen and (max-width: 740px) {
	.inquiry_box {
		display: block;
	}
	a.btn {
		font-size: 1.4rem;
	}
	a.btn.request {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 499px) {
	.flex {
		display: block;
	}
	a.btn {
		margin: 0 auto 10px;
	}
	a.btn:last-child {
		margin-bottom: 0;
	}
}