@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

.mainWrap *{
    line-height: 100%;
    letter-spacing: -1px;
    box-sizing: border-box;
}

body,html{
    scroll-behavior: smooth;
}
/* body::-webkit-scrollbar {
    position: absolute;
    right: 0;
    width: 5px;
    display: none;
}
body::-webkit-scrollbar-thumb {
    background-color: #373d71;
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
body::-webkit-scrollbar-track {
    background-color: grey;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
} */

.disN{
	display:none;
}
.slick-slide img{
    width:100%;
}

/* 240122
.mainWrap{
    /* overflow: hidden; *
    width: 100%;
}
*/


.mainWrap{
    width: calc(100% - 350px);
}

.openWrap_m{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5;
    padding: 2.2% 2.5%;
    text-align: center;
    background-color: #7a6757;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s 3s forwards;
}

.value_only{
    display: none;
}

.mainVisual {
    width: 100%;
    position: relative;
    height: 100vh;
    display:flex;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}
.mainVisual .content{
    width:100%;
    height:100%;
    position: relative;
    display:flex;
}
.mainVisual .bgWrap{
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
    width: 100%;
    height: 100%;
}
.mainVisual .default{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:-1px;
    overflow: hidden;
}
.mainVisual .default video{
    width: 100%;
    clip-path: inset(1px 0);
}
.mainVisual .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top:0;
    overflow: hidden;
}
.mainVisual .bg video{
    width: 100%;
}
.mainVisual .list{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainVisual .list .text{
    position: relative;
}
.mainVisual .list01{
    background: rgba(1,1,1,1);
}
.mainVisual .list01 .text{
    color: #fff;
    font-weight: 700;
    font-size: 70px;
    transform: translateY(0) !important;
    z-index: 2;
    position: relative;
}
.mainVisual .list01 .bg{
    clip-path: inset(1px 0);
}
.mainVisual .list01 .bg:before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    background: rgba(1,1,1,1);
    animation: mainVisual_list01_before 1.5s 1s forwards;
}
@keyframes mainVisual_list01_before{
    to{
        background: rgba(1,1,1,0.5);
    }
}
.mainVisual .list02{
    background: #fff;
    font-weight: 700;
    color: #1e1e1e;
    font-size: 90px;
}
.mainVisual .list03{
    background: #fff;
    font-weight: 700;
    color: #1e1e1e;
    font-size: 90px;
}
.mainVisual .list04{
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    flex-direction: column;
    background: url(/images/goodpickHomepage/mainVisual_list04_bg.jpg) center center / cover no-repeat;
}
.mainVisual .list04 .text{
    margin-bottom: 2.5%;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    position: absolute;
    text-align: center;
    z-index: 1;
}
.mainVisual .list04 .text_con{
    white-space: nowrap;
}
.mainVisual .list04 .text_con02{
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.mainVisual .list04 .image{
    position: relative;
}
.mainVisual .list04 .bg{
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: #000;
}
.mainVisual .movebg{
}
@keyframes scale_1{
    to{
        transform: scale(1);
    }
}

.mainVisual .scrolldown{
    left: 50%;
    transform: translateX(-50%);
    bottom: -150px;
    position: absolute;
    width: 1px;
    z-index: 5;
}
.mainVisual .scrolldown .line{
    position: relative;
    height: 225px;
    background: #555;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}
.mainVisual .scrolldown .line:after{
    content:"";
    width: 1px;
    height: 0;
    position: absolute;
    left:0;
    top:0;
    background: #fff;
    animation: mainVisual_scrolldown 4s infinite;
}
@keyframes mainVisual_scrolldown{
    0%{
        height: 0;
    }
    50%{
        height: 100%;
    }
    100%{
        height: 0;
    }
}

/*scroldown*/
.main_scrolldown{
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
}
.main_scrolldown .chevron {
    position: relative;
    width: 28px;
    height: 3px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.main_scrolldown .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.main_scrolldown .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.main_scrolldown .chevron:before,
.main_scrolldown .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.main_scrolldown .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.main_scrolldown .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
/*pageinfo*/
.pagingInfo {
    color: #99a3aa;
    font-size: 18px;
    font-weight: 100;
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 0 30px;
    letter-spacing: 0;
}
/*loader*/
body{
	overflow-x:hidden;
}
.loading{
    width:100%;
    height:100%;
    position:fixed;
    left:0px;
    top:0px;
    background:#fff;
    z-index:1000; /* ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚ÂªÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â«ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â«ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â«ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â­ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã¢â‚¬Â¹ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â«ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤. */
	}
	
.loading .content{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loading .image{
    display: flex;
    gap: 5px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.loading .image_con{
    animation: loading_imgcon 2s infinite forwards;
    opacity: 0;
}

/*
.loading img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
*/

@keyframes loading_imgcon{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.loading .image_con:nth-child(2){
    animation-delay: 0.5s;
}
.loading .image_con:nth-child(3){
    animation-delay: 1s;
}
.loading .image_con:nth-child(4){
    transform: translateY(-23px);
    animation-delay: 1.5s;
}
.loading .text{
    font-size: 20px;
    opacity: 0;
    animation: fadeInUp 1s 1s forwards;
}
.loading .text .point{
    position: relative;
}
.loading .text .point:before{
    content:"";
    width: 3px;
    height: 3px;
    background: #111111;
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
    border-radius:50%;
}


@media(max-width:1080px){
.loader{width:calc(100% - 30px);}
.loading .text{
        font-size: 18px;
    }
}

.mainContent{
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
}
.mainContent .slideCon{
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
}
.mainContent .Slider .slick-list, .mainContent .slick-track{
	height:100%;
}

.mainContent .preview{
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
}
.mainContent .preview .content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.mainContent .preview .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    background: url(/images/goodpickHomepage/main_preview_bg.jpg) center top / cover no-repeat;
}
/* .mainContent .preview.active .bg{
    transform: scale(1);
}
@keyframes scale_1{
    to{
        transform: scale(1);
    }
} */
.mainContent .preview .text{
    font-size: 65px;
    margin-bottom: 2.5%;
    font-weight: 100;
    color:#fff;
    opacity: 0;
}
.mainContent .preview.active .text{
    animation: fadeIn 0.2s forwards;
}
.mainContent .preview .splitting .char {
}
.mainContent .preview.active .splitting .char {
    line-height: 1;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.77, 0.02, 0.11, 0.97);
    animation-timing-function: cubic-bezier(0.77, 0.02, 0.11, 0.97);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: calc(0.05s * var(--char-index));
    animation-delay: calc(0.05s * var(--char-index));
    -webkit-animation-duration: calc(0.2s + (0.03s * var(--char-total)));
    animation-duration: calc(0.2s + (0.03s * var(--char-total)));
    -webkit-animation-name:  slide-in;
    animation-name: slide-in;
}

@keyframes slide-in {
    from {
      transform: scale(0.4) translateY(80%);
      opacity: 0;
    }
}
.mainContent .preview .image{
    opacity: 0;
}
.mainContent .preview.active .image{
    animation: fadeInUp 1s 1s forwards;
}

.mainContent .premium{
    height: 100vh;
    position: relative;
}
.mainContent .premium .content{
    height: 100%;
    position: relative;
}
.mainContent .premium .content.top{
    background: url(/images/goodpickHomepage/main_premium_bg.jpg) center center / cover no-repeat fixed;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.mainContent .premium .maintitle{
    color: #fff;
    text-align: left;
    position: absolute;
    left: 40%;
    top: 25%;
    transition: 1.25s all;
}
.mainContent .premium.active .maintitle{
    left:10%;
}
.mainContent .premium .maintitle .explain{
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 10%;
}
.mainContent .premium .maintitle .explain_con{
    margin-bottom:1.5%
}
.mainContent .premium .maintitle .explain_con:nth-last-child(1){
    margin-bottom:0;
}
.mainContent .premium .maintitle .title{
    font-size: 80px;
    font-weight: 800;
}
.mainContent .premium .maintitle .title_con{
    margin-bottom:1%;
}
.mainContent .premium .maintitle .title_con:nth-last-child(1){
    margin-bottom:0;
}
.mainContent .premium .content{

}
.mainContent .premium .content .Slider{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    min-height: 100vh;
    position: relative;
}
.mainContent .premium .content .slideCon{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    width: 100%;
}
.mainContent .premium .content .slideCon .bg{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.2);
    clip-path: inset(0 100% 0 0);
    transition: scale 4s, all 2s;
}
.mainContent .premium .content .slideCon.slick-active .bg{
    /* animation: scale_1 4s forwards; */
    clip-path: inset(0 0 0 0);
    transform: scale(1);
}
.mainContent .premium .content .slideCon00 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_00.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon01 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_01.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon02 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_02.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon03 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_03.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon04 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_04.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon05 .bg{
    background: url(/images/goodpickHomepage/main_premium_bg_05.jpg) center center / cover no-repeat;
}
.mainContent .premium .content .slideCon .text{
    color:#fff;
}
.mainContent .premium .content .slideCon .text .name{
    font-weight: 800;
    font-size: 60px;
    margin-bottom:7.5%;
    opacity: 0;
}
.mainContent .premium .content .slideCon.slick-active .text .name{
    animation: fadeIn 0.75s 0.5s forwards;
}
.mainContent .premium .content .slideCon .text .explain{
    font-size: 30px;
    font-weight: 200;
    opacity: 0;
}
.mainContent .premium .content .slideCon.slick-active .text .explain{
    animation: fadeInUp 0.75s 1s forwards;
}
.mainContent .premium .content .slideCon .text .explain_con{
    margin-bottom:1.5%;
}
.mainContent .premium .content .slideCon .text .explain:nth-last-child(1){
    margin-bottom: 0;
}
.mainContent .premium .content .controlWrap{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: rgba(1,1,1,0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10% 0 10%;
}
.mainContent .premium .content .controlWrap .naviWrap{
    text-align: left;
    padding-left: 10%;
}
.mainContent .premium .content .controlWrap .navicon{
    font-weight: 100;
    color: rgba(255,255,255,0.3);
    font-size: 22px;
    transition: 0.5s all;
    margin-bottom: 30px;
    text-transform: uppercase;
    cursor: pointer;
}
.mainContent .premium .content .controlWrap .navicon:hover{
    /* color:rgba(255,255,255,1); */
}
.mainContent .premium .content .controlWrap .navicon:nth-last-child(1){
    margin-bottom: 0;
}
.mainContent .premium .content .controlWrap .navicon.active{
    color:rgba(255,255,255,1);
    font-weight: 300;
}
.mainContent .premium .content .controlWrap .navicon .text{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mainContent .premium .content .controlWrap .text .name {
    font-size: 26px;
    font-weight: 100;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
}
.mainContent .premium .content .controlWrap .text .name_con{
    margin-bottom:5%;
    color: rgba(255,255,255,0.6);
}
.mainContent .premium .content .controlWrap .text .name_con.change{
    color:#fff;
}
.mainContent .premium .content .controlWrap .text .name_con:nth-last-child(1){
    margin-bottom:0;
}
.mainContent .premium .content .controlWrap .text .num{
    font-size: 50px;
    font-weight: 800;
    padding-top: 10px;
    position:relative;
}
.mainContent .premium .content .controlWrap .text .num:before{
    content:"";
    width: 50%;
    height: 7px;
    background:#fff;
    position:absolute;
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
}
.mainContent .premium .content .arrow{
    cursor: pointer;
    position: relative;
    width: 50px;
    height: 50px;
    transition: 0.5s all;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    display: inline-block;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
}
.mainContent .premium .content .prev{
    transform: rotate(225deg);
    left: calc(150px + 5%);
}
.mainContent .premium .content .next{
    transform: rotate(45deg);
    right:5%;
}

.mainContent .accent{
    height: 100vh;
    position: relative;
    background: #000;
    overflow: hidden;
}
.mainContent .accent .wrap{
    height: 100%;
}
.mainContent .accent .listWrap{
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
}
.mainContent .accent .listWrap .listcon{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0s all;
    opacity: 1;
    overflow: hidden;
    animation: fadeOut 1s forwards;
}
.mainContent .accent .listWrap .listcon.active{
    animation: fadeIn 1s forwards;
}
.mainContent .accent .listWrap .listcon .bg{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
}
.mainContent .accent .listWrap .listcon.active .bg{
}
.mainContent .accent .listWrap .listcon01 .bg{
    background: url(/images/goodpickHomepage/main_accent_img_01.jpg) center center / cover no-repeat;
}
.mainContent .accent .listWrap .listcon02 .bg{
    background: url(/images/goodpickHomepage/main_accent_img_02.jpg) center center / cover no-repeat;
}
.mainContent .accent .listWrap .listcon03 .bg{
    background: url(/images/goodpickHomepage/main_accent_img_03.jpg) center center / cover no-repeat;
}
.mainContent .accent .listWrap .listcon .text{
    position: relative;
    color:#fff;
    font-weight: 600;
    font-size: 50px;
    opacity: 0;
}
.mainContent .accent .listWrap .listcon.active .text{
    animation: fadeIn 0.75s 0.5s forwards;
} 
.mainContent .accent .listWrap .listcon .text_con{
    margin-bottom:1.5%;
}
.mainContent .accent .listWrap .listcon .text_con:nth-last-child(1){
    margin-bottom:0;
}
.mainContent .accent .thumbWrap{
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}
.mainContent .accent .thumbWrap .thumb{
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    color: rgba(255,255,255,0.3);
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 5% 5%;
    border-right: 1px solid #1e1e1e;
    transition: 0.25s all;
    position: relative;
}
.mainContent .accent .thumbWrap .thumb.active{
    color: rgba(255,255,255,1);
}
.mainContent .accent .thumbWrap .thumb_en{
    font-size: 50px;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 1.5%;
}
.mainContent .accent .thumbWrap .thumb_kr{
    font-size: 20px;
    font-weight: 100;
}
.mainContent .accent .thumbWrap .thumb.active .fan_ball{
    z-index: 100;
}
.mainContent .accent .thumbWrap .link {
    width: 75px;
    height: 75px;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    user-select: none;
    font-size: 15px;
    letter-spacing: 0;
    position: absolute;
    right: 2.5%;
    top: auto;
    opacity: 0;
}
.mainContent .accent .thumbWrap .thumb.active .link{
    animation: fadeIn 0.75s 0.5s forwards;
}

.mainContent .accent .thumbWrap .link::before{
    content:"";
    width: 75px;
    height: 2px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: #fff;
}
.mainContent .accent .thumbWrap .link::after{
    content:"";
    width: 2px;
    height: 75px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.fan_ball {
    position: fixed;
    top: auto;
    left: auto;
    z-index: 10;
    cursor: pointer;
}

.fan_ball>div {
    position: relative;
}

.fan_ball a {
    width: 75px;
    height: 75px;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    user-select: none;
    font-size: 15px;
    letter-spacing: 0;
}

.fan_ball a::before{
    content:"";
    width: 75px;
    height: 1px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: #fff;
}
.fan_ball a::after{
    content:"";
    width: 1px;
    height: 75px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

/*layer_pop*/
.layer_pop{
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    height: 0;
   /* z-index: 100;*/
    z-index: 10000;
    display: flex;
    overflow: hidden;
    transition: 0.5s all;
}
.layer_pop img{
    width: 100%;
}
.layer_pop.on{
    height: 100%;
}
.layer_pop .layer_bg{
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top:0;
    background-color: rgba(1,1,1,0.7);
    transition: 1s all;
}
.layer_pop.on .layer_bg{
    height: 100%;
}
.layer_pop .layer_container{
    width: 100%;
    height: 100%;
    position: relative;
}
.layer_pop .flex_wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.layer_pop .flex_wrap .list_wrap{
    display: flex;
    width: calc(100% - 30px);
    justify-content: center;
}
.layer_pop .flex_wrap .list_wrap .list_con{  
    opacity: 0;
    margin-right: 1.5%;
    max-width: max-content;
}
.layer_pop .flex_wrap .list_wrap .list_con:nth-last-child(1){
    margin-right: 0;
}
.layer_pop.on .flex_wrap .list_wrap .list_con{
    animation: fadeInDown 1s 1s forwards;
}
.layer_pop .flex_wrap .list_wrap .list_con:nth-child(2){
    animation-delay: 1.25s;
}
.layer_pop .flex_wrap .list_wrap .list_con:nth-child(3){
    animation-delay: 1.5s;
}
.layer_pop .flex_wrap .list_wrap .list_con:nth-child(4){
    animation-delay: 1.75s;
}
.layer_pop .flex_wrap .list_wrap .list_con:nth-child(5){
    animation-delay: 2s;
}
.layer_pop .bottomWrap{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: absolute;
    bottom: 5%;
    left: auto;
    opacity: 0;
}
.layer_pop.on .bottomWrap{
    animation: fadeIn 1s 2s forwards;
}
.layer_pop .close {
    width: 50px;
    height: 50px;
    z-index: 9999;
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.layer_pop.on .close{
}
.layer_pop .close span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fefeff;
    font-size: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    height: 2px;
    text-align: center;
}
.layer_pop .close span:nth-child(1) {
    transform: translateY(2px) rotate(225deg);
}
.layer_pop .close span:nth-child(2) {
    transform: translateY(0) rotate(135deg);
}
.layer_pop #check {
	color: #f1f1f1;
	font-size: 18px;
	position: relative;
	font-weight: 100;
	letter-spacing: -1px;
	display: flex;
	align-items: center;
	height: 50px;
	margin-right: 50px;
}
.layer_pop #check input {margin:0 3px 0 0;}
.layer_pop #check label {cursor:pointer;padding-left: 20px;}
.layer_pop .btn-close {
	font-size: 15px;
	color: #7e7e7e;
    font-weight: 300;
    letter-spacing: -1px;
	transition:0.75s all;
}
.layer_pop .btn-close:hover{
	color:#0a166d;
}
.layer_pop .btn-close span {vertical-align:-2px; font-size:17px;}
.popup_wrap2 input[type="checkbox"]{
	display:none;
}
.layer_pop input[type="checkbox"] + label:before {
	content:"";
	width: 22px;
	height: 22px;
	cursor: pointer;
	background: url(/images/goodpickHomepage/popup_checkbox.png) 0 0 no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.layer_pop input[type="checkbox"]:checked + label:before {
	background-position: -22px 0;
}

/*response*/
@media(min-width:1921px){
}
@media (max-width:1080px){
    .mainWrap{
        overflow: hidden;
    }
    .mainWrap img{
        width: 100%;
    }

    .MB_BR{
        display: block;
    }

    /* .mainVisual .bg video{
        width: auto;
        height: 100%;
    } */
    .mainVisual .list{
        text-align: center;
    }
    .mainVisual .list01 .text{
        font-size: 70px;
    }
    .mainVisual .list02{
        font-size: 70px;
    }
    .mainVisual .list03{
        font-size: 70px;
    }
    .mainVisual .list04{
        font-size: 70px;
    }
    .mainVisual .list04 .image{
        width: 60%;
        max-width: max-content;
    }

    .mainContent .premium .content .controlWrap{
        top: auto;
        bottom:0;
        height: auto;
        width: 100%;
        padding: 15px;
        height: 120px;
        justify-content: center;
    }
    .mainContent .premium .content .controlWrap .naviWrap{
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .mainContent .premium .content .controlWrap .navicon{
        flex:0 0 calc(100% / 3);
    }
    .mainContent .premium .content .controlWrap .navicon:nth-child(n+3){
        margin-bottom:0;
    }

    .mainContent .premium .content .arrow{
    }
    .mainContent .premium .content .prev{
        top:auto;
        bottom:200px;
        left:calc(100% - 120px);
        transform: translateY(0) rotate(225deg);
    }
    .mainContent .premium .content .next{
        top:auto;
        bottom:200px;
        transform: translateY(0) rotate(45deg);
    }

    .mainContent .accent{
        padding: 30px;
        background: #fff;
        height: 150vh;
    }
    .mainContent .accent .wrap{
        position: relative;
    }
    .mainContent .accent .listWrap{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .mainContent .accent .listWrap .listcon{
        animation: fadeIn 1s forwards;
        position: relative;
    }
    .mainContent .accent .listWrap .listcon .text{
        animation: fadeIn 0.75s 0.5s forwards;
        font-size: 50px;
    }
    .mainContent .accent .thumbWrap{
        flex-direction: column;
        gap: 30px;
    }
    .mainContent .accent .thumbWrap .thumb{
        flex:1;
        width: 100%;
        justify-content: flex-start;
        color: rgba(255,255,255,1);
        padding: 2.5%;
    }
    .mainContent .accent .thumbWrap .link{
        animation: fadeIn 1s forwards;
        position: absolute;
        right:2.5%;
        bottom:2.5%;
        width: 50px;
        height: 50px;
    }
    .mainContent .accent .thumbWrap .link::before{
        width: 100%;
    }
    .mainContent .accent .thumbWrap .link::after{
        height: 100%;
    }

    .layer_pop .flex_wrap .list_wrap{
        width: 80%;
        max-width: 450px;
        opacity: 0;
    }
    .layer_pop.on .flex_wrap .list_wrap{
        animation: fadeIn 1s 1s forwards;
    }
    .layer_pop .flex_wrap .list_wrap .list_con{
        margin:0 auto;
        max-width:none;
    }
    .layer_pop.on .flex_wrap .list_wrap .list_con{
        animation: none;
    }
    .layer_pop .bottomWrap{
        width: 80%;
        max-width: 450px;
        background: #fafafa;
        padding: 0 2.5%;
        position: relative;
        top: auto;
        bottom: auto;
    }
    .layer_pop.on .bottomWrap{
        animation-delay: 1s;
    }
    .layer_pop #check{
        color: #333;
        font-size: 16px;
    }
    .layer_pop .close{
        width: 30px;
    }
    .layer_pop .close span{
        background: #a7a7a7;
    }

}
@media(max-width:720px){

    .mainVisual .list01 .text{
        font-size: 10vw;
    }
    .mainVisual .list02{
        font-size: 10vw;
    }
    .mainVisual .list03{
        font-size: 10vw;
    }
    .mainVisual .list04{
        font-size: 10vw;
    }

    .mainContent .premium .content .slideCon .text .name{
        font-size: 8.5vw;
    }
    .mainContent .premium .content .slideCon .text .explain{
        font-size: 4.5vw;
    }
    .mainContent .premium .content .controlWrap .navicon{
        font-size: 16px;
    }
    .mainContent .premium .content .controlWrap{
        height: 100px;
    }
    .mainContent .premium .content .prev{
        bottom:140px;
    }
    .mainContent .premium .content .next{
        bottom:140px;
    }

    .mainContent .accent{
        height: 100vh;
    }
    .mainContent .accent .thumbWrap .thumb_en{
        font-size: 6vw;
    }
    .mainContent .accent .thumbWrap .thumb_kr{
        font-size: 4vw;
    }
    .mainContent .accent .listWrap .listcon .text{
        font-size: 6vw;
    }
    .mainContent .accent .thumbWrap .link{
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-aspect-ratio: 1219/685) {
    .mainVisual .bg video {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        -ms-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        display: block;
        height: 100%;
        width: auto;
        margin: 0 auto;
        z-index: -1;
    }
}
