#sub_content .inner.customer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customerTitle{
    font-weight: 800;
    font-size: 44px;
    color: var(--color-basicBlack);
    margin-bottom: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
}

.custormer__ul{
    width: 472px;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #d7d7d7;
    padding: 0;
    margin: 30px 0;
}

.custormer__ul li{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    color: #a8a8a8;
}

.custormer__ul li.active{
    color: #3c4096;
}

.custormer__ul li.active::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -2px;
    background-color: #3c4096;
}

.custormer__inputForm{
    width: 100%;
    height: auto;
}

.custormer__contents{
    width: 472px;
    height: auto;
}

.custormer__contents > div{
    display: none;
}

.custormer__contents > div:nth-child(1){
    display: block;
}

.custormer__contents input{
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.custormer__contents input:nth-child(n+2){
    margin-top: 35px;
}

.custormer__contents input:focus{
    outline: none;
}

.custormer__contents input::placeholder{
    color: #a8a8a8;
}

.custormer__contents > div p{
    font-size: 16px;
    font-weight: 500;
    color: #6a6a6a;
    margin-top: 35px;
    line-height: 30px;
    text-align: center;
    white-space: nowrap;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin-bottom: 0px;
    width: 560px;
}

.custormer__contents .button{
    width: 100%;
    height: 60px;
    background-color: #3c4096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}

.custormer__contents .button:first-of-type{
    margin-top: 50px;
}

.custormer__contents .button.btn-w{
    background-color: #fff;
    border: 1px solid #3c4096;
    color: #3c4096;
}

.nomember__code{
    font-size: 28px;
    font-weight: 700;
    color: #3c4096;
}

.nomember__text{
    font-size: 20px;
    font-weight: 500;
    color: #1e1b1b;
    margin-top: 10px;
    margin-bottom: 25px;
}

.inform__text{
    font-size: 28px;
    font-weight: 700;
    color: #1e1b1b;
    text-align: center;
}

.inform__text br{
    display: none;
}

.loading__wrap{
    width: 400px;
    height: 8px;
    margin: 30px auto 55px;
    position: relative;

}

.loading__gauge{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.loading__gauge li{
    width: 100%;
    height: 100%;
}

.loading__gauge li:nth-child(1){ background-color: #ffcd29; }
.loading__gauge li:nth-child(2){ background-color: #f58632; }
.loading__gauge li:nth-child(3){ background-color: #ec2e37; }
.loading__gauge li:nth-child(4){ background-color: #3c4096; }

.loading__hide{
    position: absolute;
    width: auto;
    height: 100%;
    background-color: #eaeaea;
    top: 0;
    right: 0;
    transition: ease .3s;
    display: block;
}

.inform__area{
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.inform__area img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
}

.inform__area p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}








/* media */
@media screen and (max-width: 1024px){
    .inform__area{
        height: 500px;
    }

    .inform__area p{
        font-size: 34px;
    }
}

@media screen and (max-width: 768px){
    .nomember__code{
        font-size: 24px;
    }

    .nomember__text{
        font-size: 16px;
    }

    .inform__text br{
        display: block;
    }

    .inform__area{
        height: 350px;
    }

    .inform__area p{
        font-size: 25px;
    }

    .inform__text{
        font-size: 24px;
    }
}

@media screen and (max-width: 645px){
    .customerTitle{
        font-size: 8.5vw;
    }
}

@media screen and (max-width: 560px){
    .custormer__ul{
        width: 100%;
    }

    .custormer__contents{
        width: 100%;
    }

    .custormer__contents > div p{
        width: 100%;
        white-space: inherit;
        font-size: 14px;
        line-height: 22px;
    }

    .custormer__contents .button{
        height: 50px;
        font-size: 16px;
    }

    .custormer__contents .button:first-of-type{
        margin-top: 30px;
    }

    .custormer__ul{
        height: 50px;
        margin: 40px 0;
    }

    .custormer__ul li{
        font-size: 18px;
    }
}

@media screen and (max-width: 460px){
    .loading__wrap{
        margin: 30px 0;
        width: 100%;
        padding: 0 10px;
    }

    .loading__hide{
        right: 10px;
    }
}