@charset "utf-8";
/* fonts */
/* @font-face {
    font-family:'Samsung Sharp Sans';
    font-style:normal;
    font-weight:normal;
    src:url('../../static/fonts/SamsungSharpSans-regular.TTF') format("truetype"),
        url('../../static/fonts/SamsungSharpSans-regular.TTF') format("embedded-opentype");
}
@font-face {
    font-family:'Samsung Sharp Sans';
    font-style:normal;
    font-weight:bold;
    src:url('../../static/fonts/SamsungSharpSans-Bold.eot');
    src:url('../../static/fonts/SamsungSharpSans-Bold.eot?#iefix') format("embedded-opentype"),
        url('../../static/fonts/SamsungSharpSans-Bold.woff2') format("woff2"),
        url('../../static/fonts/SamsungSharpSans-Bold.woff') format("woff"),
        url('../../static/fonts/SamsungSharpSans-Bold.ttf') format("truetype");
}
@font-face {
    font-family:'SamsungOneKorean';
    font-style:normal;
    font-weight:normal;
    src:url('../../static/fonts/SamsungOneKorean-400.eot');
    src:url('../../static/fonts/SamsungOneKorean-400.eot?#iefix') format("embedded-opentype"),
        url('../../static/fonts/SamsungOneKorean-400.woff2') format("woff2"),
        url('../../static/fonts/SamsungOneKorean-400.woff') format("woff"),
        url('../../static/fonts/SamsungOneKorean-400.ttf') format("truetype");
}
@font-face {
    font-family:'SamsungOneKorean';
    font-style:normal;
    font-weight:bold;
    src:url('/static/fonts/SamsungOneKorean-700.eot');
    src:url('/static/fonts/SamsungOneKorean-700.eot?#iefix') format("embedded-opentype"),
        url('/static/fonts/SamsungOneKorean-700.woff2') format("woff2"),
        url('/static/fonts/SamsungOneKorean-700.woff') format("woff"),
        url('/static/fonts/SamsungOneKorean-700.ttf') format("truetype");
} */
/* @font-face {
    font-family:'SamsungOneKoreanOTF';
    font-style:normal;
    font-weight:normal;
    src:url('/static/fonts/SamsungOneKoreanOTF 300C.otf') format("opentype");
}
@font-face {
    font-family:'SamsungOneKoreanOTF';
    font-style:bold;
    font-weight:normal;
    src:url('/static/fonts/SamsungOneKoreanOTF 700C.otf') format("opentype");
} */

@font-face {
    font-family: 'SamsungOneKoreanOTF';
    font-style: normal;
    font-weight: 300;
    src: url('/static/fonts/SamsungOneKoreanOTF 300C.otf') format("opentype");
}

@font-face {
    font-family: 'SamsungOneKoreanOTF';
    font-style: normal;
    font-weight: bold;
    src: url('/static/fonts/SamsungOneKoreanOTF 700C.otf') format("opentype");
}


/* @font-face {
    font-family: 'SamsungOneKorean';
    src: url('../../static/fonts/SamsungOneKorean-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SamsungOneKorean';
    src: url('../../static/fonts/SamsungOneKorean-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
} */
/* reset */
body {font-family: 'SamsungOneKoreanOTF', sans-serif !important;}
.num {font-family: 'Samsung Sharp Sans', 'SamsungOneKorean', sans-serif !important}
h1, h2, h3, h4, h5, h6, p, ol, ul {margin: 0; padding: 0}
ol, ul {list-style-type: none}
button{outline: none; border: none; background: none; padding: 0; cursor: pointer;}
button:active,
button:focus {
    outline: none; /* Remove outline on active and focus states */
}
img{
    width: 100%;
}

.modal {position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; max-width: 492px; width: 100%; height: auto;  }
.modal.active {z-index: 1005; display: block; }
.modal .modal-close {position: absolute; top: 2.4%; right: 4.3%; z-index: 10; width: 6%; height: 4%; cursor: pointer;}
.modal .modal-close > button {cursor: pointer; outline: none; border: none; background: none; padding: 0;}



