@charset "UTF-8";

.js-common_modal {
	display: none;
/*	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	transition: all .3s;*/
}
.js-common_modal.is-open {
	display: block;
}
.js-common_modal .l-modal_outer {
	background: rgba(0, 0, 0, 0.5);
	width: 100vw;
	height: 100vh;
}
.js-common_modal .l-modal_inner {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 87%;
	max-width: 500px;
	height: auto;
	transform: translate(-50%, -50%);
	background-color: #c3db61;
	border-radius: 6px;
	padding: 20px 10px;
	background: rgb(255,255,255);
	background: -moz-radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(195,219,97,1) 100%);
	background: -webkit-radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(195,219,97,1) 100%);
	background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(195,219,97,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff",endColorstr="#c3db61",GradientType=1);
	box-shadow: 0 0 16px rgb(0 0 0 / 30%);
	z-index: 999;
}
.l-modal_head__title {
	font-size: 15px;
	text-align: center;
	color: #6aa33c;
	margin: 0;
	padding: 10px 0 0;
}
.l-modal_head img {
	width: 160px;
	margin: 1px auto 0;
	display: block;
}
.m-topSection {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-align: center;
	margin: auto;
}

.m-topSection li {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	width: 40%;
	margin: 10px;
	border: 2px solid #6aa33c;
	border-radius: 6px;
	background-color: #fff;
	box-shadow: 0 4px 0 #6aa33c;
}
.m-topSection li a {
	color: #6aa33c;
	display: block;
	padding: 10px;
	text-decoration: none;
}

.m-topSection li a span {
	display: block;
	text-align: center;
	font-size: 14px;
	margin: 10px 0 0;
	line-height: 20px;
}

.m-topSection li a span .img_corp {
	width: 35px;
	height: 40px;
}

.m-topSection li a span .img_corp path {
	color: #6aa33c;
	fill: currentColor;
}

.m-topSection li a span .img_indivi {
	width: 44px;
	height: 40px;
}

.m-topSection li a span .img_indivi path {
	color: #6aa33c;
	fill: currentColor;
}

.m-topSection li a i {
	color: #6aa33c;
}

.m-topSection li:hover {
	background: #6aa33c;
	color: #fff;
	text-decoration: none;
}
.m-topSection li:hover a {
	color: #fff;
}

.m-topSection li:hover a span .img_corp path {
	color: #fff;
}

.m-topSection li:hover a span .img_indivi path {
	color: #fff;
}
.m-topSection li:hover a i {
	color: #fff;
}
.js-common_modal_close {
	position: absolute;
	top: -13px;
	right: -13px;
	width: 40px;
	height: 40px;
	border: 3px solid #000;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
}
.js-common_modal_close:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 3px;
	background-color: #000;
	transform: translate(-50%,-50%) rotate(-45deg);
}
.js-common_modal_close:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 3px;
	background-color: #000;
	transform: translate(-50%,-50%) rotate(45deg);
}
.m-topSection li a span.modal-note {
	margin:0;
	font-size: 10px;
}