@charset "utf-8";


form#mail_form{
	width : 100%;
	margin : 20px auto 0;
	padding : 0;
}

form#mail_form dl{
	width : 100%;
	margin : 0 auto;
	overflow : hidden;
	display:flex;
	background: #f2f2f2;
	border-bottom: 2px solid #fff;
}

form#mail_form dl dt{
	clear: both;
    width: 250px;
    box-sizing: border-box;
	border-right: 2px solid #fff;
    padding: 20px 15px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
form#mail_form dl dd{
	width : calc(100% - 250px);
	width : -webkit-calc(100% - 250px);
	box-sizing:border-box;
	padding : 20px 15px;
	position:relative;
	
}
form#mail_form dl dd svg.icn_new_window{
	display:inline-block;
	width:10px;
	margin-left:10px;
	fill:#fff;
	transition: all ease 0.4s;
}


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

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional{
	display : inline-block;
	float : left;
	color : #900;
	line-height : 1;
	padding : 8px 9px;
	font-weight:normal;
	font-size:.9em;
}

form#mail_form dl dt span.required{
	order: 1;
}

form#mail_form dl dt span.optional{
	background : #337ab7;
	border : 1px solid #2e6da4;
}

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 : #900;
	margin-top : 3px;
	font-size:.9em;
}

.send-load{
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.send-load span.loading{
	width : 70px;
	height : 70px;
	border-radius : 50%;
	border-top : 5px solid rgba( 0, 176, 219, 0.2 );
	border-right : 5px solid rgba( 0, 176, 219, 0.2 );
	border-bottom : 5px solid rgba( 0, 176, 219, 0.2 );
	border-left : 5px solid #00b0db;
	-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;
	margin-top: -40px;
    margin-left: -40px;
}
.send-load p{
    text-align: center;
    font-weight: bold;
    margin: auto;
    display: block;
    width: 100%;
    transform: translate(-50%,-50%);
	color:#00b0db;
}
@-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"]{
	max-width: 100%;
	height : 2em;
	padding : 10px 20px;
	border: 1px solid #fff;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
	color: #222;
	overflow : hidden;
    outline : none;
	transition: all 0.4s ease;
}
form#mail_form ul input[type="text"]{
	padding : 2px 10px;
	transition: all 0.4s ease;
}

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 3px #777;
	background : #ffffff;
	color: #777;
	transition: all 0.4s ease;
}

form#mail_form input:focus::placeholder{
	color: transparent;
}
form#mail_form ul li{
	margin-top: 20px;
	display: flex;
    align-items: baseline;
}
form#mail_form ul li:first-child{
	margin-top: 0;
}

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

form#mail_form ul li input[type="radio"] + .check{
	position: relative;
    margin-top: -20px;
	margin-left: 30px;
}
form#mail_form ul li input[type="radio"] + .check:before{
	vertical-align: middle;
    margin-left: -24px;
    margin-right: 14px;
    position: relative;
    top: -2px;
    z-index: 0;
    content: ' ';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f7f7f7;
    border: 1px solid #ddd;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
form#mail_form ul li input[type="radio"]:checked + .check:before{
	vbackground: #333;
    border: 1px solid #333;
}
form#mail_form ul li input[type="radio"] + .check:after {
    position: absolute;
    z-index: 1;
    content: ' ';
    display: inline-block;
    top: 6px;
    left: -20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f7f7f7;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
form#mail_form ul li input[type="radio"]:checked + .check:after {
    background: #333;
}

#people1,#people2,#people3,#people4,#people5,#people6{
	height: 0;
	display: none;
	margin-left: 20px;
	transition: all ease 0.4s;
}
form#mail_form ul li input[type="checkbox"] + .check{
	position: relative;
    margin-top: 0px;
	margin-left: 30px;
	display: inline-block;
}
form#mail_form ul li input[type="checkbox"] + .check:before{
	vertical-align: middle;
    margin-left: -24px;
    margin-right: 14px;
    position: relative;
    top: -2px;
    z-index: 0;
    content: ' ';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #ddd;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
form#mail_form ul li input[type="checkbox"]:checked + .check:before{
	vbackground: #333;
    border: 1px solid #333;
}
form#mail_form ul li input[type="checkbox"] + .check:after {
    position: absolute;
    z-index: 1;
    content: ' ';
    display: inline-block;
    top: 6px;
    left: -19px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
	transition: all ease 0.4s;
}
form#mail_form ul li input[type="checkbox"]:checked + .check:after {
    background: #333;
}

form#mail_form .sel-box dd{
	text-decoration: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    border-radius: 0;
    margin: 0 -27px 0 0;
    box-sizing: border-box;
    font-size: 12px;
    vertical-align: middle;
    color: inherit;
    position: relative;
    line-height: 1.8;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
form#mail_form .sel-box dd:before{
	position: absolute;
    left: 190px;
    top: 30px;
    z-index: 1;
	content: '\025bc';
    display: inline-block;
    margin: 0;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
form#mail_form select{
	width: 200px;
	text-decoration: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    appearance: none;
    border: none;
    background: #ffffff;
    border-radius: 0;
    padding: 10px 40px 10px 10px;
    color: inherit;
    position: relative;
    cursor: pointer;
}

form#mail_form textarea{
	display : block;
	width : calc(100% - 46px);
	width : -webkit-calc(100% - 46px);
	height : 200px;
	padding : 20px;
	resize : vertical;
	border : 1px solid #f2f2f2;
	border-radius : 3px;
	background : #fafafa;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
	color: #222;
	overflow : hidden;
    outline : none;
}


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

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


