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

.p_05 {
	background: url(../img/contact/bg-contact.jpg) center center no-repeat;
	padding-top: 35px;
}
.contact_title {
	padding-top: 12px;
	height: 45px;
	font-size: 25px;
	font-weight: bold;
	padding-left: 30px;
	border-radius: 5px;
	color: #fff;
	letter-spacing: 1px;
}
.contact_title::before{
	content: "■";
	color: #fff;
	padding-right: 5px;
}
body.ie .contact_title::before{
	font-size: 20px;
}
.contact_tt_blue {
	background: #2ea7e0;
}
.contact_tt_green {
	background: #1ea739;
}
.contact_tt_green2 {
	background: #8fc31f
}
.contact_content {
	margin-top: 55px;
}
.contact_box {
	padding: 15px 15px 40px 15px;
	margin-bottom: 40px;
}
.contact_box:last-child {
	margin-bottom: 0;
}
.contact_info {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}
.contact_info p {
	line-height: 160%
}
.contact_info p a {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
}
.contact_line {
	padding-left: 85px;
	padding-right: 85px;
}
.contact_line_des {
	padding-left: 40px;
	line-height: 160%;
	padding-top: 40px;
}
.contact_line_main {
	margin-top: 40px;
}
.contact_line_tt {
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	color: #ef9300;
}
.contact_line_flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
	align-content: stretch;
	margin-left: -1%;
	margin-right: -1%;
}
.contact_line_item {
	background: rgba(254,219,0,0.3);
	border-radius: 7px;
	width: 30.333%;
	padding: 25px 20px 20px 20px;
}
.contact_line_item span {
	font-size: 20px;
	font-weight: bold;
	color: #ef9300;
}
.contact_line_item p {
	font-size: 16px;
	line-height: 170%;
	padding-top: 15px;
}
.contact_form {
	padding-left: 85px;
	padding-right: 85px;
	margin-top: 30px;
}
.contact_form table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 10px 15px;
}
.contact_form table tr th {
	width: 210px;
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(left, #1e5799 0%, #207cca 0%, #4f4f4f 0%, #6b6b6b 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #1e5799 0%, #207cca 0%, #4f4f4f 0%, #6b6b6b 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #1e5799 0%, #207cca 0%, #4f4f4f 0%, #6b6b6b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#6b6b6b', GradientType=1 ); /* IE6-9 */
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	padding-left: 15px;
}
.contact-form {
	margin-left: -10px;
	margin-right: -10px;
}
.contact_form table tr td input {
	height: 35px;
	border: solid 1px #000;
	padding: 5px;
	width: 100%;
	background: none;
}
.contact_form table tr td, .contact_form table tr th {
	vertical-align: top;
	padding-top: 0;
	padding-bottom: 0;
}
.contact_form table tr th {
	padding-top: 10px;
}
.contact_form table tr td input.input_tel_w1 {
	width: 115px
}
.contact_form table tr td input.input_tel_w2 {
	width: 155px;
	margin-left: 35px;
}
textarea:focus, input:focus {
	outline: none;
}
.contact_form table tr td input.rdo {
	width: auto;
	font-size: 18px;
}
.contact_form table tr td .textarea_box {
	height: 190px;
	padding: 5px;
	border: solid 1px #000;
	outline: none;
	resize: vertical;
	width: 100%;
	background: none;
	display: block;
}
/* The ct-radio */

.ct-radio {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 18px;
	padding-right: 25px;
	line-height: 35px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radio-pdr-0 {
	padding-right: 0;
}
/* Hide the browser's default radio button */

.ct-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
/* Create a custom radio button */

.checkmark {
	position: absolute;
	top: 9px;
	left: 0;
	height: 15px;
	width: 15px;
	background: none;
	border: solid 1px #000;
	border-radius: 50%;
	margin: 0 5px;
}
/* On mouse-over, add a grey background color */

.ct-radio:hover input~.checkmark {
	background-color: #ccc;
}
/* When the radio button is checked, add a blue background */

.ct-radio input:checked~.checkmark {
	background-color: #8fc31f;
}
/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the indicator (dot/circle) when checked */

.ct-radio input:checked~.checkmark:after {
	display: block;
}
/* Style the indicator (dot/circle) */

.ct-radio .checkmark:after {
	top: 3.5px;
	left: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}
.btn_submit {
	text-align: center;
	margin-top: 40px;
}
.btn_submit .submit-btn {
	display: inline-block;
	background: #ef9300;
	font-size: 22px;
	font-weight: bold;
	border-radius: 5px;
	color: #fff;
	border: none;
	outline: none;
	padding: 15px 50px;
}
.btn_submit .submit-btn:hover {
	cursor: pointer;
	background: #8fc31f;
}
.contact_des {
	font-size: 18px;
	line-height: 160%;
	padding-top: 30px;
	padding-left: 130px;
	padding-right: 130px;
}
body.Firefox .contact_title{
	padding-top: 10px;
}
.img_line span{
	display: inline-block;
	vertical-align: middle;
}
.qr_code{
	padding-left: 60px;
	padding-right: 20px;
}
.qr_code img{
	height: 120px;
}
.id_line{
	color: #00bb00;
	font-weight: bold;
}

@media screen and (max-width:767px) {
	.contact_line_des {
		padding-left: 0;
		padding-top: 20px;
	}
	.contact_line_item span {
		font-size: 18px;
		line-height: 120%;
	}
	.contact_line_item p {
		font-size: 14px;
	}
	.contact_line_item {
		padding: 15px 10px;
	}
	.contact_des {
		padding-left: 0;
		padding-right: 0;
	}
	.contact_content {
		margin-top: 40px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.contact_line {
		padding-left: 0;
		padding-right: 0;
	}
	.contact_form {
		padding-left: 0;
		padding-right: 0;
	}
	.ct-radio {
		width: 100%;
		float: left
	}
	.contact_form table tr td .ct-radio input {
		width: 200px;
		left: 0;
	}
.contact_title {
	height: auto;
	font-size: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
}
.btn_submit {
	margin-top: 30px;
}
.btn_submit .submit-btn {
	padding: 10px 30px;
	font-size: 18px;
}
}
 @media screen and (max-width:640px) {
.contact_line_item {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.contact_line_flex {
	margin-left: 0;
	margin-right: 0;
}
.contact_form table tr th {
	width: 100%;
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
}
.contact_form table tr td {
	width: 100%;
	float: left;
}
.contact_form table tr td input {
	margin-top: 10px;
}
.ct-radio:first-child {
	margin-top: 10px;
}
.qr_code{
	padding-left: 10px;
	padding-right: 10px;
}
.img_line{
	display: table;
}
.qr_code img{
	width: 150px;
	height: auto;
}
.img_line span{
	display: table-cell;
	text-align: center;
}
}
 @media screen and (max-width:480px) {
.contact_form table tr td input.input_tel_w2 {
	margin-left: 10px;
	width: 120px;
}
}
