@charset "UTF-8";

.newsArea .Img img, .newsArea .item, .productsArea .decoBox img, .productsArea .snipItem .Txt .title::after, .productsArea .snipItem .Txt .title, .bannerArea .socialBox .socialList li a svg, .bannerArea .socialBox .socialList li, .popWin .close::before, .popWin .close::after, .popWin .close {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@-webkit-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }

    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }

    50% {
        height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

    .popWin .mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        -webkit-transition: all 0.7s;
        transition: all 0.7s;
    }

    .popWin .inner {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 700px;
        max-width: 90%;
        max-height: 85vh;
        opacity: 0;
        background-color: #fff;
        -webkit-transition: all 0.7s;
        transition: all 0.7s;
    }

    .popWin .popContent {
        max-height: 85vh;
        overflow-y: auto;
    }

    .popWin img {
        display: block;
        max-width: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .popWin .Txt {
        padding: 30px;
    }

        .popWin .Txt .popTitle {
            font-size: 25px;
            margin-bottom: 25px;
        }

    .popWin .close {
        width: 46px;
        height: 46px;
        background-color: #2b455c;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }

        .popWin .close::before, .popWin .close::after {
            content: "";
            position: absolute;
            left: 11px;
            top: 23px;
            width: 25px;
            height: 1px;
            background-color: #fff;
        }

        .popWin .close::before {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .popWin .close::after {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

@media (min-width: 1201px) {
    .popWin .close:hover {
        background-color: rgba(0, 0, 0, 0.85);
    }
}

.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

    .popWin.show .mask,
    .popWin.show .inner {
        opacity: 1;
    }

@media (max-width: 1180px) {
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}

.mainArea {
    padding: 0;
}

.bannerArea {
    background: #2b455c;
}

    .bannerArea .bannerBox {
        position: relative;
    }

    .bannerArea .bannerList {
        position: relative;
        z-index: 1;
    }

        .bannerArea .bannerList:not(.slick-slider) .bannerItem:not(:first-child) {
            display: none;
        }

    .bannerArea .bannerItem .Txt {
        max-width: 1440px;
        padding: 60px 20px 85px;
    }

        .bannerArea .bannerItem .Txt .textBox {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

        .bannerArea .bannerItem .Txt .title {
            color: #fff;
            font-size: 166px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 12.5px;
            opacity: 0;
        }

@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .title {
        font-size: 100px;
        letter-spacing: 2.5px;
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .title {
        font-size: 88px;
    }
}

.bannerArea .bannerItem .Txt .text {
    color: #fff;
    display: block;
    font-size: 65px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
}

@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .text {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .text {
        font-size: 28px;
    }
}

.bannerArea .bannerItem .Txt .subtitle {
    color: #fff;
    display: block;
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
}

@media (max-width: 1180px) {
    .bannerArea .bannerItem .Txt .subtitle {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerItem .Txt .subtitle {
        font-size: 34px;
    }
}

.bannerArea .bannerItem .Txt .bannerBtn {
    opacity: 0;
    padding-top: 30px;
}

    .bannerArea .bannerItem .Txt .bannerBtn a {
        background-color: #2b455c;
        color: #fff;
        display: inline-block;
        letter-spacing: 0.5px;
        padding: 15px 20px;
        text-align: center;
    }

        .bannerArea .bannerItem .Txt .bannerBtn a:hover {
            background-color: #fff;
            -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
            color: #2b455c;
        }

.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    bottom: 150px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

    .bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 20px;
        border-color: transparent transparent transparent #fff;
        display: block;
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 5px);
        z-index: 1;
    }

    .bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
        content: "";
        border: 1px dashed #fff;
        border-radius: 50%;
        z-index: 1;
        width: 75%;
        height: 75%;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

@media (max-width: 1680px) {
    .bannerArea .bannerItem .Txt {
        padding: 20px 85px 85px;
    }
}

@media (max-width: 1440px) {
    .bannerArea .bannerItem .Txt {
        padding: 20px 20px 85px;
    }
}

@media (max-width: 960px) {
    .bannerArea .bannerItem .Txt {
        padding: 20px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .bannerItem .Img {
        display: none;
    }
}

.bannerArea .bannerItem .Img img {
    opacity: 0;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1);
    transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 768px) {
    .bannerArea .bannerItem .Img {
        padding-bottom: 75%;
    }
}

@media (max-width: 640px) {
    .bannerArea .bannerItem .Img {
        padding-bottom: 75%;
    }
}

@media (max-width: 480px) {
    .bannerArea .bannerItem .Img {
        padding-bottom: 100%;
    }
}

@media (max-width: 360px) {
    .bannerArea .bannerItem .Img {
        padding-bottom: 120%;
    }
}

.bannerArea .bannerItem .ImgMobile {
    height: 100vh;
    width: 100%;
}

@media (min-width: 1181px) {
    .bannerArea .bannerItem .ImgMobile {
        display: none;
    }
}

.bannerArea .bannerItem .ImgMobile img {
    width: 100%;
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bannerArea .slick-current .Txt .title {
    -webkit-animation: textSlideUpAnimation 0.8s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s ease-in-out forwards;
}

.bannerArea .slick-current .Txt .subtitle {
    -webkit-animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 0.4s ease-in-out forwards;
}

.bannerArea .slick-current .Txt .text {
    -webkit-animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 0.8s ease-in-out forwards;
}

.bannerArea .slick-current .Txt .bannerBtn {
    -webkit-animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
    animation: textSlideUpAnimation 0.8s 1.2s ease-in-out forwards;
}

.bannerArea .slick-current .Txt .videoBtn::after {
    -webkit-animation: rotate 50s linear forwards;
    animation: rotate 50s linear forwards;
}

.bannerArea .slick-current .Img img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.bannerArea .socialBox {
    display: block;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .bannerArea .socialBox .socialList {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .bannerArea .socialBox .socialList li {
            margin: 7.5px 0;
        }

            .bannerArea .socialBox .socialList li:first-child {
                margin-top: 0;
            }

            .bannerArea .socialBox .socialList li:last-child {
                margin-bottom: 0;
            }

            .bannerArea .socialBox .socialList li a {
                color: #fff;
                display: block;
                font-size: 18px;
                line-height: 35px;
                text-align: center;
            }

                .bannerArea .socialBox .socialList li a svg {
                    width: 20px;
                    height: 18px;
                    display: inline-block;
                    fill: #fff;
                    margin-top: -2px;
                    vertical-align: middle;
                }

                .bannerArea .socialBox .socialList li a:hover {
                    color: #2b455c;
                }

                    .bannerArea .socialBox .socialList li a:hover svg {
                        fill: #2b455c;
                    }

.bannerArea .arrowBox {
    position: absolute;
    bottom: 10%;
    left: 50%;
    max-width: 1440px;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
}

@media (max-width: 1680px) {
    .bannerArea .arrowBox {
        max-width: 1310px;
    }
}

@media (max-width: 1440px) {
    .bannerArea .arrowBox {
        width: 150px;
        left: 0px;
        -webkit-transform: none;
        transform: none;
    }
}

@media (max-width: 960px) {
    .bannerArea .arrowBox {
        bottom: 10px;
        left: initial;
        right: 0;
    }
}

@media (max-width: 360px) {
    .bannerArea .arrowBox {
        right: initial;
        left: 0;
    }
}

.bannerArea .arrowBox .arrow {
    position: relative;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding-top: 15px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    pointer-events: all;
}

.bannerArea .arrowBox .arrowPrev {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

    .bannerArea .arrowBox .arrowPrev img {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

@media (max-width: 1440px) {
    .bannerArea .arrowBox .arrowPrev {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.bannerArea .arrowBox .arrowNext {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    margin-left: 15px;
}

@media (max-width: 1440px) {
    .bannerArea .arrowBox .arrowNext {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        margin-top: 0;
        margin-left: 20px;
    }
}

.bannerArea .arrowBox .arrow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
}

@media (min-width: 1201px) {
    .bannerArea .arrowBox .arrow:hover::after {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation: scale 1.5s ease-in-out infinite;
        animation: scale 1.5s ease-in-out infinite;
    }
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.bannerArea .arrowBox img {
    display: block;
    max-width: 10px;
    margin: 0 auto;
}

.bannerArea .scrollDown {
    cursor: pointer;
    display: block;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 1180px) {
    .bannerArea .scrollDown {
        bottom: 40px;
    }
}

@media (max-width: 360px) {
    .bannerArea .scrollDown {
        display: none;
    }
}

.bannerArea .scrollDown .downBox {
    position: absolute;
    width: 100%;
    padding-top: 7px;
}

@media (max-width: 1180px) {
    .bannerArea .scrollDown .downBox {
        padding-top: 0;
    }
}

.bannerArea .scrollDown span {
    display: block;
}

    .bannerArea .scrollDown span.text {
        color: #fff;
        letter-spacing: 0.5px;
        font-weight: 500;
        font-size: 16px;
    }

    .bannerArea .scrollDown span.arrow {
        position: relative;
        width: 8px;
        height: 8px;
        margin-left: 43px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: godown 1s ease-in-out infinite;
        animation: godown 1s ease-in-out infinite;
        opacity: 0;
    }

        .bannerArea .scrollDown span.arrow:nth-of-type(1) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        .bannerArea .scrollDown span.arrow:nth-of-type(2) {
            -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
        }

        .bannerArea .scrollDown span.arrow:nth-of-type(3) {
            -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
        }

@-webkit-keyframes godown {
    0% {
        opacity: 0.5;
        top: 0px;
    }

    50% {
        opacity: 1;
        top: 5px;
    }

    100% {
        opacity: 0.5;
        top: 0px;
    }
}

@keyframes godown {
    0% {
        opacity: 0.5;
        top: 0px;
    }

    50% {
        opacity: 1;
        top: 5px;
    }

    100% {
        opacity: 0.5;
        top: 0px;
    }
}

@media (max-width: 1180px) {
    .bannerArea .Txt .bannerVideo, .bannerArea .socialBox, .bannerArea .slick-dots {
        display: none !important;
    }
}

.featureArea {
    position: relative;
    padding: 170px 20px 140px;
    height: 980px;
    overflow: clip;
    background: url(../images/index-feature/bg.png);
}

@media (max-width: 960px) {
    .featureArea {
        padding: 60px 0 180px;
        height: initial;
    }
}

@media (max-width: 1770px) {
    .featureArea .wrap {
        max-width: 100%;
    }
}

.featureArea .outBox {
    position: relative;
    z-index: 6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 960px) {
    .featureArea .outBox {
        display: block;
    }
}

@media (min-width: 961px) {
    .featureArea .emptyBox {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 33vw;
    }
}

.featureArea .introBox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 730px;
    padding-top: 100px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (min-width: 961px) {
    .featureArea .introBox {
        position: relative;
        bottom: -50px;
        opacity: 0;
    }

        .featureArea .introBox.appear {
            opacity: 1;
            bottom: 0;
        }
}

@media (max-width: 960px) {
    .featureArea .introBox {
        padding-top: 0;
        width: 100%;
        margin-bottom: 75px;
    }
}

.featureArea .lineBox {
    position: absolute;
    z-index: 10;
    top: 60%;
    pointer-events: none;
}

@media (max-width: 960px) {
    .featureArea .lineBox {
        width: 100%;
        height: 100%;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 78%;
        margin-top: 260px;
        margin-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .featureArea .lineBox {
        margin-top: 250px;
    }
}

.featureArea .lineBox img {
    display: block;
    width: 100%;
}

.featureArea .lineBox .cookieBox {
    position: relative;
    max-width: 238px;
}

@media (max-width: 960px) {
    .featureArea .lineBox .cookieBox {
        position: sticky;
        top: 40vh;
        left: 20px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .featureArea .lineBox .cookieBox {
        max-width: 150px;
    }
}

@media (max-width: 390px) {
    .featureArea .lineBox .cookieBox {
        max-width: 120px;
        left: 35px;
    }
}

@media (max-width: 360px) {
    .featureArea .lineBox .cookieBox {
        left: 10px;
    }
}

.featureArea .lineBox .cookieBox::after {
    content: "DELICIOUS!";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
    color: #2b455c;
    font-size: 33px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .featureArea .lineBox .cookieBox::after {
        font-size: 18px;
    }
}

.featureArea .lineBox .flower.shake {
    -webkit-animation: large 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation: large 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@-webkit-keyframes large {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes large {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.featureArea .lineBox .cookie {
    max-width: 180px;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 960px) {
    .featureArea .lineBox .cookie {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .featureArea .lineBox .cookie {
        max-width: 120px;
    }
}

@media (max-width: 390px) {
    .featureArea .lineBox .cookie {
        max-width: 90px;
    }
}

.featureArea .lineBox .cookie.eaten {
    opacity: 0;
}

.featureArea .lineBox .cookie.eating {
    -webkit-animation: scaleOut 0.8s ease-in-out forwards;
    animation: scaleOut 0.8s ease-in-out forwards;
}

@-webkit-keyframes scaleOut {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-10deg);
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    45% {
        -webkit-transform: translate(-50%, -50%) rotate(10deg);
        transform: translate(-50%, -50%) rotate(10deg);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes scaleOut {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-10deg);
        transform: translate(-50%, -50%) rotate(-10deg);
    }

    45% {
        -webkit-transform: translate(-50%, -50%) rotate(10deg);
        transform: translate(-50%, -50%) rotate(10deg);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.featureArea .stepBox {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 980px;
    padding: 0 60px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (min-width: 961px) {
    .featureArea .stepBox {
        right: -50px;
        opacity: 0;
    }

        .featureArea .stepBox.appear {
            opacity: 1;
            right: 0;
        }
}

@media (max-width: 960px) {
    .featureArea .stepBox {
        width: 100%;
        padding: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.featureArea .stepBox .left {
    width: 50%;
    padding-right: 20px;
    padding-top: 100px;
}

@media (max-width: 960px) {
    .featureArea .stepBox .left {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: auto;
        padding-right: 0;
        padding-top: 45px;
    }
}

@media (max-width: 480px) {
    .featureArea .stepBox .left {
        padding-top: 20px;
    }
}

.featureArea .stepBox .right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .featureArea .stepBox .right .Img img {
        max-width: 100%;
        display: block;
    }

@media (max-width: 960px) {
    .featureArea .stepBox .right {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 50%;
        margin-left: auto;
        padding-top: 45px;
    }
}

.featureArea .stepBox:nth-child(2) .numBox::before {
    left: -60%;
    width: 60%;
}

@media (max-width: 960px) {
    .featureArea .stepBox:nth-child(2) .numBox::before {
        content: url(../images/deco/line01.png);
        width: 5px;
        height: 150%;
        top: -1%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.featureArea .title {
    font-size: 119px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
}

@media (max-width: 960px) {
    .featureArea .title {
        font-size: 50px;
    }
}

.featureArea .stepTitle {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .featureArea .stepTitle {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .featureArea .stepTitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.featureArea .text {
    max-width: 490px;
    font-weight: 500;
    font-size: 26px;
    color: #fff;
    line-height: 36px;
}

@media (max-width: 480px) {
    .featureArea .text {
        font-size: 15px;
        line-height: 20px;
    }
}

.featureArea .numBox {
    position: relative;
    margin-top: 120px;
    width: 100%;
}

@media (max-width: 960px) {
    .featureArea .numBox {
        width: initial;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 55px;
    }
}

@media (max-width: 480px) {
    .featureArea .numBox {
        margin-left: 40px;
    }
}

@media (max-width: 360px) {
    .featureArea .numBox {
        margin-left: 20px;
    }
}

.featureArea .numBox .num {
    position: relative;
    background: #2b455c;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    padding-top: 10px;
    border: 1px solid #fff;
}

    .featureArea .numBox .num::after {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: block;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 8px solid #fff;
    }

@media (max-width: 960px) {
    .featureArea .numBox .num::after {
        top: 50%;
        left: initial;
        right: -20px;
        -webkit-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg);
    }
}

@media (max-width: 960px) {
    .featureArea .numBox .num {
        margin-top: 0px;
    }
}

@media (max-width: 360px) {
    .featureArea .numBox .num {
        font-size: 22px;
        width: 60px;
        height: 60px;
        padding-top: 12px;
    }
}

.featureArea .numBox::before {
    content: url(../images/index-feature/line.png);
    overflow: hidden;
    position: absolute;
    z-index: -1;
    display: block;
    width: 110%;
    top: 50%;
    left: -110%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 960px) {
    .featureArea .numBox::before {
        content: url(../images/deco/line01.png);
        width: 5px;
        height: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.featureArea .decoBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

    .featureArea .decoBox .deco-1 {
        position: absolute;
        top: 0;
        left: 0;
    }

    .featureArea .decoBox .deco-2 {
        position: absolute;
        top: 0;
        right: -3vw;
    }

@media (max-width: 960px) {
    .featureArea .decoBox .deco-2 {
        display: none;
    }
}

.featureArea .decoBox .deco-3 {
    position: absolute;
    bottom: 0;
    right: -6vw;
}

.featureArea .decoBox .deco-4 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 29vw;
}

.productsArea {
    position: relative;
    padding: 90px 0 110px;
    overflow: clip;
}

@media (max-width: 960px) {
    .productsArea {
        padding: 20px 0;
    }
}

@media (max-width: 640px) {
    .productsArea {
        padding: 50px 0 80px;
    }
}

.productsArea .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1440px) {
    .productsArea .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.productsArea .left {
    position: relative;
    width: 77%;
    margin-top: 80px;
}

@media (max-width: 1440px) {
    .productsArea .left {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .productsArea .left {
        margin-top: 0;
    }
}

.productsArea .right {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 80px 0;
}

@media (max-width: 1440px) {
    .productsArea .right {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        max-width: 880px;
        margin: 0 auto;
    }
}

@media (max-width: 860px) {
    .productsArea .right {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .productsArea .right {
        padding-top: 40px;
    }
}

.productsArea .titleBox {
    position: absolute;
    top: 32px;
    left: 0;
}

@media (max-width: 860px) {
    .productsArea .titleBox {
        position: static;
        text-align: left;
    }
}

.productsArea .mainItem .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 860px) {
    .productsArea .mainItem .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.productsArea .mainItem .title {
    font-size: 26px;
    font-weight: 500;
    color: #2b455c;
    margin-bottom: 10px;
}

.productsArea .mainItem .text {
    font-weight: 500;
    font-size: 18px;
    color: #6b6b6b;
    min-height: 180px;
    padding-bottom: 10px;
}

@media (max-width: 860px) {
    .productsArea .mainItem .text {
        min-height: 100px;
        padding-bottom: 20px;
    }
}

.productsArea .mainItem .moreTxt {
    font-weight: 700;
}

.productsArea .mainItem .Txt {
    padding-top: 155px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 860px) {
    .productsArea .mainItem .Txt {
        padding-top: 0;
    }
}

.productsArea .mainItem .Img {
    width: 70%;
}

@media (max-width: 1440px) {
    .productsArea .mainItem .Img {
        width: initial;
        max-width: 60%;
    }
}

@media (max-width: 860px) {
    .productsArea .mainItem .Img {
        max-width: 90%;
        margin: 30px auto 0;
    }
}

@media (max-width: 480px) {
    .productsArea .mainItem .Img {
        margin-top: 60px;
    }
}

.productsArea .mainItem img {
    display: block;
    width: 100%;
}

@media (max-width: 1440px) {
    .productsArea .snipBox {
        position: relative;
        padding: 0 45px;
    }
}

.productsArea .snipList .slick-slide.current .snipItem .Txt .title {
    color: #2b455c;
}

    .productsArea .snipList .slick-slide.current .snipItem .Txt .title::after {
        opacity: 1;
        left: -25px;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.productsArea .snipItem {
    cursor: pointer;
}

    .productsArea .snipItem .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 13px;
        padding-right: 0;
    }

@media (max-width: 1440px) {
    .productsArea .snipItem .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 0;
    }
}

.productsArea .snipItem .Txt .title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #939393;
    margin-right: 25px;
}

    .productsArea .snipItem .Txt .title::after {
        content: url(../images/deco/cookie.png);
        position: absolute;
        display: block;
        left: 0;
        top: 2px;
        opacity: 0;
    }

@media (max-width: 1440px) {
    .productsArea .snipItem .Txt .title {
        margin-right: 0;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .productsArea .snipItem .Txt {
        display: none;
    }
}

.productsArea .snipItem .Img {
    max-width: 100px;
}

@media (max-width: 480px) {
    .productsArea .snipItem .Img {
        max-width: 80px;
    }
}

@media (max-width: 420px) {
    .productsArea .snipItem .Img {
        max-width: 60px;
    }
}

.productsArea .snipItem img {
    display: block;
    width: 100%;
}

.productsArea .arrowBox {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 45px;
    top: 0;
    right: 30px;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 1440px) {
    .productsArea .arrowBox {
        width: 100%;
        height: 45px;
        right: initial;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.productsArea .arrowBox .arrow {
    position: relative;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding-top: 15px;
    background: #d69f42;
    cursor: pointer;
    pointer-events: all;
}

.productsArea .arrowBox .arrowPrev {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

    .productsArea .arrowBox .arrowPrev img {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

@media (max-width: 1440px) {
    .productsArea .arrowBox .arrowPrev {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.productsArea .arrowBox .arrowNext {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-top: auto;
}

@media (max-width: 1440px) {
    .productsArea .arrowBox .arrowNext {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        margin-top: 0;
        margin-left: auto;
    }
}

.productsArea .arrowBox .arrow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: #d69f42;
}

@media (min-width: 1201px) {
    .productsArea .arrowBox .arrow:hover::after {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation: scale 1.5s ease-in-out infinite;
        animation: scale 1.5s ease-in-out infinite;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.productsArea .arrowBox img {
    display: block;
    max-width: 10px;
    margin: 0 auto;
}

.productsArea .decoBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (max-width: 1440px) {
    .productsArea .decoBox {
        width: initial;
        right: initial;
        bottom: initial;
        left: 50%;
        top: 50%;
        margin: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 860px) {
    .productsArea .decoBox {
        top: initial;
        bottom: -25%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.productsArea .decoBox img {
    display: block;
    max-width: 1415px;
    margin: 300px auto 0;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@media (max-width: 860px) {
    .productsArea .decoBox img {
        max-width: 1200px;
    }
}

.newsArea {
    padding: 130px 0 70px;
    background-color: #2b455c;
}

@media (max-width: 960px) {
    .newsArea {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .newsArea {
        padding: 60px 0 80px;
    }
}

@media (max-width: 420px) {
    .newsArea {
        padding-bottom: 100px;
    }
}

.newsArea .titleTw {
    color: #fff;
}

.newsArea .newsBox {
    position: relative;
}

@media (max-width: 1280px) {
    .newsArea .newsBox {
        max-width: 980px;
        margin: 0 auto;
    }
}

@media (max-width: 1280px) {
    .newsArea .newsList_b {
        display: none;
    }
}

.newsArea .newsList_m {
    display: none;
}

@media (max-width: 1280px) {
    .newsArea .newsList_m {
        display: block;
    }
}

.newsArea .newsItem:nth-child(even) .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.newsArea .newsItem:nth-child(even) .Txt {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 1280px) {
    .newsArea .newsItem:nth-child(even) .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .newsArea .newsItem:nth-child(even) .Txt {
        margin-left: 0;
        margin-right: 0;
    }
}

.newsArea .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 45px;
    margin-bottom: 25px;
    border-radius: 25px;
}

@media (max-width: 1280px) {
    .newsArea .item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0px;
        margin-bottom: 0px;
    }
}

@media (min-width: 1201px) {
    .newsArea .item:hover {
        background-color: #1b2b39;
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    }

        .newsArea .item:hover .Img img {
            -webkit-transform: scale(1.2);
            transform: scale(1.2);
        }

        .newsArea .item:hover .btn_cookie {
            border-color: #436c90;
            background-color: #1b2b39;
        }
}

.newsArea .Img {
    max-width: 700px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 3px solid #f3b751;
    border-radius: 18px;
    overflow: clip;
}

    .newsArea .Img img {
        width: 100%;
        display: block;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

@media (max-width: 1280px) {
    .newsArea .Img {
        max-width: initial;
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }
}

.newsArea .Txt {
    position: relative;
    padding: 30px 20px;
    max-width: 530px;
    margin-left: auto;
}

@media (max-width: 1366px) {
    .newsArea .Txt {
        max-width: 480px;
        padding: 20px;
    }
}

@media (max-width: 1280px) {
    .newsArea .Txt {
        margin-left: 0;
        max-width: initial;
        width: 100%;
        padding: 20px 0;
    }
}

.newsArea .Txt .newsInfoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
    color: #fff;
}

    .newsArea .Txt .newsInfoBox .dateBox, .newsArea .Txt .newsInfoBox .classTitle {
        padding: 5px 0;
    }

@media (max-width: 480px) {
    .newsArea .Txt .newsInfoBox .dateBox, .newsArea .Txt .newsInfoBox .classTitle {
        padding: 0;
    }
}

.newsArea .Txt .newsInfoBox .dateBox {
    padding-right: 10px;
}

    .newsArea .Txt .newsInfoBox .dateBox .day {
        line-height: 1;
        font-size: 50px;
    }

@media (max-width: 480px) {
    .newsArea .Txt .newsInfoBox .dateBox .day {
        font-size: 37px;
    }
}

.newsArea .Txt .newsInfoBox .dateRightBox {
    font-size: 16px;
}

@media (max-width: 480px) {
    .newsArea .Txt .newsInfoBox .dateRightBox {
        font-size: 14px;
    }
}

.newsArea .Txt .newsInfoBox .dateRightBox .year {
    padding: 5px;
    letter-spacing: 2px;
}

@media (max-width: 480px) {
    .newsArea .Txt .newsInfoBox .dateRightBox .year {
        padding: 0 5px;
    }
}

.newsArea .Txt .newsInfoBox .dateRightBox .classTitle {
    line-height: 1;
    letter-spacing: 2px;
}

    .newsArea .Txt .newsInfoBox .dateRightBox .classTitle::before {
        content: "【";
        margin-right: 3px;
    }

    .newsArea .Txt .newsInfoBox .dateRightBox .classTitle::after {
        content: "】";
        margin-left: 3px;
    }

.newsArea .Txt .title {
    position: relative;
    font-size: 26px;
    color: #ffffff;
    font-weight: 400;
    padding-bottom: 8px;
}

@media (max-width: 480px) {
    .newsArea .Txt .title {
        font-size: 22px;
    }
}

.newsArea .Txt .title a {
    position: relative;
    color: #ffffff;
    display: block;
    padding-bottom: 15px;
    line-height: 1.2;
}

    .newsArea .Txt .title a::after {
        position: absolute;
        content: "";
        display: inline-block;
        width: 100%;
        height: 100%;
        bottom: -8px;
        left: 0;
        opacity: 0.3;
        background: url(../images/index-feature/line.png);
        background-repeat: repeat-x;
        background-position: 0 80%;
    }

.newsArea .Txt .text {
    height: 120px;
    padding-bottom: 20px;
    color: #666;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .newsArea .Txt .text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .newsArea .Txt .btn {
        margin: 0 auto;
    }
}

.newsArea .arrowBox {
    position: absolute;
    z-index: 5;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 110px;
    height: 45px;
    right: 0px;
    bottom: 30px;
}

@media (max-width: 1280px) {
    .newsArea .arrowBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 420px) {
    .newsArea .arrowBox {
        bottom: -60px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.newsArea .arrowBox .arrow {
    position: relative;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding-top: 15px;
    background: #d69f42;
    cursor: pointer;
}

.newsArea .arrowBox .arrowPrev img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.newsArea .arrowBox .arrowNext {
    margin-left: auto;
}

.newsArea .arrowBox .arrow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: #d69f42;
}

@media (min-width: 1201px) {
    .newsArea .arrowBox .arrow:hover::after {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation: scale 1.5s ease-in-out infinite;
        animation: scale 1.5s ease-in-out infinite;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.newsArea .arrowBox img {
    display: block;
    max-width: 10px;
    margin: 0 auto;
}

.linkArea {
    position: relative;
    padding: 100px 0 120px;
    text-align: center;
    background: url(../images/recommend/white-bg.png);
}

@media (max-width: 640px) {
    .linkArea {
        padding: 65px 0;
    }
}

.linkArea .wrap {
    z-index: 5;
    position: relative;
    max-width: 1560px;
}

.linkArea .titleBox {
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .linkArea .titleBox {
        margin-bottom: 20px;
    }
}

.linkArea .linkBox {
    position: relative;
    margin: 0 -15px;
}

.linkArea .linkList {
    max-width: 1440px;
    margin: 0 auto;
}

.linkArea .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
    padding: 32px;
    margin: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 420px) {
    .linkArea .item {
        padding: 40px;
    }
}

.linkArea .item .Img {
    border-radius: 50%;
    max-width: 93px;
    margin-right: 20px;
    overflow: hidden;
}

    .linkArea .item .Img img {
        width: 100%;
        display: block;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.linkArea .item .title {
    font-size: 23px;
    font-weight: 500;
    text-align: left;
    padding: 20px 20px 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .linkArea .item .title a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.linkArea .item .date {
    font-size: 16px;
    color: #2b455c;
}

.linkArea .item .text {
    margin-top: 13px;
    color: #6b6b6b;
    font-weight: 500;
    font-size: 18px;
    text-align: left;
}

.linkArea .slick-dots {
    width: 100%;
    height: 10px;
    margin: 0;
    bottom: -30px;
}

    .linkArea .slick-dots li {
        height: 100%;
        width: 10px;
        margin: 0 10px;
    }

        .linkArea .slick-dots li button {
            width: 100%;
            height: 100%;
            padding: 0;
        }

            .linkArea .slick-dots li button::before {
                content: "";
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background-color: #f3b751;
                opacity: 1;
            }

        .linkArea .slick-dots li.slick-active button::before {
            background-color: #b8780d;
            opacity: 1;
        }

.linkArea .arrowBox {
    position: absolute;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 45px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .linkArea .arrowBox .arrow {
        position: relative;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        padding-top: 15px;
        background: #2b455c;
        cursor: pointer;
    }

    .linkArea .arrowBox .arrowPrev img {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }

    .linkArea .arrowBox .arrowNext {
        margin-left: auto;
    }

    .linkArea .arrowBox .arrow::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: block;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        background: #2b455c;
    }

@media (min-width: 1201px) {
    .linkArea .arrowBox .arrow:hover::after {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-animation: scale 1.5s ease-in-out infinite;
        animation: scale 1.5s ease-in-out infinite;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.linkArea .arrowBox img {
    display: block;
    max-width: 10px;
    margin: 0 auto;
}

.linkArea .decoBox {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: clip;
    z-index: 0;
}

    .linkArea .decoBox img {
        position: absolute;
        display: block;
    }

        .linkArea .decoBox img:nth-child(1) {
            z-index: 5;
            top: -6%;
            right: 20%;
        }

@media (max-width: 1080px) {
    .linkArea .decoBox img:nth-child(1) {
        right: 2%;
    }
}

@media (max-width: 768px) {
    .linkArea .decoBox img:nth-child(1) {
        max-width: 20vw;
    }
}

@media (max-width: 420px) {
    .linkArea .decoBox img:nth-child(1) {
        max-width: 27vw;
    }
}

.linkArea .decoBox img:nth-child(2) {
    z-index: 5;
    top: -22%;
    left: -2%;
}

@media (max-width: 1080px) {
    .linkArea .decoBox img:nth-child(2) {
        left: -22%;
    }
}

@media (max-width: 768px) {
    .linkArea .decoBox img:nth-child(2) {
        max-width: 45vw;
    }
}

@media (max-width: 420px) {
    .linkArea .decoBox img:nth-child(2) {
        top: -2%;
    }
}

.linkArea .decoBox img:nth-child(3) {
    z-index: 5;
    bottom: 22%;
    right: -5%;
}

@media (max-width: 1080px) {
    .linkArea .decoBox img:nth-child(3) {
        bottom: -22%;
    }
}

@media (max-width: 768px) {
    .linkArea .decoBox img:nth-child(3) {
        max-width: 40vw;
        right: -10%;
        bottom: -50px;
    }
}

.linkArea .decoBox img:nth-child(4) {
    z-index: 5;
    bottom: -20%;
    left: -5%;
}

@media (max-width: 1080px) {
    .linkArea .decoBox img:nth-child(4) {
        display: none;
    }
}

.linkArea .decoBox img:nth-child(5) {
    z-index: 5;
    bottom: -21%;
    right: 21%;
}

@media (max-width: 1080px) {
    .linkArea .decoBox img:nth-child(5) {
        display: none;
    }
}

.linkArea .decoBox img:nth-child(6) {
    z-index: 5;
    bottom: -5%;
    left: 17%;
}

@media (max-width: 768px) {
    .linkArea .decoBox img:nth-child(6) {
        bottom: -12%;
    }
}

@media (max-width: 480px) {
    .linkArea .decoBox img:nth-child(6) {
        left: 2%;
        bottom: -50px;
        max-width: 30vw;
    }
}
/*# sourceMappingURL=home.css.map */
