
@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 200;
  src: url('../font/Pretendard-Light.woff') format('woff'),
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 300;
  src: url('../font/Pretendard-ExtraLight.woff') format('woff'),
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 400;
  src: url('../font/Pretendard-Regular.woff') format('woff');
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 500;
  src: url('../font/Pretendard-Medium.woff') format('woff');
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 600;
  src: url('../font/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 700;
  src: url('../font/Pretendard-Bold.woff') format('woff');
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 800;
  src: url('../font/Pretendard-ExtraBold.woff') format('woff');
}

@font-face {
  font-family: 'pre';
  font-style: normal;
  font-weight: 900;
  src: url('../font/Pretendard-Black.woff') format('woff');
}


:root{
    --main-blue-color:#25416D;
    --main-sky-color:#DDDCE6;
}

html{
  font-family: 'pre';
  font-weight: 400;
  background-color: white;
}


header{
    padding: 0px 1vw;
    position: sticky;
    top: 0px;
    left: 0px;
    background-color: #fff0;
    z-index: 999;
    width: 100%;
    transition: all .5s 0s;
}
header.view{
    background-color: #fff;
    box-shadow: 0px 1px 2px #8882;    
}

header:hover{
    background-color: #fff;
}


html[direction = "down"] header{
    transform: translateY(-100%);
}





header #top{
    margin-top: 15px;
}
header #top ul{
    text-align: right;
}
header #top ul li{}
header #top ul li a{
    line-height: 40px;
    padding: 0px 4px;
    font-size: 14px;
    margin: 0px 6px;
}

header #top ul li a img{
    width: 18px;
    height: 18px;
}

header #top ul li a.icon{
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    width: 20px;
    height: 20px;
    font-size: 0px;
}




header #logo{
    margin: 0px 0px 20px;
}
header #logo h1{
    width: 180px;
    height: 40px;
    background-image: url(../img/logo3.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 160px;
    filter: var(--main-invert-value);
    font-size: 0;
}

header #menu{}
header #menu .menu{}
header #menu .menu > li{
    position: relative;
}
header #menu .menu > li > a{
    padding: 0px 2vw;
    line-height: 50px;
    font-weight: 500;
    font-size: 18px;
}
header #menu .menu > li > .subMenu{
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 9;
    background-color: #fffd;
    box-shadow: 2px 2px 4px #2224;
    min-width: 140px;
    transform: translateX(-50%);
    overflow: hidden;
    max-height: 0px;
    transition: all .3s 0s;
    opacity: 0;
    padding: 0px;
}


header #menu .menu > li:hover > .subMenu{
    max-height: 500px;
    opacity: 1;
    padding: 6px 0px 10px;
}


header #menu .menu > li > .subMenu li{
    width: 100%;
}
header #menu .menu > li > .subMenu li a{
    width: 100%;
    padding: 0px 20px;
    text-align: left;
    line-height: 36px;
    background-color: #fff0;
    transition: background-color .5s 0s;
    color:#222;
}
header #menu .menu > li > .subMenu li:hover a{
    background-color: #e9e9e9;
    color:#000;
}



header #mobile{
}
header #mobile .button{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 9999;
}
header #mobile .button span{
    width: 20px;
    height: 2px;
    background-color: var(--main-black-color);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: all .5s 0s;
}

header #mobile .button span:nth-child(1){
    transform: translateY(-50%) translateY(-6px);
}

header #mobile .button span:nth-child(3){
    transform: translateY(-50%) translateY(6px);
    width: 10px;
}

header #mobile .button:hover span:nth-child(3){
    width: 20px;
}

html[menu = "true"] header #mobile .button span:nth-child(1){
    transform: translateY(-50%) rotate(45deg);
}
html[menu = "true"] header #mobile .button span:nth-child(3){
    transform: translateY(-50%) rotate(-45deg);
    width: 20px;
}

html[menu = "true"] header #mobile .button span:nth-child(2){
    opacity: 0;
}







header #mobile .menuBox{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 260px;
    height: 100vh;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform .5s 0s;
    z-index: 99;
    text-align: center;
}
html[menu = "true"] header #mobile .menuBox{
    transform: none;
}


header #mobile .menuBox .logo{
    margin: 60px 0px 40px;
}
header #mobile .menuBox .logo img{
    max-width: 180px;
    filter: var(--main-invert-value);
}

header #mobile .menuBox .menu{
    width: 85%;
    display: inline-block;
}
header #mobile .menuBox .menu li{
    width: 100%
}
header #mobile .menuBox .menu > li > a{
    width: 100%;
    text-align: left;
    padding: 0px 15px;
    line-height: 40px;
    font-weight: 500;
}
header #mobile .menuBox .menu > li > .subMenu{
    overflow: hidden;
    max-height: 0px;
    width: 100%;
    padding: 0px;
}
header #mobile .menuBox .menu > li.view > .subMenu{
    max-height: 500px;
    padding: 5px 0px;
}


header #mobile .menuBox .menu > li > .subMenu li{}
header #mobile .menuBox .menu > li > .subMenu li a{
    font-size: 14px;
    text-align: left;
    font-weight: 200;
    width: 80%;
    color:#555;
    line-height: 32px;
}

header #mobile .menuBox .line{
    border-bottom: 1px solid #eee;
    margin: 20px 0px;
}




header #mobile .menuBg{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000a; 
    z-index: 98;
    transform: translateX(100%);
    opacity: 0;
    transition: opacity .5s 0s, transform 0s .5s;
}

