@charset "UTF-8";
/* CSS Document */
.head_pic_wrap{
    width: 100%;
    height: min(55vw, 360px);
    position: relative; 
}
.head_pic_wrap::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,74,122,0.15);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.head_pic{
    width: 100%;
    height: 100%;
    background: url(../img/equipment/fv.webp) no-repeat center / cover;
}
/*================================
sec_slogan
================================*/
.slogan_list {
    width: min(86vw, 1105px);
    padding: min(15vw, 100px) 0 min(5vw, 40px);
    margin: 0 auto;
}
.slogan_item {
    border-left: 3px solid #0071b7;
    padding-left: min(5vw, 50px);
    margin-bottom: min(12vw, 100px);
}
.slogan_name {
    color: #0071b7;
    font-size: min(5.5vw, 26px);
    line-height: 1;
    margin-bottom: min(4vw, 30px);
}
.slogan_txt {
    font-size: min(3.5vw, 17px);
    line-height: min(6.5vw, 200%);
    width: min(100%, 800px);
}
/*================================
sec_service
================================*/
.sec_service{
background: linear-gradient(135deg,  rgba(0,135,226,1) 0%,rgba(0,87,139,1) 100%); 
}
.art_service{
    background: url(../img/common/bg_dot.webp) repeat;
    background-attachment: fixed;
}
.area_ttl {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: min(15vw, 172px);
    font-style: italic;
    font-weight: 500;
    line-height: 60%;
    color: rgba(255, 255, 255, 0.15);
    mix-blend-mode: overlay;
}

.service_list {
    width: min(86vw,1105px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
    padding: min(15vw, 120px) 0 0;
}
.service_item {
    width: 46.516%;
    margin-bottom: min(10vw, 60px);
}
.service_img {
    margin-bottom: min(5vw, 24px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_name {
    color: #fff;
    font-weight: 500;
    font-size: min(5.5vw, 24px);
    line-height: 1;
    margin-bottom: min(3vw, 12px);
}
.service_txt {
    font-size: min(3.5vw, 17px);
    line-height: min(6vw, 170%);
}
@media screen and (max-width:860px) {
.service_item {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
.service_txt {
    color: #fff;
        margin-bottom: min(3vw, 15px);
    }
}