@charset "UTF-8";


/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
    box-sizing: border-box;
    word-break: keep-all;
}
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* 공통 */
body{
    font-family: 'Pretendard', serif;
    font-weight: 300;
    color: #1E2124;
    line-height: 1.5;
    font-size: 17px;
    accent-color: #256EF4;
}

.wrapper{
    width: 100%;
    max-width: 1200px;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 50px 30px;
    margin: 0 auto;
}
section{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
section h3{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

section h4{
    display: flex;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}
section h4::before{
    content: url(../images/ico-list-style.svg);
    display: inline-block;
    width: 25px;
}
section h4:has( ~ ul[class*="depth"]){
    border-bottom: 1px solid #464C53;
    padding-bottom: 15px;
}
section h5{
    font-size: 20px;
    font-weight: 700;
    color: #464C53;
}
section .txt-red{
    color: #D63D4A;
}
section strong{
    font-weight: 700;
}
span:has(.tooltip-btn) {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tooltip-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    font-size: 15px;
    color: #096AB3;
    cursor: pointer;
}
span:has(.tooltip-box.active) .tooltip-btn::after{
    content: '\e5de';
    font-family: 'Material Icons';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translateY(-50%);
    color: #333;
}

.tooltip-box {
    position: absolute;
    left: calc(50% + 15px);
    top: 50%;
    transform: translateY(-50%);
    display: none;
    padding: 10px;
    font-size: 14px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    line-height: 1.4;
    z-index: 20;
    width: max-content;
    max-width: 300px;
}

.tooltip-box.active {
    display: block;
}


section .txt-box1{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
section .txt-box1 > h5{
    width: fit-content;
    background-image: linear-gradient(rgba(255, 255, 255, 0) 70%, #ECF2FE 30%);
}
section .txt-box2{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
section .txt-box2 > li{
    position: relative;
    padding-left: 13px;
}
section .txt-box2 > li::before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    display: inline-block;
    width: 5px;
    height: 15px;
    background-color: #50759D;
    border-radius: 100px;
}


.ref-mark, .foot-mark{
    font-weight: 300;
    position: relative;
    padding-left: 15px;
}
.ref-mark::before, .foot-mark::before{
    position: absolute;
    top: 0;
    left: 0;
}
.ref-mark::before{
    content: '※';
}
.foot-mark::before{
    content: '*';
}


/* 공고문 전문 확인용 페이지 */
.head-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.head-area .title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.head-area .title > span{
    font-size: 15px;
    color: #8A949E;
}
.head-area .desc{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 50px;
    background-color: #ECF2FE;
    border-radius: 10px;
}
.head-area .desc > p{
    position: relative;
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    font-weight: 500;
}
.head-area .desc > p::before{
    content: '\e244';
    font-family: 'Material Icons';
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(50%, -50%) rotate(180deg);
    font-size: 50px;
    color: rgba(0, 0, 0, 0.1);
}
.head-area .desc > p::after{
    content: '\e244';
    font-family: 'Material Icons';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgba(0, 0, 0, 0.1);
}
.head-area .desc span{
    font-weight: 500;
}
.head-area .desc .con-wrap{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.head-area .desc .span-wrap span::after{
    /* content: '|'; */
    color: rgba(0, 0, 0, 0.2);
    padding: 0 10px;
}
.head-area .desc .span-wrap span:last-child::after{
    content: none;
    padding: 0;
}


.text-area a{
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.text-area a::after{
    content: '\e89e';
    font-family: 'Material Icons Outlined';
}
.text-area li{
    position: relative;
}
.text-area ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-area .depth-01 > li{
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
}
.text-area .depth-01 > li::before{
    content: '\ef4a';
    font-family: 'Material Icons Outlined';
    font-size: 15px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 4px;
    left: 0;
}
.text-area .depth-02{
    font-size: 17px;
    margin-top: 5px;
}

.text-area table{
    margin-top: 30px;
    border-top: 3px solid #1E2124;
    border-bottom: 3px solid #1E2124;
}
.text-area table:has(.sr-only){
    margin-top: 0;
}
.text-area table caption{
    padding-bottom: 15px;
}
.text-area table :where(thead, tbody) tr :where(th, td){
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}
.text-area table :where(thead, tbody) tr :where(th, td):last-child{
    border-right: none;
}
.text-area table :where(thead, tbody) tr th{
    background-color: #ECF2FE;
    font-weight: 500;
}
.text-area table :where(thead, tbody) tr :where(th, td) span{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.btn-area{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.btn{
    text-decoration: none;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.25s ease-in-out;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.btn-area .btn-blue{
    background-color: #50759D;
    color: #fff;
}
.btn-area .btn-blue:hover{
    background-color: color-mix(in oklab, #50759D 90%, #000 10%);
}
.btn-area .btn-blue:active{
    background-color: color-mix(in oklab, #50759D 80%, #000 20%);
}
.btn-area .btn-line{
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #464C53;
    background-color: #fff;
}
.btn-area .btn-line:hover{
    background-color: color-mix(in oklab, #fff 95%, #000 5%);
}
.btn-area .btn-line:active{
    background-color: color-mix(in oklab, #fff 90%, #000 10%);
}


/* 참가신청서 작성 페이지 */
.application-form .required-mark::before{
    content: '*';
    color: #D63D4A;
    margin-right: 5px;
}
.application-form h3{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}
.application-form table{
    margin-top: 10px;
    border-top: 2px solid #1E2124;
    border-bottom: 2px solid #1E2124;
    border-collapse: unset;
}
.application-form table :where(thead, tbody) tr :where(th, td){
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    padding: 15px 10px;
}
.application-form table :where(thead, tbody) tr th span{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.application-form table :where(thead, tbody) tr :where(th, td):has(input[type=text]){
    padding: 10px;
}
.application-form table :where(thead, tbody) tr :where(th, td):last-child{
    border-right: none;
}
.application-form table :where(thead, tbody) tr td:has(input:disabled){
    background-color: #e9e9e9;
    color: #8A949E;
}
.application-form table :where(thead, tbody) tr th{
    
    background-color: #ECF2FE;
    font-weight: 500;
}
.application-form table .txt-warning{
    color: #D63D4A;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding-top: 5px;
}
.application-form table .txt-warning::before{
    content: '\e002';
    font-family: 'Material Icons Round';
}
.application-form table .input-group{
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px 10px;
    flex-wrap: wrap;
}
.application-form table .input-group:has(textarea){
    justify-content: space-between;
}
.application-form table .input-group.several{
    margin-top: 10px;
}
.application-form table .input-group.several:first-child{
    margin-top: 0;
}
.application-form table .input-group.several label{
    font-size: 14px;
}
.application-form table :where(.radio-item, .checkbox-item){
    display: flex;
    align-items: center;
    gap: 10px;
}
.application-form table :where(.radio-item, .checkbox-item) input{
    margin: 0;
}
.application-form table :where(.radio-item, .checkbox-item) input:checked ~ label{
    color: #256EF4;
}
.application-form table :where(.radio-item, .checkbox-item) input:disabled ~ label{
    color: #8A949E;
}
.application-form table .etc input[type=text]{
    display: none;
}
.application-form table .etc:has(input[type=checkbox]:checked) input[type=text]{
    display: inline-block;
}
.application-form table .etc input[type=text] ~ label{
    display: none;
}
.application-form table :where(input[type=text], textarea){
    width: 100%;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    padding: 15px 10px;
    border-radius: 3px;
    font-family: 'Pretendard';
}
.application-form table textarea{
    width: 100%;
    height: 100px;
    resize: none;
    overflow-y: auto;
    
}
.application-form table .txt-counter{
    margin-top: 4px;
    font-size: 14px;
    color: #8A949E;
    margin-left: auto;
}
.application-form table :where(input[type=text], textarea):disabled{
    background-color: #f1f1f1;
}
.application-form table :where(.ref-mark, .foot-mark){
    font-size: 15px;
    line-height: 1;
    color: #096AB3;
}
.application-form table .text-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.application-form table .text-area:last-child{
    border-bottom: none;
}
.application-form table .text-area h6{
    font-size: 17px;
    font-weight: 700;
}
.application-form table .text-area .depth-01{
    gap: 0;
    background-color: #f1f1f1;
    padding: 20px 30px;
    border-radius: 5px;
}
.application-form table .text-area .depth-01 li{
    font-size: 17px;
    font-weight: 300;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.application-form table .text-area .depth-01 li:last-child{
    border-bottom: none;
}
.application-form table .text-area .depth-01 li::before{
    content: none;
}
.application-form table .text-area .date{
    display: flex;
    gap: 10px;
    margin-left: auto;
}
.application-form table .text-area .applicant{
    flex-wrap: nowrap;
    margin-left: auto;
}
.application-form table .text-area .applicant *{
    white-space: nowrap;
}
.application-form table .text-area .txt{
    margin-left: auto;
}


/* 접수완료 안내 메시지 */
.done{
    height: 100%;
    align-items: center;
    gap: 50px;
    padding-top: 80px;
}
.done .reg-num{
    display: flex;
    gap: 5px;
}
.done .reg-num #regNum{
    font-weight: 500;
    color: #50759D;
}
.done img{
    width: 20%;
    max-width: 250px;
}
.done .con-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 30px 50px;
    border-radius: 10px;
    background-color: #ECF2FE;
}
.done .con-wrap p:first-child{
    font-size: 24px;
    font-weight: 700;
    color: #50759D;
}