@charset "UTF-8";

/* element.css上書き */
.element-top {
    display: block;
}
/* element.css上書き終了 */

.element-top-info {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.element-top-tags {
    display: flex;
}

.element-top-tags p {
    margin-right: 4px;
    min-width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 6px;
    background-color: var(--theme-color-2);
    border-radius: 5%;
}

.element-top-tags p:last-child {
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .element-top-tags p {
        min-width: 80px;
    }
}

@media screen and (min-width: 1280px) {
    .element-top-tags p {
        min-width: 100px;
    }
}

@media screen and (min-width: 480px) {
    .element-bottom-top {
        display: flex;
    }
}

@media screen and (min-width: 1280px) {
    .element-bottom-top {
        display: flex;
    }
}

.cards {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 480px) {
    .cards {
        margin-left: 0;
        margin-right: 0;
        width: 60%;
    }
}

@media screen and (min-width: 1280px) {
    .cards {
        margin-left: 0;
        margin-right: 0;
        width: 60%;
    }
}

.card {
    margin-left: 4px;
}

.card:first-child {
    margin-left: 0;
}

.card img {
    width: 63px;
    height: auto;
}

@media screen and (min-width: 480px) {
    .card img {
        width: 56px;
    }
}

@media screen and (min-width: 1280px) {
    .card img {
        width: 96px;
    }
}

.medals-and-button {
    margin-bottom: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
}

@media screen and (min-width: 480px) {
    .medals-and-button {
        width: 40%;
        justify-content: center;
    }
}

@media screen and (min-width: 1280px) {
    .medals-and-button {
        width: 40%;
        justify-content: center;
    }
}

.medals-and-button button {
    flex: 1;
    padding: 8px 4px;
    color: #fff;
    background-color: var(--theme-color);
    border: none;
    outline: none;
    border-radius: 5%;
}

@media screen and (min-width: 480px) {
    .medals-and-button button {
        display: none;
    }
}

@media screen and (min-width: 1280px) {
    .medals-and-button button {
        display: none;
    }
}

.medals {
    margin-right: 8px;
    display: flex;
    justify-content: start;
    align-items: center;
}

@media screen and (min-width: 480px) {
    .medals {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 1280px) {
    .medals {
        margin-right: 0;
        width: 100%;
        justify-content: center;
    }
}

.medals img {
    width: 48px;
    height: auto;
}

@media screen and (min-width: 480px) {
    .medals img {
        width: 30%;
        max-width: 80px;
    }
}

@media screen and (min-width: 1280px) {
    .medals img {
        width: 100px;
    }
}

.show-description {
    width: 33%;
}

.hidden {
    display: none;
}

@media screen and (min-width: 480px) {
    .hidden {
        display: block;
    }
}

@media screen and (min-width: 1280px) {
    .hidden {
        display: block;
    }
}

.description {
    padding: 6px;
}

.description h3 {
    margin-bottom: 2px;
}
