@import url("./reset.css");
@import url("./font.css");
:root{
    --primary-color: #b1acff !important;
    --plan-bg: #f4f3ff;
    --footer-bg:#F6F6F6;
    --devider-1:#e7e7e7;
}
* {
    scrollbar-width: thin;           
    scrollbar-color: #191919 #f6f6f6;
  }
  
  *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  *::-webkit-scrollbar-track {
    background: #f6f6f6;
    border-radius: 4px;
  }
  
  *::-webkit-scrollbar-thumb {
    background: #191919;
    border-radius: 4px;
  }
  
  body::-webkit-scrollbar {
    opacity: 0;
  }
  
  body:hover::-webkit-scrollbar-thumb,
  body:active::-webkit-scrollbar-thumb,
  body:focus::-webkit-scrollbar-thumb {
    opacity: 1;
  }

html,
body {
  font-size: 16px;
  color: #191919;
  font-family: "Suit", sans-serif;
  font-weight: 400;
  line-height: 1;
}

*{
  max-width: 100%;
}
img{
    height: auto !important;
}

.inner {
  margin: 0 auto;
  padding:0 24px;
}
.inner-sm {
  padding:0 24px;
  margin:0 auto;
  max-width: 800px;
}

button {
  padding: 0;
}

.hidden {
  overflow: hidden;
}

.f-sub-title{
    font-size: 18px;
    line-height: 1.2em;
    letter-spacing: -0.04em;
    font-weight: 700;
}
.f-sub-title2{
    font-size: 17px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    font-weight: 500;
}
.f-table-title{
    font-size: 17px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    font-weight: 700;
}
.f-h-1{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1em;
    letter-spacing: -0.04em;
}
.f-h-2{
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3em;
    letter-spacing: -0.04em;
}
.f-h-3{
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: -0.03em;
}
.f-p-1{
    font-size: 15px;
    line-height: 1.6em;
    letter-spacing: -0.04em;
}
.f-price{
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2em;
}
.f-link{
    font-size: 16px;
    line-height: 1.4em;
    letter-spacing: -0.04em;
    font-weight: 700;
}


@media (min-width: 800px){
    .f-sub-title{
        font-size: 19px;
    }
    .f-h-1{
        font-size: 28px;
    }
    .f-h-2{
        font-size: 28px;
    }
    .f-h-3{
        font-size: 20px;
    }
}
@media (min-width: 1280px){
    .f-sub-title{
        font-size: 20px;
    }
    .f-table-title{
        font-size: 18px;
    }
    .f-h-1{
        font-size: 40px;
    }
    .f-h-2{
        font-size: 32px;
    }
    .f-h-3{
        font-size: 22px;
    }
    .f-p-1{
        font-size: 16px;
    }
    .f-price{
        font-size: 32px;
    }

}

body{
    padding-top: 73px;
}

/* header */
header {
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    z-index: 100;
    border-bottom: 1px solid var(--devider-1);
    transition: background-color 0.3s ease-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
header.open{
    background-color: #fff;
}
header .inner{
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    height: 72px;
}
header h1 a{
    display: flex;
    align-items: center;
    width: 180px;
    height: 56px;
    overflow: hidden;
}
header h1 img{
    display: block;
    max-width: 100%;
    height: auto !important;
    max-height: 100% !important;
    object-fit: cover;
}
header .header-right{
    display: flex;
    align-items: center;
}
header .header-right nav{
    display: none;
}
header .menu-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border:0;
    cursor: pointer;
    width: 32px;
    aspect-ratio: 1 / 1;
    background: transparent;
}
header .menu-btn span{
    width: 23px;
    height: 3px;
    background-color: #191919;
    border-radius: 3px;
    transition: opacity 0.3s ease-out;
}
header.open .menu-btn span:nth-child(1),
header.open .menu-btn span:nth-child(3){
    opacity: 0;
}
/* aside */
.aside-mask{
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 199;
    transition: 0.3s ease-out
}
.aside-mask.open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
aside{
    position: fixed;
    width: 100%;
    background-color: #fff;
    right:0;
    top:72px;
    bottom:0;
    z-index: 200;
    transform: translate(100%,0);
    border-top: 1px solid var(--devider-1);
}
.init aside{
    transition: 0.35s ease-out;
}
aside.open{
    transform: translate(0,0);
}
aside .aside-inner{
    height: calc(100% - 96px);
    overflow: auto;
    padding:24px;
    box-sizing: border-box;
}
aside .btn-close{
    background-color: transparent;
    border:0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin:0 0 0 auto;
}
aside .btn-close img{
    display: block;
}
aside .m-nav{
    display: flex;
    flex-direction: column;
}
aside .m-nav li .btn-link{
    border:0;
    cursor: pointer;
    background-color: transparent;
    width: 100%;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2em;
    padding:12px 0;
}
aside .m-nav .depth{
    padding:12px 0;
    display: none;
}
aside .m-nav .depth ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
aside .m-nav .depth a{
    display: block;
    color:#6B6B6B;
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 500;
    letter-spacing: -0.04em;
}
aside .aside-btm{
    position: absolute;
    left:0;
    bottom:0;
    width: 100%;
    box-sizing: border-box;
    padding:24px;
}
aside .btn-join{
    background-color: var(--primary-color);
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    border-radius: 24px;
}

