@charset "utf-8";
/* CSS Document */

.option__items{
	margin: 0;
	padding: 0;
	list-style: none;

	margin-top: -2%;
	margin-left: -2%;

	display: flex;
	flex-wrap: wrap;
}
.option__item{
	flex: 0 1 48%;
	margin-top: 2%;
	margin-left: 2%;
	box-sizing: border-box;
	border: 1px solid #999;
}
.option__radio{
	display: none;
}

@media all and (-ms-high-contrast: none){
	.option__item{
		flex-basis: 47.8%;
	}
}



.input__wrap{
	height: 100%;
	padding: 1%;
	box-sizing: border-box;

	display: flex;

}
.option__radio:checked ~ .input__wrap{
	background-color: #f5f5f5;
}
.input__image{
	margin-right: 2%;

	flex: 0 1 auto;
}
.input__body{
	flex: 1 1 auto;
}
.input__title{
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: .25em;
}
.input__note{
	color: #666;
	font-size: .8125em;
	line-height: 1.5em;
}
.input__checkmark{
	flex: 0 0 auto;
	position: relative;
	align-self: center;

	margin-left: 3%;
	width: 2em;
	height: 2em;

	border-radius: 999em;
	border: 1px solid #999;

}
.input__checkmark:before{
	content: "";
	
	visibility: hidden;

	color: #fff;
	border-style: solid;
	border-width: 0 0 3px 3px;

	display: block;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;

	width: 1em;
	height: .5em;

	transform: rotate(-45deg);
}
.option__radio:checked ~ .input__wrap .input__checkmark{
	display: block;
	background-color: #25296A;
}
.option__radio:checked ~ .input__wrap .input__checkmark:before{
	visibility: visible;
}

.input__label{
	cursor: pointer;
}
.input__wrap{}






.buttonFrame1{
	margin: 0;
	padding: 0;
	list-style: none;

	display: flex;
	justify-content: center;
}
.buttonFrame1__item{
	flex: 0 1 400px;
}
.buttonFrame1__item:not(:first-child){
	margin-left: 2em;
}
.button1--negative{
	background-color: #999;
}





.mv__image{
	margin: 0;
	padding: 0;
	margin-bottom: 2em;
}
.mv__note{
	text-align: center;
}




.o-title1{
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1.5em;
	text-align: center;
	color: #25296A;
	padding-top: 1.25em;
	padding-bottom: 1.25em;
	margin: 0;
}
.o-input1{
	width: 100%;
	box-sizing: border-box;
}
textarea.o-input1{
	height: 7em;
}




.o-gap{
	margin-top: 3.125em;
	margin-bottom: 3.125em;
}




.must,
.error{
	color: #c00;
	font-size: .85em;
}
