/*  공통  */

body, html {
    overflow-x: hidden;
    font-family:'NotoSansKR-Regular';
}
body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    -webkit-font-smoothing: antialiased;
    color: #333;
}



img {
    -webkit-user-drag: none;
}
::selection {
    background: #41b16d;
    color: #fff
}
::-moz-selection {
    background: #41b16d;
    color: #fff
}
::-webkit-selection {
    background: #41b16d;
    color: #fff
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



.container {
    max-width: 1920px;
    margin: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}




.header {
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999999;
    transition-duration: 400ms;
    width: 100vw;
    height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}
.header .row {
    position:relative;
    display:flex;
    align-items:center;
    justify-content: space-between;
    height: 100%;
    padding: 0 50px;
    border-bottom: 2px dashed #000000;
    width: 80%;

}

.header .logo {
    display: inline-block;
    background-size: contain;
}


.header .nav_wrap {
    height: 100%;
    position: relative;
}
.header .nav {
    display:flex;
    height: 100%;
    gap: 40px;
}
.header .right_box {
    display:flex;
    align-items:center;
    height: 100%;
}
.header .nav li {
    text-align:center;
}
.header .nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #000000;
    font-family: Sandoll Smiley Sans;
    font-weight: 400;
    transition: .2s;
    position: relative;
}
.header .nav li a::after {
    content: '·';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: #000000;
    font-family: Sandoll Smiley Sans;
    font-size: 20px;
}
.header .nav li:last-child a::after {
    content: none;
}

.header .nav li.on a,.header .nav li a:hover {
    color: #41b16d;
}
.header .nav li:nth-child(even).on a,.header .nav li:nth-child(even) a:hover {
    color: #f38db9;
}




.footer {
    background-color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px dashed #000000;
    width: 100vw;
}





/*  공통 끝  */


/*  메인 시작  */





.intro_wrap {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 9999999;
}
.intro01 {
    background-color: #FFFFFF;
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 70px 90px;
    transition: .3s;
    z-index: 9999999;
}
.intro_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 70px 90px;
}
.intro02 {
    background-color: #fff0fa;
    background-image: url("../img/intro_bg.png");
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
    z-index: 9999999;
}

.intro01:hover, .intro02:hover {
    width: 53%;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    z-index: 99999999;
}





.wrapper-container {
    width: 100vw;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffa8ce;
    padding: 60px 0;
}

.scroll-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    justify-content: center;
    pointer-events: unset;
}

.line {
    display: flex;
    white-space: nowrap;
    animation: scrollLoop 240s linear infinite;
    gap: 16px;
    margin-left: 2000px;
}

.line.reverse {
    animation-direction: reverse;
}

@keyframes scrollLoop {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.box-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.box {
    background-color: white;
    border-radius: 20px;
    border: 1px solid #000;
    padding: 20px 28px;
    white-space: nowrap;
    font-size: 27px;
    transition: all 0.3s ease;
    margin: 0;
    font-family: Sandoll Smiley Sans;
    font-weight: 400;
    cursor: pointer;
}
.box .em01 {
    color: #62bd85;
}
.box .em02 {
    color: #faa61a;
}
.box .em03 {
    color: #ffa8ce;
}

.box.special {
    background-color: black;
    color: white;
}

.box:hover {
    background-color: #41b16d;
    color: white;
}

.box span {
    color: #41b16d;
    transition: color 0.3s ease;
}

.box:hover span {
    color: white;
}

.icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.modal {
    font-family: Sandoll Smiley Sans;
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 731px;
    height: 454px;
    border-radius: 15px;
    background-color: transparent;
    color: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    opacity: 0;
    /*pointer-events: none;*/
    cursor: auto !important;
    /*pointer-events: none;*/
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.modal.show {
    opacity: 1;

    transform: translate(-50%, -50%) scale(1);
}

.modal-img {
    position: absolute;
    width: 658px;
    height: 409px;

    border-radius: 15px;
    z-index: -1;
}

.modal-close {
    position: absolute;
    top: 49px;
    right: 68px;
    width: 51px;
    height: 51px;
    background-image: url('close.png');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1001;
}

#modalText {
    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 1.2em;
    /*cursor: pointer;*/
}

#clickGuide {
    position: absolute;
    top: 242px;
    left: -600px;
    animation: floatUpDown 1s ease-in-out infinite alternate;
    z-index: 1002;
    width: 351px;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-5px);
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.highlight {
    font-weight: 300;
    display: inline-block;
    font-size: 53px;
    vertical-align: text-bottom;
}

