﻿@charset "utf-8";

.contact_top_text_catch{
	text-align: center;
	font-size: 35px;
	line-height: 1.8;
	font-weight: 600;
	color: #009b73;
}

.contact_top_text_catch strong{
	border-bottom: 5px solid #ebb85b;
}

/*---*/

.contact_top_text_catch_image{
	text-align: center;
	margin-top: -50px;
	margin-left: auto;
	margin-right: auto;
}

/*---*/

.contact_top_text{
	/*font-size: 20px !important;*/
	/*line-height: 30px;*/
	/*color: #6aa436;*/
	margin-top: 40px !important;
	margin-bottom: 20px !important;
	
	text-align: center;
	font-size: 16px;
	line-height: 1.6;
}

.contact_top_text + p{
	text-align: center;
	font-size: 16px;
	line-height: 1.6;
}

input::-webkit-input-placeholder {
	color: #ccc;
}

input, button, textarea,{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="text"] {
	property: value;
}
input[type="password"] {
	property: value;
}

/* input type="radio" のみ */
input[type="radio"] {
	property: value;
}

/* input type="checkbox" のみ */
input[type="checkbox"] {
	property: value;
}

/* input type="reset" のみ */
input[type="reset"] {
	property: value;
}

/* input type="submit" のみ */
input[type="submit"] {
	property: value;
}

/*フォーカス時のスタイルを変更する*/
input[type="text"],
textarea {
	outline: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height: 33px;
	line-height: 33px;
	padding: 0 10px;
}
input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 3px #1abc9c;
	border: 1px solid #1abc9c;
}

/*フォーカス時のスタイルを変更する*/
input[type="email"],
textarea {
	outline: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height: 33px;
	line-height: 33px;
	padding: 0 10px;
}
input[type="email"]:focus,
textarea:focus {
	box-shadow: 0 0 3px #1abc9c;
	border: 1px solid #1abc9c;
}

/*フォーカス時のスタイルを変更する*/
input[type="tel"],
textarea {
	outline: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height: 33px;
	line-height: 33px;
	padding: 0 10px;
}
input[type="tel"]:focus,
textarea:focus {
	box-shadow: 0 0 3px #1abc9c;
	border: 1px solid #1abc9c;
}

/*フォーカス時に入力エリアを伸ばす

input[type="text"] {
	width: 500px;
	-webkit-transition: width .3s;
	transition: width .3s;
}
input[type="text"]:focus {
	width: 500px;
}
*/

