@charset "UTF-8";

.mv{
    margin-top:53px;
    width:100%;
    background:url(../img/download_mv.jpg) center center/ cover;
}

.mv_inner{
    max-width:1280px;
    display:flex;
    align-items:center;
    margin:0 auto;
    height:270px;
    align-items: center;
}

@media screen and (max-width: 900px) {
    .mv_inner{
        height:170px;
        padding:10px 8px;
    }
}

.mv_title{
    font-size:34px;
    color:#fff;
    line-height:1.3;
    font-weight:700;
}

@media screen and (max-width: 900px) {
    .mv_title{
        font-size:20px;
    }
}

.mv_title > span{
    font-size: 18px;
    color: #fff;
    display: block;
    padding: 9px 0 0;
    color: #ebebeb;
}

@media screen and (max-width: 900px) {
    .mv_title > span{
        font-size: 14px;
    }
}

.download_product_list{
    display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    margin: 0 0 130px;
}

.download_product_item{
    display:flex;
    flex-direction:column;
    width: calc((100% - 120px)/ 4);
    box-shadow: 0 0 8px 4px rgb(207 207 207 / 48%);
    margin:0 15px 50px;
}

.download_product_item:hover{
  opacity:0.7;
}

@media screen and (max-width: 900px) {
    .download_product_item{
        display:block;
         width:100%;
         margin:0 0 20px 0;
    }
}

.download_product_item-img{
    max-height: 200px;
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
}

.download_product_item-wrap {
    padding: 15px 27px 15px;
    font-size:14px;
}

.download_product_item-ttl{
    font-weight:600;
    margin:11px 0 15px;
    font-size:16px;
}

/*絞り込み*/
.search{
    margin:0 auto 80px;
    display:flex;
    justify-content: center;
    
}

.search_item {
    padding: 5px 45px;
    cursor: pointer;
    border: 1px solid #e3e3e3;
    font-weight: 600;
    position: relative;
    margin-right: 15px;
}

.search_item:hover {
    opacity:0.7;
    transition: all 0.3s ease;
}

.search_item:after{
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(134deg);
    margin-top: -4px;
}

.search_item.is-active {
    color: white;
    background-color: black;
  }

.is-hide {
    display: none;
  }