/* footer */
#footer{
    background-color: var(--footer-bg);
    padding:28px 0 ;
    margin-bottom: 57px;
    border-top: 1px solid #BDBDBD;
}
#footer .footer-logo{
    width: 116px;
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#footer .footer-logo img{
    display: block;
    width: auto !important;
    height: auto !important;
}
#footer .footer-info address{
    font-size: 15px;
    line-height: 1.6em;
    letter-spacing: -0.05em;
    color:#6B6B6B;
}
#footer .footer-info ul.sns{
    display: flex;
    align-items: center;
    gap: 12px;
    padding:6px 0;
    margin:8px 0 20px;
}
#footer .footer-info ul.sns li{
    width: 26px;
}
#footer .footer-info ul.sns li a{
    display: block;
}
#footer .footer-info ul.sns li a img{
    width: 26px !important;
    height: 26px !important;
}
#footer .footer-info ul.sns li a i{
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
}
#footer .footer-info ul.sns li a i.icon-blog{
    background-image: url(../images/icon_blog.svg);
}
#footer .footer-info ul.sns li a i.icon-instagram{
    background-image: url(../images/icon_instagram.svg);
}
#footer .footer-info ul.sns li a i.icon-youtube{
    background-image: url(../images/icon_youtube.svg);
}
#footer .footer-info ul.sns li a i.icon-tistory{
    background-image: url(../images/icon_tistory.svg);
}
#footer .footer-info ul.sns li a i.icon-thread{
    background-image: url(../images/icon_thread.svg);
}
#footer .footer-info ul.sns li a i.icon-tiktok{
    background-image: url(../images/icon_tiktok.svg);
}
#footer img.n-telecom{
    display: block;
    margin:30px auto 0;
    width: 100px;
}
#footer .copyright{
    color:#B9B9B9;
    font-size: 15px;
    letter-spacing: -0.04em;
    line-height: 1.6em;
}
.float-btn{
    position: fixed;
    right:10px;
    bottom:70px;
    z-index: 100;
}
.float-btn a,
.float-btn img{
    display: block;
}
.float-btn img{
    border-radius: 100%;
    width: 52px;
}
.float-btn span{
    display: none;
}
#fixed-bar{
    position: fixed;
    left:0;
    bottom:7px;
    right:0;
    z-index: 2;
}
#fixed-bar ul{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    margin:0 10px;
}
#fixed-bar ul li{
    position: relative;
    width: calc((100% - 16px) / 3);
}

#fixed-bar ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 42px;
    border-radius: 8px;
    box-shadow: 0 2px 15px 0 rgba(0,0,0,0.2);
    background-color: #fff;
}
#fixed-bar ul li a span{
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: -0.04em;
}
#fixed-bar ul li a i{
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#fixed-bar ul li.first a{
    background-color:var(--primary-color);
    color:#fff;
}
#fixed-bar ul li .new{
    position: absolute;
    left:0;
    top:0;
    width: 22px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background-color: #FF0000;
    color:#fff;
    font-size: 12px;
    font-weight: 900;
    transform: translate(-5px,-8px);
    display: flex;
    align-items: center;
    justify-content: center;
}
#fixed-bar ul li a i.icon-check{
    width: 19px;
    height: 19px;
    background-image: url(../images/fixed_check_white.png);
}

#fixed-bar ul li a i.icon-chat{
    width: 18px;
    height: 19px;
    background-image: url(../images/fixed_chat.png);
}
#fixed-bar ul li a i.icon-search{
    width: 19px;
    height: 19px;
    background-image: url(../images/fixed_search.png);
}


@media (min-width:800px){
    .inner{
        padding:0 60px;
    }
    #footer{
        padding:40px 0;
        margin-bottom: 0;
    }
    #footer .inner{
        position: relative;
    }
    #footer .footer-logo{
        margin-bottom: 32px;
    }
    #footer .footer-info address br.m{
        display: none;
    }
    #footer .footer-info address br.tablet{
        display: block;
    }
    #footer img.n-telecom{
        position: absolute;
        right:60px;
        bottom:0;
        margin-top: 0;
    }


    .float-btn{
        bottom:40px;
        right: 16px;
    }
    #fixed-bar{
        bottom:40px;
        background-color: transparent;
        border:0;
    }
    #fixed-bar ul{
        gap: 11px;
        padding:0;
        width: 520px;
        margin:0 auto;
    }
    #fixed-bar ul li a{
        width: 166px;
        height: 52px;
    }
}

