/* 選手Singleページ */
.player {
    .player-head {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;

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

        a {
            text-decoration: underline;
        }

        .thumbnail {
            width: 48%;

            @media screen and (max-width: 960px) {
                width: 40%;
            }

            @media screen and (max-width: 480px) {
                width: 100%;
                margin-bottom: 40px;
            }

            .p-articleThumb {
                width: 100%;
                margin: 0;

                .p-articleThumb img {
                    width: 100%;
                }
            }
        }

        .info {
            width: 48%;

            @media screen and (max-width: 960px) {
                width: 58%;
            }

            @media screen and (max-width: 480px) {
                width: 100%;
            }

            table {
                width: 100%;

                th {
                    text-transform: unset;
                    border-top: 1px solid #ededed;
                    padding-left: 16px !important;
                    text-align: left;
                    position: relative;
                }

                th:last-of-type {
                    border-bottom: 1px solid #ededed;
                }

                td:last-of-type {
                    border-bottom: 1px solid #ededed;
                }

                th,
                td {
                    padding: 12px;
                }
            }
        }
    }

    #after_article {
        .c-postThumb__figure {
            img {
                object-position: top;
            }
        }
    }

    .record {
        font-size: 24px;
        margin-bottom: 20px;

        @media screen and (max-width: 480px) {
            font-size: 18px;
        }

        .num {
            font-size: 40px;

            @media screen and (max-width: 480px) {
                font-size: 32px;
            }

            padding-right: 8px;
        }
    }

    .finish{
        font-size: 24px;
        @media screen and (max-width: 480px) {
            font-size: 18px;
        }

        .num {
            font-size: 40px;

            @media screen and (max-width: 480px) {
                font-size: 32px;
            }

            padding-right: 8px;
        }
    }
}


/* 選手アーカイブページ */
.class {
    font-size: 12px;
    color: var(--color_main) !important;
    /* font-weight: bold; */
}

