section.join{
    padding: 270px 0 250px;
    height: auto;
}

section.join .inner{
    max-width: 540px;
    padding: 0 20px;
}

section.view .inner{
    padding: 270px 70px 250px;
}

section.view .inner .red__btn{
    max-width: 540px;
    margin: 75px auto 0;
    padding: 0 20px;
}

section.login .inner{
    max-width: 540px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.auth__logo{
    width: 128px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.title{
    font-size: 28px;
    font-weight: 800;
    color: var(--white-color);
    margin: 40px 0 30px;
    text-align: center;
}

.title.id__result{
    color: #727272;
    line-height: 42px;
    font-weight: 500;
}

.title .user__name{
    color: var(--white-color);
}

.text__wrapper{
    width: 100%;
    margin-top: 10px;
}

.text__wrapper .text__wrap{
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    border: 1px solid var(--input-line);
    border-radius: 5px;
    height: 160px;
    overflow: auto;
}

.chk__checked{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.chk__checked .check_wrap{
    display: flex;
    align-items: center;
}

.chk__checked input[type="checkbox"]{
    display: none;
}

.chk__checked input[type="checkbox"] + label{
    cursor: pointer;
    border: 0;
}

.chk__checked input[type="checkbox"] + label:before{
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    border: 1px solid var(--input-line);
    vertical-align: middle;
    border-radius: 5px;
}

.chk__checked input[type="checkbox"]:checked + label:before{
    content: "";
    background-color: var(--point-color);
    background-image: url(/image/img_black_chk.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.chk__checked input[type="checkbox"] + label > span{
    vertical-align: middle;
    padding-left: 7px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    line-height: 1.2;
    position: relative;
}

.join__btn{
    width: 100%;
    height: 56px;
}

.login__btn{
    width: 100%;
    height: 56px;
}

.join__btn.line__btn{
    width: 100%;
    height: 56px;
    margin-top: 40px;
}

.login__list{
    display: flex;
    gap: 20px;
    width: fit-content;
    margin-top: 10px;
}

.login__list > li{
    width: fit-content;
    height: auto;
    position: relative;
}

.login__list > li::after{
    content: "";
    width: 1px;
    height: 14px;
    background-color: #4B4B4B;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.login__list > li:first-of-type:after{
    display: none;
}

.login__list > li a{
    width: fit-content;
    height: auto;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    display: block;
    text-align: center;
}

.btn__wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.btn__wrap .join__btn.line__btn{
    margin: 0;
}

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

.question__title{
    padding: 28px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #2d2d2d;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.question__title > p{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    width: calc(100% - 125px);
    padding-right: 15px;
    line-height: 30px;
}

.question__title > span{
    font-size: 18px;
    font-weight: 400;
    color: #4f4f4f;
    min-width: 125px;
}

.question__contents{
    min-height: 225px;
    padding: 28px 0;
    border-bottom: 1px solid #2d2d2d;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.answer__area{
    width: 100%;
    margin-top: 10px;
    background-color: #1a1a1a;
    padding: 28px 35px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
}

.input__wrap.select{
    position: relative;
    min-height: 56px;
    height: inherit;
}

.input__wrap.select:has(input:read-only).select{
    position: relative;
    min-height: 56px;
    height: inherit;
}

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

.select + .select{
    margin-top: 10px;
    display: none;
}

.select .cont__select{
    width: 100%;
    height: auto;
    position: relative;
}

.select .cont__select > button {
    width: 100%;
    box-sizing: border-box;
}

.select .cont__select > button p{
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    text-align: left;
    position: relative;
}

.select .cont__select > button p::after{
    content: "";
    background: url(/image/img_white_arr.png) #262626;
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    width: 38px;
    height: 38px;
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    transition: ease 0.3s;
}

.select.on .cont__select > button p::after{
    transform: translateY(-50%) rotate(180deg);
}

.select.btn__order .cont__select .list.channel__list{
    width: 100%;
    height: auto;
    left: 0;
    position: relative;
    z-index: 2;
    display: block;
    padding: 20px 0;
    display: none;
    border-top: 1px solid var(--gray-color);
    margin-top: 25px;
}

.select.btn__order .cont__select .list.channel__list div{
    display: grid;
    grid-template-columns: 1fr;
}

.select.btn__order .cont__select .list.channel__list button{
    border: none;
    height: auto;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    text-align: center;
    transition: ease .3s;
    text-align: left;
}

.select.btn__order .cont__select .list.channel__list button + button{
    margin-top: 10px;
}

.select.btn__order .cont__select .list.channel__list button:hover{
    color: #574d3f;
}



@media screen and (max-width: 1024px){
    section.join {
        padding: 150px 0;
    }
}

@media screen and (max-width: 768px){
    .inner{
        padding: 0 40px !important;
    }

    section.view .inner{
        padding: 150px 40px !important;
    }

    .question__title{
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .question__title > p{
        padding: 0;
        width: 100%;
    }

    .question__title > span{
        width: 100%;
        text-align: right;
    }
}

@media screen and (max-width: 680px){
    section.login{
        margin-top: -5%;
    }

    section.join{
        margin-top: -5%;
        padding: 130px 0;
    }

    .title{
        margin: 30px 0 20px;
        font-size: 24px;
    }

    .question__title > p,
    .question__title > span,
    .question__contents,
    .answer__area{
        font-size: 16px;
    }

    .answer__area{
        padding: 20px;
    }
}

@media screen and (max-width: 500px){
    section.join .inner{
        padding: 0 20px !important;
    }

    section.view .inner{
        padding: 80px 20px !important;
    }

    section.join{
        margin-top: -10%;
    }

    section.login{
        margin-top: -10%;
    }

    section.login .inner{
        padding: 0 20px !important;
    }

    .title.id__result{
        font-size: 20px;
        line-height: 30px;
    }
}