/* 주야토글버튼 */
.switch {
    position: absolute;
    display: inline-block;
    /* width: 7.291%;
    height: 5.925%; */
    width: 140px;
    height: 64px;
    /* bottom: 7.6%;
    left: 10.687%; */
    bottom: 50px;
    left: 89px;
    /* transform:translateX(-50%); */
    z-index: 11111;
    margin-bottom: 0;
    background: linear-gradient(180deg, #EBF0FE 0%, rgba(235, 240, 254, 0.3) 100%), rgba(255, 255, 255, 0.2);
    /* linear-gradient(167.67deg, #FFFFFF 1.02%, rgba(255, 255, 255, 0) 104.02%);; */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    border-radius: 47px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #fff; */
    border: 2px solid #fff;
    border-radius:50px;
    /* border-image: linear-gradient(to right, red 0%, orange 100%); */
    /* border-image-slice: 1; */
    
}

.slider:before {
    content: "";
    position: absolute;
    width:48px;
    height:48px;
    top:50%;
    left:12px;
    border-radius: 100%;
    -webkit-transform: translateY(-48%)  translate3d(0,0,0);
    transform: translateY(-48%)  translate3d(0,0,0);
    z-index: 1;
    background-image:url(../images/sun_icon.svg);
    background-repeat: no-repeat;
    background-size: cover ;
    background-position: center ;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-backface-visibility:hidden;
}
/* .slider:after{
    content: "";
    position: absolute;
    width: 34px;
    height: 16px;
    top:50%;
    left:60px;
    font-weight: 500;
    color: #fff;
    transform: translateY(-50%) translate3d(0,0,0);
    -webkit-transform: translateY(-50%) translate3d(0,0,0);
    z-index: 1;
    background-image:none;
    background-repeat: no-repeat;
    background-size: contain ;
    background-position: center ;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
} */
input:checked + .slider {
    /* background-color: #000; */
    /* background: linear-gradient(180deg, #454E6B 0%, rgba(94, 113, 170, 0.72) 100%), rgba(255, 255, 255, 0.2); */
    background-image: url(../images/moon_icon_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border: none;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
    -webkit-transform:translate(67px, -48%) translate3d(0,0,0);
    -ms-transform: translate(67px, -48%) translate3d(0,0,0);
    transform: translate(67px, -48%) translate3d(0,0,0);
    background-image:url(../images/moon_icon.svg);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
/* input:checked + .slider:after{
    content: "";
    width: 50px;
    left: auto;
    right: 30px;
    color: #fff;
    -webkit-transform:translate(-50%, -50%) translate3d(0,0,0);
    -ms-transform: translate(-50%, -50%) translate3d(0,0,0);
    transform: translate(-50%, -50%) translate3d(0,0,0);
    background-image:none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
} */


/* ------------------------------
* Intro
------------------------------ */
#intro .intro-bg {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
#intro .intro-bg .video-day,
#intro .intro-bg .video-night {position: absolute; top: 0; left: 0; width: 100%; height: 100%; transition: opacity 0.3s; object-fit: cover;}
#intro.mode_night .intro-bg .video-day.pc {opacity: 0;}
#intro.mode_night .intro-bg .video-night.pc {opacity: 1;}
#intro.mode_day .intro-bg .video-day.pc {opacity: 1;}
#intro.mode_day .intro-bg .video-night.pc {opacity: 0;}
.pc{
    display: block;
}
.mo{
    display: none;
}


#intro {
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%; 
    background-color: #fff; 
    z-index: 1000; 
    background-color: #000;
    /* background-image: url(../images/cook_landing_bg_pc.png);  */
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    overflow: hidden
}
#intro_btn{
    position: fixed;
    /* width: 571px; */
    width: 585px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 80px; */
    bottom: 7.5%;
    left: 50%;
    z-index: 1000;
    transform: translateX(-50%);
}
#intro_btn .in_btn{
    width: 152px;
}
.mask{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.mask.active{
    display: block;
}
#change{
    display: block;
    position: absolute;
    /* width: 20.925%; */
    width: 136px;
    top: 70px;
    right: 72px;
    /* width: 7.188%; */
    /* height: 15.149%; */
    /* top: 3%;
    right: 4.6%; */
}

@media (max-width:1024px) {
    .switch{
        top: 4%;
        left: 11.687%;
    }
}
@media (max-width:768px) {

    #intro_btn{
        bottom: 7%;
        width: 73.08%;
        gap: 2%;
    }
    #intro_btn .in_btn{
        width: 100%;
    }
    
    #intro.mode_night .intro-bg .video-day.mo {opacity: 0;}
    #intro.mode_night .intro-bg .video-night.mo {opacity: 1;}
    #intro.mode_day .intro-bg .video-day.mo {opacity: 1;}
    #intro.mode_day .intro-bg .video-night.mo {opacity: 0;}
    .pc{
        display: none;
    }
    .mo{
        display: block;
    }
    #intro .intro-bg .video-night.pc,
    #intro .intro-bg .video-day.pc{
        opacity: 0;
    } 
    #intro .intro-bg .video-night.mo,
    #intro .intro-bg .video-day.mo{
        opacity: 1;
    } 
    #change{
        top: 3%;
        right: 4.6%;
    }
}
@media (max-width:650px) {
    #change{
        width: 20.925%;
    }
    .switch{
        left: 6.687%;
    }
}
@media (max-width:500px) {
    .switch {
        top: 4%;
        width: 130px;
        height: 59px;
    }
    .slider:before{
        width: 44px;
        height: 44px;
    }
}
@media (max-width:390px) {
    .switch{
        width: 120px;
        height: 54px;
    }
    .slider:before {
        width: 40px;
        height: 40px;
    }
}

/* ------------------------------
* start
------------------------------ */
#start {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background: url(../images/cook_landing_bg_pc_test.png) no-repeat center center/cover; 
    /* background-image: url(../images/cook_landing_bg_pc_test.png);  */
    /* background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;  */
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* test */
#tour-frame{
    display: none;
}
#tutorial{
    display: none;
}
/* test */
/* ------------------------------
    고정메뉴
 */
 #menu_btn{
    position: fixed;
    /* top: 6.574%; */
    /* right: 4.010%; */
    top: 30px;
    z-index: 99;
    width: 100%;
    padding: 0 79px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