/* ラジオボタンをCSSのみで装飾する */
input[type="radio"] {
	display: none;
}
label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
input[type="radio"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/* チェックボックスをCSSのみで装飾する */
input[type="checkbox"] {
	display: none;
}
label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before,
label::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/* サブミットボタンをCSSのみで装飾する */

.submit-button {
	background: #009999;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	height: 90px;
	color: #fff;
	padding: 0;
	font-size: 20px;
	width: 60%;
	font-weight: bold;
	border: 0;
	margin: 40px 0;
}

.submit-button:hover {
	/*background: #29bfbf;*/
/*
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
*/
	color: #fff;
	padding: 15px 25px;
	/*font-size: 16px;*/
	opacity: 0.6;
	filter: alpha(opacity=60);
}
/*
.submit-button:active {
	background: #f18200;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	color: #fff;
	padding: 15px 25px;
	font-size: 16px;
}
*/

/*
.submit-button {
	border: 1px solid #447314;
	background: #6aa436;
	background: -webkit-gradient(linear, left top, left bottom, from(#8dc059), to(#6aa436));
	background: -webkit-linear-gradient(top, #8dc059, #6aa436);
	background: -moz-linear-gradient(top, #8dc059, #6aa436);
	background: -ms-linear-gradient(top, #8dc059, #6aa436);
	background: -o-linear-gradient(top, #8dc059, #6aa436);
	background-image: -ms-linear-gradient(top, #8dc059 0%, #6aa436 100%);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	-moz-box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	box-shadow: rgba(255,255,255,0.4) 0 1px 0, inset rgba(255,255,255,0.4) 0 1px 0;
	xtext-shadow: #addc7e 0 1px 0;
	color: #fff;
	padding: 8.5px 18px;
	font-size: 14px;
	text-decoration: none;
	vertical-align: middle;
}



.submit-button:hover {
	border: 1px solid #e19f12;
	xtext-shadow: #31540c 0 1px 0;
	background: #6aa436;
	background: -webkit-gradient(linear, left top, left bottom, from(#f9d0a4), to(#ff7400));
	background: -webkit-linear-gradient(top, #f9d0a4, #ff7400);
	background: -moz-linear-gradient(top, #f9d0a4, #ff7400);
	background: -ms-linear-gradient(top, #f9d0a4, #ff7400);
	background: -o-linear-gradient(top, #f9d0a4, #ff7400);
	background-image: -ms-linear-gradient(top, #f9d0a4 0%, #ff7400 100%);
	color: #fff;
}
.submit-button:active {
	xtext-shadow: #31540c 0 1px 0;
	border: 1px solid #447314;
	background: #8dc059;
	background: -webkit-gradient(linear, left top, left bottom, from(#6aa436), to(#6aa436));
	background: -webkit-linear-gradient(top, #6aa436, #8dc059);
	background: -moz-linear-gradient(top, #6aa436, #8dc059);
	background: -ms-linear-gradient(top, #6aa436, #8dc059);
	background: -o-linear-gradient(top, #6aa436, #8dc059);
	background-image: -ms-linear-gradient(top, #6aa436 0%, #8dc059 100%);
	color: #fff;
}
*/


.sss{
	border-radius: 4px; /* CSS3草案 */
	-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
	-moz-border-radius: 4px; /* Firefox用 */
	padding: 2px 5px;
	width: 90px;
}

.ss{
	border-radius: 4px; /* CSS3草案 */
	-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
	-moz-border-radius: 4px; /* Firefox用 */
	padding: 2px 5px;
	width: 35%;
}

.mm{
	border-radius: 4px; /* CSS3草案 */
	-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
	-moz-border-radius: 4px; /* Firefox用 */
	padding: 2px 5px;
	width: 50%;
}

.ll{
	border-radius: 4px; /* CSS3草案 */
	-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
	-moz-border-radius: 4px; /* Firefox用 */
	padding: 2px 5px;
	width: 70%;
}

.tt_text{
	border-radius: 4px; /* CSS3草案 */
	-webkit-border-radius: 4px; /* Safari,Google Chrome用 */
	-moz-border-radius: 4px; /* Firefox用 */
	padding: 2px 10px;
	width: 80%;
	font-size: 13px;
	height: 150px;
}

.tt_box{
	text-align: center;
	margin: 25px 0;
}

#privacy {
	max-width: 1000px;
	width: 80%;
	height: 200px;
	margin: 20px 10% 30px;
	padding: 15px 4%;
	background-color: #fff;
	border: #ccc solid 1px;
	overflow: auto;
	text-align: left;
	font-size: 90%;
}

#policy_list{
	font-size: 13px;
}

#policy_list li{
	border-bottom: 1px dotted #ccc;
	margin: 0 0 10px;
	padding: 0 0 10px;
}

#policy_list p{
	font-size: 13px;
}

/* ウィンドウ幅が0～479pxの場合に適用するCSS */
@media screen and ( max-width:479px ){

.tt_box{
	margin: 25px 0 18vw;
}

.tt_box img{
	width: 100%;
}

.submit-button {
-webkit-appearance: none;
	width: 70%;
}

}/* ウィンドウ幅が0～769pxの場合に適用するCSS */


/*-------------------------*/

.t_title{
	width: 90%;
	margin: 0 5% 25px;
}

.form_box{
	width: 90%;
	margin: 5% 5% 2%;
	float: left;
	border-top: 1px dotted #ccc;
}

.form_box caption{
	text-align: left;
	margin: 30px 0 0;
	font-size: 17px;
	font-weight: bold;
	text-indent: 15px;
	color: #fff;
	height: 50px;
	line-height: 50px;
	background: #009ace;
	width:10px;
}

.form_box th span{
	border-radius: 5px; /* CSS3草案 */
	-webkit-border-radius: 5px; /* Safari,Google Chrome用 */
	-moz-border-radius: 5px; /* Firefox用 */
	background: #ff5d8e;
	font-size: 11px;
	font-weight: normal;
	color: #fff;
	padding: 0 10px;
	margin: 0 0 0 5px;
	float: right;
	width: 30%;
	text-align: center;
}

.form_box th .nini{
	background: #979797;
}

.form_box th{
	border-right: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	padding-right: 15px !important;
	font-weight: normal;
	width: 240px;
}

.form_box th p{
	color: #b21111;
}