form#mail_form input#company{
	width : 60%;
}

form#mail_form input#name_1,
form#mail_form input#name_2,
form#mail_form input#read_1,
form#mail_form input#read_2,
form#mail_form input#postal,
form#mail_form input#phone,
form#mail_form input#schedule{
	width : 30%;
}

form#mail_form input#mail_address,
form#mail_form input#mail_address_confirm{
	width : calc(100% - 46px);
	width : -webkit-calc(100% - 46px);
}

form#mail_form input#postal+a{
	font-size:.9em;
	display : inline-block;
	padding : 9px 15px;
	vertical-align : middle;
	background : #333;
	border : 1px solid #333;
	border-radius : 3px;
	color : #ffffff;
	font-family : inherit;
	text-decoration : none;
	position : relative;
	top : -1px;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

form#mail_form input#postal+a:hover{
	cursor : pointer;
	background : #777;
}

form#mail_form input#address_1,
form#mail_form input#address_2{
	display : block;
	width : calc(100% - 46px);
	width : -webkit-calc(100% - 46px);
	margin-top : 20px;
}

form#mail_form input#address_2{
	margin-top : 7px;
}


form#mail_form #form_submit{
	margin: 20px auto 0;
	width: 220px;
	cursor : pointer;
}

form#mail_form #form_submit .submit{
	transition: all ease 0.5s;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.4em;
    padding: 20px 30px;
    background: #00b0db;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    display: block;
}
form#mail_form #form_submit .submit:focus{
	box-shadow : none;
	outline: none;
}

form#mail_form #form_submit .submit:hover{
	cursor : pointer;
	background: #55ad70;
}




/* --responsive----------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 950px) , (max-device-width : 950px) {
	form#mail_form dl{
		display:block;
	}
	form#mail_form dl dt,
	form#mail_form dl dd{
		width:100%;
	}
	form#mail_form dl dt{
		padding-bottom: 0;
		border-right: 0;
		font-weight: bold;
	}
	form#mail_form input#name_1,
	form#mail_form input#name_2,
	form#mail_form input#read_1,
	form#mail_form input#read_2,
	form#mail_form input#postal,
	form#mail_form input#phone,
	form#mail_form input#schedule,
	form#mail_form input#mail_address,
	form#mail_form input#mail_address_confirm,
	form#mail_form input#address_1,
	form#mail_form input#address_2,
	form#mail_form textarea{
		width: calc(100% - 52px);
		width: -webkit-calc(100% - 52px);
	}
	form#mail_form input#postal,
	form#mail_form input#phone,
	form#mail_form input#schedule{
		width: calc(50% - 52px);
		width: -webkit-calc(50% - 52px);
	}
	form#mail_form input#postal+a{
		display: inline-block;
		margin-bottom: 5px;
		top: 1px;
		left: 0;
	}
	form#mail_form .title,
	form#mail_form dl dd,
	form#mail_form .sel-box dd{
		padding:15px;
	}
	form#mail_form .sel-box dd:before{
		top: 25px;
	}
	form#mail_form dl dd input,
	form#mail_form textarea{
		margin:5px 5px 0;
	}
	form#mail_form input#postal+a{
		margin-top:8px;
	}
	form#mail_form dl.last dt{
		border-bottom:none;
	}
	form#mail_form dl.last dd{
		border-bottom:1px solid #333;
	}
}
/* 640pixel start */
@media screen and ( max-width : 640px ){

	form#mail_form{
		margin: 30px auto 0;
	}
	
	form#mail_form dl{
		overflow : visible;
	}
	
	form#mail_form dl dt{
		width : auto;
		float : none;
		text-align : left;
		padding : 25px 1em 5px;
		font-weight : bold;
	}
	
	form#mail_form dl dt span{
		font-weight : normal;
	}
	form#mail_form dl dd,
	form#mail_form .sel-box dd{
		padding: 15px 1em 25px;
	}
	form#mail_form input#name_1,
	form#mail_form input#name_2,
	form#mail_form input#read_1,
	form#mail_form input#read_2,
	form#mail_form input#postal,
	form#mail_form input#mail_address,
	form#mail_form input#address_1,
	form#mail_form input#address_2,
	form#mail_form textarea,
	form#mail_form input#mail_address_confirm {
		width: 90%;
		padding: 5%;
	}
	form#mail_form input#postal,
	form#mail_form input#phone,
	form#mail_form input#schedule{
		width : 50%;
		padding: 5%;
	}
	form#mail_form dl dd input,
	form#mail_form textarea{
		margin:5px 0 0;
	}
	form#mail_form #form_submit{
		min-width: auto;
		width: auto;
		display: table;
	}
	form#mail_form #form_submit .submit:before,
	form#mail_form #form_submit .submit:after{
		width:30px;
	}
	form#mail_form #form_submit .submit:hover:after{
		left:30px;
	}
	
	/* -- for JavaScript ここから -------------------------------------------------------------------------------- */
	
	form#mail_form dl dt span.required,
	form#mail_form dl dt span.optional{
		margin-right : 0.5em;
		font-size:.8em;
	}
	
	
	/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */
	
	form#mail_form input#form_submit_button{
		margin-left : 0;
	}
	

}
/* 640pixel end */
@media screen and (max-width: 400px) , (max-device-width : 400px) {
	form#mail_form #form_submit .submit{
		font-size:.8em;
		padding:20px;
	}
}