@charset "utf-8";


/**************************************************50
 * form
 **************************************************/
label.select_box{
	display: inline-block;
	position: relative;
	max-width: 100%;
}
label.select_box:after{
	content: "\F035D";
	font-family: "Material Design Icons";
	font-size: 160%;
	height: 30px;
	line-height: 30px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 2px;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
select{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	color: #000000;
	cursor: pointer;
	font-size: 16px;
	height: 32px;
	line-height: 30px;
	padding: 0 2.1em 0 0.5em;
	transition: border-color,box-shadow 0.2s ease-out 0s;
	max-width: 100%;
}
select:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
select:focus{
	border-color: #424242;
}
select::-ms-expand{
	display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"]{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 16px;
	height: 32px;
	line-height: 30px;
	padding: 0 1em;
	transition: border-color,box-shadow 0.2s ease-out 0s;
	vertical-align: baseline;
	width: 100%;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
textarea:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus{
	border-color: #424242;
}
textarea{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 16px;
	min-height: 12em;
	margin: 0;
	padding: 0.5em 1em;
	resize: vertical;
	transition: border-color,box-shadow 0.3s ease-out 0s;
	vertical-align: top;
	width: 100%;
}

/** -- checkbox -- **/
input[type="checkbox"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="checkbox"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label{
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label:before,
input[type="checkbox"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="checkbox"] + label:before{
	content: "\F0131";
	font-family: "Material Design Icons";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="checkbox"] + label:after{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	content: "\F0132";
	color: transparent;
	font-family: "Material Design Icons";
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
.input_check[class*="error_"]{
	background-color: #FFEBEE;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="checkbox"] + label:after{
		font-size: 40% !important;
	}
}
input[type="checkbox"]:checked + label:before{
	color: transparent !important;
}
input[type="checkbox"]:checked + label:after{
	color: #0094DB;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="checkbox"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="checkbox"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="checkbox"]:disabled + label:hover,
input[type="checkbox"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
/*
:-ms-input-placeholder{
	color: #616161;
}
:-webkit-input-placeholder{
	color: #616161;
}
:placeholder-shown{
	color: #616161;
}
*/

/** -- radio -- **/
input[type="radio"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="radio"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="radio"] + label:before,
input[type="radio"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="radio"] + label:before{
	content: "\F043D";
	font-family: "Material Design Icons";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="radio"] + label:after{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	content: "\F043E";
	color: transparent;
	font-family: "Material Design Icons";
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="radio"]:checked + label:after{
		font-size: 40% !important;
	}
}
input[type="radio"]:checked + label:before{
	color: transparent !important;
}
input[type="radio"]:checked + label:after{
	color: #0094DB;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="radio"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="radio"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="radio"]:disabled + label:hover,
input[type="radio"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
.input_radio[class*="error_"]{
	background-color: #FFEBEE;
}


/**************************************************50
 * form
 **************************************************/
#form{
	background-color: #F1F1F1;
}
#form > h2{
}
#form > h3{
	margin-left: auto;
	margin-right: auto;
}
#form > p{
}
#form > [class^="list_"]{
}
#form .error,
#form .success,
#form .failed{
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
}
#form span.required{
	position: relative;
}
#form .required:after{
	background-color: #F7861E;
	color: #FFFFFF;
	content: "必須";
	display: block;
	font-size: 75%;
	font-weight: normal;
	height: 20px;
	line-height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	text-align: center;
	width: 3em;
}
#form .tbl_com{
	line-height: 1.6;
}
#form .tbl_com tr th{
	text-align: left;
}
#form .tbl_com tr th.required{
	position: relative;
}
#form .tbl_com tr th.required:after{
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#form .tbl_com tr td{
}
#form .tbl_com tr td input[name="date"]{
	width: 10em;
}
#form .tbl_com tr td input[name="zipcode"]{
	width: 8em;
}
#form .tbl_com tr td input[type="text"][name="prefecture"]{
	width: 10em;
}
#form .tbl_com tr td input[name="tel"]{
	width: 10em;
}
#form .tbl_com tr td .form_items{
}
#form .tbl_com tr td .list_note{
	font-size: 75%;
	margin-top: 0.4em;
}
#form .tbl_com tr td .error_notice{
	line-height: 1.6;
}
#form_conf{
	text-align: center;
}
@media screen and (max-width:767px){
	#form{
		margin-bottom: 6.25%;
		padding-top: 3.125%;
		padding-bottom: 6.25%;
	}
	#form > h2{
	}
	#form > h2:not(:first-child){
		margin-top: 6.25%;
	}
	#form > h3{
		margin-top: 3.125%;
		margin-bottom: 1.5625%;
		padding: 0 3.125%;
	}
	#form > p{
		padding: 0 3.125%;
	}
	#form > [class^="list_"]{
		padding: 0 3.125% 0 -webkit-calc(3.125% + 1em);
		padding: 0 3.125% 0 calc(3.125% + 1em);
	}
	#form .error,
	#form .success,
	#form .failed{
		margin-bottom: 3.125%;
		width: 93.75%;
	}
	#form .tbl_com tr th{
	}
	#form .tbl_com tr th.required{
		padding: 1.5625% -webkit-calc(3.125% + 40px) 1.5625% 3.125%;
		padding: 1.5625% calc(3.125% + 40px) 1.5625% 3.125%;
	}
	#form .tbl_com tr th.required:after{
		margin-right: 3.571428571428571%;
	}
	#form .tbl_com tr td{
		padding: 1.5625% 3.125% 3.215%;
	}
	#form .tbl_com tr td .form_items + div{
	}
	#form .tbl_com tr td .form_items + div:not(:last-child){
		margin-bottom: 3.571428571428571%;
	}
	#form .tbl_com tr td .form_txt{
		margin-bottom: 3.571428571428571%;
	}
	#form_conf{
		padding: 0 3.125%;
		margin-bottom: 3.125%;
	}
}
@media screen and (min-width:768px){
	#form{
		margin-bottom: 100px;
		padding-top: 50px;
		padding-bottom: 100px;
	}
	#form > h2{
	}
	#form > h2:not(:first-child){
		margin-top: 100px;
	}
	#form > h3{
		margin-top: 50px;
		margin-bottom: 10px;
		width: -webkit-calc(100% - (20px * 2) + (2em * 2));
		width: calc(100% - (20px * 2) + (2em * 2));
		max-width: -webkit-calc(1070px + (2em * 2));
		max-width: calc(1070px + (2em * 2));
	}
	#form > p{
		margin-left: auto;
		margin-right: auto;
		width: -webkit-calc(100% - (20px * 2));
		width: calc(100% - (20px * 2));
		max-width: 1070px;
	}
	#form > [class^="list_"]{
		margin-left: auto;
		margin-right: auto;
		width: -webkit-calc(100% - (20px * 2));
		width: calc(100% - (20px * 2));
		max-width: 1070px;
	}
	#form .error,
	#form .success,
	#form .failed{
		margin-bottom: 50px;
		width: 100%;
	}
	#form .tbl_com{
		width: 100%;
	}
	#form .tbl_com tr th{
		width: 16em;
	}
	#form .tbl_com tr th.required:after{
		margin-right: 2em;
	}
	#form .tbl_com tr td{
		border: none;
		padding-left: 2em;
	}
	#form .tbl_com tr td .form_items{
		display: inline-block;
		vertical-align: top;
		width: 5em;
	}
	#form.h-adr .tbl_com tr td .form_items{
		height: 32px;
		line-height: 32px;
	}
	#form .tbl_com tr td .form_items:not(:nth-last-child(2)){
		margin-bottom: 10px;
	}
	#form .tbl_com tr td .form_items + div{
		display: inline-block;
		width: -webkit-calc(100% - 5em);
		width: calc(100% - 5em);
		vertical-align: top;
	}
	#form .tbl_com tr td .form_items + div:not(:last-child){
		margin-bottom: 10px;
	}
	#form .tbl_com tr td .form_txt{
		margin-bottom: 10px;
	}
	#form_conf{
		margin-bottom: 50px;
	}
}
@media screen and (max-width:767px){
	#form .tbl_com tr th br{
		display: none;
	}
}
@media screen and (min-width:1200px){
	#form .tbl_com tr th{
		width: 19em;
	}
	#form .tbl_com tr th br{
		display: none;
	}
}


/**************************************************50
 * form_btn
 **************************************************/
#form_btn{
	text-align: center;
}
@media screen and (max-width:767px){
	#form_btn{
	}
	#form_btn [class^="btn_"],
	#form_btn [class^="link_"]{
		margin: 3.125% 1.5625% 0;
		max-width: 180px;
	}
}
@media screen and (min-width:768px){
	#form_btn{
		margin-top: 30px;
	}
	#form_btn [class^="btn_"],
	#form_btn [class^="link_"]{
		margin: 20px 15px 0;
	}
}