.form_box tr:nth-child(even){
/*background: #fff0b1;*/
	border-left: 4px solid #ccc;
}

.form_box tr:nth-child(odd){
	/*background: #fbffd4;*/
	border-left: 4px solid #ddd;
}

.form_box th:nth-child(odd){
	/*border-left: 4px solid #f3d760;*/
	padding: 0 0 0 10px;
	/*display: inline-block;*/
}

select {
	outline: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height: 33px;
	line-height: 33px;
	padding: 0 10px;
}

/* IEハック */
@media all and (-ms-high-contrast:none) {

select {
	padding: 0 0 0 10px;
}

}/* IEハック */


.form_box td{
	border-bottom: 1px dotted #ccc;
	padding: 15px;
	vertical-align: middle;
	text-align: left;
	float: left;
	/*display: inline-block;*/
	width: 100%;
}

.form_box td div{
	margin: 15px 0;
}

.form_box td .mlt{
	float: left;
	margin: 0 25px 10px 0;
}

.form_box td .mlt p{
	font-weight: bold;
	margin: 0 0 3px;
	color: #3159b8;
}

.form_box td .mlt select{
	width: 200px;
}

.form_box td .mlc{
	clear: both;
	margin: 10px 0 0;
}

.form_box td .cc{
	font-size: 13px;
	line-height: 18px;
}

.form_box td .ee{
	font-size: 11px;
	line-height: 18px;
	margin: 0 0 0 10px;
}


/*-------------------------*/
/*確認画面*/

#page-wrap {
	position:fixed;
	right:0px;
	top:120px;
	font-size:30px;
	width:50px;
}

#formWrap {
	width:90%;
	margin:20px auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}

#formWrap p{
	text-align: center;
}

#formWrap p.privacy_text{
	text-align: left;
	line-height: 1.5;
	margin-bottom: 10px;
}

/* ウィンドウ幅が0～479pxの場合に適用するCSS */
@media screen and ( max-width:479px ){

#formWrap {
	margin: 20px auto 20vw;
}

.form_box th{
	display: inline-block;
	width: 100%;
	border-right: none;
	padding-right: 0 !important;
	background: #eee;
}

.form_box td{
	display: inline-block;
	width: 100%;
}

.submit-button {
-webkit-appearance: none;
	width: 90%;
	background-size: contain;
	/*background: url(../img/form/bt.png) no-repeat;*/
	margin: 40px 0 0;
}

}/* ウィンドウ幅が0～769pxの場合に適用するCSS */


table.formTable{
	width: 100%;
	margin:10px auto 40px;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	/*border:1px solid #ccc;*/
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	/*background:#efefef;*/
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}

/* 追記 */
#telmail {
	background: none repeat scroll 0 0 #FFFF88;
	margin: 10px auto;
	padding: 10px 5%;
	width: 80%;
}
#telmail p {
	margin: 10px 0;
	text-align: left;
}
input#submit {
	background-color: #02cd67;
	color: #fff;
	font-size: 20px;
	height: 60px;
	width: 200px;
	margin: 0 20px 0 0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

/*-------------------------*/
/*サンクスページ*/

#page-wrap {
	position:fixed;
	right:0px;
	top:120px;
	font-size:30px;
	width:50px;
}

.thanks_box{
	width: 90%;
	margin: 5%;
	text-align: center;
}

.top_ji{
	text-align: center;
}

.top_ji .t_title h3{
	text-align: center;
}

.top_ji .text{
	text-align: center;
}

.placeholder{
	color: #ccc !important;
}

/* ウィンドウ幅が0～769pxの場合に適用するCSS */
@media screen and ( max-width:769px )
{

.sss{
	width: 30%;
}

.ss{
	width: 80%;
}

.mm{
	width: 80%;
}

.form_box td .ee {
	margin: 0 0 0 0;
}

.ll{
	width: 100%;
}

.form_box th br {
	display: inline;
}

.mail_check_bt{
	text-align: center;
}

.tt_text{
	width: 90%;
}

}/* ウィンドウ幅が0～769pxの場合に適用するCSS */

/* ウィンドウ幅が0～479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{

.sss{
	width: 40%;
}

.ss{
	width: 80%;
}

.mm{
	width: 100%;
}

.ll{
	width: 100%;
}

.form_box th br {
	display: inline;
}

.mail_check_bt{
	text-align: center;
}

.tt_text{
	width: 90%;
}


}/* ウィンドウ幅が0～479pxの場合に適用するCSS */
