@charset "utf-8";
/*--京achievement.css--*/
/* ##########PC########## */
.page_body h3{
    border-bottom: 1px dotted #aaa;
    padding: 0 0.3em 0.2em 0.3em;
}

.category_list{
    margin-bottom: 3rem;
}

.category_list ul{
    display: flex;
    justify-content: center;
    /*border-bottom: 3px solid #eee;*/
    gap: 1.5rem;
}

.category_list ul li{
    width: 25%;
}

.category_list ul li a{
    display: block;
    padding: 0.6rem 1rem;
    color: #222;
    font-weight: 500;
    text-align: center;
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
    background: #eee;
    border-radius: 0.3rem;
}

.category_list ul li a:hover{
    color: #222;
}

.category_list ul li.active a{
    color: #fff;
    background: #1d4986;
}

.category_list ul li.active a::after{
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.5rem solid transparent;
    border-left: 0.5rem solid transparent;
    border-top: 0.8rem solid #1d4986;
    border-bottom: 0;
    position: absolute;
    bottom: -0.6rem;
    left: calc(50% - 0.5rem);
}

.achievement_list_box{}

.achievement_list_box ul{
    list-style: disc;
    margin: 1em 1.5em 1.5em 1.5em;
}

.achievement_list_box ul li{
    margin-bottom: 1rem;
}

.achievement_list_box ul li .achievements_ttl{
    font-weight: 600;
}

.achievement_list_box ul li .achievements_content p{
    margin-bottom: 0;
}

@media screen and (min-width:1px) and (max-width:1400px) {
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){


}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    .category_list ul{
        gap: 0.5rem;

    }

    .category_list ul li{
        width: auto;
    }

    .category_list ul li a{
        padding: 0.6rem 1rem;
    }
}


/* ##########印刷用########## */
@media print{

}