/*  공통  */

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.up {
    background-color: #ffffff;
}
.header .row {
    position:relative;
    display:flex;
    align-items:center;
    justify-content: space-between;
    height: 100%;
    padding: 0 90px;
    /*border-bottom: 2px dashed #000000;*/
    border-bottom: 2px dashed rgba(0, 0, 0, 0);
    width: 100%;
}
.header.up .row {
    border-bottom: 2px dashed #000000;
}

.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: #fff0fa;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #777075;
    width: 100vw;
}





/*  공통 끝  */


/*  메인 시작  */

















.bg_01 {
    /*background-image: url(../img/bg_01.png);*/
    background-color: #fff0fa;
    position: relative;
    margin: auto;
    background-position: top;
    background-repeat: no-repeat;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
    transform-origin: top center;
    width: 100vw;
    height: 100vh;
}

.main_fixed {
    position: relative;
    /* width: 1920px; */
    /*height: 950px;*/
    z-index: 999999;
    display: flex;
    justify-content: center;
}


.people {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    animation: peopleReveal 2s ease-in-out .5s forwards;
    z-index: 3;
}

@keyframes peopleReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleRepeat {
    0% {
        transform: translateX(-50%) scale(0.9);
    }
    50% {
        transform: translateX(-50%) scale(1);
    }
    100% {
        transform: translateX(-50%) scale(0.9);
    }
}

.que {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    top: 640px;
    margin-left: 10px;
    z-index: 99999;

    animation: scaleRepeat 1.2s ease-in-out infinite;
}



.card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    top: 143px;
    margin-left: 11px;
    z-index: 999;
}

.glass {
    position: absolute;
    bottom: -115px;
    transform: translateX(-50%);
    left: 50%;
    margin-left: 194px;
    opacity: 0;
    animation:
            glassFade 1.2s ease-out 3.3s forwards,
            glassDrift 5s ease-in-out 4s infinite alternate;
    z-index: 99999;
}

@keyframes glassFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes glassDrift {
    0%   { transform: translateX(-30%) translateY(20px); }
    25%  { transform: translateX(-60%) translateY(0px); }
    50%  { transform: translateX(-50%) translateY(55px); }
    75%  { transform: translateX(-43%) translateY(0px); }
    100% { transform: translateX(-30%) translateY(20px); }
}




.light {
    position: absolute;
    top: -300px;
    left: -35%;
    width: 155%;
    height: 3000px;
    pointer-events: none;
    opacity: 1;
    z-index: 9999;
    transform-origin: top center;
}

/* 수정된 부분: 300px부터만 보이게 */
.light-shape {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% - 300px) !important;
    background-color: rgb(157 89 131 / 42%);
    clip-path: polygon(
            0     0,       /* 왼쪽 상단 */
            100%  0,       /* 오른쪽 상단 */
            100%  109%,    /* 오른쪽 하단 */
            105%  168%,    /* 오른쪽 안쪽 하단 */
            60%   0,       /* 오른쪽 중간 상단 */
            50%   0,       /* 왼쪽 중간 상단 */
            24%   100%,    /* 왼쪽 안쪽 하단 */
            0     100%     /* 왼쪽 하단 */
    )
;

    transform-origin: top center;
    animation: spotlightMove 5s ease-in-out 3.8s infinite alternate;
    opacity: 0;
    animation: lightFadeIn 0.8s ease-in-out 3s forwards, spotlightMove 5s ease-in-out 3.8s infinite alternate;
}



@keyframes lightFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


@keyframes spotlightMove {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(7.5deg);
    }
    100% {
        transform: rotate(-7.5deg);
    }
}























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_v02.png");
    height: 100%;
    padding: 160px 0 350px;
    background-color: #FFFFFF;
    background-position-y: bottom;
    background-position-x: center;
    border-top: 1px solid #807c7d;
}


.video-container {
    position: relative;
    width: 750px;
    height: 470px;
    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-image: url("../img/sec04_bg_v03.png");
    /*height: 6300px;*/
    height: 5900px;
    background-size: cover;
    background-position-x: center;
    background-color: #FFFFFF;
    padding: 140px 0 200px;
    border-bottom: 1px solid #949494;
}
.sec04_con_bg {
    position: relative;
    top: -350px;
}
.sec04_con_bg > img {
    /*height: 3900px;*/
    height: 3700px;
}
.sec04_con_inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
}
.sec04_con_title {
    margin-bottom: 60px ;
}

.sec04_title {
    position: relative;
    /*top: -80px;*/
    top: -40px;
    margin-bottom: 40px;
}








:root {
    --gap: 16px;
    --cardW: calc((100% - var(--gap)) / 2);
}
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    max-width: 1080px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.sec04_item {
    width: 400px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    position: relative;
    margin-bottom: 65px;
}
.sec04_item_top {
    position: relative;
}
.sec04_item_top img.thumb {
    display: block;
    width: 100%;
    /*height: 435px;*/
    object-fit: cover;
    object-position: bottom;
}
.detail-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.pdf-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 50px;
    font-size: 12px;
    border-top: 1px solid #eee;
}
.pdf-line a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111;
    text-decoration: none;
}
/* 체크 버튼 */
.check-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -55px;
    width: 46px;
    height: 41px;
    cursor: pointer;
    display: none;
}
.check-btn img {
    width: 100%;
    height: 100%;
    display: block;
}
.sec04_item.checked {
    outline: 2px solid #ff2a2a;
}
/* 하단 버튼 */
.actions {
    max-width: 1080px;
    margin: 40px auto 0;
    /*display: flex;*/
    justify-content: center;
    display: none;
}
.vote-btn {
    cursor: pointer;
}
/* 모달 */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.modal.open {
    display: flex;
}
.modal-card {
    width: 500px;
    max-width: 90vw;
    position: relative;
    overflow: hidden;
}
.modal-head {
    padding: 12px 16px;
    font-weight: 700;
    background: #fff;
}
.swiper {
    width: 100%;
    height: auto;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}
