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

#open01,
#open02,
#open03
 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
}
 
.close_overlay {
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: #000;
    opacity: 0.3;
    z-index: 5;
}
 
.modal_window {
    bottom: 0;
    width:100%;
    text-align: center;
    display: block;
    background: #fff;
    position: absolute;
    z-index: 10;
}
 
.modal_window h2 {
    margin-bottom: 20px;
    line-height: 30px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    text-indent: 15px;
    background: #FE9A2E;
}
.modal_window p {
    padding: 0 15px 15px 15px;
    font-size: 14px;
    line-height: 160%;
    text-align: left;
}

.modal_window a {font-size: 12px;}
 
/* 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;
}
a {text-decoration: none;}
a:focus {
	color: #558CFF;
	text-decoration: none;
}
a:active {
	color: #558CFF;
	text-decoration: none;
}

