@charset "utf-8";
   .box {
            position: absolute;
            background-color: transparent;
            top: -10px;
            left: 2px;
            height: 70px;
            width: 290px;
            margin: 2px;
            border: 1px solid transparent;
            text-align: center;
            padding-top: -5px;
            z-index: 60;
            font-family: Arial;
            font-size: 24px;
            font-weight: 600;
            color: #0066FF;
            background-color: transparent;
        }
        .modal {
            align-items: center;
            display: flex;
            justify-content: center;
            position: absolute;
            top: 2px;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: transparent;
            transition: all 0.4s;
            visibility: hidden;
            opacity: 0;
            width: 586px;
            height: 876px;
            z-index: 50;
        }
        .content {
            position: absolute;
            background: transparent;
            text-align: center;
        }
        .modal:target {
            visibility: visible;
            opacity: 1;
        }
        .box-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-family: Arial;
            color: #993300;
            text-decoration: none;
            font-size: 20px;
        }