/* -------- sub-apply -------- */
/* 본문 스타일 */
section .inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section .inner .tit {
    font-size: 1.4rem;
    font-weight: 600;
}

.writeBox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.writeBox .module_t {
    display: flex;
    flex-direction: column;

    gap: 8px;
    font-weight: 600;
}

.writeBox .module_t .caption {
    font-weight: 400;
    font-size: 0.8rem;

    color: var(--Primary);
}

.writeBox .module_t .scaption {
    font-weight: 400;
    font-size: 0.8rem;

    color: var(--Greyscale6);
}

.writeBox.bb {
    padding-bottom: 24px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--Greyscale4);
}

.module_w {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.module_w .flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 8px;
}

.module_w .inputField > input {
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--Greyscale4);
}

.zipcode {
    display: block;
    
    padding: 12px 16px;
    box-sizing: border-box;
    border-radius: 8px;

    white-space: nowrap;
    background-color: var(--Primary);
    color: white;
}

.module_w .radioBox {
    display: flex;
    flex-direction: row;
    gap: 16px;
}


.inputField input.nop {
    width: 80px;
}

.writeWrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.writeWrap .writetit {
    margin-top: 16px;
    font-weight: 600;
}

/* 셀렉트박스 */
.selectWrap {
    width: 100%;
}

.selectWrap .selectBox {
    width: 100%;
    padding: 12px 14px;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--Greyscale4);
    box-sizing: border-box;

    /* color: var(--Greyscale6); */
    background: #fff url(../images/common/ico_arrow_drop_down.svg) right center no-repeat;
}

.selectWrap .selectBox .option {
    color: var(--Greyscale6);
    font-size: 0.9rem;
}

.selectWrap.disabled .selectBox {
    background-color: var(--Greyscale3);
}


/* 추가 업로드 버튼 */
.btnWrap {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
}

.addBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 180px;
    position: relative;

    padding: 16px 24px;
    border-radius: 8px;
    border: 2px solid var(--Primary);
    box-sizing: border-box;

    font-weight: 600;
    color: var(--Primary);
}

/* 파일 업로드 인풋 */
.uploadfield {
    display: flex;
    flex-direction: column;
    gap: 24px;

    font-size: 0.9rem;
}

.uploadfield ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--Stroke);
    box-sizing: border-box;
}

.uploadfield ul li label {
    padding: 4px 8px;
    border-radius: 4px;
    box-sizing: border-box;

    color: white;
    background-color: var(--Primary);
}

input[type="file"] {
    position: absolute;
    margin: -1px;
    width: 1px;
    height: 1px;
    font-size: initial;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.uploadfield ul li span {
    display: block;
    width: 100%;
    padding: 4px 8px;
    box-sizing: border-box;
    color: var(--Greyscale6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-delete {
    width: 32px;
    height: 32px;

    padding: 4px;
    border: 1px solid var(--Primary);
    border-radius: 4px;
    box-sizing: border-box;

    background: url(../images/common/ico_delete_primary.svg) center no-repeat;
}

/* secton sc-note */
.sc-note .inner {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 32px;
    box-sizing: border-box;

    border: 1px solid var(--Greyscale4);
    border-radius: 16px;
}

.sc-note .inner .noteBtn {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;

    font-weight: 600;
    background-color: var(--subcolor1);
}

.sc-note .inner .noteBtn a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    color: white;
}

/* secton sc6 */
.personalInfoBox {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 24px;
    border: 1px solid var(--Stroke);
    border-radius: 16px;
    box-sizing: border-box;
}

.personalInfo {
    padding: 16px;
    border: 1px solid var(--Stroke);
    border-radius: 16px;
    box-sizing: border-box;
    background-color: var(--Greyscale0);

    font-size: 0.9rem;
    overflow-y: scroll;
}

.personalInfo.fixed-h {
    height: 320px;
}

.personalInfoBox .checkBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;

    font-size: 0.9rem;
}

input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--Primary);
    box-sizing: border-box;

    position: relative;

    appearance: none;
    border-radius: 2px;
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    color: #fff;
    background: url(/static/images/common/ico_check.svg) center / contain no-repeat;
}

.agree {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 24px 0;
    box-sizing: border-box;

    text-align: center;
    color: var(--Primary);
}

.submitbtnWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    width: 100%;

    margin-top: 24px;
}

.submitbtnWrap button {
    width: 100%;
    padding: 16px 0;
    box-sizing: border-box;
    border-radius: 8px;

    font-weight: 600;
    color: white;
    background-color: var(--Primary);
}

.submitbtnWrap .cancle {
    border: 2px solid var(--Primary);
    color: var(--Primary);
    background-color: white;
}

.datepicker {
    position: relative;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--Greyscale4);
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .coninner {
        width: 100%;
        padding: 56px 16px;
    }

    .addBtn {
        width: 150px;

        padding: 12px;
        border-radius: 8px;
        border: 2px solid var(--Primary);
        box-sizing: border-box;

        font-size: 0.9rem;
        font-weight: 600;
        color: var(--Primary);
    }

    section .inner .tit {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    section .inner .tit {
        font-size: 1rem;
    }
}


/* -------- sub-adjustment -------- */

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tit-caption {
    display: block;

    font-size: 0.8rem;
    color: var(--Primary);
}