/* ContentsArea
-------------------------- */
#contents {
    margin: 0 auto;
    padding: 10px 0 50px 0;
    width: 100%;
}
 
p {
    padding: 10px 0;
}
 
#open01,#open02,#open03,#open04,#open05,#open06,#open07,#open08,#open09,#open10,#open11,#open12,#open13,#open14,#open15,#open16,#open17,#open18 {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
}
 
.close_overlay {
    top: -100px;
    left: -200px;
    width: 150%;
    height: 150%;
    display: block;
    text-indent: -9999px;
    position: absolute;
    background: #000;
    opacity: 0.5;
    z-index: 5;
}
 
.modal_window {
    top: 14%;
    left: 30%;
    margin: -150px 0px 0px -200px;		/*外側の隙間を指定　上:-150px, 右:0px, 下:0px, 左:-200px*/
    width: 900px;
    height: 660px;
    text-align: center;
    display: block;
    background: #fff;
    position: absolute;
    z-index: 10;
}
 
.modal_window h2 {
    margin-bottom: 0px;
    width: 896px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
	font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", sans-serif;	/*フォントファミリの指定*/
    text-align: left;
    text-indent: 15px;
    background: #000;
}
.modal_window p {
    padding: 0 15px 15px 15px;
    font-size: 12px;
	font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", sans-serif;	/*フォントファミリの指定*/
    line-height: 160%;
    text-align: left;
}
 
 
/* CSS3 ModalWindow SET
-------------------------- */
@-webkit-keyframes modalFadeIn {
    0% {opacity:0;display:block;}
    100% {opacity:1;}
}
div#modal div:target {
    -webkit-animation-name: modalFadeIn; 
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    opacity: 1;
    display:block;
}