body {
    margin: 0 0 40px;
}

.container {
    margin: 0 20px 50px;
}

h1 {
    font-size: 32px;
    padding: 70px 0 0;
    margin: 0 0 20px;
}

p {
    margin: 0;
}

.theme-select {
    color: #000000;
    width: 130px;
    height: 28px;
    font-size: 16px;
    margin: 0;
}

.input {
    margin: 10px 0 0 0;
}

.rainbow {
    margin: 20px 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783,#e60000) 0 / 200%;
    animation: 5s rainbow-box linear infinite;
}

@keyframes rainbow-box {
    100% { background-position-x: 200%; }
}

.rainbow-text {
    margin: 10px 0;
    background: linear-gradient(to right,#e60000,#f39800,#fff100,#009944,#0068b7,#1d2088,#920783,#e60000) 0 / 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 300%;
    font-weight: bold;
    display: inline-block;
    animation: 5s rainbow-text linear infinite;
}

@keyframes rainbow-text {
    100% { background-position-x: 200%; }
}

.rainbow-number {
    margin: 30px 0;
    background: linear-gradient(170deg,#fbf9db,#f9e3be,#c0bbbd,#9ba9b8,#9b94b1,#fbeae5,#8dbce6,#91a7c0,#cdb5bc) 0 / 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 300%;
    font-weight: bold;
    display: inline-block;
    animation: 3s rainbow-num linear infinite;
}

@keyframes rainbow-num {
    100% {background-position-x: -200%;}
}

.table1 {
    margin: 30px;
    border-collapse: collapse;
    th, td {
        border: 1px white solid;
        padding: 7px 8px;
    }
}

.table2 {
    margin: 30px;
    border-collapse: collapse;
}
.table2 th, .table2 td {
    border: 1px white solid;
    padding: 7px 8px;
}

.table3 {
    margin: 30px;
    border-collapse: collapse;
    & th, & td {
        border: 1px white solid;
        padding: 7px 8px;
    }
}

.button-wrap {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    border: 1px solid #888;
    padding: 10px;
    width: max-content;
}

.menu-icon-test {
    width: var(--hamburger-menu-width);
    height: auto;
    z-index: 3;
    padding: 0;
    border: 0;
    background: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-icon-test2 {
    width: var(--hamburger-menu-width);
    height: auto;
    z-index: 3;
    padding: 0;
    border: 0;
    background-color: #800;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.menu-icon-test3 {
    width: var(--hamburger-menu-width);
    height: auto;
    z-index: 3;
    padding: 0;
    border: 0;
    background: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-icon-test:hover{
    cursor: pointer;
}

.menu-stick {
    width: var(--hamburger-menu-width);
    display: block;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    transition: 0.1s;
}

.menu-stick2 {
    width: calc(var(--hamburger-menu-width) - 10px);
    display: block;
    height: 4px;
    background: #eee;
    border: 5px solid #555;
    border-radius: 2px;
    transition: 0.1s;
}

.menu-icon-test:hover .menu-stick {
    background-color: #bbb;
}


input[type="checkbox"] {
    width: 12px;
    height: 12px;
    margin: auto 0;
}

.checkbox-area {
    font-size: 16px;
    width: max-content;
    margin: 30px 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.checkbox-wrap {
    display: flex;
    gap: 5px;
}


.radio-area {
    font-size: 16px;
    width: auto;
    margin: 30px 0;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.radio-wrap {
    display: flex;
    gap: 0;
}

input[type="radio"] {
    width: 12px;
    height: 12px;
    margin: auto 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 24px;
    position: relative;
}

.radio-label::before {
    content: "";
    position: absolute;
    top: 0;
    left: -22px;
    width: 22px;
    height: 100%;
    display: block;
    z-index: -1;
}

input[type="radio"]:checked:hover+ .radio-label, input[type="radio"]:checked:hover+ .radio-label::before, input[type="radio"]:checked+ .radio-label:hover::before {
    background-color: #ccc;
}

input[type="radio"]:hover, .radio-label:hover {
    cursor: pointer;
}

input[type="radio"]:hover, .radio-label:hover, input[type="radio"]:hover+ .radio-label, input[type="radio"]:hover+ .radio-label::before {
    background-color: #ddd;
}

input[type="radio"]:checked+ .radio-label, input[type="radio"]:checked+ .radio-label::before {
    background-color: #eee;
}

.cursor {
    width: 400px;
    height: 400px;
    background-color: #0d0;
    margin: 0 0 30px;
}

.cursor:hover {
    cursor: url("../miura-attendance_s.png") 0 0, auto;
}

#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.3);
}

#modal-content {
    background-color: #f4f4f4;
    margin: 80px auto auto auto;
    width: 400px;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
}

#header {
    cursor: move;
    background-color: red;
    height: 50px;
    z-index: 10;
}

#summon, #modal-close {
    font-size: 16px;
}


* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* * {
    outline: .1px red solid;
} */
