@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

* {
    font-family: 'M Plus 1';
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    user-select: none;
}
body {
    padding: 0px;
    margin: 0;
    background: #f0f0f0;
}

header {
    background: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    img {
        height: 60px;
    }
}
section {
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    h3 {
        position: sticky;
        display: block;
        margin-left: auto;
        margin-right: auto;
        font-size: 25px;
        background: #1EC3A5;
        box-shadow: 0 0 3px #1b594e;
        text-align: center;
        width: 100%;
        max-width: 350px;
        padding: 15px 80px;
        border-radius: 100px;
        color: #fff;
        margin-bottom: 35px;
        &::before {
            content: '✦';
            margin-right: 10px;
        }
        &::after {
            content: '✦';
            margin-left: 10px;
        }
    }
}
.all-s1 {
    h2 {
        font-size: 30px;
    }
}
.all-s2 {
    .all-s2-all {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .all-s2-list {
        box-shadow: 0 0 3px #1EC3A5;
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 340px;
        img {
            border-radius: 10px;
            border: 2px solid #1EC3A5;
        }
        p {
            font-size: 13px;
            padding: 0;
            margin: 0;
            color: gray;
        }
        .ver {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 800;
            margin: 0;
            padding: 0;
            color: #333;
            span {
                color: #fff;
                background: #1EC3A5;
                padding: 10px 20px;
                border-radius: 100px;
                width: 100%;
                text-align: center;
            }
        }
        .memo {
            background: #f5f5f5;
            padding: 10px;
            border-radius: 5px;
            color: gray;
            font-size: 14px;
            b {
                color: rgb(255, 132, 132);
                font-weight: 900;
            }
        }
        a {
            color: #1EC3A5;
            width: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            img {
                width: 13px;
                height: auto;
            }
        }
    }
}
.all-s3 {
    .all-s3-all {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .all-s3-list {
        box-shadow: 0 0 3px #1EC3A5;
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 340px;
        p {
            font-size: 13px;
            padding: 0;
            margin: 0;
            color: gray;
        }
        .ver {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
            margin: 0;
            padding: 0;
            color: #333;
            span {
                color: #fff;
                background: #1EC3A5;
                padding: 10px 20px;
                border-radius: 100px;
            }
        }
        .memo {
            background: #f5f5f5;
            padding: 10px;
            border-radius: 5px;
            color: gray;
            font-size: 14px;
            b {
                color: rgb(255, 132, 132);
                font-weight: 900;
            }
        }
        a {
            color: #1EC3A5;
            width: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            img {
                width: 13px;
                height: auto;
            }
        }
    }
}

/**/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
    width: 1px;
    position: relative;
}
::-webkit-scrollbar-thumb {
    background-color: #a4a4a4;
    border-radius: 150px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #1EC3A5;
}

.sticky {
    position: sticky;
    top: 0;
    transition: all .3s;
}

.sticky.is-sticky {
    border-radius: 0 0 30px 30px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 0 6px #1b594e;
}

.infod {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 3px #1EC3A5;
    padding: 20px;
}
.if {
    width: 100%;
    height: calc(100vh - 150px);
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 3px #1EC3A5;
}
hr {
    border: none;
    border-top: 2px solid #1EC3A5;
}

footer {
    background: #1b594e;
    position: absolute;
    left: 0;
    right: 0;
    color: #fff;
    padding: 20px;
    .flink {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        border: 1px solid #fff;
        padding: 20px;
        border-radius: 20px;
        a {
            color: #fff;
            position: relative;
            padding-right: 16px;
            &::after {
                content: '';
                background-image: url(/img/all/link_w.png);
                background-size: cover;
                width: 10px;
                height: 10px;
                margin-left: 6px;
                margin-top: 7px;
                position: absolute;
            }
        }
    }
    p {text-align: center;}
}

.ds {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.download-list {
    border: 1px solid #1b594e;
    padding: 20px;
    border-radius: 20px;
    .da {
        display: flex;
        align-items: center;
        justify-content: space-between;
        p {
            font-size: 20px;
            font-weight: 800;
        }
        a {
            background: #1EC3A5;
            color: #fff;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            img {
                width: auto;
                height: 15px;
            }
        }
    }
}

details {
    background: #ffffff;
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
    font-size: 14px;
    hr {
        margin-top: 20px;
    }
}
summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    color: #1a202c;
    outline: none;
}
summary::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 3px solid #1EC3A5;
    border-right: 3px solid #1EC3A5;
    transform: rotate(45deg);
    margin-right: 16px;
    transition: transform 0.3s ease;
}
details[open] {
    padding-bottom: 10px;
}
details[open] summary::before {
    transform: rotate(135deg);
}

summary::-webkit-details-marker {
    display: none;
}


/**/
.hmm {
    background: #fff;
    padding: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 0 3px #1EC3A5;
    border-radius: 100px;
    color: #1b594e;
    font-weight: 900;
}