@charset "UTF-8";

.modal-overlay {
    z-index:12000; /*デモではheader,footerをz-index:1にしたので それより上げています*/
    display:none; /*jsでフェードインされるまでdisplay:none*/
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh; /*100vhでビューポートの高さいっぱいになります*/
    background-color:rgba(0,0,0,.5);
}

.modal-content {
    position:fixed;
    display:none; /*jsでフェードインされるまでdisplay:none*/
    z-index:12200; /*オーバーレイより上に*/
    margin:10px;
    padding:15px;
    border-radius:20px;
    background:#fff}
/*
.modal-content img {max-width:75vmin; height:auto}
.modal-content img {width:auto; max-height:75vmin}
*/

.modal-content h1 {font-size:120%; margin-bottom:0.5em;text-align:center;}
.modal-content p {max-width:565px; text-align:left}

a.modal-open:hover {
 cursor:pointer
} /*カーソルをポインタに*/

.modal-open img {
	vertical-align: bottom;
}

.modal-open canvas {
	vertical-align: bottom;
}

a.modal-close { /*クローズボタンは何でも好きなスタイルでOK*/
    position:absolute;
    top: 10px;
    right:10px;
    color:#ccc;
    font-size:35px;
    line-height:1;
    font-weight:bold;
    text-decoration:none;
}
a.modal-close:hover {cursor:pointer} /*カーソルをポインタに*/

