.date-wrapper {
    position: relative;
    width: 250px;
}
.date-wrapper::before{
    /* content: ""; */
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
    background-color: rgb(255, 255, 255);
    border-left: 1px solid #DDDDDD;
    pointer-events: none;
}
.date-wrapper::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 100%;
    border-left: 1px solid #DDDDDD;
    box-sizing: border-box;
    border: 1px solid #ddd;
    pointer-events: none;
    background: #ffffff url(/images/user/icon_calendar_black.svg) no-repeat center center;
}

.date-wrapper input[type="date"] {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    background-color: #fff;
    color: #000;
    
    /* 브라우저 기본 아이콘 제거 */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    
    /* 오른쪽 아이콘 영역 확보 */
        background: #fff url("/images/user/icon_calendar_black.svg") no-repeat right 16px center;
        background-size: 20px;

    /* 텍스트 왼쪽정렬 */
    text-align: left;
}
input::-webkit-date-and-time-value {
  text-align: left;
}

/* 웹킷 브라우저에서 input 전체를 버튼처럼 */
.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: transparent;
  background: none;
  z-index: 2;
  cursor: pointer;
}

/* 필요시 clear, spin 버튼 제거 */
.date-wrapper input::-webkit-clear-button,
.date-wrapper input::-webkit-inner-spin-button {
  display: none;
}

@media (max-width: 1800px) {

}
@media (max-width: 1340px) {
    .date-wrapper::before{
        width: 45px;
    }
    .date-wrapper::after{
        width: 45px;
    }
}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {
    .date-wrapper::before{
        width: 40px;
    }
    .date-wrapper::after{
        width: 53px;
        background: #ffffff url(/images/user/icon_calendar_black.svg) no-repeat center center;
        background-size: 17px;
    }
    
}
@media (max-width: 500px) {
    .date-wrapper::before{
        width: 40px;
    }
    .date-wrapper::after{
        width: 40px;
    }
    .date-wrapper{
        width: auto;
    }
}
@media (max-width: 375px) {
    .date-wrapper::before{
        width: 33px;
    }
}






.form_ver04{
    padding: 43px 40px;
    background-color: #F9F9F9;
    border-radius: 20px;
}
.form_ver04 .radio_area{

}
.form_ver04 .radio_area .in_wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.form_ver04 .radio_area .in_wrap label{
    width: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}
