* {
    box-sizing: border-box;
}

.span-br {
    display: block;
}

.span-mobile-br {
    display: inline;
}

.modal-wrapper {
    position: relative;
    height: 100vh;
    background-color: #f9f9f9;
    z-index: 1100;
    overflow: hidden;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
}

.modal-wrapper>h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    background-color: #0057a6;
    word-break: keep-all
}

.modal-area {
    display: block;
    padding-top: 20px;
    height: calc(100vh - 80px);
    background-color: #fff;
}


.modal-box {
    height: calc(100vh - 201px);
    background-color: #f9f9f9;
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #ddd;
}

.modal-reslut-wrapper {
    margin-top: 30px;
    height: auto;
}

.modal-reslut-area {
    max-height: calc(100vh - 420px);
    overflow-x: hidden;
    overflow-y: auto;
    border-top: 2px solid #313131;
    border-bottom: 1px solid #cccccc;
}


.modal-wrapper .input-search-wrapper>input[type="search"] {
    width: 100%;
    height: 45px;
    font-size: 16px;
}

.modal-wrapper .input-search-wrapper>input[type="search"]::placeholder {
    color: #a1a1a1;
    font-weight: 300;
}


/* 표 */

.table-type01 {
    display: block;
}

.table-type01 table {
    position: relative;
}

.table-type01 table thead th {
    position: sticky;
    top: 0;
    padding: 10px;
    background: #f5f5f5;
    color: #424242;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    z-index: 10;
}


.table-type01 table thead th:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5
}

.table-type01 table thead th:last-child,
.table-type01 table tbody td:last-child,
.table-type01 table tfoot td:last-child {
    border-right: none;
}

.table-type01 table thead th:first-child,
.table-type01 table tbody th:first-child,
.table-type01 table tbody td:first-child,
.table-type01 table tfoot td:first-child {
    border-left: none !important;
}

