.ecocute-archive .filter{
    margin: 30px 0;
}
.ecocute-archive .filter__select{
    width: 120px;
    margin-left: 20px;
}
.ecocute-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.ecocute-empty{
    margin-bottom: 50px;
}
.ecocute-card .thumb img{
    width:100%;
}
.ecocute-card .meta{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.ecocute-card .meta .area{
    background: #ddd;
    padding: 5px 10px;
}
.ecocute-card .text{
    margin:10px 0;
}
.ecocute-pager{
    margin: 30px 0;
    justify-content: center;
    display: flex;
    gap: 10px;
}
.ecocute-pager .page-numbers{
    height: 30px;
    width: 20px;
    text-align: center;
}
.ecocute-pager .page-numbers.current{
    border: 1px solid #000;
}

/* detail */

.case_title{
    font-size: 20px;
    border: 1px solid #ccc;
    border-left: 8px solid #F5420A;
    margin: 30px 0;
    padding: 15px 0 15px 15px;
}
.case_photo-wrap{
    display: flex;
    gap: 30px;
    justify-content: center;
}
.case_photo-wrap .case_photo_box{
    width:40%;
}
.case_photo-wrap .arrow{
    content: "";
    display: inline-block;
    width: 30px;
    height: auto;
    margin-top: 50px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.case_photo-wrap .case_photo_box .photo_title{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    height: 35px;
}
.case_photo-wrap .case_photo_box img{
    width:100%;
}
.case_detail-wrap{
    margin: 50px 0;
}
.case_detail-wrap table{
    width:100%;
}
.case_detail-wrap table th,
.case_detail-wrap table td{
    border:1px solid #ccc;
    padding: 10px;
}
.case_detail-wrap table th{
    width: 200px;
    text-align: center;
    font-weight: bold;
    background: #f2f2f2;
}
.case_detail-wrap table tr.warranty td span + span:before{
    content: " / ";
    display: inline-block;
}
.case_comment-wrap h2{
    background: #81f9c7;
    padding-left: 30px;
    height: 50px;
    border-radius: 25px;
    line-height: 50px;
}
.case_comment-wrap .comment{
    margin:30px 0 50px;
    padding:0 15px;
}
.case_backbutton{
    margin-bottom: 80px;
    text-align: center;
}
.case_backbutton a.btn-back{
    background: #F5420A;
    color: #fff;
    width: 250px;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
}

@media screen and (max-width: 768px) {

.ecocute-wrap{
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
}
.ecocute-card .meta{
    font-size: 3.3vw;
}
.ecocute-card .meta .area{
padding: 0px 5px;
}
.ecocute-card h2.title{
    font-size: 4vw;
}
.case_title{
    font-size: 5vw;
}
.case_photo-wrap{
    gap:4vw;
}
.case_photo-wrap .case_photo_box .photo_title{
    font-size: 4vw;
    margin-bottom: 3vw;
    height: 5vw;
}
.case_photo-wrap .arrow{
    width: 5vw;
    margin-top: 8vw;
}
.case_detail-wrap{
    margin: 7vw 0;
}
.case_detail-wrap table{
    font-size: 4vw;
}
.case_detail-wrap table th{
    width:25vw;
}
.case_comment-wrap h2{
    font-size: 4.2vw;
}
.case_comment-wrap .comment{
    font-size: 4vw;
}

}