/* popup */
.popup_info {
	font-size: 16px;
	padding: 1.2em .5em;
}
.popup {
	background: rgba(0, 0, 0, 0.8);
	color: #333;
	font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic', Meiryo, sans-serif;
	font-size: 14px;
	opacity: 0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10010;
}
.popup:target {
	opacity:1;
	pointer-events: auto;
}
.popup > div {
	background-color: #fefefe;
	border: 6px solid #cd2423;
	height: 84%;
	max-height: 560px;
	opacity: 1;
	overflow: auto;
	padding: 24px;
	position: absolute;
	top: 10%;
	left: 50%;
	width: 80%;
	transform: translateX(-50%);
	max-width: 720px;
}
.popup .sub_title {
	color: #333;
	font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic', Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-left: 5px solid #cd2423;
}
.popup .sub_title:after {
	border-bottom: 1px solid #cd2423;
	content: '';
	display: block;
	height: 1px;
}
.popup li {
	line-height: 1.2;
}
.popup .close {
	margin: 1rem 0 0;
	position: fixed;
	right: 6px;
	top: 0;
}
.popup .close a {
	color: #333;
}
.popup .close a span {
	display: inline-block;
	background: #333;
	color: #fafafa;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	text-align: center;
	font-weight: 700;
	margin-right: 5px;
}
.popup_info .more_link a {
    background-color: #cd2423;
}
.popup_info .more_link a:hover {
    background-color: #b16b06;
}
.popup_info .more_link .tac {
    font-size: 20px;
    font-weight: 20px;
}
@media(max-width:480px){
	.popup_info .more_link .tac {
	    font-size: 16px;
	}
	.popup_info .more_link a {
	    font-size: 14px;
	}
	.popup > div {
		background-color: #fefefe;
		border: 2px solid #cd2423;
		height: 84%;
		max-height: 560px;
		opacity: 1;
		overflow: auto;
		padding: 24px;
		width: 95%;
	}
}