@media (min-width:1280px){
    body{
        padding-top: 89px;
    }
    .inner{
        width: 1280px;
        margin:0 auto;
        padding:0;
        box-sizing: border-box;
    }
    header h1{
        width: 84px;
    }
    header .inner{
        height: 88px;
    }
    header .header-right nav{
        display: block;
    }
    header .header-right nav ul{
        display: flex;
        align-items: center;
    }
    header .header-right nav ul li{
        position: relative;
    }
    header .header-right nav ul li a:not(.btn-join){
        display: block;
        width: 88px;
        text-align: center;
        font-size: 17px;
        letter-spacing: -0.01em;
        font-weight: 700;
        line-height: 53px;
    }
    header .header-right nav ul li .depth{
        position: absolute;
        left:50%;
        top:100%;
        transform: translate(-50%,0);
        width: 92px;
        border-radius: 12px;
        box-sizing: border-box;
        padding:16px 12px;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border:1px solid var(--devider-1);
    }
    .init header .header-right nav ul li .depth{
        transition: 0.3s ease-out;
    }
    header .header-right nav ul li:hover>.depth{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    header .header-right nav ul li .depth ul{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    header .header-right nav ul li .depth a{
        display: block;
        text-align: center;
        padding:7px 0;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.2em;
        letter-spacing: -0.01em;
        color:#6B6B6B;
        transition: color 0.3s ease-out;
    }
    header .header-right nav ul li .depth a:hover{
        color:var(--primary-color);
    }
    header .header-right .btn-join{
        border:1px solid var(--primary-color);
        background-color: var(--plan-bg);
        color:var(--primary-color);
        height: 48px;
        width: 128px;
        border-radius: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        line-height: 1.4em;
        letter-spacing: -0.04em;
        font-weight: 700;
        margin-left: 20px;
    }
    header .menu-btn{
        display: none;
    }
    aside{
        display: none;
    }
    #footer{
        margin-bottom: 0;
    }
    #footer .inner{
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 0 98px;
        flex-wrap: wrap;
    }
    #footer .footer-logo{
        margin-bottom: 0;
    }
    #footer .footer-info address br.m{
        display: none;
    }
    #footer .footer-info address br.tablet{
        display: block;
    }
    #footer img.n-telecom{
        position: absolute;
        right:0;
        bottom:initial;
        top:0;
    }
    #footer .footer-info ul.sns{
        margin-bottom: 0;
        margin-top: 14px;
        padding:6px 0;
    }
    #footer .footer-info ul.sns li a i{
        transition: background-image 0.3s ease-out;
    }
    #footer .footer-info ul.sns li a:hover i{
        background-image: url(../images/icon_blog_on.svg);
    }
    #footer .footer-info ul.sns li a:hover i.icon-instagram{
        background-image: url(../images/icon_instagram_on.svg);
    }
    #footer .footer-info ul.sns li a:hover i.icon-youtube{
        background-image: url(../images/icon_youtube_on.svg);
    }
    #footer .footer-info ul.sns li a:hover i.icon-tistory{
        background-image: url(../images/icon_tistory_on.svg);
    }
    #footer .footer-info ul.sns li a:hover i.icon-thread{
        background-image: url(../images/icon_thread_on.svg);
    }
    #footer .footer-info ul.sns li a:hover i.icon-tiktok{
        background-image: url(../images/icon_tiktok_on.svg);
    }
    #footer .copyright{
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        margin-top: 19px;
    }
    .float-btn{
        background-color: #F9E000;
        transition: all 0.3s ease-out;
        border-radius: 52px;
        width: 52px;
        overflow: hidden;
    }
    .float-btn:hover{
        width: 126px;
    }   
    .float-btn img{
        position: relative;
        z-index: 2;
    }
    .float-btn span{
        display: block;
        position: absolute;
        top:50%;
        right:17px;
        transform: translate(0,-50%);
        color:#3B1C1C;
        font-size: 16px;
        line-height: 1.4em;
        letter-spacing: -0.04em;
        font-weight: 700;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease-out;
    }
    .float-btn:hover span{
        opacity: 1;
    }


    #fixed-bar ul li a{
        width: 193px;
    }
    #fixed-bar ul li a span{
        font-size: 18px;
    }
}