@charset "euc-jp";

.sectionwrap + .category-childlist{
    margin-top: 6em;
}


.category-childlist{
    margin-bottom: 40px;
}
.category-childlist .title{
    border-top: 1px solid #ccc;
    font-weight: bold;
    margin-bottom: 30px;
    padding-top: 20px;
    font-size: min(5.3vw, 140%);
    color: #004478;
}
.category-childlist .list{
    display: flex;
    flex-wrap: wrap;
    gap: 0 3em;
}
.category-childlist .block{
    width: calc((100% - 3em * 3) / 4);
    border-bottom: 1px solid #ccc;
}
.category-childlist .block:nth-child(-n + 4){
    border-top: 1px solid #ccc;
}
.category-childlist .link{
    padding: 15px 40px 15px 10px;
    display: flex;
    height: 100%;
    gap: 10px;
    position: relative;
    font-weight: bold;
    transition: background .3s, color .3s;
}
.category-childlist .link::after{
    font-family: 'Material Symbols Outlined';
    content: "\e315";
    position: absolute;
    display: flex;
    align-items: center;
    right: 10px;
    top: 0;
    height: 100%;
    color: #000;
}
.category-childlist .img{
    object-fit: cover;
    width: 54px;
    height: 54px;
}
.category-childlist .link:hover{
    background: #eef3ff;
    color: #1c37c6;
    text-decoration: none;
}
.category-childlist .link:hover::after{
    color: #1c37c6;
}
@media (max-width:1300px){
    .category-childlist .list{
        gap: 0 2em;
    }
    .category-childlist .block:nth-child(4){border-top: none;}
    .category-childlist .block{
        width: calc((100% - 2em * 2) / 3);
    }
}
@media (max-width:990px){
    .category-childlist .block:nth-child(3){border-top: none;}
    .category-childlist .block{
        width: calc((100% - 2em) / 2);
    }
}
@media (max-width:580px){
    .category-childlist .block:nth-child(2){border-top: none;}
    .category-childlist .block{
        width: 100%;
    }
}



.item-dtl-commentlist .block{
    background: #f2f5fc;
    border: 1px solid rgba(0,0,0,.1);
    padding: 10px;
}
.item-dtl-commentlist .block + .block{
    margin-top: 20px;
}