@charset "utf-8";
/*************************************************************
CSS information
style info :  合格体験記一覧ページ
**************************************************************/

a {
    text-decoration: none;
}

/*
====================
↓メインビジュアル
====================
*/

.main_visual {
    box-sizing: border-box;
    position: relative;
    height: 220px;
    background: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/experience/mv_bg.webp) no-repeat center;
    background-size: cover;
}

.main_visual::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 220px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.main_visual > .main_visual_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
}

.main_visual_inner > .mv_title {
    font-weight: bold;
    font-size: 32px;
    line-height: 1.25;
    color: #F2F2F2;
}

/*
====================
↓導入事例一覧
====================
*/

.section_experience {
    box-sizing: border-box;
    width: 100%;
    padding: 56px 11.5% 80px;
    background: #F6F9FC;
}

.section_experience .c_inner {
    position: relative;
}
.section_experience .cardlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 16px;
    width: 100%;
}

.section_experience .cardlist a {
    text-decoration: none;
    display: block;
    height: fit-content;
    outline: none;
}

.section_experience .cardlist .card_item {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 338px;
    background: #fff;
    border: 1px solid rgba(216, 216, 216, 0.6);
    border-radius: 4px;
    box-sizing: border-box;
    overflow: hidden;
}

.thumbnail_area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.thumbnail_area::before {
    content: "";
    display: block;
    padding-top: 0;
}

.section_experience .cardlist .card_item img {
    /* position: relative;
    top: 60px;
    left: 50%;
    width: 200px;
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: .3s; */
    /* width: 200px;
    max-height: 120px;
    height: auto;
    margin: 10px auto;
    display: block;
    object-fit: contain;
    transition: .3s; */
    max-width: 100%;
    vertical-align: bottom;
    object-fit: cover;
    transition: .3s;
}

.card_item:hover .thumbnail_img {
    filter: brightness(0.9);
    transform: scale(1.1);
}

.thumbnail_area .service_label {
    /* box-sizing: border-box;
    position: relative;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    min-height: 56px;
    padding: 0 5%;
    display: grid;
    place-items: center;
    background: #012e83;
    word-break: break-all ;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    z-index: 10; */
    background: #012e83;
    width: 90%;
    padding: 0 5%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    word-break: break-all ;
}

.card_item .caption_area {
    padding: 16px 16px 24px;
    min-height: 140px;
}

.section_experience .cardlist .card_item h3 {
    margin-top: 16px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
    color: #222;
    min-height: 60px;
}

.section_experience .cardlist .card_item p {
    min-height: 65px;
    margin-top: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
}

.meta .date {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    color: #666;
}

.meta .tag {
    display: inline-block;
    padding: 5px 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
.tag_cs-interview {
	background: #00B050;
}

@media screen and (max-width: 1024px) {

    /*
    ====================
    ↓メインビジュアル
    ====================
    */

    .main_visual > .main_visual_inner {
        width: 100%;
        text-align: center;
    }

    .main_visual_inner > .mv_title {
        font-weight: bold;
        font-size: 24px;
        line-height: 1.25;
        color: #F2F2F2;
    }

    /*
    ====================
    ↓導入事例一覧
    ====================
    */

    .section_experience {
        position: relative;
        padding: 40px 5%;
    }

    .section_experience .title_board {
        position: absolute;
        box-sizing: border-box;
        left: 0;
        width: 100%;
        padding: 22.5px 0 22.5px 18px;
        margin-top: 40px;

        font-size: 18px;
        font-weight: normal;
    }

    .section_experience .cardlist {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px 0;

        width: 100%;
    }

    .section_experience .cardlist .card_item img {
        max-width: 100%;
        height: auto;
        vertical-align: bottom;
        object-fit: cover;
        transition: .3s;
    }

    .sp_ex_mt40 {
        margin-top: 40px !important;
    }

}

/*
====================
↓バナーエリア
====================
*/

.bnr_area {
display: block;
box-sizing: border-box;

width: 100%;
max-width: 918px;
margin: 0 auto;
margin-top: 40px;
}

.bnr_first {
margin-top: 0
}

.bnr_area img {
width: 100%;
vertical-align: bottom;
object-fit: contain;
}

.pb_banner_area {
    padding-top: 0;
}

/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {

    /*
    ====================
    ↓バナーエリア
    ====================
    */

    .bnr_area {
    width: 100%;
    margin-top: 20px;
    }

    .bnr_first {
    margin-top: 0
    }

    .bnr_area img {
    max-width: 100%;
    height: auto;
    }

}