@charset "utf-8";

/* ——————————————————————————
 * main_visual
/* —————————————————————————— */
.main_visual {
    min-width: 1200px;
    z-index: 9;
}

/* slick-arrow */
.main_visual .slick-arrow {
    width: 47px;
    height: 79px;
    display: inline-block;
    background: url("../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
}

.main_visual .slick-arrow.slick-prev {
    left: 60px;
    background-position: 0 0
}

.main_visual .slick-arrow.slick-next {
    right: 60px;
    background-position: 100% 0
}

/* slick-dots */
.main_visual .slick-dots {
    width: 1160px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    margin-left: -580px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.main_visual .slick-dots li {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.main_visual .slick-dots li button {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    text-indent: -99999em;
    overflow: hidden;
    font-size: 0;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear
}

.main_visual .slick-dots li.slick-active button {
    background: #fff
}

/* item */
.main_visual .item {
    height: 540px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.main_visual .item a {
    display: block;
    position: relative;
    width: 100%;
    height: 540px;
}

.main_visual .item a:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #2d2d2d);
    opacity: 0.08;
}

.main_visual .item .inner {
    line-height: 500px;
    padding-bottom: 40px;
}

.main_visual .item .txtBox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-left: 60px;
    line-height: 1;
}

.main_visual .item .txtBox > span,
.main_visual .item .txtBox > h3,
.main_visual .item .txtBox > p {
    position: relative;
    letter-spacing: -2px;
    color: #000;
}

.main_visual .item .txtBox.light > span,
.main_visual .item .txtBox.light > h3,
.main_visual .item .txtBox.light > p {
    color: #fff;
}

.main_visual .item .txtBox > span {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.main_visual .item .txtBox > h3 em:nth-child(1) {
    font-weight: 200;
    font-size: 42px;
}

.main_visual .item .txtBox > h3 em:nth-child(2) {
    font-size: 44px;
    font-weight: 900;
}

.main_visual .item .txtBox > h3 {
    line-height: 1.35;
    margin-left: -2px;
}

.main_visual .item .txtBox > h3 em {
    display: block;
}

.main_visual .item .txtBox > h3 sup {
    font-size: 28px;
}

.main_visual .item .txtBox > p {
    font-size: 17px;
    padding-top: 16px;
    line-height: 1.5;
    letter-spacing: -1px;
    color: rgba(0, 0, 0, 0.6);
}

.itemAni_1,
.itemAni_2,
.itemAni_3 {
    opacity: 0;
}

.slick-active .itemAni_1 {
    -webkit-animation: itemAni 400ms linear 200ms both;
    -moz-animation: itemAni 400ms linear 200ms both;
    -o-animation: itemAni 400ms linear 200ms both;
    -ms-animation: itemAni 400ms linear 200ms both;
    animation: itemAni 400ms linear 200ms both;
    opacity: 1;
}

.slick-active .itemAni_2 {
    -webkit-animation: itemAni 400ms linear 500ms both;
    -moz-animation: itemAni 400ms linear 500ms both;
    -o-animation: itemAni 400ms linear 500ms both;
    -ms-animation: itemAni 400ms linear 500ms both;
    animation: itemAni 400ms linear 500ms both;
    opacity: 1;
}

.slick-active .itemAni_3 {
    -webkit-animation: itemAni 400ms linear 800ms both;
    -moz-animation: itemAni 400ms linear 800ms both;
    -o-animation: itemAni 400ms linear 800ms both;
    -ms-animation: itemAni 400ms linear 800ms both;
    animation: itemAni 400ms linear 800ms both;
    opacity: 1;
}

@-webkit-keyframes itemAni {
    0% {
        opacity: 0;
        top: 50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-moz-keyframes itemAni {
    0% {
        opacity: 0;
        top: 50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-o-keyframes itemAni {
    0% {
        opacity: 0;
        top: 50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@-ms-keyframes itemAni {
    0% {
        opacity: 0;
        top: 50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes itemAni {
    0% {
        opacity: 0;
        top: 50px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

/* ——————————————————————————
 * main_bestCate
/* —————————————————————————— */
.main_bestCate {
    position: relative;
    margin-top: -40px;
    z-index: 10
}

.main_bestCate .box {
    padding: 40px 20px 0;
}

.main_bestCate .box h2 {
    text-align: center;
    margin-bottom: 22px
}

.main_bestCate .box h2 p {
    display: inline-block;
    font-size: 24px;
    line-height: 1.35;
    vertical-align: middle;
    font-weight: 900
}

.main_bestCate .box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main_bestCate .box ul:after {
    display: none;
}

.main_bestCate .box ul li {
    min-width: 10%;
    flex: 0 0 10%;
    margin-bottom: 40px;
}

.main_bestCate .box ul li a {
    border-radius: 100%;
    background: #fff;
    position: relative;
    display: block;
    width: 100px;
    margin: 0 auto;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.main_bestCate .box ul li a .thumb {
    border-radius: 50%;
    overflow: hidden
}

.main_bestCate .box ul li a .thumb img {
    width: 100%;
    height: auto
}

.main_bestCate .box ul li a p {
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin-top: 8px;
    text-align: center;
}


/* ——————————————————————————
 * main_prodList
/* —————————————————————————— */
.main_prodList .prodList_tit {
    text-align: center;
    margin: 80px 0 30px;
}

.main_prodList .prodList_tit h2 {
    font-size: 30px;
    font-weight: 700;
}

.main_prodList .prodList_tit h2 span {
    position: relative;
    display: inline-block;
}

.main_prodList .prodList_tit h2 span:before,
.main_prodList .prodList_tit h2 span:after {
    content: '';
    width: 6px;
    height: 6px;
    display: inline-block;
    background: #fb6d3a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
}

.main_prodList .prodList_tit h2 span:before {
    left: -20px;
}

.main_prodList .prodList_tit h2 span:after {
    right: -20px;
}

/* ——————————————————————————
 * main_plan_banner
/* —————————————————————————— */
.main_plan_banner {
    width: 1280px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.plan_banner_close_btn {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 4px 4px 8px;
    background: #00000066;
    color: #FFF;
    border-radius: 8px;
    cursor: pointer;
}

.main_plan_banner .swiper-pagination {
    width: fit-content;
    bottom: auto;
    left: auto;
    top: 20px;
    right: 0;
    margin: 0;
    border-radius: 8px 0 0 8px;
    padding: 4px 8px;
    background: #00000066;
    color: #FFF;
    font-size: 15px;
}