@charset "utf-8";

/* お問い合わせページ */

/* メインビジュアル
---------------------------------------------------------------------------*/
.block-mv {
	background-image: url(../img/contact/mv.jpg);
	text-shadow: 
		0px 0px 9px rgba(162, 133, 123, .7), 
		2px 2px 7px rgba(162, 133, 123, .7), 
		2px -2px 7px rgba(162, 133, 123, .7), 
		-2px 2px 7px rgba(162, 133, 123, .7), 
		-2px -2px 7px rgba(162, 133, 123, .7);
}
@media screen and (max-width: 768px){
	.block-mv {
		background-image: url(../img/contact/mv-sp.jpg);
	}
}


/* フォーム
---------------------------------------------------------------------------*/
.req {
	color: #FF0000;
}
.box-form {
	max-width: 800px;
	margin: 40px auto;
}
.box-form dt,
.box-form dd {
	padding: 20px 0;
	border-bottom: 1px dotted #0050A0;
}
.box-form dt {
	width: 22.5%;
	font-weight: 400;
}
.box-form dd {
	width: 75%;
}
.box-form dd p.attr {
	margin-top: 5px;
}
.box-form dd p img {
	vertical-align: middle;
}
.box-form > *:nth-child(1),
.box-form > *:nth-child(2) {
	border-top: 1px dotted #0050A0;
}
@media screen and (max-width: 768px){
	.box-form {
		margin: 8vw 0;
	}
	.box-form dt,
	.box-form dd {
		padding: 3vw 0;
	}
	.box-form > *:nth-child(2) {
		border-top: none;
	}
}



/* フォームパーツ */
.box-form select,
.box-form input[type="text"],
.box-form input[type="email"],
.box-form textarea {
	width: 90%;
	font-size: 16px;
	line-height: 180%;
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
}
.box-form .selwrap {
	display: block;
	position: relative;
}
.box-form .selwrap::after {
	position: absolute;
	left: calc(90% - 20px);
	top: calc(50% - 4px);
	content: "";
	border-top: 8px solid #333;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}
.box-form select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    border: 0;
    outline: none;
    padding: 5px 5px 5px 10px;
    background: transparent;
    background-color: #FFFFFF;
}
.btn-form {
	margin-bottom: 40px;
}
.btn-form input[type="submit"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 224px;
	height: 60px;
	margin: 0 10px;
	font-size: 16px;
	background-color: #0050A0;
	border: 1px solid #0050A0;
	color: #FFFFFF;
	cursor: pointer;
	transition-property: all;
	transition: 0.3s linear;
}
.btn-form input[type="submit"]:hover {
	background-color: #FFFFFF;
	border: 1px solid #0050A0;
	color: #0050A0;
	transition-property: all;
	transition: 0.3s linear;
}
@media screen and (max-width: 768px){
	.box-form select,
	.box-form input[type="text"],
	.box-form input[type="email"],
	.box-form textarea {
		width: 100%;
		font-size: 4vw;
		line-height: 180%;
	}
	.box-form .selwrap::after {
		right: 3vw;
		left: auto;
	}
	.btn-form {
		margin-bottom: 5vw;
	}
	.btn-form input[type="submit"] {
		margin: 2vw 0;
	}
}

/* 確認画面で非表示 */
.mw_wp_form_confirm .attr,
.mw_wp_form_confirm .box-form .selwrap::after {
	display: none;
}


/* お電話でのお問い合わせ
---------------------------------------------------------------------------*/
.block-contactinfo {
	padding-bottom: 0;
}
.block-contactinfo .num-tel {
	margin-left: 5px;
	font-size: .4rem;
}
.box-contactinfo {
	margin-top: 40px;
}
.box-contactinfo li + li {
	margin-top: 10px;
}
.bdr-tel img {
	display: block;
	margin-top: 20px;
	margin-bottom: 40px;
}
.lead-contactinfo {
	margin-top: 20px;
	line-height: 225%;
}
.logo-contactinfo img {
	width: 218px;
}
@media screen and (max-width: 768px){
	.box-contactinfo {
		margin-top: 3vw;
	}
	.box-contactinfo li,
	.box-contactinfo li + li {
		width: 49%;
		margin-top: 2vw;
	}
	.box-contactinfo .lft {
		margin-bottom: 3vw;
	}
	.box-contactinfo .rit {
		margin-top: 3vw;
	}
	.bdr-tel img {
		margin-top: 2vw;
		margin-bottom: 6vw;
	}
	.lead-contactinfo {
		line-height: 180%;
	}
	.logo-contactinfo img {
		width: 55vw;
	}
}