html[menu = "true"] header #mobile .menuBg{
    transform: none;
    opacity: 1;
    transition: opacity .5s 0s, transform 0s 0s;
}



main #item{}
main #item #category{}

main #item .sort{
    margin-bottom: 40px;
    text-align: right;
    padding: 0px 2vw;
}
main #item .sort li{}
main #item .sort li a{
    padding: 0px 6px;
    line-height: 28px;
    font-size: 12px;
}



main .shop_list{
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1vw;
    padding: 0px 2vw;
}
main .shop_list li{
    overflow: hidden;
}
main .shop_list li a{
    width: 100%;
}
main .shop_list li a .img{}
main .shop_list li a .img img{
    width: 100%;
}

main .shop_list li a .title{
    text-align: left;
    padding: 10px;
}
main .shop_list li a .title .name{
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
}
main .shop_list li a .title .pay{
    vertical-align: baseline;
}
main .shop_list li a .title .pay .sct_dict{
    text-decoration: line-through;
    color:#888;
    font-size: 1rem;
}

main .shop_list li a .title .pay .discount{
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0px 6px;
}

main .shop_list li a .title .pay .sct_per{
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .5px;
    color:#86B488;
}


main .info_form{
    display: inline-grid;
    width: 100%;
    grid-template-columns: 1fr 500px;
    grid-gap: 0px;
    position: relative;
/*    overflow-y: auto;*/
}
main .info_form .left{
}
main .info_form .right{
    background-color: white;
    height: 100vh;
    position: sticky;
    top:0px;
    left: 0px;
    z-index: 99;
    padding: 2vw;
    text-align: left;
}
main .info_form .right .scroll{
    overflow-y: auto;
    height: 100%;
}

main .info_form .right .title{
    font-size: 1.75rem;
    margin-bottom: 30px;
}

main .info_form .right .content{}
main .info_form .right .content li{
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 10px;
    margin: 12px 0px;
}

main .info_form .right .content li.option{
    display: inline-block;
    width: 100%;
    margin: 0px;
}


main .info_form .right .content li.option .get_item_options{}
main .info_form .right .content li.option .get_item_options span{
    width: 100%;
    display: inline-block;
}
    




main .info_form .right .content li.option .label-title{
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 600;
}

main .info_form .right .content li.option .td_sit_sel{
    width:100%;
}


main .info_form .right .content li.option .it_supply,
main .info_form .right .content li.option .it_option{
    margin-bottom: 10px;
    background-color: transparent;
    background-position: 98% center;
    border: 1px solid #666;
    border-radius: 0px;
    width: 100%;
    max-width: none;
    color:#666;
}

main .info_form .right .content li .name{
    font-weight: 600;
}
main .info_form .right .content li .name.gray{
    color:#aaa;
}


main .info_form .right .content li .text{}
main .info_form .right .content li .text.through{
    text-decoration: line-through;
    color: #666;
}
main .info_form .right .content li .text.through.gray{
    color:#aaa;
}


main .info_form .right .content li #sit_sel_option{}
main .info_form .right .content li #sit_sel_option #sit_opt_added{}


table{}
table thead{
    border-bottom: 1px solid #ddd;
}
table thead tr{
    background-color: transparent;
}
table thead tr th{
    color: black;
    font-weight: 500;

}

table tbody{}
table tbody tr{}
table tbody tr td{}









footer{
    padding: 80px 2vw 0px;
    background-color: #f9f9f9;
}

footer .flex{
    align-content: flex-start;
    align-items: flex-start;
}

footer .logo{
    width: 140px;
    height: 40px;
    float: left;
    margin-bottom: 10px;
}


footer .left,
footer .right{
    display: inline-flex;
    align-content: flex-start;
    align-items: flex-start;
    color:#9C9C9C;
}

footer .left .big{
    font-size: 1.5rem;
    font-weight: bold;
}

footer .right .name{
    font-weight: 600;
    margin-bottom: 10px;
}



footer .left > li,
footer .right > li{
    margin-right: 2vw;
    text-align: left;
    line-height: 30px;
}


footer .right > li > ul{
    max-width: 120px;
    width: 100%;
}
footer .right > li > ul li{
    width: 100%;
}
footer .right > li > ul li a{
    width: 100%;
    font-size: 15px;
    line-height: 30px;
}


footer .footer{
    color:#9C9C9C;
    text-align: left;
    margin: 60px 0px 40px;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}



footer .footer ul{
    margin-bottom: 10px;
}
footer .footer ul li{
    padding-right: 14px;
    position: relative;
}
footer .footer ul li:after{
    content: "";
    width: 1px;
    height: 14px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
footer .footer ul li:last-child:after{
    content: none;
}



@media all and (max-width:1200px){
    
    
    footer .flex{
        flex-direction: column;
        align-items: flex-start;

    }
    footer .left,
    footer .right{
        margin-bottom: 40px;
    }
    
    
    main .shop_list{
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    
}
@media all and (max-width:1000px){
    
    header{
        background-color: transparent;
        padding: 6px 0px;
    }
    
    html[direction = "down"][menu = "true"] header{
        transform: none;
    }

    header #logo{
        margin: 0px;
        padding: 0px;
    }
    header #logo h1{
        background-size: 120px;
    }
    

}


@media all and (max-width:800px){
    
    main .shop_list{
        grid-template-columns: 1fr 1fr;
    }
    
}



@media all and (max-width:600px){

    footer .left{
        margin-bottom: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    
}











