/* styles.css */
body {
    font-family: Arial, sans-serif;
}

/* モーダルのスタイル */
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 960px;
    background-color: white;
    border-radius: 10px !important;
    border: none;
}

video {
    width: 100%;
    height: auto;
    margin-top: 5px;
}

.close {
    position: absolute;
    top: -15px;
    right: -70px;
    color: #ffffff;
    font-size: 80px !important;
    font-weight: normal;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}





@media print,
screen and (max-width:640px) {

    .modal-content {
        position: relative;
        margin: 30% auto;
        padding: 10px;
        width: 90%;
        max-width: 960px;
        background-color: white;
        border-radius: 10px !important;
        border: none;
    }

    .close {
        position: absolute;
        top: -70px;
        right: 0px;
    }
}