<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


.u-cus {
	max-width: 640px;
	margin: auto;
}

.u-cus dl {
text-align: center;
}

.u-cus dt {
font-size: 1.2rem;
	color: #3249A0;
}

.u-cus dd {
	border-bottom: 2px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.u-cus label {
	display: inline-flex;
	cursor: pointer;
	width: calc((100% / 2) - 30px);
	margin: 10px;
	font-size: 1.1rem;
/*
	display:table;
	min-width: 40%;
*/
/*
	display:inline-block;
	width: calc((100% / 2) - 30px);
	border: 2px solid #999;
	border-radius: 20px;
	padding: 10px 20px 10px 10px;
	box-sizing: border-box;
	line-height: 1;
*/
}


/*
.u-cus label:hover {
	background: #F0F0FF;
	color: #6018ff;
}
*/

/* checkbox + radio ----------------------------------------------*/
.u-cus input[type="checkbox"],
.u-cus input[type="radio"] {
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}

.u-cus input[type="checkbox"]:focus + span::before,
.u-cus input[type="radio"]:focus + span::before {
	border-color: #0bd;
}

.u-cus input[type="checkbox"] + span::before,
.u-cus input[type="radio"] + span::before {
	display: inline-block;
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	border: 2px solid #ccc;
	border-radius: 5px;
	margin: 0 0.5rem -0.3rem 0;
	background: #FFFFFF;
}


input[type="checkbox"] + span,
input[type="radio"] + span {
	display: block;
	width: 100%;
	border: 2px solid #999;
	padding: 7px 15px 7px 10px;
	margin: 0 5px;
	background: #fff;
	border-radius: 20px;
}


/* フォーカスされた-------------*/
input[type="checkbox"]:focus + span,
input[type="radio"]:focus + span {
	border-color: #0bd;
	outline: 4px dashed;
}

/* ホバーされた-------------*/
input[type="checkbox"] + span:hover,
input[type="radio"] + span:hover {
	outline: 4px dashed;
	box-shadow: 0 0 10px #000000;
}

/* checkbox ----------------------------------------------*/
.u-cus input[type="checkbox"]:checked + span::before {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='%230bd' stroke-width='3' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 0 2px;
}


/* radio ----------------------------------------------*/
.u-cus input[type="radio"] + span::before {
	border-radius: 100% !important;
}

.u-cus input[type="radio"]:checked + span::before {
	border-width: 2px;
	background:#0CF;
	border: 2px solid #fff;
}

.u-cus input[type="checkbox"]:checked + span,
.u-cus input[type="radio"]:checked + span {
	border: 3px solid #3CC;
	background: #2c54b2;
	color: #fff;
	font-weight: bold;
}


.u-cus input[type="submit"] {
	cursor: pointer;
	background: #30298B url("images/arrow-rigth-f.svg");
	background-position: 5% center;
	background-repeat: no-repeat;
	background-size: 18px;
	border: 3px solid #3CC;
	border-radius: 4px;
	color: #FFFFFF;
	font-size: 1.4em;
	padding: 10px 12px 10px 32px;
	margin: 0 10px;

}

.u-cus input[type="reset"] {
	cursor: pointer;
	background: #FFFFFF;
	border: 3px solid #3CC;
	border-radius: 4px;
	font-size: 1.0em;
	padding: 10px 15px;
	margin: 10px;
}

/* タブレット・スマホ
-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 468px) {
	.u-cus dd:nth-last-child(2) label {
		width: calc(100% - 35px);
	}
}


</pre></body></html>