@charset "UTF-8";
	.form_container{
    width: 100%;
    overflow: hidden;
    color: #333;
    background-color: #fff;
	}
	@media (max-width: 767px) {
		.form_container{
			font-size: .7em;
		}
	}

.input_group{
	padding: 10px;
}

.form_container .input_group label:first-child {
    color: #666;
}
.form_container .input_group input[type=checkbox]+label,
 .form_container .input_group input[type=radio]+label{
	color: rgba(51, 51, 51, .6);
 }

input, textarea{
	width: 100%;
    -webkit-flex: 1 0 100px;
    -ms-flex: 1 0 100px;
    flex: 1 0 100px;
    padding: 13px;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    outline: none;
    color: #333;
    box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, .1);
    border-color: rgba(0, 0, 0, .3);
    background-color: rgba(100, 100, 100, .1);

}
input[type=text]:focus,
textarea:focus{
	border-color: #50c8a7;
}

select{
	border: 1px solid rgba(0, 0, 0, .3);
    height: 2.5em;
		margin-bottom: 0.5em;
}
.input[type=checkbox]:checked+label, input[type=radio]:checked+label{
	color: #7fbee7;
}
.require{
	display: inline-block;
    font-style: normal;
    line-height: .64em;
    padding: 5px 3px;
    margin: .1em .5em;
    border-radius: 2px;
		background: #f2859d;
    color: #000;
}
.notes{
	display: block;
    background: rgba(0, 0, 0, .1);
    border-color: rgba(0, 0, 0, .1);
    padding: 0 4px;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
		transition: background .25s ease-in-out;
}

.form_container .input_group input[type=text]:focus~.notes
{
	background: #50c8a7;
}
.textarea_notes{
	color: #999;
}

.form_container .input_group input[type=radio]:checked+label,
.form_container .input_group input[type=checkbox]:checked+label
 {
    color: #7fbee7;
}

	.flex_box{
display: flex;
justify-content: center;
	}
	.flex_box > div {
		width: 100%;
	}

	.privacy_policy_box{
    text-align: center;

	}
	.privacy_policy_text{
    margin: 10px 10px 5px;
	}
	@media screen and (max-width: 760px) {
		.privacy_policy_text{
			margin: 0 10px;
	}
	}

	.privacy_policy_text a {
    color: #50c8a7;
    text-decoration: none;
}
.privacy_policy_text a:hover {
    color: hsl(163.5, 52.1739130435%, 74.9019607843%);
    text-decoration: none;
}

button.btn{
	color: #184e41;
    text-align: center;
    display: block;
    max-width: 100%;
    margin: 0 auto 0.5em;
		padding: 0.8em;
}
button.btn:hover{
	opacity: .5;
}
.warn{
	color: #c10a12;
	margin-bottom: 10px;
}

/* 確認画面 */
#mailFormWrapper dl.confirmation{
	display: block;
	padding: 1em;
}
dl.confirmation > div{
    margin-bottom: 1em;
    border: thin solid #C7C7C7;
}

#mailFormWrapper dl.confirmation div dt,
#mailFormWrapper dl.confirmation div dd{
	padding: 1em;
	margin-bottom: 0;
	font-weight: normal;
}

#mailFormWrapper dl.confirmation div dt{
	color: #666;
}
.btn_box{
	display: flex;
	justify-content: center;
	align-items: center;	
}
.btn_box > div{
	width: 50%;
}