.modal-bold {
    font-weight: bold;
    font-size: 80px;
}

.green { color: #41b16d; }
.pink { color: #ff8ebb; }

.dot {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 0 4px;
    animation: floatDot 0.6s ease-in-out infinite alternate;
}

.dot1 { background-color: #41b16d; animation-delay: 0s; }
.dot2 { background-color: #ff8ebb; animation-delay: 0.15s; }
.dot3 { background-color: #f9d44c; animation-delay: 0.3s; }

@keyframes floatDot {
    0% { transform: translateY(-3px); }
    100% { transform: translateY(3px); }
}

@media (min-width: 1024px) and (max-width: 1368px) {
    header img {
        width: 100%;
    }
    .modal {
        top: 500px;
    }
    #clickGuide {
        position: absolute;
        top: 350px;
        left: -247px;
        animation: floatUpDown 1s ease-in-out infinite alternate;
        z-index: 1002;
        width: 277px;
    }
    @keyframes floatUpDown {
        0% {
            transform: rotate(-311deg);
        }

        40% {
            transform: rotate(-311deg);
        }

        60% {
            transform: rotate(-313deg);
        }

        80% {
            transform: rotate(-307deg);
        }

        100% {
            transform: rotate(-311deg);
        }
    }
}









section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: contain;
}



.section02 {
    background-image: url("../img/sec02_bg.png");
    height: 100%;
    padding: 160px 0 180px;
    background-color: #FFFFFF;
    background-position-y: bottom;
    background-position-x: center;
}


.video-container {
    position: relative;
    width: 861px;
    height: 536px;
    margin-top: 50px;
    overflow: hidden;

    -webkit-mask-image: url("../img/sec02_con_bg.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;

    mask-image: url("../img/sec02_con_bg.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}


.video-container iframe {
    position: absolute;
    width: 112%;
    height: 100%;
    border: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}





.section03 {
    background-color: #FFFFFF;
    border-top: 2px dashed #000000;
    border-bottom: 2px dashed #000000;
    height: 85px;
    justify-content: center;
}
.sec03_con01, .sec03_con02 {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: Sandoll Smiley Sans;
    color: #000000;
    font-size: 36px;
    width: max-content;
}
.sec03_con01 {
    transform: translateY(-50%);
    animation: sec03_con linear 10s infinite;
}
@keyframes sec03_con {
    0% {
        transform: translateX(0) translateY(-50%);
    }
    100% {
        transform: translateX(-1916px) translateY(-50%);

    }
}
.sec03_con02 {
    transform: translateX(1916px) translateY(-50%);
    animation: sec03_con02 linear 10s infinite;
}
@keyframes sec03_con02 {
    0% {
        transform: translateX(1916px) translateY(-50%);
    }
    100% {
        transform: translateX(0) translateY(-50%);
    }
}
.sec03_em01 {
    color: #faa61a;
}
.sec03_em02 {
    color: #41b16d;
}
.sec03_em03 {
    color: #ff8ebb;
}



.section04 {
    background-color: #FFFFFF;
    padding: 140px 0 200px;
    gap: 65px;
}



.section05 {
    background-image: url("../img/sec05_bg.png");
    height: 1240px;
    background-size: cover;
    background-position-x: center;
}
.sec05_title {
    position: relative;
    top: -40px;
    margin-bottom: 80px;
    padding-right: 140px;
}

.section05 .swiper {
    width: 100%;
    max-width: 100vw;
    margin: 80px auto 80px;
}
.section05 .swiper-slide {
    text-align: center;
    line-height: 150px;
    font-size: 20px;
    border-radius: 10px;
}
.section05 .swiper-slide img {
    height: 420px;
    border-radius: 20px;
}

/*  메인 끝  */







/*  서브 시작   */


.sub_container {
    width: 600px;
    margin: 0 auto;
    padding: 100px 0;
}
.sub_container.registration {
    width: 800px;
}
.sub_container.scoring {
    width: unset;
}

.sub_title {
    width: 100vw;
    height: 100%;
    margin-top: 150px;
}
.sub_title_top {
    width: 100%;
    height: 242px;
    background-image: url("../img/sub_title_bg.png");
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_title_logo {
    position: relative;
    bottom: -60px;
}
.sub_title_bottom {
    background-color: #191919;
    width: 100%;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    font-family: Sandoll Smiley Sans;
    font-size: 48px;
    color: #ffffff;
}
/* 접수하기 registration.php */
.regi_sec01 {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 320px;
    border-bottom: 2px solid #000000;
    /*background-image: url('../img/regi_sec01_bg.jpg');*/
    background-position: center;
    background-color: #ffffff;
}
.regi_sec02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 200px;
    background-color: #181e2a;
}

.regi_sec03 {
    background-color: #fff;
    padding-top: 40px;
}
.regi_sec03 > div {
    max-width: 700px;
    margin: 0 auto;
}
.regi_sec03 > div.agree_box {
    margin-bottom: 60px;
}
.regi_sec03 > div.agree_box:nth-child(3) {
    margin-bottom: 100px;
}
.regi_sec03 > div.agree_box > p {
    font-size: 22px;
    font-family:'NotoSansKR-Bold';
    margin-bottom: 12px;
}
.regi_sec03 > div.agree_box > div:nth-child(2) {
    width: 700px;
    height: 175px;
    overflow-y: auto;
    border: 1px solid #b2b2b2;
    padding: 20px 25px;
}
.regi_sec03 > div.agree_box > div > p {
    font-size: 18px;
    color: #343434;
    line-height: 1.7;
    letter-spacing: -1px;
}


.agree_box table {
    border-collapse: collapse; /* 테두리 겹침 제거 */
    width: 100%;
    text-align: center;
}
.agree_box th, .agree_box td {
    border: 1px solid #000; /* 검은색 테두리 */
    padding: 8px;
}
.agree_box th {
    background-color: #f5f5f5; /* 제목 배경색 */
    font-weight: bold;
}
.agree_box td {
    height: 40px; /* 셀 높이 */
}


.agree_radio {
    font-size: 19px;
    text-align: end;
    color: #222;
    margin: 15px 0 20px 0;
    letter-spacing: -1px;
}
.agree_radio label {
    cursor: pointer;
}
.agree_radio input {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 5px;
}
.agree_radio input:checked {
    accent-color: #3cb26d !important;
}
.regi_btn {
    border: 2px solid rgba(34, 34, 34, 0.58);
    background-color: #3cb26d;
    width: 230px;
    height: 70px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.regi_btn > a, .submit_btn > a, .confirm_btn > a, .modify_btn > a {
    width: 230px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit_btn > a {
    font-family: Sandoll Smiley Sans;

}

.find_pw_btn {
    font-size: 24px;
    font-weight: bold;
    color: #1b1f2aa6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: lightgray;
    height: 80px;
    margin: 0 auto;
}



.regi_sec03 > div.agree_box:nth-child(3) > div:nth-child(2) {
    /*height: 240px;*/
}

.regi_sec03_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.regi_sec03_table th, .regi_sec03_table td {
    border: 1px solid #000;
    padding: 6px 10px;
    text-align: center;
}
.regi_sec03_number_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.regi_sec03_input {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    height: 45px;
}



.fixed_input {
    background-color: rgba(221, 221, 221, 0.8) !important;
    cursor: default !important;
}
.fixed_input:focus {
    background-color: rgba(221, 221, 221, 0.8) !important;

}

/* 접수하기 - 기본정보입력 registartion_02.php */
.regi_sec04 {
    background-color: #fff;
    padding-top: 70px;
    color: #343434;
    position: relative;
}
.regi_sec04 > div {
    max-width: 700px;
    margin: 0 auto;
}
.regi_sec04 > div.basic_info > p {
    font-size: 22px;
    font-family:'NotoSansKR-Bold';
    margin-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}
.basic_info_table {
    width: 100%;
}
.basic_info_table .form_field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.basic_info_table .form_field.form_field2 {
    display: flex;
    flex-direction: column;
}
.basic_info_table .form_field th {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: default;
    font-size: 18px;
    padding: 20px 0 5px;
    font-weight: bold;
}
.basic_info_table .form_field.form_field2 th {
    width: 100%;
    text-align: start;
    justify-content: flex-start;
}
.basic_info_table .form_field:nth-child(1) th {
    font-size: 19px;
}
.basic_info_table .form_field td {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.basic_info_table .form_field td.side_td3 {
    flex-wrap: wrap;
}
.basic_info_table .form_field td.side_td {
    flex-direction: column;
}
.basic_info_table .form_field td.side_td.side_td2 {
    gap: 20px;
}
.type_radio {
    font-size: 19px;
    color: #222;
    letter-spacing: -1px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.type_radio.type_radio2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.type_radio.type_radio3 {
    display: flex;
    flex-wrap: wrap;
}
.type_radio label {
    cursor: pointer;
}

.type_radio input {
    width: 20px !important;
    height: 20px !important;
    margin-bottom: 5px;
    margin-right: 8px;
}
.type_radio input:checked {
    accent-color: #3cb26d !important;
}
.basic_info_table input, .basic_info_table select {
    padding: 10px;
    font-size: 18px;
    height: 60px;
    color: #222 !important;
    width: 100%;
}
.basic_info_table input::placeholder {
    font-size: 18px;
    color: #acacac;
}

.basic_info_table select {
    cursor: pointer;
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../img/option_arrow.png') calc(100% - 9px) center no-repeat;
    background-size: 13px;
}
.basic_info_table .w590 {
    width: 590px;
}
.basic_info_table .w430 {
    width: 430px;
}
.basic_info_table .w200 {
    width: 200px;
}
.basic_info_table .w150 {
    width: 150px;
}
.basic_info_table select.w150 {
    margin-left: 5px;
}
.basic_info_table .w125 {
    width: 180px;
}
.basic_info_table .w125.regi {
    width: 220px;
}
.textarea-wrapper {
    width: 100%;
}
.table_container {
    width: 100%;
}
.table_container.edit {
    width: 50%;
}
.table_container a {
    height: 50px;
    color: red;
    border: 1px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.table_container img {
    width: 100%;
    border: 1px solid lightgray;
    object-fit: cover;
}
.file-box {
    width: 100%;
    display: inline-block;
}
.basic_info_table textarea {
    width: 100%;
    height: 250px;
    padding: 10px;
    font-size: 16px;
}
.basic_info_table input[type=text]::placeholder,
.basic_info_table input[type=tel]::placeholder, .basic_info_table textarea::placeholder {
    color: #c7c7c7;
    font-size: 16px;
}

.regi_sec04 > div.team_01 {
    margin-top: 75px;
    margin-bottom: 50px;
}
.add_team {
    display: none;
}
.add_team > p {
    font-size: 22px;
    font-family:'NotoSansKR-Bold';
    margin-bottom: 35px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}
.del_team_btn {
    border: 2px solid #797979;
    background-color: #c2c2c3;
    width: 100px;
    height: 45px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 60px;
}
.add_team_btn {
    cursor: pointer;
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.del_goods_btn {
    border: 2px solid #797979;
    background-color: #c2c2c3;
    width: 100px;
    height: 45px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 60px;
}
.goods_1 .del_goods_btn {
    display: none;
}


.regi_sec05 {
    background-color: #eff9ff;
    padding-top: 70px;
    padding-bottom: 110px;
    color: #343434;
    position: relative;
}
.regi_sec05 > div {
    max-width: 700px;
    margin: 0 auto;
}
.regi_sec05 > div.goods_info {
    margin-bottom: 50px;
    border-top: 1px dashed #e6a0a7;
    padding-top: 35px;
}
.regi_sec05 > div.goods_1 {
    border-top: none;
    padding-top: 15px;
}
.regi_sec05 > p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 22px;
    font-family: 'NotoSansKR-Bold';
    margin-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}
.regi_sec05 > p > span {
    font-family:'NotoSansKR-Medium';
    font-size: 18px;
    color: #3cb26d;
    padding-left: 10px;
}
.goods_info_table {
    width: 700px;
}
.goods_info_table .form_field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.goods_info_table .form_field th {
    width: 110px;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: relative;
    cursor: default;
    font-size: 18px;
}
.goods_info_table .form_field:nth-child(2) th {
    padding-bottom: 50px;
}
.goods_info_table .form_field td {
    padding: 10px;
    text-align: left;
}

.goods_info_table input, .goods_info_table select {
    padding: 10px;
    font-size: 18px;
    height: 50px;
}
.goods_info_table input::placeholder {
    font-size: 18px;
    color: #acacac;
}
.goods_info_table .w590 {
    width: 590px;
}
.goods_info_table textarea {
    width: 590px;
    height: 100px;
    padding: 10px;
    font-size: 18px;
}
.goods_info_table input[type=text]::placeholder,
.goods_info_table input[type=tel]::placeholder, .goods_info_table textarea::placeholder {
    color: #c7c7c7;
    font-size: 18px;
}
.add_goods_btn {
    width: fit-content;
    cursor: pointer;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}


.regi_down_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px auto;
}
.regi_down_btn > p {
    font-size: 20px;
    color: #000000;
}
.regi_down_btn > a {
    font-size: 20px;
    color: #000000;
    background-color: #f38db9;
    font-family: Sandoll Smiley Sans;
    width: 160px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.regi_down_warn {
    font-size: 18px;
    text-align: center;
    margin: 10px auto;
}

.regi_sec06 {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 140px;
    color: #343434;
    position: relative;
}
.submit_btn {
    border: 2px solid rgba(34, 34, 34, 0.58);
    background-color: #3CB26D;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    width: 230px;
    height: 70px;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.submit_btn > a {
    font-size: 24px;
    color: #ffffff;
}



.confirm_result {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #1b1f2a;
    border-bottom: 2px solid #1b1f2a;
}
.cr_td {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #e6e6e7;
}
.confirm_result > .cr_td:last-child {
    border-bottom: unset;
}
.cr_title, .cr_con {
    font-size: 20px;
    color: #1b1f2a;
}
.cr_title {
    font-weight: bold;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cr_con {
    padding: 0 45px;
}
.cr_con.cr_name {
    color: #eb4d20;
    font-weight: bold;
}


.confirm_result_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    width: 100%;
    gap: 20px;
}
.confirm_result_btn > a {
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #1b1f2a;
    cursor: pointer;
}
.cr_edit_btn {
    background-color: #f38db9;
}
.cr_delete_btn {
    background-color: #afafaf;
}

.sub_con_title {
    font-size: 30px;
    color: #1b1f2a;
    font-weight: bold;
    padding: 20px 0;
    border-bottom: 2px solid #1b1f2a;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub_con_title.sub_con_title2 {
    margin-top: 45px;
}


.confirm_sec00 {
    background-color: #fff;
    padding-top: 45px;
    padding-bottom: 85px;
    color: #343434;
    position: relative;
}
.confirm_sec00 > div {
    max-width: 700px;
    margin: 0 auto;
}
.confirm_sec00 table {
    margin-bottom: 40px;
}
.confirm_btn {
    background-color: #1b1f2a;
    width: 100%;
    height: 80px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 60px auto 15px !important;

}
.confirm_btn a {

    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.confirm_sec01 {
    background-color: #fafafa;
    padding-top: 70px;
    padding-bottom: 90px;
    color: #343434;
    position: relative;
    display: none;
}
.confirm_sec01 > div {
    max-width: 700px;
    margin: 0 auto;
}
.confirm_sec01 > div.basic_info > p {
    font-size: 22px;
    font-family:'NotoSansKR-Bold';
    margin-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}


.confirm_sec01_2 {
    background-color: #f3f3f3;
    padding-top: 20px;
    color: #343434;
    position: relative;
    display: none;
}
.confirm_sec01_2 > div {
    max-width: 700px;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 60px;
    padding-top: 60px;
}
.confirm_sec01_2 > div:last-child {
    border-bottom: none;
}
.confirm_sec01_2 > div.basic_info > p {
    font-size: 22px;
    font-family:'NotoSansKR-Bold';
    margin-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}


.confirm_sec02 {
    background-color: #eff9ff;
    padding-top: 70px;
    padding-bottom: 110px;
    color: #343434;
    position: relative;
    display: none;
}
.confirm_sec02 > div {
    max-width: 700px;
    margin: 0 auto;
}
.confirm_sec02 > div.goods_info {
    margin-bottom: 50px;
    border-top: 1px dashed #e6a0a7;
    padding-top: 35px;
}
.confirm_sec02 > div.goods_1 {
    border-top: none;
    padding-top: 15px;
}
.confirm_sec02 > p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 22px;
    font-family: 'NotoSansKR-Bold';
    margin-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}
.confirm_sec02 > p > span {
    font-family:'NotoSansKR-Medium';
    font-size: 18px;
    color: #3cb26d;
    padding-left: 10px;
}

.confirm_sec03 {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 140px;
    color: #343434;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    display: none;
}
.modify_btn {
    border: 2px solid rgba(34, 34, 34, 0.58);
    background-color: #3cb26d;
    width: 230px;
    height: 70px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.cancel_btn {
    border: 2px solid rgba(34, 34, 34, 0.58);
    background-color: #797979;
    width: 230px;
    height: 70px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;

}



.red_warn {
    color: #3cb26d;
    font-family:'NotoSansKR-Medium' !important;
    font-size: 16px !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}
.red_p {
    color: #3cb26d !important;
}


.eval-wrap{max-width:920px;margin:30px auto;padding:20px 24px;color:#111;font-family:'NotoSansKR',system-ui,AppleSDGothicNeo,Malgun Gothic,sans-serif}
.eval-block {
    margin-bottom: 22px;
    width: 100%;
}
.eval-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    text-align: start;
}
.eval-title em {
    font-size: 16px;
    font-weight: 400;
}

.eval-desc {
    margin: 0;
    border: 1px solid #ddd;
    padding: 14px;
    line-height: 1.6;
    background: #fff
}

.note{font-weight:400;color:#666;font-size:14px;margin-left:6px}

.eval-table {
    width: 100%;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff
}

.eval-table .t-row{display:grid;grid-template-columns:120px 100px repeat(4,1fr)}
.eval-table .t-row .t-cell{padding:10px 12px;border-top:1px solid #eee;border-right:1px solid #eee;text-align:center}
.eval-table .t-row .t-cell:last-child{border-right:none}
.eval-table .t-head{background:#f7f7f7;font-weight:700}
.eval-table .t-row:first-child .t-cell{border-top:none}
.w120{width:120px}.w100{width:100px}
.bold{font-weight:700}

.criteria-row{display:flex;gap:12px;border:1px solid #ddd;border-radius:10px;background:#fff;padding:14px;margin-bottom:10px}
.criteria-left{flex:1}
.criteria-title{font-weight:700;margin-bottom:6px}
.criteria-list{margin:0;padding-left:18px;line-height:1.7;color:#333}
.criteria-right{width:260px}
.grade-table{border:1px solid #ddd;border-radius:8px;overflow:hidden}
.g-row{display:grid;grid-template-columns:80px 80px 80px}
.g-cell{padding:8px 10px;border-top:1px solid #eee;border-right:1px solid #eee;text-align:center}
.g-cell:last-child{border-right:none}
.g-row:first-child .g-cell{border-top:none}
.g-head{background:#f7f7f7;font-weight:700}
.w80{width:80px}
@media (max-width: 720px){
    .criteria-row{flex-direction:column}
    .criteria-right{width:100%}
}

/* 심사기준 섹션 */
.evaluation-section { margin: 30px auto 80px; width: 100%; max-width: 900px; }
.eval-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 14px;
    display: flex;
    justify-content: space-between;
}


/* 표 기본 */
.criteria-table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 14px; }
.criteria-table th, .criteria-table td {
    border: 1px solid #cfcfcf;
    padding: 12px 14px;
    vertical-align: top;
    background:#fff;
    vertical-align: middle;
}
.criteria-table thead th {
    background:#f6f6f6;
    text-align: center;
    font-weight: 700;
}
.criteria-table .center { text-align: center; vertical-align: middle; }
.criteria-table .cat {
    font-weight: 700;
    text-align: center;
    background: #fafafa;
    vertical-align: middle;
}


/* 점수/등급 셀 높이 균형 */
.criteria-table td.center { vertical-align: middle; }

/* 심사내용 점 목록 ‘·’ 표시 */
.dot-list { margin: 0; padding: 0 0 0 0; list-style: none; }
.dot-list li { position: relative; padding-left: 14px; line-height: 1.7; }
.dot-list li::before {
    content: '·';
    position: absolute; left: 0; top: 0; line-height: 1.7;
}

/* 반응형(선택) */
@media (max-width: 768px) {
    .evaluation-section { padding: 0 12px; }
    .criteria-table th, .criteria-table td { padding: 10px; }
}




.pc {
    display: block;
}
.mobile {
    display: none;
}





/* 테블릿 가로 */
@media screen and (max-width: 1200px) {

}
/* 테블릿 세로 */
@media screen and (max-width: 1040px) {
    .intro_wrap {
        flex-direction: column;
    }
    .intro01, .intro02, .intro01:hover, .intro02:hover {
        width: 100vw;
    }
    .floating {
        left: calc(50% + 235px);
    }
}
/* 모바일 */
@media screen and (max-width: 750px) {
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }



    body, html {
        min-width: 320px;
    }
    img {
        max-width: unset;
    }
    .row {
        width: 100%;
        padding: 0 20px;
    }


    .header {
        height: 180px;
    }
    .header .row {
        width: 100%;
        flex-direction: column;
    }
    .m_header_top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0 0;
    }
    .header .right_box {
        width: 100%;
        justify-content: center;
    }
    .header .nav_wrap {
        width: 100%;
    }
    .header .nav {
        width: 100%;
        justify-content: space-between;
        gap: unset;
    }
    .header .nav li a {
        font-size: 24px;
    }

    .wrapper-container {
        margin-top: 180px;
    }

    .video-container {
        width: 600px;
        height: 375px;
    }

    .sec03_con01, .sec03_con02 {
        width: max-content;
    }

    .section05 {
        background-size: cover;
        background-position-x: center;
    }






    .sec01_item03 {
        left: calc(50% + 15px);
    }
    .sec01_item02 {
        left: calc(50% - 350px);
    }


    .sec02 {
        padding-top: 160px;
        padding-bottom: 270px;
    }
    .sec02 > div {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sec02 > div > span {
        font-size: 35px;
        padding: 8px 18px;
    }
    .sec02 > div > p {
        font-size: 30px;
        line-height: 2;
    }
    .sec02 > div > p:nth-child(1), .sec02 > div > p:nth-child(2), .sec02 > div > p.mobile {
        margin-top: 10px;
        padding-top: 15px;
    }
    .sec02 > div > div.ex {
        font-size: 26px;
        padding-left: 72px;
    }
    .sec02 > div > p.warn {
        font-size: 26px;
    }
    .sec02 > div > p.price {
        font-size: 35px;
        top: -31px;
        left: 208px;
    }
    .main_table {
        font-size: 24px;
        width: 665px;
        margin-top: 35px;
    }
    .main_table tr:nth-child(2) td:last-child {
        font-size: 24px;
        width: 365px;
        padding: 20px;
    }
    .main_table th:nth-child(2) {
        width: 90px;
    }
    .sec02 > div.include_bar > p {
        padding-left: 28px;
    }
    .sec02 > div > p.bar::before {
        bottom: unset;
    }



    .regi_sec03 > div.agree_box > p {
        font-size: 35px;
    }
    .regi_sec03 > div.agree_box > div > p {
        font-size: 26px;
    }
    .agree_radio {
        font-size: 26px;
        margin-top: 25px;
    }
    .agree_radio input {
        width: 25px !important;
        height: 25px !important;
    }
    .regi_btn {
        width: 270px;
        height: 90px;
    }



    .regi_sec04 > div.basic_info > p, .regi_sec05 > p {
        font-size: 35px;
    }
    .regi_sec05 > p > span {
        font-size: 32px;
    }

    .basic_info_table .form_field th {
        font-size: 26px;
        text-align: start;
    }
    .basic_info_table .form_field:nth-child(1) th {
        font-size: 26px;
    }
    .type_radio {
        font-size: 26px;
    }
    .basic_info_table .w590 {
        width: 100%;
        font-size: 26px;
    }
    .basic_info_table .w200 {
        width: 160px;
    }
    .basic_info_table textarea {
        font-size: 26px;
    }
    .table_container {
        width: 100%;
    }
    .table_container a {
        font-size: 24px;
    }
    .basic_info_table input, .basic_info_table select {
        font-size: 24px;
        height: 70px;
        width: 100%;
    }
    .basic_info_table .w430 {
        width: 100%;
    }
    .basic_info_table .form_field td {
        font-size: 24px;
    }

    .basic_info_table input::placeholder {
        font-size: 24px !important;
    }

    .goods_info_table .form_field th {
        font-size: 26px;
    }

    .goods_info_table input, .goods_info_table select {
        font-size: 24px;
        height: 70px;
    }

    .goods_info_table input::placeholder, .goods_info_table textarea::placeholder {
        font-size: 24px;
    }
    .goods_info_table textarea {
        height: 200px;
        font-size: 24px;
    }
    .goods_info_table .form_field:nth-child(2) th {
        padding-bottom: 124px;
    }
    .add_team > p {
        font-size: 35px;
    }
    .del_team_btn {
        width: 120px;
        height: 65px;
    }

    .submit_btn {
        width: 270px;
        height: 90px;
    }










    .confirm_sec01 > div.basic_info > p, .confirm_sec02 > p {
        font-size: 35px;
    }

    .regi_sec04 > div.basic_info > p, .confirm_sec02 > p {
        font-size: 35px;
    }
    .confirm_sec02 > p > span {
        font-size: 32px;
    }



    .sub_container {
        width: unset;
    }

    .sub_container.registration {
        width: 100vw;
    }
    .regi_down_btn > p {
        font-size: 26px;
    }
    .regi_down_btn > a {
        width: 180px;
        height: 60px;
        font-size: 26px;
    }

    .regi_down_warn {
        font-size: 24px;
        width: 80%;
    }

    .submit_btn > a {
        font-size: 34px;
    }

    .basic_info_table .form_field {
        width: 95%;
        margin: 0 auto;
    }

    .basic_info_table .w125.regi {
        width: 200px;
    }



    .eval-wrap, .eval-title {
        font-size: 24px;
    }
    .eval-title em{
        font-size: 20px;
    }
    .criteria-table {
        font-size: 24px;
    }

    .sub_con_title {
        font-size: 34px;
    }
    .find_pw_btn {
        width: 700px;
    }
    .cr_title, .cr_con {
        font-size: 26px;
    }
    .confirm_result_btn {
        margin: 60px 0;
    }
    .confirm_result_btn > a {
        width: 200px;
        height: 80px;
        font-size: 26px;
    }
    .cr_td {
        height: 100px;
    }
    .table_container img {
        height: 250px;
        object-fit: contain;
    }
}