@charset "utf-8";

.inner {
    width: 1330px;
}

.business_in {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 0;
}

/* ページ内リンク用 */
.page_link_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 153px;
}

.page_link {
    width: 23.55%;
    margin-right: 1.9%;
    border: 2px solid #EFEFEF;
    text-align: center;
    box-sizing: border-box;
    transition: all .3s ease;
}

.page_link:hover {
    border-color: #0168A2;
    transition: all .3s ease;
}

.page_link:nth-child(4n) {
    margin-right: 0;
}

.page_link a {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 34px 0;
    transition: all .3s ease;
    position: relative;
}

.page_link a::after {
    position: absolute;
    content: "";
    bottom: 14px;
    right: 0;
    left: 0;
    margin: auto;
    width: 27px;
    height: 11px;
    background: url(../img/arrow_b_black.svg) no-repeat center;
    transition: all .3s ease;
}

.page_link a:hover {
    color: #fff;
    background-color: #0168A2;
    transition: all .3s ease;
}

.page_link a:hover::after {
    background: url(../img/arrow_b_white.svg) no-repeat center;
    transition: all .3s ease;
}

/*  */
.business_h2 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.527;
    text-align: center;
    margin: 95px 0 69px;
}

.business_catch {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 57px auto 50px;
}

.business_in p {
    margin: 0 0 10px;
    letter-spacing: 0.05em;
}

.business_pic_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 46px;
}

.business_pic_column div {
    width: 32%;
    margin-right: 2%;
}

.business_pic_column div:last-child {
    margin-right: 0;
}

.business_list {
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    color: #0168A2;
}

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

    /* ページ内リンク用 */
    .page_link_wrap {
        margin: 0 auto 55px;
    }

    .page_link {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 10px;
        border: 2px solid #e5e5e5;
    }

    .page_link:nth-child(2n) {
        margin-right: 0;
    }

    .page_link:hover {
        border: 2px solid #2e64b3;
    }

    .page_link a {
        font-size: 1.5rem;
        padding: 9px 0 18px;
    }

    .page_link a::after {
        bottom: 6px;
        width: 17px;
    }

    .page_link a:hover::after {
        background: url(../img/arrow_b_white.svg) no-repeat center;
        transition: all .3s ease;
        z-index: 10;
    }

    /*  */
    .business_h2 {
        font-size: 2.2rem;
        margin: 55px 0 25px;
    }


    .business_catch {
        font-size: 1.6rem;
        margin: 20px auto 15px;
    }

    .business_pic_column {
        margin-bottom: 17px;
    }

    .business_pic_column div {
        width: 100%;
        margin: 0 0 15px;
    }

    .business_pic_column img {
        width: 100%;
    }

    .business_list {
        font-size: 1.3rem;
    }

}