@charset "UTF-8";

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea {
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--colorG);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 5%);
	margin: 0 5px;
	padding: 10px 30px;
}
textarea {
	height: 120px;
	box-sizing: border-box;
	resize: vertical;
}
label{
    display: flex;
    align-items: center;
	width: 100px;
	margin: 0 0 0 20px;
	padding: 0;
}
input[type="submit" i]{
	cursor: pointer;
	background: var(--color01);
	border-radius: 0;    
    color: #fff;
    font-size: 20px;
    text-align: center;
	display: block;
	max-width: 640px;
	width: 90%;
	margin: 0 auto 5%;
    padding: 20px 0;    
}
input[type="submit" i]:hover{
	background: var(--color01h);
}
input[type="button" i] {
	cursor: pointer;
	background: #ccc;
	border-radius: 0;    
    color: #000;
    border: 0;
    display: block;
    font-size: 20px;
    font-family: 'UD Reimin Medium',serif;
    font-weight: normal;
    padding: 1% 0;    
    margin: 3% auto 0;
    width: 40%;
}

input[type="radio"],
input[type="checkbox"] {
	appearance: none; 
	border: 1px solid #5c7886;
	height: 20px;
	left: -.5em;
	margin: 0;
	position: relative;
	width: 20px;
}
input[type="radio"]{
	border-radius: 50%;
}
input[type="checkbox"]{
	border-radius: 5px;
}
input[type="radio"]:before {
	content: "";
	background-color: #5c7886;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	margin: auto;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;	
	left: 0;	
}
input[type="checkbox"]:before {
	content: "";
	border-right: 3px solid #5c7886;
	border-bottom: 3px solid #5c7886;
	width: 7px;
	height: 14px;
	margin: auto;	
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;	
	left: 0;
	transform: rotate(45deg);
}
input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
	opacity: 1;
}

input[type="button"]{
	background: #eae0d0;
	text-align: center;
}

.grecaptcha-badge{
	display: none;
}