#menu_btn ul{
    display: flex;
    align-items: center;
}
#menu_btn ul.fi{
    gap: 32px;
}
#menu_btn ul.se{
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
#menu_btn ul li:nth-child(2){
    grid-area: span 1 / 8;
}
#menu_btn ul li:nth-child(3){
    grid-area: span 1 / 9;
}
#menu_btn ul li:last-child{
    grid-area: span 1 / 10;
}
#only_tour{
    justify-self: start;
}
#menu_btn ul li{
    width: 117px;
    height: 117px;
    cursor: pointer;
}
#menu_btn ul li a{
    position: relative;
    display: block;
}
#menu_btn ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 117px;
    height: 117px;
    border-radius: 45%;
    box-shadow: 40px 40px 100px 0px rgba(24, 48, 63, 0.20);
    
}
@media (max-width:900px) {
    #menu_btn ul{
        width: 90%;
        margin: 0 auto;
        gap: 16px;
        padding: 0;
    }
        
}
@media (max-width:768px) {
    #menu_btn{
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        gap: 16px;
        padding: 0;
        width: 90%;
    }
    #menu_btn ul{
        width: 90%;
        gap: 10px;
    }
    #menu_btn ul.se{
        gap: 5.7%;
    }
    #menu_btn ul li{
        width: 17vw;
        height: auto;
    }
    #menu_btn ul li a::before{
        width: 17vw;
        height: 17vw;
    }
}
@media (max-width:375px) {
    #menu_btn ul{
        gap: 22px;
    }
}
/* ------------------------------

* 메인투어 안내 모달 공통 CSS
------------------------------ */
.modal .flow-modal-close {
    position: absolute;
    cursor: pointer;
}

.flow_modal_01 {
    max-width: 80vw;
    width: 1217px;
    height: auto;
    top: 55%;
}

.flow_modal_01 .flow-modal-close{
    width: 2.8%;
    height: 4.7%;
    top: 9.8%;
    right: 8.5%;
}

.flow_modal_02{
    max-width: 450px;
    left: 50px;
    transform: translateY(-50%);
}
.flow_modal_02 .flow-modal-close{
    top: 6.4%;
    right: 11.9%;
    width: 6%;
    height: 3.9%;
}

.greet_slide_img{
	cursor:pointer;
}
@media screen and (max-width: 768px) {
    .flow_modal_01{
        top: 50%;
        max-width: 82vw;
    }
    .flow_modal_01.modal{
        max-width: 590px;
        width: 100%;
    }
    .flow_modal_01 .flow-modal-close {
        width: 6.8%;
        height: 5.7%;
        top: 6%;
        right: 8.5%;
    }
    /* .flow_modal_01 .flow-modal-close{
        width: 5.8%;
        height: 4.7%;
        top: 4.2%;
        right: 6%;
    } */
    .flow_modal_02{
        max-width: 100%;
        left: 0;
        top: 30%;
    }
    .flow_modal_02 .flow-modal-close{
        top: 15.4%;
        right: 7.5%;
        width: 5%;
        height: 9%;
    }  
}

/* ------------------------------

* 메인투어 모달 02 제품 핀 인덱스
------------------------------ */

#index_list{
    position: absolute;
    left: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
#index_list ul{
    display: flex;
    width: 740px;
    flex-wrap: wrap;
    gap: 10px;
}
#index_list ul li{
    margin-bottom: 10px;
    width: 170px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    border: 1px solid #000;
    cursor: pointer;
}
#index_list ul li P{
    font-size: 16px;
    color: #000;
    text-align: center  ;
}

@media screen and (max-width: 1225px) {
    #index_list{
        left: 50%;
    }
}

@media screen and (max-width: 768px) {
    #index_list{
        display: block;
    }
    #index_list ul{
        width: auto;
        display: grid;
        grid-template-columns: repeat(2 ,1fr);
    }
}
@media screen and (max-width: 500px) {
    #index_list{
        top: 55%;
    }
    #index_list ul li{
        width: 120px;
        height: 30px;
        line-height: 30px;
    }
}



/* 제품모달 공통 CSS */
.content .content_btn{
    position: absolute;
}
.content .content_btn.btn_01{
    width: 26.5%;
    height: 6.3%;
    top: 77.5%;
    left: 18%;
}

.content .content_btn.btn_02{
    width: 26.5%;
    height: 6.3%;
    top: 77.5%;
    left: 55.2%;
}

.content .content_btn.btn_03{
    width: 100%;
    height: 12%;
    bottom: 0;
    left: 0;
}

/* 고민 모달 공통 CSS */
.modal.worry_modal{
    max-width: 600px;
    width: 100%;
    height: auto;
}
.modal.worry_modal .back_btn{
    position: absolute;
    width: 76%;
    height: 13%;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.worry_story_btn{
    position: absolute;
    width: 76%;
    height: 31%;
    top: 53%;
    left: 50%;
    transform: translateX(-50%);
}