@charset "utf-8";

/* related_link_list
----------------------------------------------------------*/
.related_link_list a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 6px;
    background-color: #deeef9;
}
.related_link_list a:hover {
    opacity: 0.75;
}
.related_link_list.link_icon a:after {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.related_link_list a .ex-img {
    display: flex;
    border-radius: 6px 0 0 6px;
    border: 1px solid #deeef9;
    border-right: none;
    width: 30%;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
}
.related_link_list a .ex-img img {
    border-radius: 6px 0 0 6px;
    object-fit: cover;
}
.related_link_list a .related_link_tit {
    display: flex;
    align-items: center;
    width: calc(100% - (32% + 40px));
    margin-bottom: 0 !important;
}

@media print, screen and (max-width: 639px) {
    .related_link_list.link_icon a:after {
        padding-right: 10px;
    }
}