@charset "utf-8";

/* ============================================
    REUSERBLE COMPONENT
============================================ */


/* terior-wrap */
.terior-wrap{
    & .tablist{
        padding: 0 0 60px;
    }
    & .tabcont{
        padding: 0;
        & .con{
            display: none;
            &.on{
                display: block;
            }
        }
    }

    @media (width <= 1280px){
        & .tablist{
            padding: 0 0 5%;
        }
    }
    @media (width <= 640px){
        & .tablist{
            padding: 0 0 5%;
        }
    }
}


/* terior-slide */
.terior-slide{
    position: relative; overflow: visible; padding: 0 100px;
    & .item{
        border-radius: 10px; overflow: hidden; transition: opacity 0.3s ease;
        &:not(.swiper-slide-active){opacity: 0.5;}

        & .img{
            & img{width: 100%;}
        }
    }

    @media (width <= 1280px){
        padding: 0 5%;
    }
}


/* btn-wrap */
.btn-wrap{
    display: flex; flex-wrap: wrap; gap: 5px; padding: 36px 0 0; justify-content: center;
    &.alignLeft{justify-content: flex-start;}
    &.alignRight{justify-content: flex-end;}
    &.alignCenter{justify-content: center;}
}


/* btn */
.btn{
    flex: 1; min-width: 0; max-width: 160px; display: block; border: 1px solid #00a651; border-radius: 5px; font-size: 17px; font-weight: var(--fwm); line-height: 43px; text-align: center; background-color: #fff; 
    color: #00a651; transition: 0.1s ease;

    &:hover{
        color: #fff; background-color: #00a651;
    }

    /* 기능 */
    & .ico-clock{
        position: relative; display: inline-block; padding: 0 0 0 25px; font-weight: var(--fwr);
        &:before{content: ""; position: absolute; top: 12px; left: 0; width: 17px; height: auto; aspect-ratio: 17 / 21; background: url("/assets/site/img/contents/btn-ico-clock.svg") no-repeat center; background-size: 100% auto; animation: shake 14s ease infinite; animation-delay: 1s;}
    }
    
    /* 너비 */
    &.w100{width: 100%; max-width: none;}
    &.wa{width: auto; padding: 0 24px;}

    /* 색상 */
    &.blue{background-color: var(--primary-blue);}
    &.light-blue{background-color: #eef7ff; border: 1px solid #d8edff; color: #111;}
    &.white{background-color: #fff; border-color: var(--border-default); color: #111; font-weight: var(--fwr);}
    &.green{background-color: #00a651; border-color: transparent; color: #fff; font-weight: var(--fwb);}

    /* 곡률 */
    &.noRadius{
        border-radius: 0;
    }
}


/* quick-form */
.quick-form{
    --form-height : 40px;
    display: flex; flex-wrap: wrap; align-items: center;

    & .tit{
        flex: 0 0 auto; width: 202px; text-align: center;
        & .name{font-weight: var(--fwb); color: #000;}
        & .sub{font-size: 14px; color: #888;}
    }

    & .qf-wrap{
        flex: 1;
        display: flex; flex-wrap: wrap; gap: 10px;
        & > *{flex: 1; min-width: 0;}
        & .form-input{
            position: relative;
            & input{
                display: block; width: 100%; max-width: 100%; border-radius: 5px; border: 1px solid #e1e5ed; height: var(--form-height); padding: 0 var(--input-inner-space-sm); outline: none; font-size: 1rem; font-weight: var(--fwr); color: var(--main); transition: border 0.1s;
                &.w100{width: 100%;}
                &::placeholder{color: #d4d8e1;}
                &:read-only{color: #d4d8e1; cursor: default;}
                &:focus{border-color: var(--theme-green);}

                & + label{position: absolute; top: 50%; left: var(--input-inner-space-sm); transform: translateY(-50%); transition: 0.1s; pointer-events: none; font-size: 1rem; color: #d4d8e1; background: var(--white);
                    padding: 0; line-height: 1;}
                &:focus + label{top: 0; transform: translateY(-50%); left: 10px; font-size: 0.75rem; color: var(--theme-green); padding: 0 3px;}
                &:not(:placeholder-shown):not(:focus) + label { top: 0; transform: translateY(-50%); left: 10px; font-size: 12px; color: #d4d8e1; padding: 0 3px;}

                &.datepicker{
                    cursor: pointer; color: var(--main);
                    background-image: url("/assets/site/img/common/form-select-arr.svg"), url("/assets/site/img/common/select-cal.svg");
                    background-position: center right 14px, center left 15px;
                    background-size: 16px auto, 16px auto;
                    background-repeat: no-repeat;
                    padding: 0 36px 0 40px;
                }
            }

            &.mail-at{
                &:before{content: "@"; position: absolute; left: calc(var(--input-inner-space-sm) - 2px); line-height: var(--form-height);}
                & input{padding-left: 32px;}
            }

            &.noRadius{
                & input{border-radius: 0 !important;}
            }
        }
        & .form-select{
            & select{
                position: relative; min-width: 155px; width: 100%; border-radius: 5px; border: 1px solid #e1e5ed; height: var(--form-height); padding: 0 30px 0 var(--input-inner-space-sm); font-size: 1rem; font-weight: var(--fwr); outline: none; transition: 0.1s; letter-spacing: inherit;
                background-image: url("/assets/site/img/common/form-select-arr.svg"); background-position: center right 14px; background-size: 16px auto; background-repeat: no-repeat; background-color: #fff; color: var(--main);
                text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
                &.hasCal{
                    background-image: url("/assets/site/img/common/form-select-arr.svg"), url("/assets/site/img/common/select-cal.svg");
                    background-position: center right 14px, center left 15px;
                    background-size: 16px auto, 16px auto;
                    background-repeat: no-repeat;
                    padding: 0 30px 0 40px;
                }

                &:focus{border-color: var(--theme-green);}
            }

            &.noRadius{
                & select{border-radius: 0 !important;}
            }
        }
    }

    & .form-agree{
        flex: 0 0 auto; padding: 0 30px;
    }

    & .qf-btn{
        flex: 0 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; width: 250px;
        line-height: calc(var(--form-height) - 2px); border: 1px solid transparent; font-size: 1rem; font-weight: var(--fwb); letter-spacing: -0.05em; color: #fff; background-color: var(--theme-green); padding: 0 var(--gap);

        &.hasArr{
            &:after{content: ""; display: inline-block; width: 20px; height: auto; aspect-ratio: 20 / 14; background: url("/assets/site/img/contents/qf-btn-arr.svg") no-repeat;}
        }
    }
    @media (width <= 1280px){
        gap: 14px 0;
        & .tit{flex: 0 0 100%; text-align: left;}
        & .form-agree{padding: 0 20px; font-size: 15px;}
        & .qf-btn{width: 220px;}
    }
    @media (width <= 1024px){
        & .qf-wrap{gap: 8px;}
        & .form-agree{padding: 0 14px; font-size: 14px;}
        & .qf-btn{width: 140px;}

    }
    @media (width <= 860px){
        gap: 10px 0;
        & .qf-wrap{flex: 0 0 100%; gap: 10px;}
        & .form-agree{padding: 0 20px 0 0;}
        & .qf-btn{margin-left: auto; width: calc(33.333333% - 6px);}
    }
    @media (width <= 640px){
        & .form-checkbox {gap: 8px;}
        & .qf-wrap{flex-direction: column; gap: 10px;}
        & .qf-btn{width: 140px;}
    }
}


/* bd-grid */
.bd-grid{
    display: flex; flex-wrap: wrap; gap: var(--gap);
    & > li{
        width: calc((100% - var(--gap)) / 2);
        & a{
            display: block; border: 1px solid var(--border-default); border-radius: var(--radius); padding: 35px 36px 33px;
            & .title{font-size: 20px; font-weight: var(--fwb); line-height: 1.3; height: auto;}
            & .con{line-height: 1.313; height: auto; padding: 24px 0 0;}
            & .bot{
                display: flex; flex-wrap: wrap; padding: 23px 0 0;
                & .date{}
                & .more{margin: 0 0 0 auto; opacity: 0; visibility: hidden; transform: translateX(-10px); transition: 0.2s;}
            }

            &:hover{
                outline: 2px solid var(--primary-blue); outline-offset: -2px; box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
                & .bot{
                    & .more{opacity: 1; visibility: visible; transform: translateX(0);}
                }
            }
        }

        &.empty{
            width: 100% !important;
            display: flex !important; align-items: center !important; justify-content: center !important; gap: 0 !important; border-radius: 15px !important; background: #f5f5f5 !important; padding: 60px 30px !important; font-size: 1rem !important; font-weight: 500 !important; color: #aaa !important;
        }
    }

    @media (width <= 640px){
        flex-direction: column; gap: 0; border: 1px solid var(--border-default); border-radius: var(--radius);
        & > li{
            flex: 0 0 auto; width: 100%;
            & a{
                position: relative; padding: 16px 15px 16px 15px; border: none; border-radius: 0;
                & .title{display: block !important; white-space: nowrap; font-size: 16px; padding: 0 70px 0 0;}
                & .con{font-size: 14px; padding: 10px 0 0; line-height: 1.4;}
                & .bot{
                    position: absolute; top: 17px; right: 15px; padding: 0;
                    & .date{font-size: 13px; color: var(--gray); letter-spacing: -0.03em;}
                    & .more{display: none;}
                }

                &:hover{
                    outline: none; outline-offset: initial; box-shadow: none;
                }
            }
        }
        & > li:not(:last-child){border-bottom: 1px solid var(--border-default);}
    }
}


/* process-wrap */
.process-wrap{
    display: flex; flex-wrap: wrap; gap: var(--gap);
    & .p-steps{
        flex: 0 0 auto; width: 672px; border: 1px solid var(--border-default); border-radius: var(--radius); padding: 11px 36px 12px;
        & > div{}
        & > div .p-item{position: relative; display: flex; flex-wrap: wrap; align-items: center; padding: 29px 17px 28px 0; font-size: 24px; font-weight: var(--fwb); border-bottom: 1px solid var(--border-default); line-height: 1.25;}
        & > div .p-item .num{flex: 0 0 auto; margin: 0 24px 0 0; width: 30px; height: auto; line-height: 30px; border-radius: 50%; aspect-ratio: 1; color: #fff; background: url("/assets/site/img/main/p-item-num-bg.svg"); background-size: 100% auto; font-size: 20px; font-weight: var(--fwb); text-align: center; text-shadow: -2px 1px 3px rgba(0, 0, 0, 0.2);}
        & > div .p-item:after{content: ""; margin: 0 0 0 auto; display: inline-block; width: 11px; height: auto; aspect-ratio: 1; border-top: 2px solid var(--gray); border-right: 2px solid var(--gray); transform: rotate(45deg);}
        & > div:last-child .p-item{border-bottom: none;}
        & > div .p-item:hover:after{border-color: #111;}
    }
    & .p-links{
        flex: 1; min-width: 0; display: flex; flex-wrap: wrap; gap: var(--gap);
        & > li{
            width: calc((100% - var(--gap)) / 2);
            & a{
                display: flex; flex-wrap: wrap; align-items: center; justify-content: center; flex-direction: column; height: 100%; border-radius: var(--radius); background: #eef7ff; text-align: center; transition: background 0.1s;
                & .img{
                    & img{width: 75px; height: auto;}
                }
                & .txt{font-size: 20px; font-weight: var(--fwb); line-height: 1.25; padding: 6px 0 0;}

                &:hover{background: #d8ebfc;}
            }
        }
    }

    @media (width <= 1280px){
        & .p-steps{
            flex: 1; min-width: 0; width: auto;
            & > div .p-item{font-size: 20px;}
        }
        & .p-links{
            flex: 0 0 auto; width: 430px;
        }
    }
    @media (width <= 1024px){
        & .p-steps{
            padding: 5px 30px;
            & > div .p-item{padding: 20px 0;}
            & > div .p-item .num{margin: 0 10px 0 0; font-size: 16px; width: 24px; line-height: 24px;}
        }
        & .p-links{
            & > li{
                & a{
                    & .txt{font-size: 16px;}
                }
            }
        }
    }
    @media (width <= 860px){
        & .p-links{
            width: 100%;
            & > li{
                & a{
                    padding: 24px 0; 
                }
            }
        }
        
    }
    @media (width <= 640px){
        & .p-steps{
            padding: 5px 15px;
            & > div{}
            & > div .p-item{font-size: 16px; padding: 18px 0;}
            & > div .p-item:after{width: 8px;}
            & > div .p-item .num{width: 20px; line-height: 20px; font-size: 14px; margin: 0 7px 0 0;}
        }
        & .p-links{
            & > li{
                & a{
                    padding: 24px 0;
                    & .img{
                        & img{width: 40px;}
                    }
                    & .txt{font-size: 15px;}
                }
            }
        }
    }
}


/* prize */
.prize{
    max-width: 1335px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 90px;
    
    & > li{
        flex: 1; min-width: 0; align-content: center; position: relative; padding: 0 0 92px; font-family: var(--font-batang); font-weight: var(--fwm); font-size: 30px; line-height: 1.2; letter-spacing: 0; color: #fff; text-align: center;
        &:before{content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: auto; aspect-ratio: 385 / 120; background: url("/assets/site/img/contents/prize-bg.svg") no-repeat center bottom; background-size: 100% auto;}
    }

    @media (width <= 1280px){
        gap: 4vw; 
        & > li{
            font-size: clamp(16px,2.6vw,30px); padding: 0 0 9%;
        }
    }
    @media (width <= 640px){
        gap: 6px; 
        & > li{
            font-size: 11px; white-space: nowrap;
            &:before{background-size: 90%;}
        }
    }
}


/* more */
.more{
    display: inline-flex; flex-wrap: wrap; gap: 12px; align-items: center;

    & .txt{font-size: 17px; font-weight: var(--fwm);}

    & .arr{
        position: relative; width: 24px; height: auto; aspect-ratio: 1; border-radius: 50%; background: #ddd;
        &:before{content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: auto; aspect-ratio: 1; border-top: 2px solid #000; border-right: 2px solid #000; transform: translate(-65%, -50%) rotate(45deg);}
    }

    &.white{
        & .txt{color: var(--white);}
        & .arr{
            background: var(--white);
            &:before{border-color: var(--black);}
        }
    }
    &.blue{
        & .arr{
            background: var(--primary-blue);
            &:before{border-color: var(--white);}
        }
    }
    &.black{
        & .txt{color: var(--black);}
        & .arr{
            background: var(--black);
            &:before{border-color: var(--white);}
        }
    }

    @media (hover: hover) and (pointer: fine) {
        /* 마우스 있는 환경 (터치 아님) */
        &.hasFx:hover{
            & .arr{animation: arr-move 0.5s;}
        }
    }
    

    @media (width <= 640px){
        gap: 7px;
        & .txt{font-size: 14px;}
        & .arr{
            width: 20px; margin: -1px 0 0;
            &:before{width: 30%;}
        }
    }
}


/* view-more */
.view-more{
    display: block; width: 360px; padding: 0 24px; font-size: 18px; font-weight: var(--fwb); line-height: 58px; border-radius: 8px; border: 1px solid transparent; background-color: var(--theme-green); color: #fff;
    & span{
        display: flex; align-items: center;
        &:after{content: ""; display: inline-block; vertical-align: middle; margin: 2px 0 0 auto; width: 20px; height: 12px; background: url("/assets/site/img/contents/view-more-arr.svg") no-repeat center;}
    }

    @media (hover: hover) and (pointer: fine) {
        /* 마우스 있는 환경 (터치 아님) */
        
        &:hover{
            & span{
                &:after{animation: arr-move 0.5s;}
            }
        }
    }

    @media (width <= 640px){
        font-size: 15px; width: 200px; padding: 0 15px; line-height: 50px;
    }
}


/* ban */
.ban{
    display: flex; flex-wrap: wrap; border-radius: 10px; overflow: hidden; margin: var(--main-sec-space) 0 0;
    & .item{
        flex: 1; min-width: 0; background-color: var(--theme-green); color: var(--white); padding: 48px 70px 48px; position: relative;
        & .txt{
            position: relative; font-size: 24px; letter-spacing: -0.02em; line-height: 1.1;
            & p{}
            & p + p{padding: 11px 0 0;}
        }
        & > a{
            position: relative; display: inline-flex; align-items: center; gap: 12px; width: 270px; padding: 0 33px 3px; line-height: 60px; border: 2px solid var(--white); border-radius: 16px; font-size: 24px; font-weight: var(--fwsb); letter-spacing: -0.04em; margin: 24px 0 0; background-color: var(--theme-green);
            &:after{content: ""; display: inline-block; margin: 1px 0 0; width: 27px; height: auto; aspect-ratio: 1; background: url("/assets/site/img/main/ban-arr.svg") no-repeat center; background-size: 100% auto;}
            & span{}

            @media (hover: hover) and (pointer: fine) {
                /* 마우스 있는 환경 (터치 아님) */
                &:hover{
                    &:after{animation: arr-move 0.5s;}
                }
            }
        }

        &.type1{
            &:before{content: ""; position: absolute; bottom: 0; right: 41px; width: 279px; height: auto; aspect-ratio: 279 / 237; background: url("/assets/site/img/main/ban-type1-bg.png") no-repeat center; background-size: 100% auto;}
        }
        &.type2{
            background-color: var(--white); color: var(--theme-black);
            &:before{content: ""; position: absolute; top: 58px; right: 32px; width: 298px; height: auto; aspect-ratio: 298 / 145; background: url("/assets/site/img/main/ban-type2-bg.png") no-repeat center; background-size: 100% auto;}
            & > a{
                border-color: var(--theme-black); background-color: var(--white);
                &:after{filter: var(--filter-theme-black);}
            }
        }
    }

    @media (width <= 1600px){
        & .item{
            padding: 3.5% 40px;
            & .txt{
                font-size: clamp(18px,1.5vw,24px);
            }
            & > a{
                font-size: 20px; padding: 0 20px 1px; line-height: 54px;
            }

            &.type1{
                &:before{width: clamp(100px,18vw,279px); right: 10px;}
            }
            &.type2{
                &:before{width: clamp(100px,18vw,298px); right: 10px;}
            }
        }
    }
    @media (width <= 1280px){
        & .item{
            padding: 3.5% 30px;
            & > a{
                line-height: 44px; font-size: 17px; border-radius: 12px; width: 190px; padding: 0 15px 1px; gap: 8px;
                &:after{width: 18px;}
            }
        }
    }
    @media (width <= 1024px){
        flex-direction: column; flex-wrap: initial; gap: 30px; border-radius: 0;
        & .item{
            border-radius: 10px; overflow: hidden; padding: 30px;
            & .txt{
                font-size: 20px;
                & p + p{padding: 1.5% 0 0;}
            }

            &.type1{
                &:before{width: 220px;}
            }
            &.type2{
                &:before{width: 305px; top: 24px;}
            }
        }
    }
    @media (width <= 640px){
        gap: 20px;
        & .item{
            padding: 24px;
            & .txt{
                font-size: 16px;
                & p + p{padding: 1.5% 0 0;}
            }
            & > a{
                font-size: 15px; border-width: 1px; line-height: 42px; padding: 0 15px 3px; border-radius: 10px; gap: 7px; width: auto;
                &:after{width: 15px;}
            }

            &.type1{
                &:before{width: 36vw; right: 3px; bottom: -30px;}
            }
            &.type2{
                &:before{width: 38vw; right: 3px; bottom: 10px; top: auto;}
            }
        }
    }
}


/* new-monster */
.new-monster{
    border-radius: 10px; overflow: hidden;
    & .img{
        & img{display: block; width: 100%; height: auto;}
    }
}


/* product-badge-list */
.product-badge-list{
    display: flex; flex-direction: column;

    & .product-badge + .product-badge{margin-top: -12.72%;}
}


/* product-badge */
.product-badge{
    position: relative; display: inline-flex; width: 119px; height: auto; aspect-ratio: 119 / 60; color: #fff; font-family: var(--font-eng); font-weight: var(--fwb); line-height: 1.1; text-align: center; align-items: center; justify-content: center; letter-spacing: 0;
    container-name: badge-container;
    container-type: inline-size;
    &:before{content: ""; position: absolute; inset: 0; background: url("/assets/site/img/contents/product-badge.svg") no-repeat center; background-size: 100% auto;}
    & span{position: relative; text-transform: uppercase; font-size: 15.26cqw;}

    &.new{
        &:before{background-image: url("/assets/site/img/contents/product-badge-new.svg");}
    }
    &.best{
        &:before{background-image: url("/assets/site/img/contents/product-badge-best.svg");}
    }
    &.season{
        &:before{background-image: url("/assets/site/img/contents/product-badge-season.svg");}
    }
    &.onlyice{
        &:before{background-image: url("/assets/site/img/contents/product-badge-onlyice.svg");}
    }

    /* ▼ 카드 안에 뱃지가 있는 경우 카드 크기따라 컨트롤 */
    @container card-container (max-width: 1000px) {
        width: 22.81cqw;
    }
    @container card-container (max-width: 500px) {
        width: 24cqw;
    }
}



/* badge */
.badge{
    display: inline-block; padding: 0 12px; line-height: 30px; border-radius: 30px; font-size: 14px; font-weight: var(--fwsb); background: #ddd; color: #fff;
    &.blue{background: var(--primary-blue);}
}


/* slide-btns */
.slide-btns{
    display: flex; flex-wrap: wrap; gap: 12px;
    & .btn-slide{position: relative; display: inline-block; width: 40px; height: auto; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--border-default); font-size: 0; background: #fff;}
    & .btn-slide:before{content: ""; position: absolute; top: 50%; left: 50%; display: block; width: 11px; height: auto; aspect-ratio: 1;}
    & .btn-slide-prev:before{border-top: 2px solid #111; border-left: 2px solid #111; transform: translate(-30%, -50%) rotate(-45deg);}
    & .btn-slide-next:before{border-top: 2px solid #111; border-right: 2px solid #111; transform: translate(-70%, -50%) rotate(45deg);}
    & .btn-slide.swiper-button-lock{opacity: 0; visibility: hidden; pointer-events: none;}
}


/* basic-slide */
.basic-slide{
    position: relative; margin: var(--basic-view-gap) 0 0; width: 100%;

    & .basic-slide-wrap{
        overflow: hidden; width: 100%;
        & .list{
            
            & .card{}
        }
    }
    & .control{
        position: absolute; z-index: 1; top: 223px; left: 0; right: 0; background-color: #eac; pointer-events: none;
        display: flex; flex-wrap: wrap; justify-content: space-between;
        & .btn-bs{
            position: absolute; top: 0;
            pointer-events: initial; font-size: 0; width: 33px; height: auto; aspect-ratio: 33 / 75; 
            background-color: transparent; background-repeat: no-repeat; background-position: center; background-size: 100% auto;
            &.btn-bs-prev{background-image: url("/assets/site/img/contents/basic-slide-prev.svg"); right: calc(100% + 24px);}
            &.btn-bs-next{background-image: url("/assets/site/img/contents/basic-slide-next.svg"); left: calc(100% + 24px);}

            &.swiper-button-disabled{opacity: 0.2;}
        }
    }

    @media (width <= 1820px){
        & .control{
            top: 12vw;
            & .btn-bs{
                &.btn-bs-prev{right: auto; left: 0; transform: translateX(-50%);}
                &.btn-bs-next{left: auto; right: 0; transform: translateX(50%);}
            }
        }
    }
    @media (width <= 1280px){
        & .control{
            top: 12vw;
            & .btn-bs{
                width: 24px;
                &.btn-bs-prev{}
                &.btn-bs-next{}
            }
        }
    }
    @media (width <= 860px){
        & .control{display: none;}
        & .basic-slide-wrap{
            & .list{
                transform: none; height: auto; box-sizing: border-box;
                display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(auto-fill, minmax(50px, auto)); gap: 40px 20px;
            }
        }
    }
    @media (width <= 640px){
        & .basic-slide-wrap{
            & .list{
                grid-template-columns: repeat(2, 1fr); gap: 40px 15px;
            }
        }
    }
}


/* card */
.card{
    display: block; outline: none; container-name: card-container; container-type: inline-size;
    & .top{
        position: relative;
        & .img{
            width: 100%; height: auto; aspect-ratio: 517 / 520; border-radius: 10px; overflow: hidden;
            & img{display: block; width: 100%; height: 100%; object-fit: cover;}
        }
        & .product-badge-list{
            position: absolute; top: 5.8%; right: 7.734%;
        }
    }
    & .bot{
        & .desc{
            padding: 28px 0 0; text-align: center; color: #333132;
            & dt{
                & .title{font-size: 24px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1.1;}
            }
            & dd{
                padding: 17px 0 0; color: var(--gray);
                & .sub{line-height: 1.1; font-size: 18px;}
            }

            &.white{
                color: var(--white);
                & dd{
                    color: var(--gray);
                }
            }
        }
    }

    &.atLightBody{
        
        & .bot{
            & .desc{
                & dd{
                    & .sub{}
                }
            }
        }
    }

    /* @container card-container (max-width: 400px) {
        & .bot{
            & .desc{
                
                & dt{
                    & .title{font-size: clamp(20px,5.6cqw,24px);}
                }
                & dd{
                    
                    & .sub{}
                }
            }
        }
    } */

    @media (width <= 1280px){
        & .bot{
            & .desc{
                padding: 17px 0 0;
                & dt{
                    & .title{font-size: clamp(19px,2vw,24px);}
                }
                & dd{
                    padding: 10px 0 0;
                    & .sub{font-size: 14px; text-wrap: balance;}
                }
            }
        }
    }
    @media (width <= 640px){
        & .bot{
            & .desc{
                padding: 14px 0 0;
                & dt{
                    & .title{font-size: 17px;}
                }
                & dd{
                    padding: 8px 0 0;
                    & .sub{font-size: 12px; text-wrap: balance;}
                }
            }
        }
    }
}


/* review-thumb */
.review-thumb{
    & .top{
        & .img{
            border: 1px solid #e4e4e4; border-radius: 10px; overflow: hidden;
            & img{}
        }
    }
}




/* slide-indicator */
.slide-indicator{
    position: fixed; top: 0; left: 0; z-index: 100; width: 140px; height: 140px; pointer-events: none; transform: translate(0, 0);
    
    & .slide-indicator-inner{
        width: 100%; height: 100%; border-radius: 50%; background: rgba(255,255,255,0.3); backdrop-filter: blur(10px); color: #fff; font-size: 20px; font-weight: var(--fwsb); line-height: 1.3; display: flex; align-items: center; justify-content: center; gap: 4px; white-space: nowrap; transform: scale(0); opacity: 0; transition: transform 0.3s var(--transition-01), opacity 0.3s var(--transition-01); 

        & span { padding: 0 0 0.1em; }
    }

    &.dark{
        & .slide-indicator-inner{
            background: rgba(0,0,0,0.3);
        }
    }
    &.on{
        & .slide-indicator-inner {
            transform: scale(1);
            opacity: 1;
        }
    }
}


/* centerd-slide */
.centerd-slide{
    & .item{
        display: block; color: var(--white); transition: opacity 0.3s ease;
        &:has(+ .swiper-slide-prev){opacity: 0.4;}
        &.swiper-slide-next + .item{opacity: 0.4;}

        & .img{
            border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; overflow: hidden; position: relative;
            & img{width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
        }
        & .txt{
            padding: 19px 0 0; font-size: 18px; font-weight: var(--fwm);
            & .type{padding: 0 0 8px; text-transform: uppercase;}
            & .tit{font-size: 24px; letter-spacing: -0.02em; line-height: 1.6; height: auto; max-height: 76px;}
            & .date{padding: 10px 0 0; color: rgba(255,255,255,0.5);}
        }
    }
    & .card{
        & .top{
            & .img{aspect-ratio: 1;}
        }
    }

    @media (width <= 1600px){
        & .item{
            & .txt{
                font-size: 16px;
                & .tit{font-size: 22px; line-height: 1.4;}
            }
        }
    }
    @media (width <= 1280px){
        & .item{
            & .txt{
                font-size: 15px;
                & .tit{font-size: 20px;}
            }
        }
    }
    @media (width <= 860px){
        & .item{
            &:not(.swiper-slide-active){opacity: 0.4;}
            & .txt{
                font-size: 14px; padding: 14px 0 0;
                & .tit{font-size: 18px;}
            }
        }
    }
    @media (width <= 640px){
        & .item{
            &:not(.swiper-slide-active){opacity: 0.4;}
            & .txt{
                font-size: 12px; padding: 10px 0 0;
                & .type{}
                & .tit{font-size: 17px; line-height: 1.4;}
                & .date{}
            }
        }
    }
}


/* rowscr-menu */
.menu-wrap{max-width: calc(1400px + var(--space) * 2) ; margin: 0 auto; padding: 0 var(--space);}
.rowscr-menu{
    position: relative; padding: 0 40px; margin: 65px auto;
    &:has(.rowscr-list > li:nth-child(1) > a.on, .rowscr-list > li:nth-child(2) > a.on){
        &:before{opacity: 0 !important;}
    }
    &:has(.rowscr-list > li:last-child > a.on, .rowscr-list > li:nth-last-child(2) > a.on){
        &:after{opacity: 0 !important;}
    }
    &:before{content: ""; position: absolute; z-index: 1; top: 0; bottom: 0; left: 0; width: 100px; background: linear-gradient(90deg, #fff -25%, rgba(255, 255, 255, 0) 100%); pointer-events: none; transition: 0.2s;}
    &:after{content: ""; position: absolute; z-index: 1; top: 0; bottom: 0; right: 0; width: 100px; background: linear-gradient(270deg, #fff -25%, rgba(255, 255, 255, 0) 100%); pointer-events: none; transition: 0.2s;}

    & .rowscr-list{
        position: relative; display: flex; flex-wrap: nowrap; gap: 5px 25px; justify-content: flex-start; max-width: 100%; text-align: left; overflow-x: auto;
        &::-webkit-scrollbar{height: 8px;}
        &::-webkit-scrollbar-thumb{border-radius: 0; background-color: #00a651;} 
        &::-webkit-scrollbar-track{border-radius: 0; background-color: #d9d9d9;}

        & > li{
            flex: 0 0 auto;
            & a{
                position: relative; display: block; font-size: 20px; font-weight: var(--fwsb); line-height: 1.1; padding: 10px 10px 13px; color: #999; letter-spacing: 0;
                & span{display: block;}

                &.on{
                    color: #000;
                    &:before{content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #000; display: none;}
                }
            }
            & .bar{position: absolute; bottom: 0; height: 3px; /* left: 0; */ transition: 0.2s ease; background-color: #000;}
        }

        @media (pointer: fine) and (hover: hover) {
            /* 터치디스플레이가 아닌 경우에만 적용 */
            flex-wrap: wrap !important;
            & > li{
                & a{
                    &.on{
                        &:before{display: block;}
                    }
                }
                .bar{display: none;}
            }
        }
    }

    @media (width <= 1820px){
        padding: 0;
    }
    @media (width <= 1500px){
        & .rowscr-list{
            gap: 4px 15px;
        }
    }
    @media (width <= 1280px){
        margin: 5% auto;
        & .rowscr-list{
            flex-wrap: nowrap; justify-content: flex-start;
            & > li{
                & a{
                    font-size: 16px; padding: 5px 5px 9px;
                }
            }
        }
    }
    @media (width <= 640px){
        margin: 24px auto;
        
        & .rowscr-list{
            gap: 0 6px; scrollbar-width: none; -ms-overflow-style: none;
            ::-webkit-scrollbar{display: none;}

            & > li{
                & a{
                    font-size: 14px; padding: 5px 4px 9px;
                }
            }
        }
    }

    @media (pointer: fine) and (hover: hover) {
        /* 터치디스플레이가 아닌 경우에만 적용 */
        &:before{display: none !important;}
        &:after{display: none !important;}
    }
}


/* tablist */
.tablist{
    display: flex; justify-content: flex-start; flex-wrap: nowrap; width: auto; overflow: hidden; overflow-x: auto; gap: 24px;
    &.alignCenter{justify-content: center;}

    & .tab{
        flex: 0 0 auto; position: relative; padding: 0 10px 13px; font-size: 20px; line-height: 1.1; font-weight: var(--fwsb); text-transform: uppercase; color: var(--gray);
        &:before{content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--white); opacity: 0;}
        & span{}

        &.on{
            color: var(--white);
            &:before{opacity: 1;}
        }
    }

    &.dark{
        & .tab{
            color: #999;
            &:before{background: #000;}
            &.on{
                color: #000;
            }
        }
    }

    @media (width <= 1500px){
        gap: 15px;
        & .tab{
            padding: 0 7px 13px;
        }
    }
    @media (width <= 1280px){
        & .tab{
            font-size: 18px; padding: 0 7px 9px;
        }
    }
    @media (width <= 640px){
        & .tab{
            font-size: 15px; padding: 0 0 7px;
            &:before{height: 2px;}
        }
    }
}


/* slogan-frame */
.slogan-frame{
    position: relative; border-radius: var(--radius); overflow: hidden; height: 300px; color: #fff; padding: 0 144px; align-content: center;
    & > img{position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
    & .txt{
        position: relative;
        & .tit{font-size: 34px; font-weight: var(--fwb); letter-spacing: 0; line-height: 1.2;}
        & .sign{
            display: flex; flex-wrap: wrap; font-size: 14px; font-weight: var(--fwb); text-transform: uppercase; line-height: 1.286; padding: 23px 0 0;
            & > span{}
            & > span + span:before{content: ""; display: inline-block; vertical-align: middle; margin: 0 4px 0; width: 2px; height: 2px; border-radius: 50%; background: var(--primary-blue);}
        }
    }

    @media (width <= 1500px){
        padding: 0 7%;
    }
    @media (width <= 860px){
        height: auto; padding: 60px 32px;
        & .txt{
            & .tit{font-size: 26px;}
            & .sign{padding: 16px 0 0;}
        }
    }
    @media (width <= 640px){
        padding: 36px 20px;
        & .txt{
            & .tit{font-size: 18px;}
            & .sign{font-size: 12px;}
        }
    }
}


/* history */
.history{
    --gap-in-history: 16px;
    position: relative;

    & > .history-wrap{
        & .year{
            display: flex; flex-wrap: wrap; padding-bottom: 154px;
            & .slogan{
                width: 50%; padding: 0 30px 0 4%;
                font-size: 48px; font-weight: var(--fwb); line-height: 1.45; color: rgba(255,255,255,0.5);
                & strong{color: #fff;}
            }
            & .con{
                position: relative; width: 50%; padding-left: 8.7%;
                & > .title{
                    position: relative; z-index: 1; font-size: 72px; font-weight: var(--fwb); line-height: 1.1;
                    &:before{content: ""; position: absolute; top: 31px; left: -22.4%; width: 19px; height: auto; aspect-ratio: 1; border: 5px solid var(--theme-green); background: #fff;}
                    & span[data-text]{position: relative;}
                    & span[data-text]:after{
                        content: attr(data-text); position: absolute; left: 0; width: 0; white-space: nowrap; overflow: hidden; transition: width 1.0s 0.2s;
                        /* text-shadow: -1px -1px 0 var(--theme-green), 1px -1px 0 var(--theme-green), -1px 1px 0 var(--theme-green), 1px 1px 0 var(--theme-green); */
                        -webkit-text-stroke: 1px var(--theme-green);
                    }
                    & span[data-color="white"]:after{color: #fff;}
                    & span[data-color="green"]:after{color: var(--theme-green);}
                    &.on{
                        & span[data-text]:after{width: 100%;}
                    }
                }
                & > .text{
                    display: flex; flex-direction: column; gap: calc( var(--gap-in-history) * 2 ); padding: 28px 0 0;
                    & .item{
                        position: relative; padding: 0 0 0 28px; font-size: 16px; font-weight: var(--fwb);
                        &:before{content: ""; position: absolute; top: 9px; left: 0; width: 8px; height: auto; aspect-ratio: 1; background: #fff;}

                        & .img{
                            margin: 17px 0 0; border-radius: 10px; overflow: hidden; max-width: 622px;
                            & img{width: 100%; height: 100%; object-fit: cover;}
                        }
                    }
                }
            }
        }
        & .year:last-child{padding-bottom: 0;}
    }
    & > .progress{
        position: absolute; left: 50%; top: 38px; top: 40px; bottom: 90px; width: 1px; background: rgba(255,255,255,0.2);
        & .line{position: absolute; left: -2px; top: 0; height: 0%; width: 5px; background: linear-gradient(0deg,rgba(150,239,141,1) 0%, rgba(75,203,111,1) 50%, rgba(0,166,81,1) 100%); border-radius: 2px;}
    }

    @media (width <= 1500px){
        & > .history-wrap{
            & .year{
                & .slogan{
                    font-size: 3.25vw; line-height: 1.4; padding: 0 30px 0 0;
                }
            }
        }
        
    }
    @media (width <= 1280px){
        --gap-in-history: 12px;
        & > .history-wrap{
            & .year{
                & .slogan{
                    font-size: 3.5vw; padding: 0 30px 0 0;
                }
                & .con{
                    padding-left: 60px;
                    & > .title{
                        font-size: clamp(40px,5.5vw,72px); line-height: 1;
                        &:before{left: -68px; top: 24px;}
                    }
                    & > .text{
                        & .item{
                            font-size: 15px; padding: 0 0 0 20px;
                            &:before{width: 6px; top: 8px;}
                        }
                    }
                }
            }
        }
    }
    @media (width <= 640px){
        --gap-in-history: 8px;
        & > .history-wrap{
            & .year{
                padding-bottom: 80px;
                & .slogan{display: none;}
                & .con{
                    width: 100%; padding-left: 50px;
                    & > .title{
                        &:before{width: 12px; border-width: 3px; top: 15px; left: -35px;}
                    }
                    & > .text{
                        padding: 20px 0 0;
                        & .item{
                            font-size: 14px; padding: 0 0 0 12px;
                            &:before{width: 3px; top: 8px;}
                        }
                    }
                }
            }
        }
        & > .progress{
            left: 21px; top: 20px; bottom: 64px;
            & .line{
                width: 3px; left: -1px;
            }
        }
    }
}


/* glows */
.glows{
    position: absolute; top: 0; left: 0; width: 100%;

    & .ellipse{
        transform-origin: center center;
        position: absolute; top: 0; width: 540px; height: auto; aspect-ratio: 540 / 968; overflow: hidden;
        background: url("/assets/site/img/contents/glow-ellipse.svg") no-repeat center; background-size: 100% auto;

        &:nth-child(1){left: 0;}
        &:nth-child(2){right: 0;}
    }

    @media (width <= 1500px){
        & .ellipse{
            &:nth-child(1){left: -5vw; }
            &:nth-child(2){right: -5vw; }
        }
    }
    @media (width <= 1280px){
        top: 2%;
        & .ellipse{
            width: 30vw;

            &:nth-child(1){left: -2vw; }
            &:nth-child(2){right: -2vw; }
        }
    }
    @media (width <= 640px){
        top: 2%;
        & .ellipse{
            width: 50vw;

            &:nth-child(1){left: -10vw; }
            &:nth-child(2){right: -10vw; }
        }
    }
}


/* beans-table */
.beans-table{
    border-radius: 10px; border: 1px solid var(--theme-green); filter: drop-shadow(2px 4px 10px rgba(193,255,163,0.5)); background: var(--theme-black); overflow: hidden;

    & .bc-row{
        display: flex; flex-wrap: wrap;

        & .cell{
            flex: 1; min-width: 0; border-right: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); text-align: center; font-size: 18px; letter-spacing: -0.02em;
            padding: 24px 10px;

            &.hasTit{
                flex: 0 0 auto; width: 250px; text-align: left; padding: 24px 0 0 40px;
                &:has(.hasIco){align-content: center; padding-top: 0;}
            }
            &:last-child{border-right: none;}
            &:nth-child(2){background: var(--theme-green); color: var(--theme-black);}
            &:nth-child(3){color: var(--theme-green);}
            &:nth-child(4){background: #fff; color: var(--theme-black); border-color: #919191;}

            & .tit{
                font-weight: var(--fwb); color: var(--theme-green); line-height: 1.223;
                &.hasIco{
                    & img{display: inline-block; vertical-align: middle; margin: -4px 0 0 0;}
                }
            }
            & .des{font-size: 14px; color: #999; line-height: 1.6; padding: 20px 0 0;}
        }

        &:last-child{
            & .cell{border-bottom: none;}
        }
    }

    @media (width <= 1280px){
        filter: drop-shadow(0 0 5px rgba(193,255,163,0.5));
        & .bc-row{
            & .cell{
                font-size: 15px;

                &.hasTit{
                    width: 200px; padding: 24px 0 0 25px;
                }

                & .des{padding: 15px 0 0;}
                & br{display: none;}
            }
        }
    }
    @media (width <= 1024px){
        & .bc-row{
            & .cell{
                

                &.hasTit{
                    display: none;
                }
            }
        }
    }
    @media (width <= 860px){
        
    }
    @media (width <= 640px){
        display: none;
    }
}


/* bean-name */
.bean-name{
    font-family: var(--font-eng); padding: 6px 0 10px;
    & .name{font-size: 24px; font-weight: var(--fwb); text-transform: uppercase; letter-spacing: -0.06em; line-height: 1;}
    & .sub{font-size: 14px; font-weight: var(--fwr); text-transform: uppercase; line-height: 1; padding: 14px 0 0;}
}


/* bean-chart */
.bean-chart{
    position: relative; padding: 0 0 6px; max-width: 350px; width: 100%; margin: 0 auto;
    & img{
        width: 100%; height: auto;

        &.bg{}
        &.radar{position: absolute; inset: 0; z-index: 1; clip-path: circle(0% at 50% 50%); transition: 0.5s;}
    }

    &.on{
        & img{
            &.radar{clip-path: circle(100% at 50% 50%); transition: 3s ease;}
        }
    }
}


/* cup-note */
.cup-note{
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: center; text-align: left;

    &.on{
        & > img{animation: shake_bg 0.8s ease-out; transform-origin: 50% 100%;}
    }
}


/* roast-level */
.roast-level{
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 10px 0 0;
    & .leveling{
        position: relative; width: 20px; height: auto; aspect-ratio: 1; background: url("/assets/site/img/contents/roast-leveling.svg") no-repeat center;
        &:before{content: ""; position: absolute; inset: 0; background: url("/assets/site/img/contents/roast-levelingOn.svg") no-repeat center; clip-path: inset(0 100% 0 0);}
    }

    &.onGreenBG{
        & .leveling{
            background-image: url("/assets/site/img/contents/roast-leveling-type2.svg");
            &:before{content: ""; position: absolute; inset: 0; background: url("/assets/site/img/contents/roast-levelingOn-type2.svg") no-repeat center; clip-path: inset(0 100% 0 0);}
        }
    }

    &.on{
        & .leveling{
            &.on{
                &:before{animation: clip-path-left-right 0.3s forwards;}
                &:nth-child(1):before{animation-delay: 0s;}
                &:nth-child(2):before{animation-delay: 0.15s;}
                &:nth-child(3):before{animation-delay: 0.30s;}
                &:nth-child(4):before{animation-delay: 0.45s;}
                &:nth-child(5):before{animation-delay: 0.60s;}
            }
        }
    }
}


/* beans-card-wrap */
.beans-card-wrap{
    display: none; flex-direction: column; gap: 15px;

    & .beans-card{
        border: 1px solid #000; border-radius: 10px; text-align: center; padding: 30px 20px;

        & .top{
            padding: 0 0 10px;
        }

        & .name{
            font-size: 24px; font-weight: var(--fwb); text-transform: uppercase; letter-spacing: -0.06em; line-height: 1;
            & .sub{font-size: 14px; font-weight: var(--fwr); padding: 10px 0 0;}
        }

        & .bean-chart{
            text-align: center; padding: 0 0 20px;
            & img{
                display: block; margin: 0 auto; max-width: 100%;

                &.bg{}
                &.radar{position: absolute; inset: 0; z-index: 1; clip-path: circle(0% at 50% 50%); transition: 0.5s;}
            }

            &.on{
                & img{
                    &.radar{clip-path: circle(100% at 50% 50%); transition: 3s ease;}
                }
            }
        }

        & .desc{
            display: flex; flex-direction: column; gap: 24px;
            & .txt{
                text-wrap: balance;
                & strong{font-weight: var(--fweb); display: block;} 
            }
        }

        &:nth-child(1){background: var(--theme-green); color: var(--theme-black); border-color: transparent;}
        &:nth-child(2){background: var(--theme-black); color: var(--theme-green); border-color: var(--theme-green);} 
        &:nth-child(3){background: var(--white); color: var(--theme-black); border-color: transparent;}
    }

    @media (width <= 640px){
        display: flex;
    }
}


/* delicious */
.delicious{
    & .img{
        text-align: center;
        & img{vertical-align: top; max-width: 100%; width: auto; height: auto;}
    }
}


/* define */
.define{
    margin: 50px 0 0;
    & .define-wrap{
        display: flex; flex-wrap: wrap; align-items: center;
        border-radius: 10px; overflow: hidden; border: 1px solid #3eb05d; padding: 39px 35px;
        & .desc{
            flex: 1; min-width: 0; position: relative; padding: 0 10px 0 100px;
            &:before{content: ""; position: absolute; top: 0; left: 0; width: 80px; height: auto; aspect-ratio: 1; border-radius: 50%; border: 1px solid #3eb05d; background: url("/assets/site/img/contents/define-star.svg") no-repeat center;}

            & dt{font-size: 24px; font-weight: var(--fwb); color: var(--theme-green); line-height: 1;}
            & dd{letter-spacing: -0.02em; line-height: 1.6; padding: 14px 0 0;}
        }
        & .points{
            margin: 0 0 0 auto; display: flex; flex-wrap: wrap;
            & > li{
                position: relative; flex: 0 0 auto; width: 235px; padding: 5px 20px; box-sizing: content-box;
                & .img{
                    display: block; width: 40px; height: auto; aspect-ratio: 1; margin: 0 auto;
                    & img{width: 100%; height: 100%; object-fit: cover;}
                }
                & .sub{padding: 20px 0 0; font-size: 18px; font-weight: var(--fwb); line-height: 1.4; text-align: center;}

                &:first-child{padding-left: 0;}
                &:last-child{padding-right: 0;}
            }
            & > li + li{
                &:before{content: ""; position: absolute; top: 0; left: 0; display: block; width: 1px; height: 120px; background: rgba(62,176,92,0.2);}
            }
        }
    }

    @media (width <= 1820px){
        & .define-wrap{
            & .points{
                & > li{width: 180px; box-sizing: border-box;}
            }
        }
    }
    @media (width <= 1400px){
        & .define-wrap{
            padding: 35px 30px;
            & .points{
                & > li{
                    padding: 0 15px; width: 160px;
                    & .sub{font-size: 15px;}
                }
                & > li + li{
                    &:before{height: 100%;}
                }
            }
        }
    }
    @media (width <= 1280px){
        & .define-wrap{
            & .points{
                & > li{
                    
                }
            }
        }
    }
    @media (width <= 1023px){
        & .define-wrap{
            flex-direction: column; flex-wrap: initial;
            & .desc{
                flex: 0 0 auto; width: 100%; padding: 0 0 0 68px;
                &:before{width: 50px;}
            }
            & .points{
                margin: 0; padding: 30px 0 0; width: 100%;
                & > li{
                    flex: 1; min-width: 0; width: auto; padding: 0 6px;
                }
            }
        }
    }
    @media (width <= 640px){
        & .define-wrap{
            padding: 30px 20px;
            & .desc{
                padding: 0 0 0 32px;
                &:before{width: 22px; background-size: 50% auto; top: -2px;}

                & dt{font-size: 18px;}
                & dd{font-size: 13px; line-height: 1.5; margin: 0 0 0 -32px;}
            }
            & .points{
                padding: 20px 0 0;
                & > li{
                    flex: 1; min-width: 0; width: auto; padding: 0 6px;
                    & .img{width: 34px;}
                    & .sub{padding: 10px 0 0; font-size: 13px;}
                }
                & > li + li{
                    &:before{height: 100%;}
                }
            }
        }
    }
}


/* desc-cards */
.desc-cards{
    display: flex; flex-wrap: wrap; gap: 20px;

    & .item{
        flex: 1; min-width: 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--theme-green); background: rgba(14,22,22,0.25); backdrop-filter: blur(15px); text-align: center;
        padding: 49px 10px 49px;
        & > dt{
            & .image{
                text-align: center;
                & img{vertical-align: top;}
            }
            & .title{ font-size: 24px; font-weight: var(--fwb); padding: 18px 0 0;}
            & .sub{line-height: 1.2; text-transform: uppercase; letter-spacing: -0.02em; font-family: var(--font-eng); font-weight: var(--fwb); color: rgba(255,255,255,0.3); padding: 6px 0 0;}
        }
        & > dd{letter-spacing: -0.02em; line-height: 1.6; padding: 23px 0 0;}
    }

    @media (width <= 1600px){
        & .item{
            & > dt{
                & .title{font-size: clamp(16px,1.55vw,24px);}
            }
        }
    }
    @media (width <= 1024px){
        gap: 15px;
        & .item{
            flex: 0 0 auto; width: calc((100% - 15px) / 2); padding: 40px 10px;
            & > dt{
                & .image{
                    & img{width: 44px;}
                }
                & .title{font-size: 18px;}
            }
            & > dd{
                padding: 15px 0 0;
            }
        }
    }
    @media (width <= 640px){
        flex-direction: column;
        & .item{
            width: 100%; padding: 30px 10px;
            & > dt{
                & .image{
                    & img{width: 38px;}
                }
                & .title{font-size: 18px;}
                & .sub{font-size: 13px; padding: 3px 0 0;}
            }
            & > dd{font-size: 14px; padding: 14px 0 0;}
        }
    }
}


/* ref */
.ref{
    padding: 20px 0 0;
    & p{color: #b1b1b1;}
    & p + p{margin-top: 4px;}

    &.alignRight{text-align: right;}

    @media (width <= 640px){
        padding: 14px 0 0; font-size: 13px;
    }
}


/* overlap-circles */
.overlap-circles{
    display: flex; flex-wrap: wrap; justify-content: center;
    & .item{
        flex: 0 0 auto; width: 450px; height: auto; aspect-ratio: 1; border-radius: 50%; border: 1px solid #6eb54b; background-color: rgba(110,181,75,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center; padding: 0 0 3%;
        & .img{
            & img{}
        }
        & .des{font-size: 30px; font-weight: var(--fweb); letter-spacing: -0.02em; line-height: 1.4;}

        &.c2{
            border-color: var(--theme-green); background-color: rgba(0,166,80,0.05); color: #333132;
        }
    }
    & .item + .item{margin-left: -70px;}

    &.col4{
        & .item{
            width: auto; flex: 1; min-width: 0;
        }
    }

    @media (width <= 1500px){
        &.col4{
            & .item{
                flex: 0 0 auto; width: calc( (100% + 90px) / 4 );
                & .img{
                    & img{width: 6vw;}
                }
                & .des{font-size: 2.0vw;}
            }
            & .item + .item{margin-left: -30px;}
        }
    }
    @media (width <= 1280px){
        & .item{
            width: calc( (100% + 60px) / 3 );
            & .img{
                & img{width: 7vw;}
            }
            & .des{font-size: 2.6vw;}
        }
        & .item + .item{margin-left: -30px;}

        &.col4{
            & .item{
                flex: 0 0 auto; width: calc( (100% + 60px) / 4 );
                & .img{
                    & img{width: 60px;}
                }
                & .des{font-size: 20px;}
            }
            & .item + .item{margin-left: -20px;}
        }
    }
    @media (width <= 860px){
        & .item{
            width: calc( (100% + 40px) / 3 ); gap: 7px;
            & .img{
                & img{width: 60px;}
            }
            & .des{font-size: 18px;}
        }
        & .item + .item{margin-left: -20px;}

        &.col4{
            & .item{
                flex: 0 0 auto; width: calc( (100% + 20px) / 2 );
                & .img{
                    & img{width: 60px;}
                }
                & .des{font-size: 20px;}
            }
            & .item:nth-child(odd){margin-left: 0;}
            & .item:nth-child(even){margin-left: -20px;}
            & .item:nth-child(n+3){margin-top: -20px;}
        }
    }
    @media (width <= 640px){
        & .item{
            width: calc( (100% + 20px) / 3 ); gap: 7px;
            & .img{
                & img{width: 40px;}
            }
            & .des{font-size: 13px;}
        }
        & .item + .item{margin-left: -10px;}

        &.col4{
            & .item{
                flex: 0 0 auto; width: calc( (100% + 20px) / 2 );
                & .img{
                    & img{width: 40px;}
                }
                & .des{font-size: 13px;}
            }
        }
    }
}


/* overlap-cases */
.overlap-cases{
    display: flex; flex-wrap: wrap; justify-content: center;
    & .item{
        flex: 0 0 auto; width: 530px; height: auto; aspect-ratio: 1; border-radius: 50%; border: 1px solid #78ffb8; background-color: rgba(120,255,183,0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; text-align: center; padding: 0 0 3%;
        & .sup{font-family: var(--font-eng); text-transform: uppercase; color: var(--theme-green); font-size: 20px; font-weight: var(--fwb); letter-spacing: -0.02em;}
        & .des{font-size: 40px; font-weight: var(--fweb); letter-spacing: -0.03em; line-height: 1.4;}
    }
    & .item + .item{margin-left: -70px;}

    @media (width <= 1520px){
        & .item{
            width: calc( (100% + 60px) / 3 );
            & .img{
                & img{width: 7vw;}
            }
            & .des{font-size: 2.6vw;}
        }
        & .item + .item{margin-left: -30px;}
    }
    @media (width <= 860px){
        & .item{
            width: calc( (100% + 40px) / 3 ); gap: 7px;
            & .img{
                & img{width: 60px;}
            }
            & .des{font-size: 18px;}
        }
        & .item + .item{margin-left: -20px;}
    }
    @media (width <= 640px){
        & .item{
            width: calc( (100% + 20px) / 3 ); gap: 7px;
            & .img{
                & img{width: 40px;}
            }
            & .sup{font-size: 12px;}
            & .des{font-size: 12px;}
        }
        & .item + .item{margin-left: -10px;}
    }
}


/* franchise-process */
.franchise-process{
    & .img{
        & img{width: 100%; height: auto;}
        & img.mobile{display: none;}
    }

    @media (width <= 860px){
        & .img{
            & img:not(.mobile){display: none;}
            & img.mobile{display: block;}
        }
    }
}


/* curriculum-list */
.curriculum-list{
    display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(auto-fill, minmax(50px, auto)); gap: 30px 24px;
    & .item{
        display: flex; flex-direction: column;
        & .img{
            flex: 0 0 auto; border-radius: 10px 10px 0 0; overflow: hidden; aspect-ratio: 382 / 340;
            & img{width: 100%; height: 100%; object-fit: cover;}
        }
        & .txt{
            flex: 1; min-height: 0; display: flex; flex-direction: column;
            & .name{
                flex: 0 0 auto;
                background-color: var(--theme-green); color: #fff; display: flex; flex-wrap: wrap; align-items: flex-start; font-size: 24px; font-weight: var(--fwb); line-height: 1.4; gap: 0.58em; padding: 20px 16px;
                & .num{display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; width: 1.88em; height: auto; aspect-ratio: 1; background-color: #fff; color: var(--theme-green); font-size: 16px; margin: 0.1em 0 0;}
            }
            & .des{
                flex: 1; min-height: 0;
                border-radius: 0 0 10px 10px; border: 1px solid #e4e4e4; border-top: none; padding: 24px 16px; font-size: 18px; font-weight: var(--fwm); line-height: 1.6; color: rgba(14,22,22,0.5);
            }
        }
    }

    @media (width <= 1280px){

    }
    @media (width <= 860px){
        grid-template-columns: repeat(1, 1fr);
    }
}


/* symmetry-list */
.symmetry-list{
    padding: 160px 0 0; display: flex; flex-direction: column; gap: 70px;
    & .item{
        display: flex; flex-wrap: wrap; border-radius: 10px; overflow: hidden; background: #fff; color: #000;
        & .img{
            width: 50%;
            & img{width: 100%; height: 100%; object-fit: cover;}
        }
        & .txt{
            width: 50%; padding: 60px 56px;
            & .branch-badge{}
            & .title{line-height: 1.4; font-size: 40px; font-weight: var(--fweb); letter-spacing: -0.03em; padding: 20px 0 0;}
            & .desc{color: #555; font-size: 20px; line-height: 1.6; letter-spacing: -0.03em; padding: 40px 0 0;}
        }

        &:nth-child(even){
            flex-direction: row-reverse;
        }
    }

    @media (width <= 1500px){
        & .item{
            & .txt{
                padding: 4% 3.5%;
                & .branch-badge{font-size: 18px;}
                & .title{font-size: 2.55vw; padding: 2.5% 0 0;}
                & .desc{font-size: 18px; padding: 4% 0 0 ;}
            }
        }
    }
    @media (width <= 1280px){
        & .item{
            & .txt{
                padding: 25px 25px;
                & .branch-badge{font-size: 1rem;}
                & .title{padding: 10px 0 0;}
                & .desc{font-size: 1rem;}
            }
        }
    }
    @media (width <= 860px){
        & .item{
            flex-direction: column !important;
            & .img{
                flex: 0 0 auto; width: 100%;
            }
            & .txt{
                flex: 0 0 auto; width: 100%;
            }
        }
    }
    @media (width <= 640px){
        & .item{
            
            & .img{
                
            }
            & .txt{
                padding: 20px 20px;
                & .branch-badge{font-size: 12px;}
                & .title{font-size: 18px; padding: 2px 0 0;}
                & .desc{
                    font-size: 14px; padding: 10px 0 10px;
                    & br{display: none;}
                }
            }
        }
    }
}


/* branch-badge */
.branch-badge{
    background-color: #edfff9; border: 1px solid #c5e8dd; line-height: 30px; border-radius: 3px; padding: 0 8px; font-size: 20px; font-weight: var(--fwm); letter-spacing: -0.08em; color: #10a970;
}

/* statbox */
.statbox{
    display: flex; flex-wrap: wrap; border-radius: 10px; overflow: hidden;
    & .item{
        flex: 1; min-width: 0; background: rgba(255,255,255,0.15); backdrop-filter: blur(15px); padding: 36px 40px 51px;
        display: flex; flex-direction: column; justify-content: space-between; gap: 50px;
        & dt{font-size: 30px; font-weight: var(--fwb); line-height: 1.2;  white-space: nowrap;}
        & dd{
            display: flex; align-items: flex-end; justify-content: flex-end; gap: 0.15em; font-size: 70px; font-weight: var(--fwb); line-height: 1; color: var(--theme-green);
            & .data{display: inline-block; }
            & .unit{display: inline-block; font-size: 0.286em; padding: 0.1em;}
        }
    }
    & .item + .item{border-left: 1px solid rgba(255,255,255,0.3);}
    @media (width <= 1680px){
        & .item {
            padding: 36px 30px 51px;
        }
    }
    @media (width <= 1600px){
        & .item {
            padding: 36px 20px;
            & dt{font-size: 26px;}
            & dd{
                font-size: 54px;
            }
        }
    }
    @media (width <= 1280px){
        & .item {
            padding: 34px 20px;
            & dt{font-size: 20px;}
            & dd{
                font-size: 42px;
                & .unit{font-size: 0.356em;}
            }
        }
    }
    @media (width <= 1024px){
        & .item {
            padding: 36px 24px; flex: 0 0 50%; gap: 40px;
            &:nth-child(odd){border-left: none;}
            &:not(:nth-last-child(-n+2)){border-bottom: 1px solid rgba(255,255,255,0.3);}
            & dt{font-size: 22px;}
        }
    }
    @media (width <= 860px){
        & .item {
            padding: 28px 20px;
        }
    }
    @media (width <= 640px){
        & .item {
            padding: 24px 20px; flex: 0 0 100%; gap: 26px; border-left: none !important;
            &:not(:last-child){border-bottom: 1px solid rgba(255,255,255,0.3);}
            & dt{font-size: 20px;}
            & dd{font-size: 36px;}
        }
    }
}


/* stat-date */
.stat-date{
    color: #8e8e91; text-align: right; font-size: 14px; margin: 13px 0 0;
}

/* fm-table */
.fm-table{
    border: 1px solid #e4e4e4; border-radius: 10px; overflow-x: auto;
    .t-dv,
    .t-item{width: 160px;}
    .t-cost{width: 240px;}
    & table{
        width: 100%; min-width: 600px; table-layout: fixed; border-collapse: collapse; font-size: 18px;

        & thead{
            & th{
                color: #fff; background-color: #333; font-size: 18px; font-weight: var(--fwb); line-height: 1.2; letter-spacing: -0.03em; padding: 18px 0;
                border-right: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4;
                &:last-child{border-right: none;}
            }
        }
        & tbody{
            & th{
                background-color: #eef2ef; font-weight: var(--fwb); letter-spacing: -0.03em; color: var(--theme-green); border-bottom: 1px solid #e4e4e4;
            }
            & td{
                border: 1px solid #e4e4e4; padding: 22px 20px;

                & .name{font-size: 18px;}

                & .con{font-size: 1rem;}

                & .important{
                    font-weight: var(--fwb); letter-spacing: -0.03em; color: var(--theme-green);
                }

                & .cost{
                    display: flex; flex-wrap: wrap; gap: 0.2em; width: 100%; text-align: center; font-size: 26px; font-weight: var(--fwb); letter-spacing: -0.03em; color: #000; justify-content: center; align-items: center;
                    & .unit{font-size: 0.54em; font-weight: var(--fwr); color: #999; padding: 0.8em 0 0;}
                }

                & .cost-dc{
                    letter-spacing: -0.03em; display: flex; flex-wrap: wrap; width: 100%; text-align: center; align-items: flex-start; justify-content: center; gap: 37px;
                    & .origin{
                        position: relative; font-size: 14px; font-weight: var(--fwb); color: #999; display: inline-block; margin: -6px 0 0;
                        &:before{content: ""; position: absolute; top: 10px; left: -10px; width: 89px; height: auto; aspect-ratio: 89 / 27; background: url("/assets/site/img/contents/cost-dc-arr.svg") no-repeat center; background-size: 100% auto;}
                        & .unit{font-size: 0.73em; font-weight: var(--fwr);}
                    }
                    & .discount{
                        font-size: 26px; font-weight: var(--fwb); display: inline-block; color: var(--theme-green); margin: 6px 0 0;
                        & .unit{font-size: 0.695em; font-weight: var(--fwm);}
                    }
                }
                & .cost-txt{
                    text-align: center; letter-spacing: -0.03em; font-size: 18px; font-weight: var(--fwb); color: var(--theme-green); line-height: 1.6;
                }

                &:last-child{border-right: none;}
            }
            & tr:last-child td,
            & tr:last-child th{border-bottom: 0;}
        }
    }
    @media (width <= 1024px){
        .t-dv,
        .t-item{width: 120px;}
        .t-cost{width: 190px;}
        & table{
            font-size: 16px;
            & thead{
                & th{
                    font-size: 16px; padding: 16px 0;
                }
            }
            & tbody{
                & td {
                    & .name,
                    & .con{font-size: 16px;}
                    & .cost-txt{font-size: 17px;}
                    & .cost{font-size: 24px;}
                }
            }
        }
    }
    @media (width <= 860px){
        .t-dv,
        .t-item{width: 100px;}
        .t-cost{width: 180px;}
        & table{
            font-size: 15px;
            & thead{
                & th{
                    font-size: 15px;
                }
            }
            & tbody{
                & td {
                    padding: 12px 14px;
                    & .name,
                    & .con{font-size: 15px;}
                    & .cost-txt{font-size: 16px;}
                    & .cost{font-size: 22px;}
                }
            }
        }
    }
    @media (width <= 640px){
        border: 0; border-radius: 0;
        .t-dv,
        .t-item{width: 80px;}
        .t-cost{width: 154px;}
        & table{
            font-size: 14px; border: 1px solid #e4e4e4;
            & thead{
                & th{
                    font-size: 14px;
                }
            }
            & tbody{
                & td {
                    padding: 10px 12px;
                    & .name,
                    & .con{font-size: 14px;}
                    & .cost-txt{font-size: 15px;}
                    & .cost{font-size: 20px;}
                    & .cost-dc {
                        & .discount{font-size: 22px;}
                        & .origin{
                            &:before{top: 9px; left: -8px; width: 76px;}
                        }
                    }
                }
            }
        }
    }
}

/* franchise-cost */
.franchise-cost{
    display: flex; flex-wrap: wrap; gap: var(--gap);

    & .left{
        flex: 1; min-width: 0;
    }
    & .right{
        flex: 0 0 auto; width: 426px;
        & .note-list{
            margin: 45px 0 0;
        }
    }
    @media (width <= 1600px){
        & .right{
            width: 340px;
        }
    }
    @media (width <= 1280px){
        & .left{
            padding-bottom: 64px;
        }
        & .right{
            order: -1;
            width: 100%;
            & .note-list{
                position: absolute; bottom: 0;
                margin: 45px 0 0;
            }
        }
    }
    @media (width <= 860px){
        & .left{
            padding-bottom: 88px;
        }
    }
    @media (width <= 640px){
        gap: 30px;
        & .left{
            padding-bottom: 108px;
        }
    }
}


/* fm-bill */
.fm-bill{
    background-color: #f6fbf8; border: 1px solid rgba(0,166,80,0.2); border-radius: 10px; overflow: hidden; padding: 50px 40px; letter-spacing: -0.03em;

    & .top{
        border-bottom: 1px solid rgba(0,166,80,0.3); text-align: center; font-size: 32px; font-weight: var(--fwb); line-height: 1.6; color: #000;
        & .bill-logo{
            padding: 0 0 20px;
            & img{width: auto; height: 16px; display: block; margin: 0 auto;}
        }
    }
    & .mid{
        text-align: center; padding: 24px 0;
        & .total{
            font-size: 70px; font-weight: var(--fwb); line-height: 1.2; text-align: center;
            & .cost{color: var(--theme-green);}
            & .unit{color: #0e1616; font-size: 0.45em; font-weight: var(--fwr);}
        }
        & .include{margin: 20px 0 0; display: inline-block; font-size: 18px; font-weight: var(--fwsb); color: var(--theme-green); letter-spacing: -0.03em; border-radius: 3px; background-color: rgba(0,166,80,0.1); padding: 0 10px; line-height: 34px;}
    }
    & .bot{
        padding: 24px 0 0; border-top: 1px solid rgba(0,166,80,0.3);

        & .add{
            display: flex; flex-direction: column; gap: 16px; max-width: 217px; margin: 0 auto; padding: 8px 0;
            & > li{
                display: flex; flex-wrap: wrap; align-items: flex-start; gap: 16px; font-size: 18px; font-weight: var(--fwsb); color: #0e1616; letter-spacing: -0.03em;
                & .ico{
                    flex: 0 0 auto; width: 34px; height: auto; aspect-ratio: 1;
                    & img{width: 100%; height: 100%; object-fit: cover;}
                }
                & span{
                    padding: 0.1em 0 0;
                }
            }
        }
    }
    @media (width <= 1600px){
        padding: 30px 20px;
        & .top{
            font-size: 30px;
        }
        & .mid{
            & .total{
                font-size: 56px;
            }
            & .include{font-size: 17px;}
        }
    }
    @media (width <= 1280px) and (width > 860px) {
        display: flex; flex-wrap: wrap; align-items: center; padding: 36px 0;
        & .top,
        & .mid,
        & .bot{flex: 1;}
        & .top{
            font-size: 28px; border-bottom: 0;
        }
        & .mid{
            padding: 0;
            & .total{
                font-size: 48px;
            }
            & .include{font-size: 17px;}
        }
        & .bot{
            border-top: 0; padding: 0;
        }
    }
    @media (width <= 1024px){
        & .top{
            font-size: 26px;
            & .bill-logo{padding: 0 0 16px;}
        }
        & .mid{
            & .total{
                font-size: 42px;
            }
            & .include{font-size: 16px;}
        }
        & .bot{
            & .add{
                gap: 12px;
                & > li{
                    gap: 12px; font-size: 17px;
                    & .ico{
                        width: 32px;
                    }
                    & span{
                        padding: 0.1em 0 0;
                    }
                }
            }
        }
    }
    @media (width <= 860px){
        max-width: 640px; margin: 0 auto; padding: 36px 40px 30px;
    }
    @media (width <= 640px){
        padding: 36px 30px 26px;
        & .mid{
            & .total{
                font-size: 40px;
            }
        }
        & .bot{
            padding: 20px 0 0;
        }
    }
}

/* note-list */
.note-list{
    & > li{
        position: relative; padding: 0 0 0 1em; line-height: 1.6; font-size: 14px; color: #555;
        &:before{content: "※"; position: absolute; top: 0; left: 0;}
    }
}

/* accordion */
.accordion{
    --acc-space-left: 113px;
    --acc-space-right: 64px;
    max-width: 925px; margin: 0 auto; letter-spacing: -0.03em;

    & dl{
        position: relative; border-top: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; padding: 0;
        & dt{
            & button{
                position: relative; display: block; width: 100%; text-align: left; padding: 24px var(--acc-space-right) 23px var(--acc-space-left); font-weight: var(--fwsb); color: #000; letter-spacing: -0.03em;
                &:before{
                    content: ""; position: absolute; top: 20px; left: 40px; width: 32px; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--theme-green) url("/assets/site/img/contents/accordion-bul.svg") no-repeat center;
                }
                &:after{
                    content: ""; position: absolute; top: 28px; right: 42px; width: 12px; height: auto; aspect-ratio: 1; border-top: 2px solid #6c757d; border-left: 2px solid #6c757d; transform: rotate(-135deg);
                    transition: 0.2s;
                }
            }
        }
        & dd{
            padding: 0 0 30px var(--acc-space-left); line-height: 1.6; color: #000; display: none;
        }

        &.on{
            background-color: #fafafa;
            & dt{
                & button{
                    &:after{transform: rotate(45deg); top: 33px;}
                }
            }
        }
    }
    & dl + dl{
        margin-top: -1px;
    }
    @media (width <= 860px){
        --acc-space-left: 72px;
        --acc-space-right: 50px;
        & dl {
            & dt{
                & button{
                    padding: 21px var(--acc-space-right) 20px var(--acc-space-left);
                    &:before{
                        top: 15px; left: 20px;
                    }
                    &:after{
                        top: 21px; right: 22px;
                    }
                }
            }
            &.on{
                & dt{
                    & button{
                        &:after{top: 25px;}
                    }
                }
            }
        }
    }
    @media (width <= 640px){
        --acc-space-left: 40px;
        --acc-space-right: 50px;
        & dl {
            & dt{
                & button{
                    padding: 18px var(--acc-space-right) 19px var(--acc-space-left);
                    &:before{
                        top: 15px; left: 0; width: 28px; background-size: 13px auto;
                    }
                    &:after{
                        top: 21px; right: 18px; width: 10px;
                    }
                }
            }
            &.on{
                background-color: transparent;
                & dt{
                    & button{
                        &:after{top: 25px;}
                    }
                }
            }
        }
    }
}

/* fit-grid */
.fit-grid{
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(auto-fill, minmax(50px, auto));  gap: 30px 20px;
    & .item{
        border-radius: 10px; overflow: hidden;
        & .img{
            width: 100%; height: auto; aspect-ratio: 517 / 437;
            & img{width: 100%; height: 100%; object-fit: cover;}

            &.ratio-type2{
                aspect-ratio: 517 / 340;
            }
        }
        & .txt{
            background-color: var(--theme-green); color: #fff; font-size: 30px; font-weight: var(--fwsb); letter-spacing: -0.03em; line-height: 1.4; text-align: center; padding: 23px 0;
        }
    }
}


/* production-step */
.production-step{
    display: flex; flex-wrap: wrap; gap: 113px;
    & > li{
        flex: 1; min-width: 0; position: relative; border-radius: 10px; border: 1px solid var(--theme-green); padding: 49px 35px 50px;
        & > img{position: absolute; inset: 1px; width: calc(100% - 2px); height: calc(100% - 2px); object-fit: cover; border-radius: 10px;}
        & .top{
            position: relative;
            & .title{font-size: 24px; font-weight: var(--fwb); line-height: 1;}
            & .sub{font-family: var(--font-eng); font-weight: var(--fwb); letter-spacing: -0.02em; color: var(--theme-green); line-height: 1; padding: 14px 0 0;}
        }
        & .mid{position: relative; line-height: 1.6; padding: 24px 0 0;}
    }
    & > li + li{
        &:before{content: ""; position: absolute; z-index: 1; top: 50%; left: 0; transform: translate(-100%, -50%); display: inline-block; width: 73px; height: auto; aspect-ratio: 73 / 35; background: url("/assets/site/img/contents/production-step-arr.svg") no-repeat center; background-size: 100% auto; margin-left: -20px;}
    }

    @media (width <= 1280px){
        gap: 60px;
        & > li{
            padding: 40px 10px 40px 25px;
        }
        & > li + li{
            &:before{width: 50px; margin-left: -5px;}
        }
    }
    @media (width <= 1024px){
        flex-wrap: initial; flex-direction: column; gap: 60px;
        & > li{
            padding: 30px 10px 30px 20px;
            & .top{
                display: flex; flex-wrap: wrap; gap: 8px;
                & .title{font-size: 22px;}
                & .sub{font-size: 15px; padding: 8px 0 0;}
            }
            & .mid{
                font-size: 15px; line-height: 1.5;
                & br{display: none;}
            }
        }
        & > li + li{
            &:before{width: 20px; height: auto; aspect-ratio: 35 / 73; background-image: url("/assets/site/img/contents/production-step-arr-vertical.svg"); left: 50%; top: auto; bottom: 100%; margin: 0 0 10px !important; transform: translateX(-50%);}
        }
    }
    @media (width <= 640px){
        & > li{
            padding: 25px 10px 25px 20px;
            & .top{
                & .title{font-size: 18px;}
                & .sub{font-size: 14px; padding: 5px 0 0;}
            }
            & .mid{font-size: 14px; padding: 15px 0 0;}
        }
    }
}


/* image-grid */
.image-grid{
    display: flex; flex-wrap: wrap; transition: 1s;
    clip-path: inset(0 calc((100% - 1600px) / 2) 0 calc((100% - 1600px) / 2));
    & > .img{
        flex: 1; min-width: 0;
        & img{width: 100%; height: 100%; object-fit: cover;}
    }

    &.on{
        clip-path: inset(0 0 0 0);
    }

    @media (width <= 1820px){
        clip-path: inset(0 15% 0 15%);
    }
}




/* text-dropbox */
.text-dropbox{
    & .dropbox-wrap{
        position: relative; max-width: 100%; width: 1204px; height: 609px; margin: 0 auto; background-color: transparent;
        & .text-block{
            font-size: 60px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1.4;
            position: absolute; will-change: transform;

            &:nth-child(1){top: 120px; left: 0;}
            &:nth-child(2){top: 110px; right: 200px;}
            &:nth-child(3){top: 240px; right: 300px;}
            &:nth-child(4){top: 310px; left: 180px;}
            &:nth-child(5){top: 400px; left: 30px;}
            &:nth-child(6){top: 360px; right: 0;}
        }
    }

    @media (width <= 1280px){
        & .dropbox-wrap{
            height: 550px;
            & .text-block{
                font-size: clamp(20px,4.5vw,60px);
            }
        }
    }
    @media (width <= 860px){
        & .dropbox-wrap{
            width: 620px; height: 480px;
            & .text-block{
                font-size: 36px;

                &:nth-child(1){top: 63px; left: 0; right: auto; bottom: auto;}
                &:nth-child(2){top: 85px; left: auto; right: 0; bottom: auto;}
                &:nth-child(3){top: 190px; left: 54px; right: auto; bottom: auto;}
                &:nth-child(4){top: 240px; left: 25px; right: auto; bottom: auto;}
                &:nth-child(5){top: 300px; left: 0; right: auto; bottom: auto;}
                &:nth-child(6){top: 340px; left: auto; right: 0; bottom: auto;}
            }
        }
    }
    @media (width <= 640px){
        & .dropbox-wrap{
            width: 360px; height: 430px;
            & .text-block{
                font-size: 28px;

                &:nth-child(1){top: 49px; left: 0; right: auto; bottom: auto;}
                &:nth-child(2){top: 85px; left: auto; right: 0; bottom: auto;}
                &:nth-child(3){top: 150px; left: 54px; right: auto; bottom: auto;}
                &:nth-child(4){top: 190px; left: 25px; right: auto; bottom: auto;}
                &:nth-child(5){top: 234px; left: 0; right: auto; bottom: auto;}
                &:nth-child(6){top: 319px; left: auto; right: 0; bottom: auto;}
            }
        }
    }
}


/* text-copy */
.text-copy{
    padding: 7.81em 0 0;
    & > div{
        font-size: 60px; font-weight: var(--fweb); line-height: 1.4; letter-spacing: -0.02em; color: #969596; text-align: center;

        & span[data-text]{position: relative;}
        & span[data-text]:after{content: attr(data-text); position: absolute; left: 0; width: 0; white-space: nowrap; overflow: hidden; transition: width 1.0s 0.2s; /* -webkit-text-stroke: 1px #fff; */}
        & span[data-color="white"]:after{color: #fff;}
        & span[data-color="green"]:after{color: var(--theme-green);}

        &.on{
            & span[data-text]:after{width: 100%;}
        }
    }
    & > div + div{margin: 1.4em 0 0;}

    @media (width <= 1280px){
        & > div{
            font-size: clamp(20px,4.5vw,60px);
        }
    }
    @media (width <= 860px){
        & > div{
            font-size: 36px;
        }
    }
    @media (width <= 640px){
        padding: var(--fm-sec-pad) 0 0;
        & > div{
            font-size: 28px;
        }
    }
}


/* w100-img */
.w100-img{
    width: 100%; height: auto; aspect-ratio: 1920 / 540; transition: 1s;
    clip-path: inset(0 calc((100% - 1600px) / 2) 0 calc((100% - 1600px) / 2));
    & img{width: 100%; height: 100%; object-fit: cover;}

    &.on{
        clip-path: inset(0 0 0 0);
    }

    @media (width <= 1820px){
        aspect-ratio: 3 / 1; clip-path: inset(0 15% 0 15%);
    }
}


/* growth-con */
.growth-con{
    position: relative; padding: 0 0 300px 0;
    & .growth-des{
        & .title{
            position: relative; padding: 0 0 0 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; font-size: 40px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 35px;
            &:before{content: ""; position: absolute; top: 9px; left: 0; width: 5px; height: 34px; background: var(--theme-green);}

            & span{margin: 0.3em 0 0; display: inline-block; font-size: 20px; font-weight: var(--fwm); letter-spacing: -0.03em; padding: 0 12px; line-height: 34px; border: 1px solid transparent; border-radius: 36px; background: var(--theme-green); color: #fff;}
        }
        & .year-tb{
            display: flex; flex-wrap: wrap; width: 760px;
            & dl{
                flex: 0 0 auto; width: 50%; padding: 30px 30px;
                & dt{font-size: 20px; color: rgba(255,255,255,0.5); line-height: 1;}
                & dd{
                    font-size: 45px; font-weight: var(--fwb); line-height: 1.2; padding: 24px 0 0; text-align: right;
                    & .data{}
                    & .unit{font-size: 0.356em;}
                }

                &:nth-child(even){border-left: 1px solid rgba(255,255,255,0.4);}
                &:nth-child(n+3){border-top: 1px solid rgba(255,255,255,0.4);}
            }
        }
    }
    & .growth-img{
        position: absolute; bottom: 0; right: 0;
        & img{}
        & .txt{color: var(--theme-green); font-size: 50px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1; position: absolute; top: -40px; right: 0; transform: translateX(20%);}
    }

    @media (width <= 1820px){
        & .growth-img{
            right: 60px;
        }
    }
    @media (width <= 1500px){
        padding: 0 0 240px 0;
        & .growth-img{
            width: 85%;
            & .txt{
                font-size: 3vw;
            }
        }
    }
    @media (width <= 1280px){
        & .growth-des{
            & .year-tb{
                width: 60%;
                & dl{
                    padding: 20px;
                    & dt{font-size: 18px;}
                    & dd{
                        font-size: 32px;
                        & .unit{font-size: 0.5em;}
                    }
                }
            }
        }
        & .growth-img{
            right: 40px;
        }
    }
    @media (width <= 1024px){
        padding: 0 0 160px 0;
        & .growth-des{
            & .title{
                font-size: 30px;
                &:before{height: 0.9em; top: 0.2em;}
                & span{margin: 0.1em 0 0; font-size: 16px; line-height: 30px;}
            }
            & .year-tb{
                width: 440px;
                & dl{
                    padding: 15px 15px;
                    & dt{font-size: 15px;}
                    & dd{font-size: 26px;}
                }
            }
        }
    }
    @media (width <= 720px){
        padding: 0; display: flex; flex-direction: column; gap: 40px;
        & .growth-des{
            & .title{
                font-size: 19px; padding: 0 0 0 0.7em; flex-direction: column; align-items: flex-start;
                &:before{height: 1em; top: 0.15em;}
                & span{font-size: 11px; line-height: 20px; padding: 0 7px 1px; margin: 0 0 0 auto;}
            }
            & .year-tb{
                width: auto;
                & dl{
                    padding: 15px 10px;
                    & dt{font-size: 14px;}
                    & dd{font-size: 24px;}
                }
            }
        }
        & .growth-img{
            position: relative; bottom: auto; right: auto; width: auto; padding: 20px 0 0 20px;
            & .txt{
                font-size: 18px; top: 0; right: 0; transform: none;
            }
        }
    }
}


/* continue-con */
.continue-con{
    & .img{
        & img{}
    }
    & .txt{
        padding: 0 0 0 17.5%;
        & .bultit{
            position: relative; padding: 0 0 0 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; font-size: 40px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 35px;
            &:before{content: ""; position: absolute; top: 9px; left: 0; width: 5px; height: 34px; background: var(--theme-green);}
        }
        & .sub{font-size: 20px; font-weight: var(--fwr); letter-spacing: -0.02em; padding: 0 0 0 18px;}
    }

    @media (width <= 1280px){
        & .txt{
            padding: 14px 0 0;
        }
    }
    @media (width <= 1024px){
        & .txt{
            & .bultit{
                font-size: 30px;
                &:before{height: 0.9em; top: 0.2em;}
            }
            & .sub{
                padding: 0; font-size: 15px;
            }
        }
    }
    @media (width <= 720px){
        & .txt{
            padding: 14px 0 0;
            & .bultit{
                font-size: 19px; padding: 0 0 0 0.7em; margin: 0 0 10px;
                &:before{height: 1em; top: 0.15em;}
            }
            & .sub{
                font-size: 14px;
            }
        }
    }
}


/* poster-sm */
.poster-sm{
    & .list{
        & .item{
            width: 500px; height: auto; aspect-ratio: 500 / 680; border-radius: 10px; overflow: hidden;
            & img{width: 100%; height: 100%; object-fit: cover;}
        }
    }

    @media (width <= 1500px){
        & .list{
            & .item{width: 40vw;}
        }
    }
    @media (width <= 1280px){
        & .list{
            & .item{width: 33vw;}
        }
    }
    @media (width <= 1024px){
        & .list{
            & .item{width: 23vw;}
        }
    }
    @media (width <= 860px){
        & .list{
            & .item{width: 100%;}
        }
    }
}


/* org */
.org{
    max-width: 846px; margin: 0 auto;
    & img{width: 100%;}
}


/* location */
.location{
    & .mapbox{
        border: 1px solid #e4e4e4; border-radius: 10px; overflow: hidden;
        & .root_daum_roughmap{
            width: 100%; height: 700px;
            & > .cont{display: none;}
            & > .wrap_map{
                height: 100%;
                & .map_border{display: none;}
                & .wrap_btn_zoom{display: none;}
                & > .map{
                    & > div:nth-child(2){display: none;}
                }
                & .roughmap_maker_label{
                    position: relative; border: none; border-radius: 0; top: 0 !important;
                    &:after{display: none;}
                    & > a{
                        font-size: 0; display: block; width: 54px; height: auto; aspect-ratio: 54 / 81; background: url("/assets/site/img/contents/map-marker.svg") no-repeat center; background-size: 100% auto;
                        & .roughmap_lebel_text{display: none;}
                    }
                }
            }
        }
        & .wrap_controllers{display: none;}
    }

    & .mapinfo{
        display: flex; flex-wrap: wrap; justify-content: space-between; padding: 27px 0 0;
        & > dl{
            flex: 0 0 auto;
            & > dt{text-transform: uppercase; font-family: var(--font-eng); font-size: 46px; font-weight: var(--fwb); line-height: 1.2; letter-spacing: 0.009em;}
            & > dd{
                font-size: 18px; padding: 16px 0 0;
                & > .sublist{
                    & > li{
                        & br{display: none;}
                        & .seperator{}
                    }
                }
            }
        }
    }

    @media (width <= 1500px){
        & .mapbox{
            & .root_daum_roughmap{
                height: 550px;
            }
        }
        & .mapinfo{
            gap: 20px 0;
            & > dl{
                flex: 0 0 auto; width: 50%; padding: 0 20px 0 0;
            }
        }
    }
    @media (width <= 1280px){
        & .mapbox{
            & .root_daum_roughmap{
                height: 450px;
            }
        }
        & .mapinfo{
            & > dl{
                & > dt{font-size: clamp(30px,4vw,44px);}
                & > dd{font-size: 16px;}
            }
        }
    }
    @media (width <= 860px){
        & .mapinfo{
            & > dl{
                & > dd{
                    padding: 3.5% 0 0;
                    & > .sublist{
                        & > li{
                            & br{display: block;}
                            & .seperator{display: none;}
                        }
                    }
                }
            }
        }
    }
    @media (width <= 640px){
        & .mapbox{
            & .root_daum_roughmap{
                height: 260px;
                & > .wrap_map{
                    & .roughmap_maker_label{
                        & > a{width: 38px;}
                    }
                }
            }
        }
        & .mapinfo{
            flex-wrap: initial; justify-content: initial; flex-direction: column; gap: 20px;
            & > dl{
                width: 100%;
                & > dt{font-size: 18px;}
                & > dd{font-size: 15px; padding: 3px 0 0;}
            }
        }
    }
}


/* form-type */
.form-type{
    flex: 0 0 auto; max-width: 680px; width: 43%;
    display: flex; flex-direction: column; gap: 20px;
    & .btn-form-type{
        display: block; width: auto; text-align: left; background: #f7f7f7; border: 1px solid #e4e4e4; border-radius: 10px; overflow: hidden; padding: 27px 30px 30px; line-height: 1.4;
        & .name{
            display: flex; flex-wrap: wrap; align-items: center; gap: 16px; color: #000; font-size: 24px; font-weight: var(--fwm);
            & .ico{
                & img{display: block; width: 100%;}
            }
            & > span{}
        }
        & .desc{color: #888; padding: 8px 0 0 50px;}

        &.on{
            border-color: transparent; background-color: var(--theme-green); color: var(--white);
            & .name{
                color: inherit;
                & .ico{
                    & img{filter: var(--filter-white);}
                }
            }
            & .desc{color: inherit;}
        }
    }

    @media (width <= 1500px){
        width: 450px; max-width: none;
    }
    @media (width <= 1280px){
        width: 340px;
        & .btn-form-type{
            padding: 20px 20px 23px;
            & .name{
                font-size: 20px; gap: 8px;
                & .ico{width: 22px;}
            }
            & .desc{padding: 8px 0 0 28px;}
        }
    }
    @media (width <= 1024px){
        width: 100%; flex-direction: row; flex-wrap: wrap; gap: 10px;
        & .btn-form-type{
            width: calc((100% - 10px) / 2);
            & .desc{font-size: 14px; padding: 12px 0 0 0;}
        }
    }
    @media (width <= 860px){
        & .btn-form-type{
            padding: 14px 15px 17px;
            & .name{
                font-size: 16px; 
                & .ico{width: 20px;}
            }
            & .desc{display: none;}
        }
    }
    @media (width <= 640px){
        & .btn-form-type{
            width: 100%; padding: 14px 15px;
            & .name{
                font-size: 15px; gap: 10px;
            }
        }
    }
}


/* form-tab-cont */
.form-tab-cont{
    display: none; animation-duration: 0.5s; animation-fill-mode: both;

    &.on{display: block;}
    &.slide-in-bottom {animation-name: slideInBottom;}
    &.slide-in-right {animation-name: slideInRight;}
}


/* form-area */
.form-area{
    flex: 1; min-width: 0;

    & .form-agree{margin: 40px 0 0;}
    & .form-agree + .btn-wrap{padding: 70px 0 0;}
}


/* insert-visual */
.insert-visual{
    & .img{
        border-radius: var(--radius); overflow: hidden; 
        & img{width: 100%; height: 100%; object-fit: cover;}
    }

    @media (width <= 640px){
        & .img{
            height: 146px;
        }
    }
}


/* sec-seperator */
.sec-seperator{
    background: var(--border-default); height: 10px; margin: 50px auto 0;
}


/* roast-type */
.roast-type{
    position: relative; display: inline-flex; width: 150px; height: auto; aspect-ratio: 150 / 76.14; color: var(--theme-green); font-family: var(--font-eng); font-size: 20px; font-weight: var(--fwb);
    line-height: 1.1; text-align: center; align-items: center; justify-content: center;
    &:before{content: ""; position: absolute; inset: 0; background: url("/assets/site/img/contents/roast-type.svg") no-repeat center; background-size: 100% auto;}
    & span{position: relative;}

    &.medium{
        &:before{}
    }
    &.dark{
        color: var(--theme-black);
        &:before{background-image: url("/assets/site/img/contents/roast-type-green.svg");}
    }
    &.fullcity{
        color: var(--white);
        &:before{}
    }

    @media (width <= 860px){
        width: 110px; font-size: 16px;
    }
    @media (width <= 640px){
        width: 86px; font-size: 12px; padding: 1px 0 0;
    }
}


/* beans */
.beans{
    display: flex; flex-wrap: wrap; gap: var(--gap);
    & .type{
        flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 43px;
        & dt{
            font-family: var(--font-eng); font-size: 50px; text-transform: uppercase; color: var(--theme-green); text-align: center;
            & .name{letter-spacing: -0.021em; font-size: inherit; font-family: inherit; font-weight: var(--fwb); line-height: 1;}
            & .sub{font-size: 0.6em; font-weight: var(--fwr); letter-spacing: 0; line-height: 1; padding: 14px 0 0;}
        }
        & dd{
            padding: 46px 20px; border: 4px solid transparent; border-radius: 400px; overflow: hidden; color: var(--theme-black); text-align: center;
            & .roast-type{}
            & .des{padding: 30px 0 0; font-size: 20px; font-weight: var(--fwb); letter-spacing: -0.02em; line-height: 1.6;}
        }

        &.a{
            & dd{border-color: transparent; background-color: var(--theme-green); color: var(--theme-black);}
        }    
        &.b{
            & dd{border-color: var(--theme-green); background-color: var(--theme-black); color: var(--theme-green);}
        }
        &.c{
            & dd{border-color: transparent; background-color: var(--white); color: var(--theme-black);}
        }
    }

    @media (width <= 1500px){
        & .type{
            gap: 3vw;
            & dt{
                font-size: clamp(30px,3.3vw,50px);
            }
            & dd{
                padding: 8% 20px;
                & .des{padding: 5% 0 0; line-height: 1.4; font-size: clamp(16px,1.5vw,20px);}
            }
        }
    }
    @media (width <= 1024px){
        flex-direction: column; flex-wrap: initial; gap: 60px;
        & .type{
            & dd{
                width: 500px; margin: 0 auto; padding: 4.5% 20px;
            }
        }
    }
    @media (width <= 640px){
        gap: 30px;
        & .type{
            gap: 16px;
            & dt{
                font-size: 22px;
                & .name{}
                & .sub{font-size: 12px; padding: 10px 0 0;}
            }
            & dd{
                padding: 20px 20px; border-width: 2px; width: 85%; margin: 0 auto;
                & .des{font-size: 14px; line-height: 1.4; padding: 12px 0 0;}
            }
        }
    }
}


/* expect-list */
.expect-list{
    display: flex; flex-wrap: wrap; gap: var(--gap);
    & dl{
        flex: 1; min-width: 0; border: 1px solid var(--border-default); border-radius: var(--radius); padding: 33px clamp(15px,2vw,36px) 35px;
        & dt{
            display: flex; flex-wrap: wrap; font-size: 20px; font-weight: var(--fwb); align-items: flex-start;
            & .goal{margin: 0.1em 0 0 auto; flex: 0 0 auto; display: inline-block; padding: 0 12px; font-size: 14px; font-weight: var(--fwsb); color: #fff; background: var(--primary-blue); border-radius: 26px; line-height: 26px; text-transform: uppercase;}
        }
        & dd{
            display: flex; flex-wrap: wrap; align-items: flex-start; gap: 22px; padding: 22px 0 0;
            & .ico{
                flex: 0 0 auto;
                & img{width: 100%; height: auto;}
            }
            & .details{
                flex: 1; min-width: 0; display: flex; flex-direction: column;;
                & > li{
                    position: relative; padding: 0 0 0 12px; color: var(--gray4);
                    &:before{content: ""; position: absolute; top: 9px; left: 0; width: 3px; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--gray4);}
                }
            }
        }

        &:has(.goal){border-color: var(--primary-blue);}
    }

    @media (width <= 1280px){
        & dl{
            padding: 25px 20px;
            & dt{font-size: clamp(17px,1.8vw,20px);}
            & dd{
                gap: 16px;
                & .ico{width: 56px;}
                & .details{
                    & > li{padding: 0 0 0 10px;}
                }
            }
        }
    }
    @media (width <= 1024px){
        & dl{
            flex: 0 0 auto; width: calc((100% - var(--gap)) / 2);
            & dt{
                & .goal{margin: 0 0 0 auto;}
            }
        }
    }
    @media (width <= 640px){
        & dl{
            width: 100%;
        }
    }
}


/* iso-grid */
.iso-grid{
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(auto-fill, minmax(50px, auto)); gap: var(--gap);

    @media (width <= 860px){
        grid-template-columns: repeat(2, 1fr);
    }
    @media (width <= 640px){
        grid-template-columns: repeat(1, 1fr);
    }
}


/* iso-card */
.iso-card{
    border: 1px solid var(--border-default); border-radius: var(--radius); overflow: hidden;
    & .top{
        & .img{
            & img{width: 100%; height: auto;}
        }
    }
    & .bot{
        padding: 34px 36px;
        & dt{font-size: 20px; font-weight: var(--fwb); margin: 0 0 10px;}
        & dd{color: var(--gray4);}
    }

    @media (width <= 1280px){
        & .bot{
            padding: 25px 20px;
        }
    }
    @media (width <= 640px){
        & .bot{
            padding: 20px 20px;
            & dt{font-size: 18px;}
            & dd{font-size: 15px;}
        }
    }
}


/* desc-list */
.desc-list{
    display: flex; flex-direction: column; gap: var(--gap);
    & dl{
        display: flex; flex-wrap: wrap; gap: var(--gap); align-items: center; padding: 34px 36px; border-radius: var(--radius); background: #f9f9f9;
        & dt{flex: 0 0 auto; width: 150px; text-align: center; font-size: 20px; font-weight: var(--fwb);}
        & dd{flex: 1; min-width: 0; color: var(--gray4);}
    }

    &.color{
        & dl{
            background: #eef7ff;
            & dt{color: var(--primary-blue);}
            & dd{color: var(--black);}
        }
    }

    @media (width <= 1280px){
        & dl{
            padding: 30px 30px;
            & dt{width: 90px;}
        }
    }
    @media (width <= 860px){
        & dl{
            padding: 25px 20px; align-items: flex-start;
            & dt{font-size: 17px; width: 68px;}
        }
    }
    @media (width <= 640px){
        & dl{
            padding: 25px 20px;
            & dt{font-size: 16px; width: 60px;}
        }
    }
}


/* row-scroll */
.row-scroll{
    position: relative; margin: 60px auto; transform: translate3d(0, 0, 0);
    & .row-scroll-tab{
        position: relative; overflow: hidden;
        &:before,
        &:after{content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 105px; pointer-events: none; display: none !important;}
        &:before{left: 0; background: linear-gradient(-270deg, #fff 46.19%, rgba(255, 255, 255, 0) 101.43%);}
        &:after{right: 0; background: linear-gradient(270deg, #fff 46.19%, rgba(255, 255, 255, 0) 101.43%);}
        & .row-scroll-list{
            position: relative;
            display: flex; flex-wrap: wrap; gap: 10px 24px;
            & .row-scroll-item{
                width: auto; font-size: 20px; font-weight: var(--fwb); color: #d9d9d9; cursor: pointer; padding: 8px 0;
                &:hover{color: rgba(0,168,235,0.5);}
                & span{}

                &.on{
                    color: var(--primary-blue) !important; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px;
                }
            }
        }

        &:active{
            cursor: grabbing;
            & .row-scroll-list{
                & .row-scroll-item{cursor: w-resize;}
            }
        }
    }
    & .row-scroll-btn{
        display: none !important;
        position: absolute; top: -1px; bottom: auto; margin: 0; display: block; font-size: 0;
        width: 40px; height: auto; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--border-default); background: #fff;
        &:after{display: none;}
        &:before{content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: auto; aspect-ratio: 1; border-top: 2px solid #111;}
        &.swiper-button-prev{left: 0; right: auto;}
        &.swiper-button-prev:before{transform: translate(-35%, -50%) rotate(-45deg); border-left: 2px solid #111;}
        &.swiper-button-next{right: 0; left: auto;}
        &.swiper-button-next:before{transform: translate(-65%, -50%) rotate(45deg); border-right: 2px solid #111;}

        &.swiper-button-disabled{display: none;}
    }

    &:has(.swiper-button-prev.swiper-button-disabled){
        & .row-scroll-tab{
            &:before{opacity: 0;}
        }
    }
    &:has(.swiper-button-next.swiper-button-disabled){
        & .row-scroll-tab{
            &:after{opacity: 0;}
        }
    }

    @media (width <= 1280px){
        & .row-scroll-tab{
            & .row-scroll-list{
                gap: 10px 15px;
                & .row-scroll-item{
                    padding: 4px 0; font-size: 18px;
                }
            }
        }
    }
    @media (width <= 640px){
        & .row-scroll-tab{
            & .row-scroll-list{
                gap: 10px 12px;
                & .row-scroll-item{
                    padding: 2px 0; font-size: 14px;
                }
            }
        }
    }
}


/* detail-desc */
.detail-desc{
    --vertical-space: 24px;
    display: flex; flex-direction: column; gap: var(--vertical-space);
    & > dl{
        background: #f9f9f9; border-radius: var(--radius); overflow: hidden; padding: 36px 36px;
        & > dt{font-size: 20px; font-weight: var(--fwb); padding: 0 0 var(--vertical-space); line-height: 1.3;}
        & > dd{
            color: var(--gray4);
            & > p{
                padding: 0 0 var(--vertical-space);
                & b{font-weight: var(--fwsb); color: var(--black);}
            }
            & .con{
                & .important{display: block; font-weight: var(--fwsb); color: #c00; padding: 0 0 calc(var(--vertical-space) * 0.5);}
                & .lists{
                    & > li{
                        position: relative; padding: 0 0 0 24px;
                        &:before{content: ""; position: absolute; top: 10px; left: 10px; width: 3px; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--gray4);}
                    }
                }

                & + .con{padding: var(--vertical-space) 0 0;}
            }
        }
    }

    @media (width <= 1280px){
        --vertical-space: 12px;
        & > dl{
            padding: 25px 25px;
        }
    }
    @media (width <= 640px){
        & > dl{
            padding: 20px 20px;
            & > dt{font-size: 17px;}
            & > dd{
                & .con{
                    & .lists{
                        & > li{
                            padding: 0 0 0 10px;
                            &:before{left: 0; top: 9px;}
                        }
                    }
                }
            }
        }
    }
}


/* download-btn */
.download-btn{
    display: inline-flex; align-items: center; gap: 4px; padding: 0 15px; line-height: 43px; border: 1px solid transparent; border-radius: 8px; font-weight: var(--fwsb); background: var(--black); color: #fff;
    &:before{content: ""; flex: 0 0 auto; display: inline-block; width: 16px; height: auto; aspect-ratio: 1; background: transparent url("/assets/site/img/contents/download-btn.svg") no-repeat; background-position: bottom center;}

    &:hover{
        &:before{background-position: top center; transition: 0.2s linear;}
    }

    @media (width <= 860px){
        & span{flex: 1; min-width: 0; text-align: center;}
    }
    @media (width <= 640px){
        gap: 3px; padding: 0 10px; font-size: 13px; line-height: 38px;
        &:before{width: 14px;}
    }
}


/* graph-paper */
.graph-paper{
    display: flex; align-items: center; justify-content: center; height: 300px; border: 1px solid var(--border-default); border-radius: 8px; overflow: hidden;
    background: url("/assets/site/img/contents/graph-paper-pattern.svg") repeat; background-position: center;
    & img{max-width: 100%;}

    @media (width <= 1280px){
        height: 24vw;
        & img{width: 50%;}
    }
    @media (width <= 860px){
        background-size: 18px auto;
    }
    @media (width <= 640px){
        height: 120px; background-size: 14px auto;
        & img{width: 60%;}
    }
}


/* graph-grid */
.graph-grid{
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(auto-fill, minmax(10px, auto)); gap: var(--gap);

    @media (width <= 860px){
        gap: 10vw var(--gap);
    }
    @media (width <= 640px){
        gap: 50px var(--gap);
    }
}


/* graph-item */
.graph-item{
    
    & .graph-bottom{
        text-align: center; padding: 24px 0 0;
        & .name{font-size: 24px; font-weight: var(--fwb); line-height: 1.21;}
        & .btns{display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 24px 0 0;}
    }

    @media (width <= 1280px){
        & .graph-bottom{
            padding: 5% 0 0;
            & .name{font-size: 20px;}
        }
    }
    @media (width <= 860px){
        & .graph-bottom{
            & .btns{
                gap: 6px;
                & .download-btn{
                    flex: 1; min-width: 0;
                    & span{
                        & .onlyDesktop{display: none;}
                    }
                }
            }
        }
    }
    @media (width <= 640px){
        & .graph-bottom{
            padding: 15px 0 0;
            & .name{font-size: 17px;}
            & .btns{
                padding: 10px 0 0; gap: 4px;
                & .download-btn{flex: 1; min-width: 0;}
            }
        }
    }
}


/* exp-box */
.exp-box{
    display: flex; flex-wrap: wrap; gap: 36px;
    & .graph-paper{
        width: calc((100% - 36px) * 0.5045); height: auto;
        & img{width: auto; height: 72.7%; max-height: 260px;}
    }
    & .graph-exp{
        width: calc((100% - 36px) * 0.4955);
        & .txt{
            & .tit{font-size: 20px; font-weight: var(--fwb); line-height: 1.3;}
            & .sub{padding: 24px 0 0;}
        }
        & .detail-desc{
            margin: 44px 0 0;
        }
    }

    @media (width <= 640px){
        flex-direction: column; gap: 20px;
        & .graph-paper{
            flex: 0 0 auto; width: 100%; height: 200px;
            & img{width: auto; height: 75%;}
        }
        & .graph-exp{
            flex: 0 0 auto; width: 100%;
            & .txt{
                & .tit{font-size: 18px;}
                & .sub{padding: 10px 0 0;}
            }
            & .detail-desc{
                margin: var(--gap) 0 0;
            }
        }
    }
}


/* imgbox */
.imgbox{
    & img{
        width: 100%; height: auto;
        &.onlyDesktop{}
        &.onlyMobile{}
    }
}





/* row-scroll-content */
.row-scroll-content{
    position: relative; overflow: hidden;
    & > .con{
        display: none; animation-duration: 0.5s; animation-fill-mode: both;
        &.on{
            display: block;
        }
        &.slide-in-right {animation-name: slideInRight;}
        &.slide-in-left  {animation-name: slideInLeft;}

        & > .wrap{padding-bottom: var(--sec-cont-pad-bot); border-bottom: 1px solid var(--border-default);}

        & .top{
            display: flex; flex-wrap: wrap; align-items: flex-start;
            & .txt{
                width: 59.41%; padding: 0 48px 0 0;
                & .title{font-size: 34px; font-weight: var(--fwb); letter-spacing: 0; margin: 0 0 clamp(20px,6.2%,48px);}
                & .text{
                    color: var(--gray4);
                    & .dash{
                        position: relative; padding: 0 0 0 11px;
                        &:before{content: "-"; position: absolute; top: 0; left: 0;}
                    }
                }
            }
            & .img{
                width: 40.59%; height: auto; aspect-ratio: 565 / 350; border-radius: var(--radius); overflow: hidden;
                & img{width: 100%; height: 100%; object-fit: cover;}
            }
        }
        & .mid{
            & .subsec{

                & .subsec-tit{
                    padding: 48px 0 0; margin: 0 0 36px;
                    & h4{font-size: 24px; font-weight: var(--fwb);}
                }
                & .subsec-con{
                    
                }
            }
        }
    }

    @media (width <= 1280px){
        & > .con{
            & .top{
                & .txt{
                    padding: 0 30px 0 0;
                    & .title{font-size: 30px;}
                }
            }
            & .mid{
                & .subsec{

                    & .subsec-tit{
                        padding: 80px 0 0;
                    }
                }
            }
        }
    }
    @media (width <= 860px){
        
    }
    @media (width <= 640px){
        & > .con{
            & .top{
                flex-direction: column; gap: var(--gap);
                & .txt{
                    flex: 0 0 auto; width: 100%; padding: 0;
                    & .title{font-size: 22px; margin: 0 0 20px;}
                }
                & .img{flex: 0 0 auto; width: 100%;}
            }
            & .mid{
                & .subsec{
                    & .subsec-tit{
                        margin: 0 0 20px; padding: 60px 0 0;
                        & h4{font-size: 19px;}
                    }
                }
            }
        }
    }
}

/* order-app */
.order-app{
    display: flex; flex-wrap: wrap; gap: var(--gap);
    & .item{
        flex: 1; min-width: 0;
        & .img{
            border: 1px solid #e4e4e4; border-radius: 10px; overflow: hidden; aspect-ratio: 517 / 520;
            & img{width: 100%; height: 100%; object-fit: cover;}
        }
        & .txt{
            text-align: center; letter-spacing: -0.02em; padding: 25px 0 0;
            & dt{font-size: 24px; font-weight: var(--fwb);}
            & dd{
                color: rgba(14,22,22,0.5); font-size: 18px; font-weight: var(--fwm); padding: 18px 0 0;
                & small{font-size: 14px; font-weight: var(-fwm);}
            }
        }
    }
    @media (width <= 1280px) {
        & .item{
            & .txt{
                & dt{font-size: 22px;}
                & dd{
                    font-size: 17px;
                }
            }
        }

    }
    @media (width <= 1024px) {
        & .item{
            & .txt{
                & dt{font-size: 18px;}
                & dd{
                    padding: 12px 0 0;
                    font-size: 16px;

                }
            }
        }
    }

    @media (width <= 860px) {
        gap: 40px var(--gap);
        & .item{
            flex: 0 0 calc(50% - 10px);
        }
    }
    @media (width <= 640px) {
        & .item{
            flex: 0 0 100%;
            & .txt{
                padding: 14px 0 0;
                & dt{font-size: 20px;}
                & dd{
                    font-size: 15px;
                }
            }
        }
    }
}


/* num-grid */
.num-grid{
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(auto-fill, minmax(50px, auto)); gap: var(--gap);

    & > li{
        display: flex; flex-wrap: wrap; align-items: center; gap: 24px; border-radius: 8px; background: #eef7ff; padding: 12px 24px;
        & .num{flex: 0 0 auto; width: 50px; height: auto; aspect-ratio: 1; border-radius: 50%; background: #fff; color: var(--primary-blue); font-size: 22px; font-weight: var(--fwb); text-align: center; align-content: center;}
        & .txt{flex: 1; min-width: 0; font-weight: var(--fwsb);}
    }

    @media (width <= 1280px){
        gap: 15px;
        & > li{
            gap: 15px; padding: 12px 20px;
            & .num{width: 32px; font-size: 19px;}
        }
    }
    @media (width <= 860px){
        grid-template-columns: repeat(1, 1fr); gap: 12px;
    }
    @media (width <= 640px){
        & > li{
            gap: 12px; padding: 12px 15px;
            & .num{width: 30px; font-size: 16px;}
            & .txt{}
        }
    }
}


/* num-circles */
.num-circles{
    --circle-size: 200px;
    position: relative; display: flex; flex-wrap: wrap; justify-content: center; margin: 0 auto;
    & dl{
        position: relative; width: var(--circle-size); height: auto; aspect-ratio: 1; border-radius: 50%; background: #fff; letter-spacing: -0.02em; border: 1px solid var(--primary-blue); align-content: center; text-align: center; line-height: 1.3;
        & dt{letter-spacing: 0; font-size: 14px; font-weight: var(--fwb); text-transform: uppercase; color: var(--primary-blue);}
        & dd{font-size: 20px; font-weight: var(--fwb); padding: 4px 0 0;}
    }
    & dl + dl{margin: 0 0 0 -24px;}

    @media (width <= 1400px){
        --circle-size: 14vw;
    }
    @media (width <= 1280px){
        & dl{
            & dd{font-size: clamp(16px,1.55vw,20px);}
        }
        & dl + dl{margin: 0 0 0 -12px;}
    }
    @media (width <= 960px){
        flex-direction: column; gap: 20px; width: auto; max-width: none;
        &:before{top: 0; bottom: 0; left: 50%; right: auto; border-top: none; border-left: 1px dashed var(--primary-blue);}

        & dl{
            aspect-ratio: initial; border: none; align-content: initial; border-radius: var(--radius); border: 1px solid var(--primary-blue);
            display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center; gap: 10px; width: 100%; padding: 16px var(--gap); background: #eef7ff;
            & dt{color: var(--primary-blue);}
            & dd{padding: 0;}
        }
        & dl + dl{margin: 0;}
    }
    @media (width <= 640px){
        gap: 12px;
    }
}


/* step-flow */
.step-flow{
    --circle-size: 200px;
    --circle-gap: 60px;
    position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--circle-gap); width: max-content; margin: 0 auto;
    &:before{content: ""; position: absolute; top: calc(var(--circle-size) * 0.5); left: 0; right: 0; border-top: 1px dashed var(--primary-blue);}

    & .step-desc{
        width: var(--circle-size);
        & dl{
            position: relative; width: 100%; height: auto; aspect-ratio: 1; border-radius: 50%; background: #fff; letter-spacing: -0.02em; border: 1px solid var(--primary-blue); align-content: center; text-align: center; line-height: 1.3;
            &:before{content: ""; position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%); display: inline-block; width: 11px; height: auto; aspect-ratio: 11 / 14; background: url("/assets/site/img/contents/step-flow-arr.svg") no-repeat center;}

            & dt{letter-spacing: 0; font-size: 14px; font-weight: var(--fwb); text-transform: uppercase; color: var(--primary-blue);}
            & dd{font-size: 20px; font-weight: var(--fwb); padding: 4px 0 0;}
        }
        &:first-child dl:before{display: none;}

        & .lists{
            position: relative; padding: 24px 0 0; background: #fff;
            & > li{
                position: relative; padding: 0 0 0 24px; color: var(--gray4);
                &:before{content: ""; position: absolute; top: 8px; left: 11px; width: 3px; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--gray4);}
            }
        }
    }

    /* 개별 한 스텝에 circle 2개 이상인 경우 */
    &.branchType{
        align-items: center;
        &:has(.step-desc dl:nth-child(2)):before{top: calc( (var(--circle-size) * 1) + var(--gap) / 2 );}
        &:has(.step-desc dl:nth-child(3)):before{top: calc( ((var(--circle-size) * 0.5) * 3) + var(--gap) );}
        &:has(.step-desc dl:nth-child(4)):before{top: calc( ((var(--circle-size) * 0.5) * 4) + var(--gap) * 1.5 );}

        & .step-desc:has(> dl + dl){
            position: relative; display: flex; flex-direction: column; gap: var(--gap);
            &:before{
                content: ""; position: absolute; background: #fff; border: 1px dashed var(--primary-blue);
                top: calc(var(--circle-size) * 0.5 );
                bottom: calc(var(--circle-size) * 0.5 );
                left: calc( (var(--circle-gap) * 0.5) * -1 );
                right: calc( (var(--circle-gap) * 0.5) * -1 );
                
            }

            &:last-child{
                &:before{
                    right: 0%; border-right: none;
                }
            }
        }
    }

    @media (width <= 1400px){
        --circle-size: 15vw;
        --circle-gap: 30px;
    }
    @media (width <= 1280px){
        & .step-desc{
            & dl{
                & dd{font-size: clamp(16px,1.7vw,20px);}
            }
        }
    }
    @media (width <= 860px){
        --circle-gap: 20px;
        flex-direction: column; width: auto;
        &:before{left: 50%; right: auto; top: 0; bottom: 0; border-top: none; border-left: 1px dashed var(--primary-blue);}

        & .step-desc{
            width: 100%; border: 1px solid var(--primary-blue); border-radius: var(--radius);
            & dl{
                aspect-ratio: initial; border: none; align-content: initial; border-radius: var(--radius);
                display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; padding: 16px 0; background: #eef7ff;
                &:before{top: 0; left: 50%; transform: rotate(90deg) translate(-8px, 5px);}

                & dt{
                    color: var(--primary-blue);
                }
                & dd{padding: 0;}
            }
            & .lists{
                border-radius: 0 0 var(--radius) var(--radius); padding: 20px 0;
            }
        }

        &.branchType{
            &:has(.step-desc dl:nth-child(2)):before{top: 0;}

            & .step-desc:has(> dl + dl){
                flex-direction: row; border: none;
                &:before{
                    bottom: calc(var(--circle-gap) * -1); top: calc(var(--circle-gap) * -1); 
                    left: calc((100% - var(--gap)) / 4); 
                    right: calc((100% - var(--gap)) / 4) !important; 
                    border-top: none; border-bottom: none;
                    border-left: 1px dashed var(--primary-blue) !important;
                    border-right: 1px dashed var(--primary-blue) !important;
                }

                & dl{
                    flex: 1; min-width: 0; width: auto; border: 1px solid var(--primary-blue);
                    &:after{
                        content: ""; position: absolute; display: inline-block; width: 11px; height: auto; aspect-ratio: 11 / 14; background: url(/assets/site/img/contents/step-flow-arr.svg) no-repeat center;
                        top: calc(100% + 20px); left: 50%; transform: rotate(90deg) translate(-8px, 5px); z-index: 1;
                    }
                }

                &:last-child{
                    &:before{bottom: 0;}
                    & dl{
                        &:after{display: none;}
                    }
                }
            }
            & .step-desc:has(> dl + dl) + .step-desc{
                & dl{
                    &:before{display: none;}
                }
            }
        }
    }
    @media (width <= 640px){
        gap: 12px;
    }
}


/* download-grid */
.download-grid{
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(auto-fill, minmax(10px, auto)); gap: var(--gap);

    @media (width <= 640px){
        grid-template-columns: repeat(1, 1fr);
    }
}


/* download-grid-item */
.download-grid-item{
    display: flex; flex-wrap: wrap; align-items: center; border: 1px solid var(--border-default); border-radius: var(--radius); padding: 34px 36px;
    & .txt{
        flex: 1; min-width: 0; color: var(--gray4); padding: 0 10px 0 0;
        & dt{font-size: 20px; font-weight: var(--fwb); color: var(--black); line-height: 1.3;}
        & dd{padding: 3px 0 0;}
    }
    & .shape{margin: 0 0 0 auto; flex: 0 0 auto; width: 52px; height: auto; aspect-ratio: 1; border-radius: 50%; background: var(--black) url("/assets/site/img/contents/download-grid-item.svg") no-repeat; background-position: bottom center; background-size: 100% auto; font-size: 0;}

    &:hover{
        border-color: var(--primary-blue); transition: 0.15s;
        & .shape{background-color: var(--primary-blue); background-position: top center; transition: 0.15s linear;}
    }

    @media (width <= 1280px){
        padding: 25px 20px;
        & .txt{
            & dt{font-size: 18px;}
        }
        & .shape{width: 48px;}
    }
    @media (width <= 640px){
        padding: 20px 20px;
        & .txt{
            & dt{font-size: 16px;}
            & dd{font-size: 14px;}
        }
        & .shape{width: 40px;}
    }
}


/* complaint-box */
.complaint-box{
    margin-top: 60px;
    & > .wrap{
        display: flex; flex-wrap: wrap; gap: 48px; align-items: center; justify-content: center; background: #f9f9f9; border-radius: 8px; padding: 36px 36px;
    }
    & .title{
        font-size: 24px; font-weight: var(--fwb); line-height: 1.3;
    }
    & .info{
        display: flex; flex-wrap: wrap; gap: 24px;
        & dl{
            display: flex; flex-wrap: wrap; gap: 8px; font-size: 18px;
            & dt{
                flex: 0 0 auto; display: inline-flex; align-items: center; gap: 4px; font-weight: var(--fwsb);
                & img{width: 24px; height: auto;}
                & span{}
            }
            & dd{
                flex: 1; min-width: 0; color: var(--gray);
            }
        }
    }

    @media (width <= 1500px){
        & > .wrap{
            max-width: calc(100% - (var(--space) * 2)); margin: 0 auto;
        }
    }
    @media (width <= 1280px){
        & > .wrap{
            flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 20px; padding: 30px 20px;
        }
        & .title{flex: 0 0 auto; width: 100%; font-size: 20px; text-align: center;}
        & .info{
            flex: 0 0 auto; width: 100%; justify-content: center; gap: 16px;
            & dl{font-size: 16px;}
        }
    }
    @media (width <= 640px){
        margin: var(--subpage-sec-gap) 0 0;
        & > .wrap{
            padding: 25px 20px;
        }
        & .title{font-size: 18px;}
        & .info{
            flex-direction: column; gap: 8px; width: max-content; margin: 0 auto;
            & dl{
                font-size: 1rem;
                & dt{
                    flex: 0 0 auto; width: 72px;
                    & img{width: 20px;}
                }
            }
        }
    }
}

/* store-select */
.store-select{
    & select{
        display: block; width: 100%; height: var(--store-ip-height); border: 1px solid #333132; padding: 0 40px 0 var(--store-ip-inner); font-size: var(--store-ip-fz);
        background: url("/assets/site/img/common/store-select-arr.svg") no-repeat center right 20px; outline: none;
        text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
    }

    @media (width <= 640px){
        & select{
            padding: 0 25px 0 var(--store-ip-inner); background-size: 14px auto; background-position: center right 9px;
        }
    }
}


/* store-input */
.store-input{
    & input{
        display: block; width: 100%; height: var(--store-ip-height); border: 1px solid #333132; padding: 0 var(--store-ip-inner); font-size: var(--store-ip-fz); outline: none;
        &::placeholder{color: #999;}
    }
}


/* store-button */
.store-button{
    & button{
        display: block; width: 100%; height: var(--store-ip-height); border: 1px solid transparent; padding: 0 10px; font-size: var(--store-ip-fz); outline: none; background: var(--gray-dark); color: var(--white); letter-spacing: -0.02em;

        &.green{border-color: transparent; background-color: var(--theme-green);}
    }
}


/* 매장찾기 페이지 */
.find-store-wrap{
    --wrap-gap: 60px;
    display: flex; flex-wrap: wrap; gap: var(--wrap-gap); position: relative;

    & > .sch{
        flex: 0 0 auto; width: 396px;
        & > .top{
            padding: 0 0 40px;
            & .store-search{
                display: flex; flex-direction: column; gap: 10px;
            }
        }
        & > .mid{
            & .store-list{
                height: 384px; overflow: hidden; overflow-y: auto; padding: 0 0 20px;
                &::-webkit-scrollbar{width: 4px;}
                &::-webkit-scrollbar-thumb{border-radius: 0; background-color: #00a651;} 
                &::-webkit-scrollbar-track{border-radius: 0; background-color: #d9d9d9;}
            }
            & .store-item{
                border-bottom: 1px solid #e4e4e4; padding: 22px 0 17px; cursor: pointer;
                & dt{font-size: 20px; font-weight: var(--fwm); line-height: 1.4;}
                & dd{
                    padding: 10px 0 0;
                    & .subs{
                        display: flex; flex-direction: column; gap: 6px;
                        & > li{font-weight: var(--fwm); color: #999; line-height: 1.375;}
                    }
                }
            }
        }
    }

    & > .map{
        flex: 1; min-width: 0; position: relative; min-height: 0; height: 754px; width: 100%;
        & .store-map{
            width: 100%; height: 100%;
            & > img{}
        }
        & .map-pin{
            /* position: absolute; top: 0; left: 0; */
            width: 55px; height: auto; aspect-ratio: 55 / 82; filter: drop-shadow(-1px 5px 8px rgba(0,0,0,0.25)); background: url("/assets/site/img/contents/store-map-pin.svg") no-repeat center; background-size: 100% auto;
            cursor: pointer;
        }
    }

    @media (width <= 1500px){
        --wrap-gap: 40px;
        & > .sch{
            width: clamp(320px,25vw,396px);
        }
    }
    @media (width <= 1280px){
        --wrap-gap: 30px;
        & > .sch{
            width: 300px;
        }
    }
    @media (width <= 1000px){
        --wrap-gap: 20px;
        & > .sch{
            width: 260px;
        }
    }
    @media (width <= 860px){
        flex-direction: column;
        & > .map{flex: 0 0 auto; min-height: 0; position: absolute; z-index: 2; top: calc(105px + 30px); left: calc(var(--space) * -1); width: calc(100% + (var(--space) * 2) ); padding: 0 var(--space); height: 400px;}
        & > .sch{
            width: 100%; display: flex; flex-direction: column; gap: 460px; position: relative; z-index: 1;
            & > .top{
                padding: 0;
                & .store-search{
                    gap: 5px; flex-direction: row; flex-wrap: wrap;
                    & > *{
                        flex: 0 0 auto; width: calc((100% - 5px) / 2);
                        &:nth-child(3){}
                        &:nth-child(4),
                        &:nth-child(5){width: calc( (((100% - 5px) / 2) - 5px) * 0.5  );}
                    }
                }
            }
            & > .mid{
                & .store-list{overscroll-behavior: initial}
            }
        }
    }
    @media (width <= 640px){
        & > .sch{
            & > .mid{
                & .store-item{
                    & dt{font-size: 18px;}
                    & dd{
                        font-size: 14px;
                        & .subs{gap: 2px;}
                    }
                }
            }
        }
        & > .map {
            & .map-pin{
                width: 38px;
            }
        }
    }
}


/* 프랜차이즈 진행 상태 뱃지 */
.franchise-state{
    display: inline-block; border-radius: 24px; line-height: 24px; border: 1px solid #000; background: #ddd; color: #000; font-size: 14px; font-weight: var(--fwsb); letter-spacing: -0.04em; padding: 0 9px;

    &.available{border-color: #16a775; color: #16a775; background: #ebf9f4;}
    &.complete{border-color: #ff9e03; color: #ff9e03; background: #fff9e6;}

    @media (width <= 640px){

    }
}


/* scroll-tab-wrap */
.scroll-tab-wrap{
    position: fixed; z-index: 9; top: 120px; left: 0; width: 100%;

    @media (width <= 640px){
        top: 70px;
    }
}


/* scroll-tab */
.scroll-tab{
    max-width: 1600px; margin: 0 auto; display: flex; flex-wrap: wrap; background: rgba(255,255,255,0.6); overflow: hidden; border-radius: 80px; box-shadow: 0 0 5px 4px rgba(0,0,0,0.03);
    & > li{
        flex: 1; min-width: 0;
        & button,
        & a{
            display: block; padding: 25px 0; margin: 0; width: 100%; text-align: center; font-size: 24px; font-weight: var(--fwb); line-height: 1.25; background: transparent; border-radius: 80px; color: #333132; letter-spacing: -0.03em;

            &.active{background: #fff; color: var(--theme-green);}
        }
    }

    @media (width <= 1820px){
        max-width: calc(100% - (var(--space) * 2) );
    }
    @media (width <= 1600px){
        & > li{
            & button, 
            & a{
                padding: 16px 0; font-size: 22px;
            }
        }
    }
    @media (width <= 1280px){
        & > li{
            & button, 
            & a{
                font-size: clamp(16px,2vw,22px);
            }
        }
    }
    @media (width <= 640px){
        max-width: calc(100% - 15px);
        & > li{
            & button, 
            & a{
                font-size: 12px; padding: 10px 0;
            }
        }
    }
}


/* img-grid-frame */
.img-grid-frame{
    border-radius: 10px; overflow: hidden; display: flex; flex-wrap: wrap;
    & > .item{
        position: relative; flex: 1; min-width: 0; aspect-ratio: 533 / 600; padding: 30px 30px;
        & .img{
            position: absolute; inset: 0;
            & img{width: calc(100% + 1px); height: calc(100% + 1px); object-fit: cover;}
        }
        & .txt{
            position: relative; color: #fff; letter-spacing: -0.02em;
            & .title{font-size: 24px; font-weight: var(--fwb); line-height: 1.55;}
            & .sub{
                font-size: 18px; font-weight: var(--fwm); padding: 16px 0 0;
                & .refer{}
                & .sublist{
                    & > li{
                        position: relative; padding: 0 0 0 0.7em;
                        &:before{content: "-"; position: absolute; top: 0; left: 0;}
                    }
                }
            }
        }
    }

    & + .view-more{margin: 50px auto 0;}

    @media (width <= 1280px){
        & > .item{
            padding: 20px 20px;
            & .txt{
                & .title{font-size: 20px;}
                & .sub{font-size: 1rem;}
            }
        }
    }
    @media (width <= 960px){
        & > .item{
            & .txt{
                & .title{font-size: 18px;}
                & .sub{font-size: 1rem;}
            }
        }
    }
    @media (width <= 860px){
        display: flex; flex-direction: column; gap: 20px; border-radius: 0;
        & > .item{
            flex: 0 0 auto; width: 100%; border-radius: 10px; overflow: hidden; padding: 20px; aspect-ratio: 1;
            & .txt{
                & .title{font-size: 20px;}
                & .sub{font-size: 15px;}
            }
        }
    }
    @media (width <= 640px){
        gap: 15px;
        & > .item{
            padding: 15px;
            & .txt{
                & .title{font-size: 18px;}
                & .sub{font-size: 14px;}
            }
        }
    }
}



/* 데이트피커 */
.ui-datepicker{display: none; filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.1)); border: 1px solid transparent; border-radius: 5px; overflow: hidden; font-size: 13px;}
.ui-datepicker-header{background: #fff; position: relative; height: 58px;}
.ui-datepicker-header:before{content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: block; width: calc(100% - 48px); height: 32px; margin-top: 13px; background: rgb(238,242,248); background: linear-gradient(90deg, rgba(238,242,248,0) 0%, rgba(238,242,248,1) 50%, rgba(238,242,248,0) 100%);}
.ui-datepicker-prev{display: block; position: absolute; z-index: 1; left: 44px; top: 33px; cursor: pointer;}
.ui-datepicker-prev span{text-indent: -9999px; display: block; background: url("/assets/site/img/common/btn-datepicker-prev.svg") no-repeat center; background-size: 18px auto; width: 18px; height: 18px; opacity: 1; transition: 0.3s;}
.ui-datepicker-prev:hover span{transition: 0.3s; opacity: 1;}
.ui-datepicker-next{display: block; position: absolute; z-index: 1; right: 44px; top: 33px; cursor: pointer;}
.ui-datepicker-next span{text-indent: -9999px; display: block; background: url("/assets/site/img/common/btn-datepicker-next.svg") no-repeat center; background-size: 18px auto; width: 18px; height: 18px; opacity: 1; transition: 0.3s;}
.ui-datepicker-next:hover span{transition: 0.3s; opacity: 1; float: right;}
.ui-datepicker-title{position: absolute; left: 50%; top: 30px; transform: translateX(-50%); font-size: 14px; font-weight: 700;}
.ui-datepicker-calendar{width: 100%; background: #fff; text-align: center; font-weight: 400; color: #000;}
.ui-datepicker-calendar thead{position: relative;}
.ui-datepicker-calendar thead:before{content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 94%; height: 2px;}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
    .ui-datepicker-calendar thead:before{display: none;}
}
.ui-datepicker-calendar th{color: #000; font-size: 10px; font-weight: var(--fwr); padding: 13px 0 0; width: 32px; box-sizing: content-box; line-height: 100%;}
.ui-datepicker-calendar td{height: 43px; line-height: 43px; box-sizing: content-box;}
.ui-datepicker-calendar td:first-child{padding-left: 21px;}
.ui-datepicker-calendar td:last-child{padding-right: 21px;}
.ui-datepicker-calendar th:first-child{padding-left: 21px;}
.ui-datepicker-calendar th:last-child{padding-right: 21px;}
.ui-datepicker-calendar tbody tr:last-child td{padding-bottom: 15px;}
.ui-state-active{position: relative; z-index: 1; border-radius: 4px; display: block; margin: 0 auto; width: 32px; height: 43px; line-height: 43px; font-weight: 700; font-weight: 700;}
.ui-state-active:before{content: ""; position: absolute; z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 50%; background-color: #ddd;}
.grayScale .ui-state-active{background: #777; background: linear-gradient(0deg, #444 0%, #777 100%);}
.ui-datepicker-other-month{opacity: 0.25;}
.ui-datepicker-week-end{color: rgb(89, 126, 207) !important;}
.ui-datepicker-week-end + .ui-datepicker-week-end{color: rgb(236, 92, 92) !important;}

.customMonthCalendar{min-width: 266px;}
.customMonthCalendar .ui-datepicker-calendar{display: none;}
.ui-datepicker-buttonpane{display: flex; justify-content: center; gap: 6px; background-color: var(--white); padding: 20px 21px;}
.ui-datepicker-buttonpane > button{width: 80px; height: 30px; line-height: 28px; border: 1px solid var(--line); border-radius: var(--radius_3); font-size: 12px; font-weight: var(--fwsb);}

.customYearCalendar{min-width: 266px;}
.customYearCalendar .ui-datepicker-calendar{display: none;}
.ui-datepicker-buttonpane{display: flex; justify-content: center; gap: 6px; background-color: var(--white); padding: 20px 21px;}
.ui-datepicker-buttonpane > button{width: 80px; height: 30px; line-height: 28px; border: 1px solid var(--line); border-radius: var(--radius_3); font-size: 12px; font-weight: var(--fwsb);}
.customYearCalendar .ui-datepicker-title .ui-datepicker-month{display: none;}
.customYearCalendar .ui-datepicker-prev[data-handler="prev"]{display: none;}
.customYearCalendar .ui-datepicker-next[data-handler="next"]{display: none;}


/* modal */
.modal{
    visibility: hidden; opacity: 0; position: fixed; z-index: 1001 !important; top: 40%; width: 900px; max-width: 94%; max-height: 94svh;
    overflow: hidden; overflow-y: auto; overscroll-behavior: contain; background-color: #fff; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 0 40px; color: #333132; letter-spacing: -0.02em;

    & .md-wrap{
        display: flex; flex-direction: column; width: 100%; height: 100%; max-height: inherit;
    }

    & .md-head{
        flex: 0 0 auto; padding: 50px 0 30px; border-bottom: 1px solid #e4e4e4;
        & .logo{
            text-align: center;
            & img{vertical-align: top;}
        }
        & .title{
            line-height: 1; font-size: 30px; font-weight: var(--fwb); color: var(--theme-green); text-align: center;
        }
    }

    & .md-body{
        flex: 1; min-height: 0; padding: 20px 0 0; overflow: hidden; overflow-y: auto; overscroll-behavior: contain;
        &::-webkit-scrollbar{width: 4px;}
        &::-webkit-scrollbar-thumb{border-radius: 0; background-color: #00a651;} 
        &::-webkit-scrollbar-track{border-radius: 0; background-color: #d9d9d9;}

        & .md-prodcut{
            display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start;
            & .p-img{
                flex: 0 0 auto; width: calc( (100% - 40px) * 0.4872 ); height: auto; aspect-ratio: 380 / 424;
                & img{width: 100%; height: 100%; object-fit: cover;}
            }
            & .p-txt{
                flex: 1; min-width: 0; width: auto; padding: 0 20px 0 0;
                & .p-desc{
                    & > dt{
                        font-size: 24px; font-weight: var(--fwb); line-height: 1.1;
                        & span{padding: 10px 0 0; display: block; font-weight: var(--fwr); color: #999; font-size: 0.667em; line-height: 1;}
                    }
                    & > dd{padding: 21px 0 0; font-weight: var(--fwm);}
                }
                & .p-info{
                    display: flex; flex-direction: column; gap: 3px; color: #555; padding: 20px 0 5px;
                    & > dl{
                        display: flex; flex-wrap: wrap;
                        & > dt{flex: 0 0 auto; width: 120px; padding: 0 10px 0 0;}
                        & > dd{flex: 1; min-width: 0; color: #333132;}
                    }
                }
                & .p-nutrition{
                    position: relative; padding: 9px 0; display: flex; flex-wrap: wrap; gap: 4px 0; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; color: #555;
                    &:before{content: ""; position: absolute; top: 0; bottom: 0; left: 50%; border-left: 1px solid #ccc;}
                    & > li{
                        flex: 0 0 auto; width: 50%; display: flex; justify-content: space-between; padding: 0 10px;
                        & .key{flex: 0 0 auto; padding: 0 10px 0 0;}
                        & .val{text-align: right;}
                    }
                }
                & .p-notes{
                    padding: 20px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: #999;
                    & > li{
                        position: relative; padding: 0 0 0 7px; line-height: 1.37;
                        &:before{content: "*"; position: absolute; top: 0; left: 0;}
                    }
                }
            }
        }

        & .md-find-store{
            padding: 20px 0 0; height: 450px;
            & .store-search{
                display: flex; flex-wrap: wrap; gap: 10px; 

                & > *{flex: 1; min-width: 0;}
            }
            & .store-list{
                padding: 10px 0 20px; /* height: 404px; */ /* overflow-y: auto; overscroll-behavior: contain; */
                &::-webkit-scrollbar{width: 4px;}
                &::-webkit-scrollbar-thumb{border-radius: 0; background-color: #00a651;} 
                &::-webkit-scrollbar-track{border-radius: 0; background-color: #d9d9d9;}

                & .item{
                    position: relative; padding: 20px 125px 20px 0; border-bottom: 1px solid #e4e4e4;
                    & .name{font-size: 20px; font-weight: var(--fwm);}
                    & .infos{
                        display: flex; flex-direction: column; gap: 9px; padding: 10px 0 0;
                        & > li{
                            font-weight: var(--fwm); color: #999; line-height: 1.2;
                        }
                    }
                    & .btn-select-store{
                        position: absolute; top: 50%; transform: translateY(-50%); right: 16px;
                        display: inline-block; width: 100px; padding: 0 10px 2px; line-height: 41px; border-radius: 5px; border: 1px solid var(--theme-green); color: var(--theme-green); background-color: var(--white); text-align: center; letter-spacing: -0.04em;
                        font-size: 17px; font-weight: var(--fwm);

                        & input{position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; font-size: 0;}

                        &:has(input:checked){
                            background-color: var(--theme-green); color: var(--white);
                        }
                    }
                }
            }
        }

        & .store-detail{
            display: flex; flex-wrap: wrap; gap: 40px;

            & .thumb{
                flex: 1; min-width: 0; min-width: 210px; margin: 0 auto;
                & img{display: block; width: 100%; height: auto;}
            }
            & .info{
                flex: 0 0 auto; width: 400px;
                & dt{font-size: 24px; font-weight: var(--fwb); color: #333132; line-height: 1.1;}
                & dd{
                    padding: 20px 0 0;
                    & .subs{
                        display: flex; flex-direction: column; gap: 4.5px;
                        & > li{
                            display: flex; flex-wrap: wrap; color: #555;
                            & .name{flex: 0 0 auto; width: 88px; padding: 0 10px 0 0; color: var(--theme-green);}
                            & .con{
                                flex: 1; min-width: 0;

                                & .service-list{
                                    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(auto-fill, minmax(10px, auto));
                                    & > li{
                                        color: #000; display: inline-flex; gap: 6px;
                                        & .ico{
                                            display: inline-flex; vertical-align: middle; align-items: center; justify-content: center; width: 40px; height: auto; aspect-ratio: 1; border-radius: 2px; background-color: #d8d8d8;
                                            & img{display: block; max-width: 100%; width: 60%; height: auto;}
                                        }
                                        & span{display: inline-block; padding: 6px 0 0;}

                                        &.on{
                                            & .ico{
                                                background-color: var(--theme-green);
                                                & img{filter: var(--filter-white);}
                                            }
                                        }
                                    }
                                }

                                &.w100{flex: 0 0 auto; width: 100%; padding: 10px 0 0;}
                            }
                        }
                    }
                }
            }
        }
    }

    & .md-foot{
        flex: 0 0 auto; padding: 20px 0 50px;
        & .md-btns{
            display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
            & button{
                flex: 1; min-width: 0; display: block; width: auto; line-height: 42px; border: 1px solid transparent; color: #fff; letter-spacing: -0.04em; font-weight: var(--fwm); background: #00a651;
            }
        }
    }

    &.on{
        visibility: visible; opacity: 1; top: 50%; transition: all 0.25s ease;
    }

    &.store-modal{
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        @media (width <= 1280px){
            & .md-body{
                & .store-detail{
                    & .thumb{max-width: 200px;}
                }
            }
        }
        @media (width <= 860px){
            position: fixed; top: 50%;
        }
    }

    @media (width <= 1024px){
        padding: 0 30px;
        & .md-head{
            padding: 35px 0 25px;
            & .title{font-size: 24px;}
        }
        & .md-body{
            & .md-prodcut{
                gap: 30px;
                & .p-img{
                    width: calc( (100% - 30px) * 0.4872 );
                }
            }
        }
        & .md-foot{
            padding: 20px 0 30px;
        }
    }
    @media (width <= 860px){
        & .md-body{
            & .md-prodcut{
                gap: 30px;
                & .p-img{
                    width: calc( (100% - 30px) * 0.4 );
                }
                & .p-txt{
                    & .p-desc{
                        & > dt{font-size: 22px;}
                    }
                    & .p-info{font-size: 14px;}
                    & .p-nutrition{
                        font-size: 14px;
                        & > li{padding: 0 6px;}
                    }
                }
            }
            & .md-find-store{
                height: 420px;
                & .store-search{
                    gap: 5px;
                    & > *{flex: 0 0 auto; width: calc((100% - 5px) / 2);}
                }
            }
        }
    }
    @media (width <= 640px){
        padding: 0 20px;
        & .md-head{
            padding: 25px 0 17px;
            & .logo{
                & img{height: 18px;}
            }
            & .title{font-size: 20px;}
        }
        & .md-body{
            & .md-prodcut{
                gap: 20px; flex-wrap: initial; flex-direction: column;
                & .p-img{
                    width: calc(100% - 80px); margin: 0 auto;
                }
                & .p-txt{
                    & .p-desc{
                        text-align: center;
                        & > dt{
                            font-size: 20px;
                            & span{padding: 6px 0 0;}
                        }
                        & > dd{
                            text-wrap: balance; padding: 14px 0 0; font-size: 14px;
                        }
                    }
                    & .p-info{
                        padding: 25px 0 5px; font-size: 13px;
                    }
                    & .p-nutrition{
                        font-size: 13px;
                    }
                    & .p-notes{
                        padding: 20px 0 20px;
                    }
                }
            }
            & .md-find-store{
                height: 360px;
                & .store-list{
                    & .item{
                        padding: 20px 0 14px;
                        & .name{font-size: 18px;}
                        & .infos{padding: 10px 80px 0 0; gap: 6px; font-size: 14px;}
                        & .btn-select-store{width: auto; padding: 0 15px 2px; line-height: 34px; font-size: 15px; transform: none; top: auto; bottom: 12px; right: 2px;}
                    }
                }
                & .store-search{
                    gap: 5px;
                    & .store-input{
                        width: calc(100% - 5px - 90px);
                    }
                    & .store-button{
                        width: 90px;
                    }
                }
            }
            & .store-detail{                
                gap: 15px;
                & .thumb{
                    margin: 0 auto; max-width: 40%;
                    & img{}
                }
                & .info{
                    width: 100%;
                    & dt{font-size: 18px; text-align: center;}
                    & dd{
                        font-size: 14px; padding: 16px 0 0;
                        & .subs{
                        
                            & > li{
                        
                                & .name{width: 78px;}
                                & .con{
                                    
                                    & .service-list{
                                    
                                        & > li{
                                    
                                            & .ico{
                                                width: 30px;
                                                & img{}
                                            }
                                            & span{padding: 3px 0 0;}

                                            &.on{
                                                & .ico{
                                                
                                                    & img{}
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        & .md-foot{
            padding: 15px 0 20px;
        }
    }
}


/* store-modal-dim */
.store-modal-dim{
    position: absolute; z-index: 4; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: 0.2s;
    &.on{opacity: 1; visibility: visible; }
}


/* layer - 팝업 */
.layer{
    visibility: hidden; opacity: 0; position: fixed; z-index: 1001 !important; top: 40% !important; left: 50% !important; transform: translate(-50%, -50%); width: 75vw; height: calc(100vh - 120px);
    overflow-y: auto; overscroll-behavior: contain; background-color: var(--white); box-sizing: border-box;

    &::-webkit-scrollbar{width: 6px; /*display: none;*/}
    &::-webkit-scrollbar-thumb{border-radius: 6px; background-color: #ddd;}
    &::-webkit-scrollbar-track{border-radius: 6px; background-color: rgba(193,193,193,0.2);}

    &.on{visibility: visible; opacity: 1; top: 50% !important; transition: all 0.25s ease;}

    & .l_wrap{
        width: 100%; height: 100%; padding: 52px 52px;
    }

    & .l_head{
        & .title{font-size: 30px; font-weight: var(--fwb); line-height: 1.2; padding-bottom: 50px;}
    }

    & .l_body{
        overflow: hidden; overflow-y: auto; overscroll-behavior: contain; height: calc(100% - 86px); /* 100% - l_head 높이 */ padding-right: 5px;

        &::-webkit-scrollbar{width: 6px;}
        &::-webkit-scrollbar-thumb{border-radius: 0px; background-color: #ddd;}
        &::-webkit-scrollbar-track{border-radius: 0px; background-color: rgba(193,193,193,0.2);}
    }

    & .l_foot{

    }

    @media (max-width: 1280px), (min-width: 1080px) and (orientation: portrait) {
        width: calc(100vw - 140px);
        & .l_wrap{padding: 40px;}
        & .l_head{
            & .title{font-size: 26px; padding-bottom: 25px;}
        }
        & .l_body{
            height: calc(100% - 57px);
        }
    }
    @media (max-width: 860px), (min-width: 1080px) and (orientation: portrait) {
        width: calc(100vw - 30px); height: calc(100vh - 240px);
        & .l_wrap{padding: 30px 25px;}
        & .l_head{
            & .title{font-size: 21px;}
        }
        & .l_body{
            height: calc(100% - 51px);
        }
    }
}


/* layer-closer */
.layer-closer{
    visibility: hidden; opacity: 0; position: fixed; z-index: 12; top: 56px; right: 56px; width: 32px; height: 32px; background: url("../img/common/layer_closer.svg") no-repeat center; background-size: contain; font-size: 0;
    &.on{visibility: visible; opacity: 1;}

    @media (max-width: 1700px), (min-width: 1080px) and (orientation: portrait) {
        top: 20px; right: 20px;
    }
    @media (max-width: 1280px), (min-width: 1080px) and (orientation: portrait) {
        width: 26px; height: 26px;
    }
    @media (max-width: 860px), (min-width: 1080px) and (orientation: portrait) {
        width: 20px; height: 20px;
    }
}








/* ============================================
    CSS Animations
============================================ */

[fx-scroll="fade-left"]{animation: fade-left forwards;}
[fx-scroll="fade-right"]{animation: fade-right forwards;}
[fx-scroll="fade-up"]{animation: fade-up forwards;}
[fx-scroll]{
    animation-fill-mode: both;
    view-timeline-name: --reveal; 
    view-timeline-axis: y; 
    animation-timeline: --reveal; 
    animation-range: entry 10% cover 20%;
}

@keyframes fade-left{
    0% {transform: translateX(50px); opacity: 0;}
    100% {transform: translateX(0); opacity: 1;}
}
@keyframes fade-right{
    0% {transform: translateX(-50px); opacity: 0;}
    100% {transform: translateX(0); opacity: 1;}
}
@keyframes fade-up{
    0% {transform: translateY(50px); opacity: 0;}
    100% {transform: translateY(0); opacity: 1;}
}
@keyframes arr-move{
    0%  {transform: translateX(0);}
    50% {transform: translateX(5px);}
    100%{transform: translateX(0);}
}
@keyframes width{
    0%  {width: 0;}
    100%{width: 100%;}
}
@keyframes explode{
    0%  {width: 0; height: 0; margin-top: 0; margin-left: 0; background-color: #fff;}
    100%{width: 600px; height: 600px; margin-top: -300px; margin-left: -300px; background-color: #fff;}
}
@keyframes desplode{
    0%  {width: 600px; height: 600px; margin-top: -300px; margin-left: -300px; background-color: #fff;}
    100%{width: 0; height: 0; margin-top: 0; margin-left: 0;}
}
@keyframes zoomOut{
    0%   {transform:scale(1.05)}
    100% {transform:scale(1.0)}
}
@keyframes slideInBottom {
    from { transform: translateY(60px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(60px); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideInLeft {
    from { transform: translateX(-60px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}
@keyframes posterTabOn {
    from { transform: translateX(0) scale(1); opacity: 1; }
    to   { transform: translateX(-150%) scale(2); opacity: 0; }
}
@keyframes posterTabOn2 {
    from { transform: translateY(0) scale(1); opacity: 1; }
    to   { transform: translateY(-150%) scale(2); opacity: 0; }
}
@keyframes shake {
    0%{transform:rotate(0);}
	20%{transform:rotate(-8deg);}
	40%{transform:rotate(8deg);}
	60%{transform:rotate(-8deg);}
	80%{transform:rotate(8deg);}
	100%{transform:rotate(0deg);}
}
@keyframes shake_bg{
	0%{transform:rotate(0);}
	20%{transform:rotate(-5deg);}
	40%{transform:rotate(5deg);}
	60%{transform:rotate(-5deg);}
	80%{transform:rotate(5deg);}
	100%{transform:rotate(0deg);}
}
@keyframes jump {
    0%{transform: translateY(0);}
    50%{transform: translateY(-3px);}
    100%{transform: translateY(0); }
}
@keyframes clip-path-left-right {
    0%{clip-path: inset(0 100% 0 0);}
    100%{clip-path: inset(0 0 0 0);}
}