@charset "UTF-8";
/* history */
.history_wrap{
    .pagenav{
        .pagenav_list{
            margin: 0 0 50px 0;
            border-bottom: dotted 2px var(--color-gray-dark);
            display: flex;
            align-items: center;
            justify-content: space-around;
        }
        .pagenav_item a{
            padding: 0 0 5px 0;
            color: var(--text-color);
            font-weight: 500;
            display: inline-block;
        }
        .fa-solid{
            margin: 0 0 0 5px;
        }
    }
}
.history{
    width: calc((900 / 1280) * 100%);
    max-width: 900px;
    margin: 0 auto 50px;

    .label{
        padding: 5px 10px;
        font-size: 20px;
        color: var(--color-white);
        font-weight: 500;
        background: var(--color-gray-dark);
    }

    .history_item{
        padding: 20px;
        font-size: 14px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        .figure{
            width: 200px;
            margin: 0 20px 0 0;
            flex-shrink: 0;
        }

        .award_dterm{
            padding: 0 0 5px 0;
            font-size: 16px;
            color: var(--color-red-light);
            font-weight: 700;
            border-bottom: dotted 2px var(--color-gray);

            span{
                font-size: 14px;
                color: var(--text-color);
                font-weight: 400;
            }
        }

        .award_ddesc{
            padding: 10px 0 0 0;
        }

        .award_ddesc p{
            padding: 0 0 0 20px;
            position: relative;
        }
        .name,
        .creator{
            margin: 0 0 5px 0;
        }
        .name::before,
        .creator::before,
        .text::before{
            font-family: Font Awesome\ 6 Free;
            color: var(--color-gray-dark);
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 0;
        }

        .name::before{
            content: "\f02e";
        }
        .creator::before{
            content: "\f007";
        }
        .text::before{
            content: "\f0eb";
        }
    }
}



@media screen and (max-width: 1024px){
    .history{  
        width: calc((900 / 1024) * 100%);
        min-width: 580px;
    }
}


@media screen and (max-width: 600px){
    .history_wrap{
        .pagenav{
            .pagenav_list{
                flex-wrap: wrap;
            }
            
            .pagenav_item{
                margin: 10px;
            }
        }
    }
    .history{
        width: 100%;
        min-width: inherit;

        .history_item{
            flex-direction: column;
            align-items: center;

            .figure{
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
            }

            .award_dterm span{
                font-size: 12px;
            }
        }
    }
}