@charset "utf-8";
/* CSS Document */
@media screen and (min-width:0px){
.modal-overlay {
    z-index:2; 
    display:none; 
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background-color:rgba(0,0,0,.5);
} 
a.modal-open:hover {cursor:pointer;}
	
.modal-content {
        position: fixed;
    display: none;
    z-index: 10;
    margin: 0px;
    padding: 2%;
    background: #fff;
    bottom: 0;
    max-height: 100vh;
    overflow: scroll;
}
	
.modal-content img {
    width: 42px;
}
.modal-content h1 {
    font-size:120%;
    margin-bottom:0.5em
}
.modal-content p {
	max-width:600px;
}
.modal-content p img {
	width: 100%;
		
}
a.modal-close {
    top: 2%;
    right: 3%;
    position: absolute;
}
a.modal-close:hover {
	cursor:pointer;
}	

}
@media screen and (min-width:740px){
  /*740px以上*/
	
.modal-content {
}
	
}