.form_ver04 .radio_area .in_wrap label .box{
    display: flex;
    align-items: center;
    gap: 5px;
}
.form_ver04 .radio_area .in_wrap label .box .circle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    position: relative;
    background-color: #fff;
}
.form_ver04 .radio_area .in_wrap label .box .circle::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
    width: 35%;
    height: 35%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.form_ver04 .radio_area .in_wrap label .box .text{

}
.form_ver04 .radio_area .in_wrap label input:checked + .box .circle{
    border: 1px solid #00B05B;
}
.form_ver04 .radio_area .in_wrap label input:checked + .box .circle::before{
    background-color: #00B05B;
}
.form_ver04 .floor01{
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}
.form_ver04 .floor .tit{
    letter-spacing: -0.85px;
    color: #1E1E1E;
    font-size: 17px;
    font-weight: 500;
    width: 75px;
    min-width: 75px;
    display: flex;
    align-items: center;
}
.form_ver04 .floor .con{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 75px);
}
.form_ver04 .floor02 .con{
    gap: 40px;
}
.form_ver04 .date_area{
    display: flex;
    align-items: center;
    gap: 10px;
}
.form_ver04 .date_area .box{
    height: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
}
.form_ver04 .date_area .box input{
    width: 250px;
    height: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 5px 0px 0px 5px;
    padding: 0 15px;
    font-size: 17px;
    position: relative;
}
.form_ver04 .date_area .box button{
    height: 100%;
    aspect-ratio: 1/1;
    border: 1px solid #DDDDDD;
    border-left: 0;
    border-radius: 0px 5px 5px 0px;
    padding: 13px;
    background-color: #fff;
}
.form_ver04 .date_area .box button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    width: 22px;
    height: 22px;
}
.form_ver04 .floor02{
    display: flex;
    justify-content: space-between;
}
.form_ver04 .search_area{
    flex: 1;
}
.form_ver04 .search_area .in_wrap{
    display: flex;
    gap: 10px;
    height: 50px;
}
.form_ver04 .search_area .in_wrap .left_a{
    height: 100%;
    font-size: 0;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    flex: 1;
}
.form_ver04 .search_area .in_wrap .left_a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 105px;
    width: 1px;
    height: 50%;
    transform: translateY(-50%);
    background-color: #DDDDDD;
}
.form_ver04 .search_area .in_wrap .left_a select{
    width: 105px;
    height: 100%;
    border: 0;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 500;
}
.form_ver04 .search_area .in_wrap .left_a input{
    width: calc(100% - 105px);
    height: 100%;
    border: 0;
    padding: 0 15px;
    font-size: 17px;
}
.form_ver04 .search_area .in_wrap .right_a{
    width: 125px;
}
.form_ver04 .search_area .in_wrap .right_a .btn{
    width: 100%;
    height: 100%;
    border: 1px solid #1E1E1E;
    border-radius: 5px;
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.9px;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 500;
}
.form_ver04 .search_area .in_wrap .right_a .btn i{
    display: flex;
    align-items: center;
}
.form_ver04 .date_area .wave{

}
.form_ver04 .date_area .wave img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.total_number_ver01.spaceBetween{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.total_number_ver01 .right{
    display: flex;
}
.total_number_ver01 .right a{
    background-color: #FF9B430F;
    color: #FF7743;
    letter-spacing: -0.85px;
    padding: 8px 17px 8px;
    border: 2px solid #FF7743;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    gap: 5px;
}
.total_number_ver01 .right a span{
    display: inline-flex;
    white-space: nowrap;
}
.total_number_ver01 .right a img{
    width: 100%;
    height: 100%;
    width: 30px;
    object-fit: contain;
}

@media (max-width: 1800px) {
    
}
@media (max-width: 1340px) {
    .form_ver04 .floor02{
        
    }
    .form_ver04 .floor02 .con{
        gap: 10px 20px;
        width: auto;
    }
    .form_ver04 .search_area .in_wrap{
        gap: 15px;
    }
    .form_ver04 .floor01{
        padding-bottom: 20px;
    }
    .form_ver04 .radio_area .in_wrap{
        gap: 20px;
    }
    .form_ver04 .radio_area .in_wrap label .box .text{
        font-size: 16px;
    }
    .form_ver04 .radio_area .in_wrap label .box .circle{
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    .form_ver04 .date_area .box{
        height: 45px;
    }
    .form_ver04 .search_area .in_wrap{
        height: 45px;
    }
    .form_ver04 .search_area .in_wrap .right_a .btn span{
        display: none;
    }
    .form_ver04 .search_area .in_wrap .right_a{
        width: 45px;
    }
    .form_ver04 .search_area .in_wrap .right_a .btn{
        width: 100%;
    }
    .form_ver04 .date_area .box button{
        padding: 10px;
    }
    .form_ver04 .search_area .in_wrap .left_a select{
        font-size: 15px;
    }
    .form_ver04 .date_area .box input{
        font-size: 15px;
    }
    .total_number_ver01 .right a{
        font-size: 16px;
        padding: 8px 10px 8px;
    }
}
@media (max-width: 1280px) {
    .form_ver04{
        padding: 35px;
    }
    .form_ver04 .date_area .box input{
        width: 205px;
    }
    .date-wrapper{
        width: 205px;
    }
}
@media (max-width: 1024px) {
    .form_ver04 .floor{
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .form_ver04 .floor02 .con{
        flex-direction: column;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .form_ver04{
        padding: 23px;
        border-radius: 10px;
    }
    .form_ver04 .floor02{
        gap: 10px;
    }
    .form_ver04 .date_area{
        gap: 5px;
    }
    .form_ver04 .date_area .wave{
        display: inline-block;
        width: 13px;
        min-width: 13px;
    }
    .form_ver04 .date_area .box{
        height: 40px;
    }
    .form_ver04 .search_area .in_wrap{
        height: 40px;
    }
    .form_ver04 .search_area .in_wrap .right_a{
        width: 40px;
        height: 40px;
    }
    .form_ver04 .floor01{
        padding-bottom: 20px;
    }
    .form_ver04 .date_area .box input{
        font-size: 15px;
    }
    .form_ver04 .date_area .box button img{
        width: 18px;
        height: 18px;
    }
    .form_ver04 .search_area .in_wrap{
        gap: 10px;
    }
    .form_ver04 .search_area .in_wrap .left_a select{
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        width: 85px;
        background-size: 10px;
    }
    .form_ver04 .search_area .in_wrap .left_a input{
        width: calc(100% - 85px);
    }
    .form_ver04 .search_area .in_wrap .left_a::before{
        left: 85px;
    }
    .form_ver04 .radio_area .in_wrap label .box .text{
        font-size: 14px;
    }
    .form_ver04 .floor .tit{
        font-size: 16px;
    }
    .form_ver04 .floor .con{
        width: 100%;
    }
    .total_number_ver01 .right a{
        font-size: 14px;
        padding: 8px 12px 8px;
    }
    .total_number_ver01 .right a img{
        width: 24px;
    }
}
@media (max-width: 500px) {
    .form_ver04 .date_area .box input{
        width: 140px;
        padding: 0 4px;
        font-size: 14px;
    }
    .date-wrapper{
        width: 140px;
    }
}
@media (max-width: 465px) {
    .form_ver04{
        padding: 15px 10px;
        border-radius: 10px;
    }
    .form_ver04 .date_area .box input{
        padding: 0 4px;
    }
}
@media (max-width: 425px) {

}
@media (max-width: 400px) {
    
}
@media (max-width: 375px) {

    .form_ver04 .date_area .box input{
        width: calc(100% - 40px);
        width: 133px;
    }
    .date-wrapper{
        width: 133px;
    }
}
@media (max-width: 340px) {
    .form_ver04 .date_area{
        flex-wrap: wrap;
        flex-direction: column;
    }
    .form_ver04 .date_area .box{
        flex: none;
    }
    .form_ver04 .date_area .box input{
        width: 100%;
    }
    .form_ver04 .date_area .box{
        width: 100%;
    }
}














.notice_ver01{

}
.notice_ver01 table{

}
.notice_ver01 table tr{
    
}
.notice_ver01 table tr th{
    padding: 23px 0;
    border-bottom: 1px solid #E5E5E5;
}
.notice_ver01 table tr td{
    padding: 23px 0;
    border-bottom: 1px solid #E5E5E5;
    text-align: center;
}
.notice_ver01 table tr td .in_text{
    
}
.notice_ver01 table tr td.title_wrap .in_text{
    width: 100%;
}
.notice_ver01 table tr td.title_wrap .in_text .left{
    width: 100%;
    display: flex;
    align-items: center;
}
.notice_ver01 table tr td.title_wrap .in_text .new_icon{
    display: inline-flex;
    align-items: center;
    width: 18px;
    min-width: 18px;
    margin-left: 5px;
}
.notice_ver01 table tr td.title_wrap .in_text .new_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.notice_ver01 table tr td.title_wrap .in_text .title{
    width: 100%;
    display: flex;
}
.notice_ver01 table tr td.title_wrap .in_text .title p{
    width: auto;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    font-size: 17px;
    color: #000000;
    font-weight: 600;
}
.notice_ver01 table tr td .in_text .go_page_icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.notice_ver01 table.archive_press .mobile_only{
    display: none;
}
.notice_ver01 table tr td.title_wrap .in_text .left{
    flex-direction: column;
    align-items: flex-start;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 21px;
    padding-top: 10px;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info dl{
    position: relative;
    display: flex;
    gap: 10px;
    font-size: 15px;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info dl::before{
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #E5E5E5;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info dl:last-of-type:before{
    display: none;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info dl dt{
    font-weight: 500;
    letter-spacing: -0.75px;
    color: #1E1E1E;
    opacity: 0.4;
}
.notice_ver01 table tr td.title_wrap .in_text .left .info dl dd{
    letter-spacing: 0px;
    color: #1E1E1E;
    opacity: 0.7; 
    font-weight: 500;
}
.notice_ver01 table tr td.title_wrap .in_text .title{
    align-items: center;
}
.notice_ver01 table tr td.title_wrap .in_text .title .state_tag{
 
    border-radius: 800px;
    padding: 4px 11px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 7px;
}
.notice_ver01 table tr td.title_wrap .in_text .title .state_tag.upcoming{
    border: 1px solid #10B565;
    color: #10B565;
}
.notice_ver01 table tr td.title_wrap .in_text .title .state_tag.current{
    border: 1px solid #E46253;
    color: #E46253;
}
.notice_ver01 table tr td.title_wrap .in_text .title .state_tag.finished{
    border: 1px solid #808080;
    color: #808080;
}

.notice_ver01 table tr td .in_text .go_page_icon{
    letter-spacing: -0.85px;
    color: #00155E;
    padding: 8px 17px 9px;
    border: 2px solid #00155E;
    border-radius: 800px;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    gap: 5px;
}
.notice_ver01 table tr td.title_wrap .in_text .right .go_page_icon span{
    white-space: nowrap;
} 

@media (max-width: 1800px) {

}
@media (max-width: 1340px) {

}
@media (max-width: 1280px) {

}
@media (max-width: 1024px) {
    .notice_ver01 table tr th{
        padding: 15px 0;
        font-size: 16px;
    }
    .notice_ver01 table tr td{
        padding: 15px 0;
        font-size: 16px;
    }
    .notice_ver01 table.archive_press .col04{
        min-width: 130px;
    }
    .notice_ver01 table.archive_press .col01{
        width: 65px !important;
    }
    .notice_ver01 table tr td .in_text .go_page_icon{
        font-size: 15px;
    }
}
@media (max-width: 830px) {
    .notice_ver01 table.archive_press thead{
        display: none;
    }
    /* .notice_ver01 table.archive_press .col01{
        min-width: 55px;
        width: 55px !important;
    }
    .notice_ver01 table.archive_press .col03{
        display: none;
    }
    .notice_ver01 table.archive_press .col04{
        min-width: 100px;
        width: 100px !important;
    }
    .notice_ver01 table.archive_press .col05{
        min-width: 40px;
        width: 40px !important;
    } */
    .notice_ver01 table.archive_press colgroup{
        display: none;
    }
    .notice_ver01 table tr td{
        padding: 15px 0;
        display: none;
        font-size: 15px;
    }
    .notice_ver01 table tr td.title_wrap{
        display: flex;
    }
    .notice_ver01 table tr td .in_text .notice_icon{
        width: 19px;
        display: inline-flex;
    }
    .notice_ver01 table tr td .in_text .notice_icon img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .notice_ver01 table tr td.number_wrap .in_text{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .notice_ver01 table tr td.media_wrap{
        display: none;
    }
    .notice_ver01 table tr td.title_wrap{
        text-align: left;
    }
    .notice_ver01 table tr td.date_wrap{
        font-size: 13px;
    }
    .notice_ver01 table tr td.go_wrap .in_text{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .notice_ver01 table tr td.go_wrap .in_text .go_page_icon{
        padding: 0px 6px;
        width: 100%;
    }
    .notice_ver01 table tr td.go_wrap .in_text .go_page_icon img{
        width: 19px;
        height: 100%;
        object-fit: contain;
    }
    .notice_ver01 table.archive_press .mobile_only{
        display: block;
    }
    .notice_ver01 table tr td.title_wrap .in_text{
        display: flex;
        flex-direction: column;
    }
    .notice_ver01 table tr td.title_wrap .in_text .left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .notice_ver01 table tr td.title_wrap .in_text .right{
        width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 15px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .right .go_page_icon{
        width: auto;
        height: auto;
        padding: 4px 11px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .right .go_page_icon img{
        width: 10px;
    }
    .notice_ver01 table.archive_press .mobile_only.m_info{
        display: flex;
        gap: 5px 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .notice_ver01 table.archive_press .mobile_only.m_info dl{
        display: flex;
        gap: 5px;
        font-size: 13px;
        white-space: nowrap;
    }
    .notice_ver01 table.archive_press .mobile_only.m_info dl dt{
        color: #A2A2A6;
    }
    .notice_ver01 table.archive_press .mobile_only.m_info dl dd{
        color: #666666;
    }
    .notice_ver01 table tr td.title_wrap .in_text .new_icon{
        width: 15px;
        min-width: 15px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .title p{
        font-size: 15px;
    }
    .notice_ver01 table tr td .in_text .go_page_icon{
        font-size: 14px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .left .info{
        padding-top: 5px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .left .info dl{
        font-size: 14px;
    }
    .notice_ver01 table tr td.title_wrap .in_text .right .go_page_icon span{
        font-size: 13px;
    }
}
@media (max-width: 425px) {

}
@media (max-width: 375px) {

}