@charset "utf-8";

.content_area.parent {
    background: none;
}

#c_list #list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 80px auto 0;
}

#c_list .c_item {
    list-style: none;
    background: #ffffffff;
    width: 30.909%;
    margin: 0 3.636% 30px 0;
}
#c_list .c_item:first-child,
#c_list .c_item:nth-child(2) {
    width: 48.1%;
}
#c_list .c_item:nth-child(3n+2) {
    margin-right: 0;
}
#c_list .c_link {
    display: block;
    color: #000;
    text-decoration: none;
}


.c_link .c_text {
    padding: 30px 40px;
}

.c_link .c_text p {
    margin-bottom: 0;
}

.c_link .c_text_h {
    font-weight: bold;
    font-size: 100%;
    padding-left: 0;
    margin: 0;
}

.c_link .c_text_h span {
    background: url(/images/arrow_r_blue.svg) no-repeat right center / 8px 15px;
    padding-right: 30px;
}

.c_link .c_text_h::before {
    display: none;
}

.c_link img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0;
}

.c_link .c_item {
    overflow: hidden;
}

.c_link .c_thumb {
    position: relative;
    height: 0;
    padding-top: 57.9%;
    background: #e1e4e9;
    overflow: hidden;
}

.c_link .c_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: transform .3s;
}

.c_link:hover .c_thumb img {
    transform: scale(1.05);
    transition-duration: 0.3s;
}

.c_link:hover .c_text_h span {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    #c_list #list {
        margin: 25px auto 0;
    }

    #c_list .c_item {
        width: 100% !important;
        margin: 0 0 25px 0 !important;
    }

    .c_link .c_text {
        padding: 20px;
    }

    .c_link .c_text_h {
        font-weight: bold;
        font-size: 100%;
    }
}