﻿@charset "utf-8";

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 #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
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 #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
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 #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
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 {
	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: 30px;
}

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

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

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

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


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

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

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

.form_box{
	width: 90%;
	margin: 0 5%;
}

.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: #8d2727;
	font-size: 11px;
	font-weight: normal;
	color: #fff;
	padding: 0 5px;
	margin: 0 0 0 5px;
}

.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;
}


.form_box td{
	border-bottom: 1px dotted #ccc;
	padding: 10px 15px;
	vertical-align: middle;
	text-align: left;
}

.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: 11px;
}

.form_list{
	width: 700px;
	float: left;
	margin: 0 0 20px;
}


.form_box th br {
	display: none;
}


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

#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%;
}
table.formTable{
	width: 100%;
	margin:10px auto;
	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;
}


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

.sss{
	width: 20%;
}

.ss{
	width: 40%;
}

.mm{
	width: 60%;
}

.ll{
	width: 80%;
}


.form_box{
	width: 100%;
	margin: 0;
}

.form_box th{
	font-size: 13px;
	width: 28%;
}

.form_box th br {
	display: inline;
}

.mail_check_bt{
	text-align: center;
}


}