.table-type01 table tbody th {
    padding: 10px;
    background-color: rgba(255, 230, 78, .1);
    color: #424242;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.table-type01 table tfoot th,
.table-type01 table tfoot td {
    padding: 10px;
    color: #424242;
    font-size: 16px;
    line-height: 24px;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 700;
    text-align: center;
}

.table-type01 table tbody td {
    padding: 10px;
    background: #ffffff;
    color: #424242;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.table-type01 table tbody tr:last-child th,
.table-type01 table tbody tr:last-child td {
    border-bottom: 0;
}


.input-search-wrapper {
    position: relative;
    padding-right: 69px;
}

.input-search-wrapper>input[type="text"],
.input-search-wrapper>input[type="search"] {
    width: 100%;
}

.input-search-wrapper>button {
    position: absolute;
    top: 0;
    right: 0;
    width: 69px;
    height: 100%;
    background-color: #0a4594;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.25px;
}


.input-radio-wrapper {
    display: inline-block;
    vertical-align: middle;
}

.input-radio-area {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
}

.input-radio-area:last-child {
    margin-right: 0;
}

.input-checked-wrapper.ratio,
.input-radio-wrapper.ratio {
    display: block;
}

.input-checked-wrapper.ratio:after,
.input-radio-wrapper.ratio:after {
    content: "";
    clear: both;
    display: block;
}

.input-checked-wrapper.ratio .input-checked-area,
.input-radio-wrapper.ratio .input-radio-area {
    float: left;
    margin-left: 0;
}

.input-checked-wrapper.ratio.depth2 .input-checked-area,
.input-radio-wrapper.ratio.depth2 .input-radio-area {
    width: 50%;
}

.input-checked-wrapper.ratio.depth3 .input-checked-area,
.input-radio-wrapper.ratio.depth3 .input-radio-area {
    width: 33.33%;
}

.input-checked-wrapper.ratio.depth4 .input-checked-area,
.input-radio-wrapper.ratio.depth4 .input-radio-area {
    width: 25%;
}

.input-checked-wrapper.ratio.depth5 .input-checked-area,
.input-radio-wrapper.ratio.depth5 .input-radio-area {
    width: 20%;
}

.input-radio-area input[type="radio"] {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 100px;
    white-space: nowrap;
    opacity: 0;
}

.input-radio-area input[type="radio"]+label {
    display: block;
    padding-left: 28px;
    margin: 0 !important;
    color: #999999;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    letter-spacing: -0.25px;
}

.input-radio-area input[type="radio"]+label:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-image: url(../img/icon/icon_radio02.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 18px 36px;
}

.input-radio-area input[type="radio"]:checked+label:before {
    background-position: 0 -18px;
}

.input-radio-area.only input[type="radio"]+label {
    padding-left: 18px;
    text-indent: -5000rem;
    margin: 0 auto;
    width: auto !important;
}

.input-radio-wrapper+input[type="text"] {
    margin-left: 15px
}

.word-type01 {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
    color: #666666;
    word-break: keep-all
}


.point-color01 {
    color: #1a7ad9 !important
}

.point-color02 {
    color: #29a44e !important
}

.point-color03 {
    color: #d82810 !important
}

.point-color04 {
    color: #666666 !important
}

.point-color05 {
    color: #e61111 !important
}

.point-color06 {
    color: #1a7ad9 !important
}

.word-light {
    font-weight: 300 !important
}

.point-important {
    color: #ff0000 !important
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center !important;
}

.title-type01 {
    position: relative;
    padding-left: 21px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    font-weight: 700;
    background-image: url(../img/bul/bul_title01.png);
    background-repeat: no-repeat;
    background-size: 9px 21px;
    background-position: left 3px;
    word-break: keep-all;
}

.title-type02 {
    position: relative;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    color: #424242;
    font-weight: 500;
    word-break: keep-all;
}


.word-notice {
    position: relative;
    padding-left: 15px;
    color: #7c8e9f;
    font-size: 14px;
    line-height: 22px;
    word-break: keep-all
}

.word-notice:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "※";
}

.title-wrapper {
    display:flex;
    justify-content: space-between;
}

.title-type02  + .modal-reslut-area {
    max-height: calc(100vh - 450px);
}

.btns-area {
    margin-top: 30px;
}

.modal-area02 {
    min-height: 300px;
    padding: 20px;
}

/* form wrapper */

.form-wrapper {
    border-top: 2px solid #333333;
}

.form-wrapper dl {
    position: relative;
    padding-left: 150px;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd
}

.form-wrapper dl dt {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    font-weight: 500;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.25px;
}

.form-wrapper dl dd {
    padding: 20px 20px;
    background: #fff;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.form-wrapper dl dd+dd {
    border-top: 1px solid #dfdfdf
}

.form-wrapper dl dd>p {
    min-height: 45px;
    line-height: 45px;
    word-break: keep-all;
}

.form-wrapper dl dd input,
.form-wrapper dl dd select {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 40px !important;
    font-size: 16px;
}

.form-wrapper dl dd>input::placeholder {
    text-align: left;
    font-size: 16px;
}

.gray-box01 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
    padding: 33px 48px;
    background-color: #f6f4f5;
}

.gray-box01 > p {
    display: flex;
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    text-align: left;
    flex-direction: column;

}

.gray-box01 > p > span {
   display: block;
}

