/* bannerlist_content */
.bannerlist {
    justify-content: center;
}
.bannerlist_content {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 21px;
}
.bannerlist_content .banner_content {
    width: 306px;
    height: 400px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 5px 26.4px 3.6px rgba(0, 0, 0, 0.1);
    margin-right: 21px;
    margin-bottom: 40px;
    transition: 0.3s;
    position: relative;
}
@media screen and (max-width: 1450px) and (min-width: 1390px) {
    .bannerlist_content {
        margin-left: 0px;
    }
    .bannerlist_content .banner_content:nth-child(3n) {
        margin-right: 0px;
    }
}
.bannerlist_content .banner_content.is-empty {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
}
.bannerlist_content .banner_content.is-empty:hover {
    box-shadow: none;
}
.bannerlist_content .banner_content:hover {
    box-shadow: 0px 5px 26.4px 3.6px rgba(0, 0, 0, 0.1), 0px 20px 40px 0px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}
.banner_content a {
    position: relative;
    transition: 0.3s;
}
/* .banner_content a:hover::before {
    content: "";
    width: 306px;
    max-height: 400px;
    border-radius: 24px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: 0.3s;
} */
.banner_content.new::before {
    content: "";
    display: block;
    position: absolute;
    width: 52px;
    height: 53px;
    background: url(/assets/img/common/icn_new.png) center center / contain no-repeat;
    z-index: 2;
    right: 2px;
    top: 8px;
}
.banner_content .banner_img {
    width: 306px;
    height: 306px;
    border-radius: 24px 24px 0px 0px;
}
.banner_content .banner_txt {
    width: calc(100% - 40px);
    height: 94px;
    justify-content: space-between;
    padding: 0 20px;
}
/* @media only screen and (max-width:1060px){
    .banner_content .banner_txt {
        width: calc(100% - 5.6vw);
        padding: 0 2.8vw;
    }
} */
.banner_content .banner_txt h2 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    margin-top: 20px;
    flex-grow: 1;
}
.banner_content .banner_txt h2.longtxt {
    font-size: 16px;
    line-height: 1.3;
}
/* @media only screen and (max-width:1060px){
    .banner_content .banner_txt h2 {
        font-size: 2.07vw;
    }
} */
.banner_content .banner_txt h2 span {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #ff4d3d;
    position: absolute;
    left: 3px;
    top: -20px;
}
/* @media only screen and (max-width:1060px){
    .banner_content .banner_txt h2 span {
        font-size: 1.32vw;
    }
} */
.banner_content .banner_txt .arrow_round {
    width: 28px;
    height: 28px;
    background: #ff4d3d;
    border-radius: 14px;
    justify-content: center;
}
.banner_content .banner_txt .arrow_round img {
    width: 6px;
    height: 10px;
    transition: 0.3s;
}
.banner_content:hover .banner_txt .arrow_round img {
    margin-right: -6px;
    transition: 0.3s;
}
/* banner variation */
.banner_content.pencil .banner_txt span {
    color: #64adb2;
}
.banner_content.colorpencil .banner_txt span {
    color: #ff91af;
}
.banner_content.eraser .banner_txt span {
    color: #6fc5f1;
}
.banner_content.glue .banner_txt span {
    color: #fdb811;
}
.banner_content.other .banner_txt span {
    color: #9aa1ff;
}
