@charset "utf-8";
/* contact.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV          　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#kv {
	height: 500px;
	background-position: 0% center;
	background-image: url(../images/contact_kv.jpg);
}
#kv h2 {
	height: 256px;
	
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* h4          　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

h4 {
	margin-bottom: 10px;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	color: #413A7C;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 電話でのお問い合わせ　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#tel_area {
	margin-left: 20px;
	margin-right: 20px;

}


#tel_number {
	font-size: 16px;
	color: #333333;
}
#tel_number li {
	margin-right: 30px;
	display: inline-block;
}
#tel_number li a {
	text-decoration: none;
	color: #000000;
}
#time {
	font-size: 11px;
	color: #6D6D6D;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* フォーム注釈        　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#form_note {
	margin-bottom: 60px;
	font-size: 16px;

}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メールフォーム 大枠 　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#form_area {
	margin-top: 30px;
	margin-left: 20px;
	margin-right: 20px;
	padding-top: 30px;
	border-top: 1px solid #CCCCCC;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メールフォーム　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
form#mail_form {
	font-size: 14px;

}

form#mail_form dl {
	margin: 0 auto;
	overflow: hidden;
	border-top: 1px solid #CCCCCC;
}

form#mail_form dl dt {
	clear: both;
	width: 260px;
	float: left;
	padding-top: 25px;
	padding-bottom: 15px;
	text-align: left;
	overflow: hidden;
	padding-right: 40px;
	border-top: 1px solid #CCCCCC;
}

form#mail_form dl dd {
	width: 760px;
	float: right;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #CCCCCC;
}

form#mail_form dl dt:first-child,
form#mail_form dl dt:first-child + dd {
	border: none;
}

form#mail_form dl dt span {
	display: block;
	font-size: 85%;
	color: #3377ff;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	display: inline-block;
	float: right;
	color: #ffffff;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 3px;
	font-size: 12px;
}

form#mail_form dl dt span.required {
	background: #C40E25;
	border: 1px solid #C40E25;
}

form#mail_form dl dt span.optional {
	background: #AAAAAA;
	border: 1px solid #AAAAAA;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 3px;
}


span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */


form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	padding: 7px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	margin-top: 7px;
}

form#mail_form input[type="text"]:focus,
form#mail_form input[type="email"]:focus,
form#mail_form input[type="tel"]:focus,
form#mail_form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

form#mail_form ul li input[type="radio"],
form#mail_form ul li input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 10px;
}

form#mail_form ul li:first-child input[type="radio"],
form#mail_form ul li:first-child input[type="checkbox"] {
	margin-top: 0px;
}

form#mail_form select {
	font-size: 100%;
	font-family: inherit;
	margin-top: 10px;
}

form#mail_form textarea {
	display: block;
	width: 100%;
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


form#mail_form ul {
	list-style-type: none;
}

form#mail_form ul li label:hover {
	cursor: pointer;
}


form#mail_form input#name,
form#mail_form input#read,
form#mail_form input#mail_address,
form#mail_form input#phone,
form#mail_form input#fax {
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


form#mail_form input#address {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
form#mail_form input#postal + a {
	display: inline-block;
	padding: 5px 15px;
	border: 1px solid #46b8da;
	border-radius: 3px;
	background: #5bc0de;
	font-size: 100%;
	color: #ffffff;
	text-decoration: none;
}

form#mail_form input#postal + a:hover {
	cursor: pointer;
	background: #31b0d5;
	border: 1px solid #269abc;
}

form#mail_form p#form_submit {
	padding: 15px 0;
	margin-top: 30px;
}

form#mail_form input[type="button"] {
	padding-top: 10px;
	padding-bottom: 10px;
	border: 2px solid #373737;
	background-color: #000000;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	width: 300px;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	border: 2px solid #616161;
	background-color: #2E2E2E;
}

form#mail_form input#form_submit_button {
	margin-left: 300px;
}




/* 入力例 */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc; opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}



/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* サンクスページ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#thanks_contents {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 60px;
}
#thanks_contents h3 {
	text-align: left;
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: bold;
}










/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* KV　　　　　　　　                                                     */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/	
#kv h2 {
	height: auto;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 電話でのお問い合わせ　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#tel_area {
	padding-left: 0px;
}
#tel_tt {
	font-size: 18px;
	text-align: left;
}

#tel_number li {
	margin-right: 0px;
	display: inherit;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* フォーム注釈        　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#form_note {
	margin-bottom: 40px;
	font-size: 14px;
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メールフォーム 大枠 　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#form_area {
	margin-top: 30px;
	padding-top: 30px;
	padding-left: 0px;
	padding-right: 0px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* メールフォーム　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

form#mail_form {
	width: 100%;
}

form#mail_form dl {
	overflow: visible;
}

form#mail_form dl dt {
	width: 100%;
	float: none;
	text-align: left;
	padding-top: 15px;
	padding-right: 0px;
	padding-left: 0;
	padding-bottom: 5px;
	font-weight: bold;
}

form#mail_form dl dd {
	width: 100%;
	float: none;
	border-top: none;
	padding: 0px 0 20px 0px;
}

form#mail_form dl dt span {
	font-weight: normal;
}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	margin-right: 1em;
	margin-bottom: 2em;
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */

form#mail_form input[type="text"],
form#mail_form input[type="email"],
form#mail_form input[type="tel"] {
	margin-top: 0px;
}

form#mail_form input#postal + a {
	padding: 6px 15px 5px;
}

form#mail_form input#form_submit_button {
	margin-left: 0;
}

form#mail_form select {
	font-size: 16px;
	margin-top: 0;
}
form#mail_form input#name,
form#mail_form input#read,
form#mail_form input#mail_address,
form#mail_form input#phone,
form#mail_form input#fax {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 8px;
}


#form_submit {
	text-align: center;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* サンクスページ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#thanks_contents {
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 40px;
}
#thanks_contents h3 {
	font-size: 20px;
	margin-bottom: 12px;
}


}
