@charset "UTF-8";
/* CSS Document */
.head_pic_wrap {
    width: 62%;
    height: min(45vw, 360px);
    position: relative;
    margin-left: auto;
}
.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_headpic
================================*/
.art_headpic {
    border-left: 3px solid #0071b7;
    display: flex;
    align-items: center;
    margin-left: 4%;
}
.headpic_ttl_wrap{
    position: absolute;
    z-index: 2;
    margin-left: 5%;
    padding-right: 5%;
    filter: drop-shadow(1px 1px 1px rgba(255, 255, 255, 0.8));
}
.headpic_ttl {
    font-size: min(6vw, 30px);
    line-height: 1.4;
    margin-bottom: min(2vw, 15px);
}
.headpic_txt {
    font-size: min(3.5vw, 18px);
    line-height: min(7vw, 240%);
}
/*================================
sec_equipment
================================*/
.sec_equip {
    padding: min(15vw, 120px) 0 0;
}
.eq_list{
    width: min(86vw,930px);
    margin: 0 auto;
}
.eq_item {
    margin-bottom: min(12vw, 80px);
}
.eq_name {
    font-size: min(5.5vw, 28px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: min(5vw, 30px);
    display: flex;
    align-items: center;
}
.eq_name::before {
    content: "";
    display: inline-block;
    width: min(6.5vw, 28px);
    aspect-ratio: 1 / 1;
    background: url(../img/common/ttl_dot.svg) no-repeat center / cover;;
    margin-right: min(2.5vw,14px);
}
.eq_detail_list {
    margin-left: calc(min(6.5vw, 28px) + min(2vw,12px));
}
.eq_detail {
    font-size: min(3.5vw, 17px);
    line-height: 130%;
    margin-bottom: min(3.25vw, 18px);
    display: flex;
}
.eq_detail::before {
    content: "・";
    display: inline-block;
    width: 1em;
    min-width: 1em;
}
@media screen and (max-width:860px){
.art_headpic {
    flex-direction: column;
}
.head_pic_wrap {
    width: 95%;
    margin-top: min(4vw, 18px);
}
.headpic_ttl_wrap {
    position: static;
}
}