/* 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: 100109;
	margin-left: 0;

}
.popup:target {
	opacity:1;
	pointer-events: auto;
}
.popup > div {
	padding: 20px;
	position: absolute;
	top: 10%;
	left: 0;
	right: 0;
	margin: auto;
	width: 95%;
	max-width: 720px;
}
.popup > div > div {
	height: 84%;
	max-height: 560px;
	overflow: auto;
	opacity: 1;
	padding: 24px;
	max-width: 720px;
	background-color: #fefefe;
	border: 6px solid #1e2f4a;
	height: 100%;
	margin: auto;
}
.popup > div p:not(.sub_title) {
	bfont-weight: bold;
}
.popup .sub_title {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "HG明朝E", serif;
	color: #333;
	//font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic', Meiryo, sans-serif;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	position: relative;
}
.popup .sub_title:after {
    content: "";
    width: 50px;
    height: 2px;
    border-top: solid 2px #1e2f4a;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: auto;
    display: block;
}
.popup li {
	line-height: 1.2;
	list-style: none;
}
.popup .close {
	margin: 1rem 0 0;
	position: absolute;
	right: 16px;
	top: -20px;
}
.popup .close a {
	color: #fff;
}
.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: #1e2f4a;
    transition: all 0.3s;
    width: 100%;
    max-width: 460px;
    display: block;
    margin: auto auto;
}
.popup_info .more_link a:hover {
    //background: #1e2f4a;
}
.popup_info .more_link .tac {
    font-size: 20px;
    font-weight: 20px;
}
.popup_info > p {
	text-align: center;
	font-size: 18px;
	//font-weight: bold;
	color: #111;
}


