.basic-info {
    margin: auto;
}

.window {
    text-align: center;
    background-color: #DDD;
    margin: 0.2cm;
    padding: 0.25cm;
    border-radius: 10px;
}

.weapon-name {
    font-size: 32pt;
    font-weight: 700;
    text-align: center;
}

.weapon-ban {
    table-layout: fixed;
}

table {
    border-collapse: collapse;
    font-size: 16pt;
}

.buyable table, .weapon-info table {
    width: 100%;
}

.stat table {
    font-size: 12pt;
}

.stat tbody th, .info {
    text-align: right;
}

.info {
    width: 120px;
}

.top-sepe {
    border-bottom: 2px solid #222;
}

.stat th, .stat td {
    padding: 0.5em;
}

.detail {
    overflow-x: auto;
}

.secmenu {
    border-radius: 6px;
    position: sticky;
    display: block;
    top: 0;
    background-color: #BBB;
}

.description {
    text-align: start;
    padding: 0.5em 1em;
    list-style: "※ ";
    background-color: #AAA;
    border-radius: 6px;
    margin: 6px 0;
    font-weight: 700;
}

.enchant > table {
    margin-bottom: 20px;
}

.enchant td, .enchant th {
    border: 1px solid;
    padding: 0.1em 0.5em;
}

.dmg-table {
    overflow-x: auto;
    display: flex;
    white-space: nowrap;
    max-width: 100%;
    margin-bottom: 1em;
}

.dmg-table table {
    font-size: 14pt;
}

.dmg-table::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background-color: #DDD;
}

.dmg-table::-webkit-scrollbar-thumb {
    background-color: #888;
}

.others table {
    width: 50%;
}

.others .enchant {
    display: flex;
}

.memo {
    text-align: start;
    margin-top: 0.2cm;
    padding-bottom: 0.75cm;
}

.memo img {
    width: 100%;
}

.memo table {
    margin-bottom: 20px;
}

.memo th {
    padding: 0.1em 0.5em;
}

.unit {
    font-size: 12pt;
    margin-top: -16px;
    text-align: right;
}
select {
    font-size: 18px;
    color: #222;
}

select option {
    color: #222;
    background-color: #888;
    font-size: 18px;
}

@media screen and (max-width: 600px) {
    .fully-text {
        font-size: 14pt;
    }
}

@media screen and (max-width: 470px) {
    .weapon-name {
        font-size: 24pt;
    }

    .fully-text {
        font-size: 10pt;
    }
}

@media screen and (min-width: 900px) {
    .basic-info {
        width: 860px;
    }

    .window {
        margin: 0.1cm;
    }

    .window-seperate {
        width: 100%;
    }

    .weapon-info {
        display: flex;
        justify-content: space-between;
    }

    .weapon-ban {
        font-size: 13pt;
    }
    
    .weapon-ban th {
        padding: 0.1cm 0.2cm;
    }

    .weapon-ban td {
        font-size: 16pt;
    }

    .fully-text-extend {
        font-size: 10pt;
    }

    .memo {
        margin-top: 0.2cm;
    }
}

@media (prefers-color-scheme: dark) {
    select {
        color: #DDD;
        background-color: #444;
    }

    select option {
        color: #DDD;
        background-color: #333;
    }
    .window {
        background-color: #444;
    }

    .top-sepe {
        border-bottom: 2px solid white;
    }

    .detail::-webkit-scrollbar {
        background-color: #888;
    }

    .detail::-webkit-scrollbar-thumb {
        background-color: #DDD;
    }

    .secmenu {
        background-color: #333;
    }

    .description {
        background-color: #3A3A3A;
    }
}