@media only all and (max-width: 1023px) {
    html {
        font-size: 1rem;
        /* 기본베이스 폰트사이즈 24px */
        line-height: 1rem;
        /* 기본베이스 line-height 사이즈 24px */
    }

    .span-br {
        display: inline;
    }

    .span-mobile-br {
        display: block;
    }

    .modal-wrapper {
        height: auto;
        box-shadow: none;
    }

    .modal-wrapper>h2 {
        height: 5rem;
        padding: 0 1.25rem;
        font-size: 1.25rem;
        line-height: 1.875rem;
    }

    .modal-area {
        padding-top: 1.25rem;
        height: auto;
    }


    .modal-box {
        height: auto;
        margin-top: 1.25rem;
        padding: 1.25rem;
    }

    .modal-reslut-wrapper {
        margin-top: 1.875rem;
    }

    .modal-reslut-area {
        max-height: calc(100vh - 30rem);
    }


    .modal-wrapper .input-search-wrapper>input[type="search"] {
        height: 2.833rem;
        font-size: 1rem;
    }

    /* 표 */
    .table-type01 table thead th {
        padding: 0.625rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .table-type01 table tbody th {
        padding: 0.625rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .table-type01 table tfoot th,
    .table-type01 table tfoot td {
        padding: 0.625rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .table-type01 table tbody td {
        padding: 0.625rem;
        font-size: 0.916rem;
        line-height: 1.125rem;
    }

    .input-search-wrapper {
        padding-right: 4.166rem;
    }

    .input-search-wrapper>button {
        width: 4.166rem;
        font-size: 1rem;
    }

    .input-radio-area {
        margin-right: 3.125rem;
    }

    .input-radio-area input[type="radio"]+label {
        padding-left: 1.75rem;
        font-size: 1.125rem;
        line-height: 1.125rem;
    }

    .input-radio-area input[type="radio"]+label:before {

        width: 1.125rem;
        height: 1.125rem;
        margin-top: -0.5625rem;
        background-size: 1.125rem 2.25rem;
    }

    .input-radio-area input[type="radio"]:checked+label:before {
        background-position: 0 -1.125rem;
    }

    .input-radio-area.only input[type="radio"]+label {
        padding-left: 1.125rem;
    }

    .input-radio-wrapper+input[type="text"] {
        margin-left: 1rem
    }

    .word-type01 {
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .title-type01 {
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
        background-size: 0.375rem 0.875rem;
        background-position: left 0.291rem;
    }

    .title-type02 {
        margin-bottom: 0.333rem;
        font-size: 1.125rem;
        line-height: 1.5rem;
    }


    .word-notice {
        padding-left: 1rem;
        font-size: 0.875rem;
        line-height: 1.375rem;
    }



    .title-type02  + .modal-reslut-area {
        max-height: calc(100vh - 31.666rem)
    }

    .btns-area {
        margin-top: 1.875rem;
    }

    .modal-area02 {
        min-height: auto;
        padding: 1.25rem;
    }

    /* form wrapper */

    .form-wrapper dl {
        padding-left: 7.5rem;
    }

    .form-wrapper dl dt {
        width: 7.5rem;
        padding: 0 1.25rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .form-wrapper dl dd {
        padding: 1.25rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .form-wrapper dl dd>p {
        min-height: 2.5rem;
        line-height: 2.5rem;
    }

    .form-wrapper dl dd input,
    .form-wrapper dl dd select {
        height: 2.5rem !important;
        font-size: 1rem;
    }

    .form-wrapper dl dd>input::placeholder {
        font-size: 1rem;
    }

    .gray-box01 {
        min-height: 12.5rem;
        padding: 1.25rem;
    }

    .gray-box01 > p {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}



@media only all and (max-width: 767px) {
    html {
        font-size: 1.25rem;
        /* 기본베이스 폰트사이즈 20px */
        line-height: 1.25rem;
        /* 기본베이스 line-height 사이즈 20px */
    }
}

@media only all and (max-width: 639px) {
    html {
        font-size: 1rem;
        /* 기본베이스 폰트사이즈 16px */
        line-height: 1rem;
        /* 기본베이스 line-height 사이즈 16px */
    }
}

@media only all and (max-width: 567px) {
    html {
        font-size: 0.875rem;
        /* 기본베이스 폰트사이즈 14px */
        line-height: 0.875rem;
        /* 기본베이스 line-height 사이즈 14px */
    }
}

@media only all and (max-width: 359px) {
    html {
        font-size: 0.8125rem;
        /* 기본베이스 폰트사이즈 13px */
        line-height: 0.8125rem;
        /* 기본베이스 line-height 사이즈 13px */
    }
}