@charset "utf-8";
/* --------------------------------------------------

フォーム
-------------------------------------------------- */
#contact {
	max-width: 1200px;
	margin: 0 auto;

}
#contact .page-subttl {
	text-align: justify;
}
#contact .heed {
	display: block;
	font-weight: 700;
}
#contact .heed a {
	color: #4E8FB0;	
}
form#mail_form{
	width : 960px;
	margin : 20px auto 0px;
	padding : 10px 0 0;
	background : #ffffff;
	text-align: left;
}
@media only screen and (max-width:1160px) {
#contact {
	width: 100%;
}
form#mail_form{
	width : 100%;
}
}

form#mail_form dl{
	width : 100%;
	margin : 0 auto;
	overflow : hidden;
	border-bottom : 1px solid #BCB9B9;
}
form#mail_form dl dt{
	clear : both;
	width : 30%;
	float : left;
	border-top : 1px solid #BCB9B9;
	padding : 40px 20px 30px;
	text-align : left;
	overflow : hidden;
}
form#mail_form dl dd{
	width : 70%;
	float : right;
	border-top : 1px solid #BCB9B9;
	padding : 40px 20px 30px;
	overflow : hidden;
}
form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child+dd{
	border-top : none;
}
form#mail_form dl dd span.ex {
	display : block;
	font-size : 75%;
	color : #BCB9B9;
}
form#mail_form dl dd span {
	display: block;
	font-weight: 700;
}
form#mail_form input, form#mail_form select{
	height : 3em;
	padding : 2px 2%;
	border : 1px solid #BCB9B9;
	border-radius : 0;
    -webkit-appearance: none;
	background : #fafafa;
}
form#mail_form input:focus,
form#mail_form textarea:focus{
	border : 2px solid #BCB9B9;
    outline: none;
	background : #fff;
    box-shadow: 1px 0 5px 1px #BCB9B9;
}

/* ラジオボタン設定
-----------------------------------*/
form#mail_form ul li{
	margin-bottom : 0.5em;
}

form#mail_form ul li label:hover{
	cursor : pointer;
}

form#mail_form ul li input{
	height : auto;
	margin-right : 0.5em;
}


/* 入力エリア設定・幅
-----------------------------------*/

form#mail_form dd input[type="text"],
form#mail_form dd input[type="tel"],
form#mail_form dd input[type="email"]{
	width : 49%;
	padding-top: 3px;
	padding-bottom: 3px;
	font-size: inherit;

}
form#mail_form dd #postal {
	width : 30%;
}
form#mail_form dd #address {
	width : 100%;
}
form#mail_form dd input[type="email"]{
	width : 100%;	
}
form#mail_form dd textarea {
	width : 100%;
	height : 200px;
	padding : 5px 2%;
	resize : vertical;
	border : 1px solid #BCB9B9;
	border-radius : 0;
	background : #fafafa;
	font-size: inherit;
}

/* 入力エラー設定
-----------------------------------*/
form#mail_form dd input[type="text"].inp_error,
form#mail_form dd input[type="email"].inp_error,
form#mail_form dd input[type="tel"].inp_error,
form#mail_form dd input[type="radio"].inp_error,
form#mail_form dd select.inp_error,
form#mail_form dd textarea.inp_error {
	background: #ABCEE9;
}
span.error_m {
	font-weight: normal;
	color: #004A86;
	display: block;
	margin: 0;
}

#message {
	text-align: center;
	margin: 2em 0 0 0;
}
#message a {
	color: #4E8FB0;
}


/* 送信・戻るボタン
-----------------------------------*/
p#preview{
	margin: 3em auto 0;
	text-align: center;
}
button.submit-b {
	width : 100%;
	max-width : 400px;
	margin: 0 auto;
	border : #C1BEBE solid 6px;
	border-radius : 100px;
	height : 80px;
 	transition: all 0.5s;
	font-size: 1em;
	font-weight: 700;
	color: #333;
	background-color: #E4DEDE;
}
button.submit-b:first-child{
	margin: 0 1em 0 0;
}	
@media screen and (max-width: 900px) {
button.submit-b:first-child{
	margin: 0 0 1em 0;
}	
}
button.submit-b:hover {
	background-color: #fff;
    color: #ADABAB;
}

/* ボタン オート入力時
-----------------------------------*/
@keyframes onAutoFillStart { from {} to {}}

input:-webkit-autofill {
    animation-name: onAutoFillStart;
    transition: background-color 50000s ease-in-out 0s;
}


/* 郵便番号
-----------------------------------*/
form#mail_form dd .post-number {
	padding-left: 10px;
}

/* 必須項目
-----------------------------------*/
form#mail_form i.need {
	background: #004A86;
	padding: 2px 5px;
	margin-right: 10px;
	font-size: 80%;
	color: #FFF;
	font-style: normal;
}


/* セレクトメニュー編集
-----------------------------------*/
select::-ms-expand {
	display: none;
}
select{
	appearance: none;
	outline:none;
	text-overflow: '';
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	width: 49%;
}
form#mail_form select option{
  background-color: #fff;
}
form#mail_form select:focus {
	border : 2px solid #BCB9B9;
    box-shadow: 1px 0 5px 1px #BCB9B9;
}
form#mail_form select::-ms-expand {
  display: none;
}
form#mail_form select:-moz-focusring { 
  color: transparent; 
}
form#mail_form .select-wrap {
	position:relative;
}
form#mail_form .select-wrap:before {
	z-index: 1;
	position: absolute;
	left: 45%;
	top: 41%;
	content: "\f123";
	font-family: IonIcons;
	color: #BCB9B9;
	pointer-events: none;
}


/* 確認ページ
-------------------------------------------------------------*/
.review-inner {
    padding-left : 100px;
    border-left : 1px solid #BCB9B9;
	text-align: left;

}

/* 送信完了ページ
-------------------------------------------------------------*/
.complete{
	max-width : 1200px;
	margin : 0 auto;
	background : #ffffff;
	text-align: justify;
}
@media screen and (max-width: 680px) {
form#mail_form{
	width : 100%;
}
form#mail_form dl{
	width : 100%;
	overflow : visible;
	border-bottom : none;
}
form#mail_form dl dt{
	width : auto;
	float : none;
	text-align : left;
	padding : 10px 0 5px;
	font-weight : bold;
	border-top : none;
}
form#mail_form dl dd{
	width : auto;
	float : none;
	border-top : none;
	padding : 0px 0 13px 0px;
}
form#mail_form dd input[type="text"],
form#mail_form dd input[type="tel"],
form#mail_form dd input[type="email"]{
	width : 100%;	
}
form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#kana_1,
form#mail_form input#kana_2 {
	width : 49%;
}
form#mail_form dd #address {
	width : 100%;
}
form#mail_form .select-wrap:before {
	left: 90%;
	position: absolute;
	top: 10%;
	line-height: 30px;
}
form#mail_form select{
	width : 100%;
}
form#mail_form dd .post-number {
	padding-left: 0;
}
form#mail_form dd #mileage {
	width: 80%;	
}
	
/* 確認ページ
-------------------------------------------------------------*/
form#mail_form dl.review dt{
	background: #E9E7E7;
	padding: 10px 0 10px 10px;
}
form#mail_form dl.review dd{
	padding: 10px 0 20px 10px;
}
.review-inner {
    padding-left : 0;
    border-left : none;
}
/* 送信完了ページ
-------------------------------------------------------------*/
.complete{
	width : 100%;
}
.complete p.note{
	margin: 20px auto -30px;
}
}




