/* 一覧ポップアップ */
.popup_wrap input {
	display: none;
}
.popup_overlay {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}

.popup_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
}

.popup_content {
	color: #333;
	font-weight: normal;
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 950px;
	padding: 30px 40px;
	box-sizing: border-box;
	background: #fff;
	transition: 0.5s;
	text-align: justify;
}

.close_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 14px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: #5c63ab;
	color: #fff;
	border-radius:50%;
	line-height:30px;
	font-weight:bold;
	text-align: center;
}

.popup_wrap input:checked ~ .popup_overlay {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}


.open_btn {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	line-height: 24px;
	color: #333;
	font-weight: normal;
	background:fff;
	padding: 2px 10px;
	border:solid 1px #e7e7e7;
	border-radius: 5px;
	cursor: pointer;
}



.popup_wrap .cate_title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.popup_wrap .cate_title:before {
	content: url("../images/common/icon_marker.png");
	position: relative;
	top: 5px;
	right: 5px;
}
body#under #side_nav .popup_wrap dl {
	margin-bottom: 30px;
}
body#under #side_nav .popup_wrap ul li {
	font-size: 14px;
	float: left;
	margin-right: 20px;
	width: 154px;
}

.popup_wrap ul li input {
	display: inline;
}

.popup_wrap .bt_center a {
	width: 300px;
	margin: 0 auto;
}






/* 一覧ポップアップ end */