/* ——————————————————————————
 * list_banner
/* —————————————————————————— */
.list_banner{
    width: 100%;
    height: 360px;
    overflow: hidden;
    margin: 40px auto 0;
    border-radius: 20px;
}

.list_banner .item{
    height: 360px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.list_banner .slick-arrow{
    width: 27px;
    height: 59px;
    display: inline-block;
    background: url('/theme/inc/headoffice/assets/img/main_visual_arr.png') no-repeat 0 0;
    -webkit-background-size: 94px 79px;
    background-size: 94px 79px;
    font-size: 0;
    text-indent: -99999em;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin-top: -39.5px;
    z-index: 10;
}

.list_banner .slick-prev{
    left: 15px;
    background-position: 0 0;
}

.list_banner .slick-next{
    right: 15px;
    background-position: 100% 0;
}

/* ——————————————————————————
 * prod_list
/* —————————————————————————— */
.prod_list ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(290px, 1fr));
    gap: 10px;
}

/* ——————————————————————————
 * prod_box
/* —————————————————————————— */
.prod_box {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.prod_box.box:after{
    display: none;
}

.prod_box a {
    display: block;
}

.prod_box .info {
    padding: 10px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    min-height: 200px;
    text-align: left;
}

.prod_box .photo {
    position: relative;
    overflow: hidden;
}

.prod_box .photo:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.05;
    filter: alpha(opacity=5);
}

.prod_box .photo img {
    width: 100%;
    height: auto;
}













