@charset "UTF-8";
/* CSS Document */

/*下層MV*/
#industry #lower_mv {
    background: url("../../assets/img/service/industry/mv.webp") no-repeat;/*各ページごとに変更*/
    background-size: cover;
    background-position: center;
}
#industry main {
    margin-top: 80px;/*各ページごとに変更*/
}
@media (max-width: 768px) {
    #industry main {
        margin-top: 40px;
    }
}

/*キャッチ*/
@media (max-width: 768px) {
    .service-catch_wrap .service-catch_LB {
        letter-spacing: 1px;
    }
}


/*製品画像*/
#industry .item_wrap ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
#industry .item_wrap ul li img {
    vertical-align: middle;
}

@media (max-width: 768px) {
    #industry .item_wrap ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*関連ページへのボタン*/
#industry .button_wrapper {
    background: #E4F5FB;
    padding: 80px 0;
}
#industry .button_wrapper .box_wrap {
    display: flex;
    gap: 0;
}
#industry .button_wrapper .box_wrap p {
    background: #FFFFFF;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
#industry .button_wrapper .box_wrap ul {
    width: 70%;
    display: flex;
}
#industry .button_wrapper .box_wrap ul li img {
    object-fit: cover;
    vertical-align: middle;
}

#industry .button_wrapper .button_wrap {
    margin-top: 24px;
    width: 100%;
    display: flex;
    gap: 16px;
}
#industry .button_wrapper .button_wrap a {
    display: inline-block;
    text-align: center;
    width: calc(50% - 8px);
    padding: 28px 60px 29px;
    color: #FFFFFF;
    background: rgb(48,188,235);
    background: linear-gradient(120deg, rgba(48,188,235,1) 0%, rgba(22,86,164,1) 58%);
    background-size: 100%;
    background-position: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: 0.3s;
}
#industry .button_wrapper .button_wrap a::after {
    content: '＞';
    font-size: 1,45rem;
    position: relative;
    left: 22px;
    top: 0;
    transition: 0.3s;
}
#industry .button_wrapper .button_wrap a:hover {
    background-size: 150%;
    background-position: 5% 50%;
}
#industry .button_wrapper .button_wrap a:hover::after {
    left: 26px;
}

@media (max-width: 960px) {
    #industry .button_wrapper .button_wrap a {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    #industry .button_wrapper {
        padding-top: 40px;
        padding-bottom: 56px;
    }
    #industry .button_wrapper .box_wrap {
        flex-direction: column-reverse;
    }
    #industry .button_wrapper .box_wrap ul {
        width: 100%;
    }
    #industry .button_wrapper .box_wrap ul li img {
        vertical-align: middle;
    }
    #industry .button_wrapper .box_wrap p {
        width: 100%;
        padding: 12px 20px;
        font-weight: 300;
    }
    
    #industry .button_wrapper .button_wrap {
        flex-direction: column;
    }
    #industry .button_wrapper .button_wrap a {
        width: 100%;
        padding: 15px 20px 16px;
        font-size: 1.6rem;
    }
    #industry .button_wrapper .button_wrap a::after {
        font-size: 1.4rem;
        left: 15px;
    }
}
