@charset "utf-8";
/* CSS Document */

.modal-content {
	position: fixed;
	display: none;
	z-index: 2;
	margin: 0;
	padding-top: 30px;
	padding-right: 5px;
	padding-left: 5px;
	padding-bottom: 5px;
	border: 2px solid #aaa;
	background: #fff;
	text-align: center;
	max-width: 600px;
}

.modal-content p {
    margin:0;
    padding:0;
}

.modal-overlay {
    z-index:1;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    background-color:rgba(0,0,0,0.6);
}

.modal-open {
    color:#00f;
    text-decoration:underline;
}

.modal-open:hover {
    cursor:pointer;
    color:#f00;
}


a.modal-close {
	/*クローズボタン*/
    position:absolute;
    top:0;
    right:10px;
    color:#12D1B2;
    font-size:30px;
    line-height:1;
    font-weight:bold;
    text-decoration:none
}
a.modal-close:hover {
	cursor:pointer
} /*カーソルをポインタに*/