@charset "utf-8";
/* -----------------------------------------------------------
input
-------------------------------------------------------------- */

input, textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "NotoSansCJKjp-Regular";
}

input[type="text"], input[type="name"], input[type="email"], input[type="tel"], textarea {
	width: 100%;
	font-size: 16px;
	padding: 20px;
	background: none;
	border: 2px solid #b9b9b9;
	border-radius: 8px;
}
@media screen and (max-width:667px){

	input[type="text"], input[type="name"], input[type="email"], input[type="tel"], textarea {
		font-size: 14px;
		padding: 15px;
	}
}

textarea {
	resize: vertical;
	width: 100%;
	height:200px;
}

input:focus, textarea:focus {
	border: 1px solid #006ebb;
	border-radius: 8px;
}

input[type="submit"] {
	color: #fff;
	font-weight: bold;
	background: #bfbfbf;
	border: 1px solid #fff;
	border-radius: none;
	-moz-border-radius: none;
	-webkit-border-radius: none;
	-webkit-appearance: none;
	display: block;
	margin: 20px auto 0 auto;
	padding: 0;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

input[type="submit"]:hover {
	color: #888;
	cursor: pointer;
	border: 1px solid #bfbfbf;
	background: #fff;
}

.err_txt {
	font-size: .75em;
	color: #f00;
	padding: 0 1em;
	position: relative;
	margin: 4px 0 0 0;
}

.form_list {
	width: 100%;
	box-sizing: border-box;
}

:placeholder-shown {
	color: #c0c0c0;
}

::-webkit-input-placeholder {
	color: #c0c0c0;
}

:-moz-placeholder {
	color: #c0c0c0;
	opacity: 1;
}

::-moz-placeholder {
	color: #c0c0c0;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #c0c0c0;
}

@media screen and (max-width:640px) {
	input[type="text"], input[type="name"], input[type="email"], input[type="tel"], textarea {
		box-shadow: none;
		-webkit-appearance: none;
		margin: -1px 0 0 0;
	}
	input[type="submit"] {
		display: block;
		text-decoration: none;
		-webkit-appearance: none;
		border-radius: 0;
	}
	.fomr_list {
		border-left: 1px solid #fff;
		border-right: 1px solid #fff;
	}
}


.checkbox-input {
	display: none;
}

.checkbox-parts {
	position: relative;
	margin-right: 20px;
}

.checkbox-parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border: 1px solid #fff;
	background: #fff;
	border-radius: 0;
}

.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 20px 0 8px 0;
	padding: 12px 12px 12px 42px;
	border-radius: 0;
	vertical-align: middle;
	cursor: pointer;
}

.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 0px;
	display: block;
	margin-top: -10px;
	margin-right: 0;
	width: 20px;
	height: 20px;
	content: '';
	border: 1px solid #b9b9b9;
	border-radius: 2px;
}

.pri_btn .white_box{
	width: 20px;
	height: 20px;
	background: #fff;
	margin-top: -53px;
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 60%;
	left: 5px;
	display: block;
	margin-top: -10px;
	margin-right: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #006ebb;  
	content: '';
	opacity: 0;
}
@media screen and (max-width:667px){
	
	.radio, .checkbox {
		margin: 20px 0;
		padding: 0px 5px 0px 35px;
	}
	.checkbox-parts::before {
		width: 20px;
		height: 20px;
	}
	.radio:after, .checkbox:after {
		width: 20px;
		height: 20px;
	}
	.pri_btn .white_box{
		width: 20px;
		height: 20px;
		margin-top: -43px;
	}

	.radio:before {
		top: 50%;
		left: 5px;
		margin-top: -5px;
		margin-right: 10px;
		width: 12px;
		height: 12px;
	}
}

input[type=radio]:checked+.radio:before {
	opacity: 1;
}

input#agree{
	display: none;
}

.subumit_btn{
	width: 250px;
	text-align: center;
	font-size: 20px;
    text-align: center;
	margin: 60px auto 100px auto;
	border-radius: 160px;
    background-size: 24px;	
}

.subumit_btn button{
    color: #fff;
	font-size: 16px;
    font-family: "KiwiMaru-Medium";
	letter-spacing: 0.04em;
	width: 100%;
	padding: 20px 0;
	display: block;
	position: relative;
	border: 2px solid #006ebb;
	border-radius: 160px;
    background: #006ebb;
}
.subumit_btn button img{
	width: 20px;
	position: absolute;
	top: 46%;
	right: 24px;
}

.subumit_btn button:disabled{
    color: #fff;
	font-size: 16px;
	border: 2px solid #a0a0a0;
	background: #a0a0a0;
}

.subumit_btn button:hover{
	cursor: pointer;
}

.subumit_btn button:focus {
	border: 2px solid #006ebb;
}

@media screen and (max-width:667px){

	.subumit_btn{
		width: 100%;
		font-size: 17px;
		margin: 60px auto;
	}
}