@charset "UTF-8";
.mv_wrap {
    background: #E5F2FD;
    height: 233px;
    display: flex;
    align-items: center;
}
.mv-ttl {
    font-size: 36px;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 1;
}
.blue_bg {
    background: #F4FAFF;
}
.topics_wrap {
    padding: 85px 0;
    box-sizing: border-box;
}
.topics_lst li {
    border-bottom: 1px solid #E0E0E0;
    padding: 30px 20px 30px 45px;
}
.topics_lst li:first-of-type {
    border-top: 1px solid #E0E0E0;
}
.topics_lstdl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 45px;
}
.topics_lstdl dt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 27px;
}
.topics_lstdl dt .date-txt {
    font-size: 16px;
}
.topics_lstdl dt .tag-txt {
    font-size: 12px;
    border: 1px solid #E0E0E0;
    min-width: 100px;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}
.topics_lstdl dd a {
    font-size: 16px;
    color: #005BAC;
    text-decoration: underline;
}
@media (min-width: 896px) {
    .mv-ttl,
    .topics_wrap {
        max-width: 1200px;
        width: calc(100% - 60px);
        margin: 0 auto;
    }
    .topics_lstdl dd a:hover {
        text-decoration: none;
    }
}
@media only screen and (max-width: 896px) {
    .mv_wrap {
        height: 127px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .mv-ttl {
        font-size: 24px;
        width: 100%;
        line-height: 1;
        text-align: center;
    }
    .topics_wrap {
        padding: 30px 20px 35px;
    }
    .topics_lst li {
        padding: 15px 0 11px;
    }
    .topics_lstdl {
        flex-direction: column;
        align-items: start;
        gap: 6px 0;
    }
    .topics_lstdl dt {
        gap: 0 11px;
    }
    .topics_lstdl dt .date-txt {
        font-size: 12px;
    }
    .topics_lstdl dt .tag-txt {
        font-size: 12px;
        padding: 6px 0 4px;
        min-width: 71px;
        line-height: 1;
    }
    .topics_lstdl dd a {
        font-size: 14px;
        line-height: 2;
    }
}