.modal-foot {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.more-btn {
    display: block;
    cursor: pointer;
    width: 80%;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: none !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #6a2c8f;
    width: calc(var(--swiper-navigation-size)/ 44 * 45) !important;
}
@media (max-width:920px){
    :root {
        --cardW: calc((100% - var(--gap)) / 2);
    }
}
@media (max-width:560px){
    :root {
        --cardW: 100%;
    }
}








/* Backdrop */
.vote-modal{position:fixed;inset:0;background:rgba(0,0,0,.6);display:none;align-items:center;justify-content:center;z-index:999999}
.vote-modal.open{display:flex}

/* Card */
.vote-layer {
    width: 520px;
    max-width: 92vw;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    overflow: hidden
}

.vote-header {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    padding: 22px 16px 0 16px;
    font-family: Sandoll Smiley Sans;
    color: #191919;
}


/* Form grid like screenshot */
.vote-grid{display:grid;grid-template-columns:140px 1fr;border:1px solid #e5e5e5;border-top:none;margin:20px}
.v-label {
    background: #191919;
    color: #fff;
    font-weight: 700;
    padding: 16px 18px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.v-field {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5
}
.v-field:nth-child(2) {
    border-top: 1px solid #e5e5e5;
}
.v-field:last-child{border-bottom:none}
.v-field input[type="text"] {
    width: 100%;
    height: 44px;
    border: 1px solid #d8d8d8;
    padding: 0 12px;
    font-size: 15px;
}
.v-field input[type="text"]::placeholder {
    font-size: 15px;

}

/* Phone */
.phone-wrap{display:flex;align-items:center;gap:8px}
.phone-wrap input{width:92px;text-align:center}

/* Picked list */
.picked{margin:0;padding:0 0 0 18px}
.picked li{list-style:disc;line-height:1.7}

/* Policy */
.policy-box{margin:0 20px 16px}
.policy-scroll {
    height: 150px;
    border: 1px solid #d8d8d8;
    padding: 12px;
    overflow: auto;
    background: #f1f1f1;

}

.agree-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
    justify-content: center;
}

.agree-row .req{font-weight:700;margin-right:6px}
.agree-row label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}
/* CTA buttons */
.vote-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 16px 20px 50px
}

.btn {
    height: 54px;
    min-width: 200px;
}



















.section05 {
    background-color: #FFFFFF;
    padding: 120px 0 100px 0;
}
.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: 180px;
}
.sub_title_top {
    width: 100%;
    height: 356px;
    background-image: url("../img/sub_title_bg_v02.png");
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position-x: center;
}
.sub_title_logo {
    position: relative;
}
.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 {
    width: 85%;
    font-size: 14px;
    text-align: center;
    margin: 10px auto;
    text-align: start;
}

.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) {
    .header .row {
        width: 100%;
        padding: 0 20px;
    }
    .logo_right {
        display: none;
    }
}
/* 테블릿 세로 */
@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;
        background-color: #ffffff;
    }
    .header .row {
        width: 100%;
        flex-direction: column;
    }
    .logo_right {
        display: block;
    }
    .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: center;
    }
    .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;
    }



    .card {
        top: 450px;
    }
    .que {
        top: 940px;
    }

    .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: 90%;
    }

    .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;
    }

    .grid {
        max-width: 95vw;
        gap: 10px;
    }
    .sec04_item {
        width: 350px;
    }
    .modal-card {
        width: 85vw;
    }
    .modal-foot {
        padding: 50px;
    }
    .more-btn {
        width: unset;
    }



    .section04 {
        height: 6000px;
        gap: 80px;
    }
    .sec04_title {
        top: 140px;
        margin-bottom: 140px;
    }
    .sec04_con_bg {
        top: -100px;
    }
    .sec04_con_bg > img {
        /*height: 3600px;*/
        height: 3400px;
    }
    .actions {
        margin: 60px auto 0;
    }
    .vote-layer {
        width: 90vw;
    }
    .vote-header {
        font-size: 44px;
        padding-top: 40px;
    }
    .v-label {
        font-size: 24px;
    }
    .v-field input[type="text"] {
        font-size: 28px;
        height: 80px;
    }
    .v-field input[type="text"]::placeholder {
        font-size: 28px;
    }
    .v-field:last-child {
        padding-left: 30px;
    }
    .picked li {
        font-size: 24px;
    }
    .agree-row {
        font-size: 20px;
    }
    .vote-cta {
        padding-bottom: 80px;
        transform: scale(0.85);
    }
    .policy-scroll {
        height: 180px;
        font-size: 20px;
        overflow-y: auto;
    }
}