/* 폰트 */
@font-face {
    font-family: 'Vitro_core';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/Vitro_core.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Straczynski";
    src: url("https://db.onlinewebfonts.com/t/efd45280fe6a77db948e1baf7538146d.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/efd45280fe6a77db948e1baf7538146d.woff")format("woff");
}

body {
    scroll-behavior: smooth; /* 부드러운 스크롤 적용 */
}

/* header */
#gnb_layout {
    background-color: #ffffff;
    border-bottom: 0;
}
#gnb_layout .gnb {
    position: relative;
}
#gnb_layout .gnb .dept1 a {
    color: #333333;
}
#gnb_layout .gnb .dept1 a:hover {
    color: #dc2525;
    font-weight: 800;
}
#gnb_layout .gnb .dept1 a.active {
    color: #dc2525;
}
#gnb_layout .gnb .btn-chat {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}
#gnb_layout .gnb .btn-spon {
    position: absolute;
    right: 220px;
    top: 50%;
    transform: translateY(-50%);
}
#gnb_layout .gnb span{
    font-weight: 600;
}

/* fotter */
.footer .copy {
    background: #000027;
}
.footer .copy .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer .copy .top .ft_logo {
    color: #ededed;
    font-size: 28px;
    font-family: 'Vitro_core';
}

/* fixed 야이콘 */
.fixed-icon {
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 20px;
    bottom: 70px;
    right: 40px;
}
.fixed-icon a:last-child { 
    display: none; 
}

/* 섹션 공통 */ 
section {
    min-height: auto;
}
.container {
    width: 1280px;
}
section.section h2 {
    font-size: 48px;
    font-family: 'Vitro_core';
    font-weight: normal;
    text-align: center;
    margin-bottom: 60px;
    color: #242424;
}
section.section h2 span {
    display: block;
    margin-bottom: 20px;
    font-family: "Straczynski";
    font-style: italic;
    font-size: 24px;
    color: #dc2525;
}
.red {
    color: #dc2525;
}
.guide_txt {
    color: #dc2525;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    line-height: 25px;
}

/* section1 - visual */
.section.sec01 {
    height: 100vh;
    background: url(/img/main/visual_pc.png) no-repeat center;
    background-size: cover;
}
.main_title{
    height: 100vh;
    position: relative;
    text-align: center;
}
.main_visual_title{
    position: absolute;
    top: 53%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.section.sec01 .dday{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section.sec01 .dday .dday_line {
    display: flex;
    gap: 15px;
    background: #001660;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px 30px; 
}

.section.sec01 .dday p {
    font-size: 48px;
    color: #ffffff;
    font-weight: normal;
    font-family: 'Vitro_core';
    letter-spacing: 2px;
}

.section.sec01 .dday span {
    font-size: 48px;
    color: #ffffff;
    font-weight: normal;
    font-family: 'Vitro_core';
    letter-spacing: 3px;
}

/* banner - 띠배너 롤링 */
.loop_cont{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner {
    width: 200px;
    height: 100px;
    background-color: white;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .banner_list {
    display: flex;
    width: calc(150% + 10px);
    animation: banner-animation 30s linear infinite;
  }
  
  @keyframes banner-animation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 10 - 10px * 10));
    }
  }

/* secion2 - 인트로 */
.section.sec02 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/img/sub/sec02_bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

section.sec02 .container {
    width: 100%;
}

.section.sec02 .con-txt .txt p {
    font-size: 36px;
    color: #ffffff;
    font-family: 'Vitro_core';
}
.section.sec02 .con-txt .txt .tit_top{
    font-size: 20px;
    font-style: oblique 40deg;
}

.section.sec02 .con-txt .txt p b {
    font-size: 30px;
    font-weight: normal;
}
.section.sec02 .con-txt .txt h6 {
    font-size: 36px;
    color: #fff;
    margin-top: 10px;
    font-family: 'Vitro_core';
    font-weight: normal;
}
.section.sec02 .con-txt .txt h6 b {
    position: relative;
    color: #ffffff00;
    font-size: 48px;
    font-style: oblique 40deg;
    -webkit-text-stroke: 1px #fff; 
}
.section.sec02 .con-txt {
    display: flex;
    padding: 0px 50px;
    gap: 10px;
    align-items: center;
    justify-content: space-around;
}

.section.sec02 .btn_wrap {
    display: flex;
    margin-top: 30px;
}

.section.sec02 .btn_wrap a {
    display: inline-block;
    padding: 10px 80px 10px 70px;
    border-radius: 3px;
    background: #ffffff;
    color: #dc2525;
    font-size: 24px;
    font-family: 'Vitro_core';
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.section.sec02 .btn_wrap a:nth-child(2) {
    background: #6b0202;
    padding: 10px 70px 10px 80px;
    color: #ffffff;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.section.sec-spon{
    min-height: 0 !important;
}

.section.sec-spon .spon_wrap {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 25px 30px;
}
.section.sec-spon .spon_wrap h4 {
    font-size: 24px;
    font-family: 'Vitro_core';
}
/* 이전/다음 버튼 커스터마이징 */
.section.sec-spon .spon_wrap .bx-controls.bx-has-controls-direction {
    position: absolute;
    right: 40px;
    top: 50%;
}
.section.sec-spon .spon_wrap .bx-controls-direction {
    position: absolute;
    display: flex;
    right: -70px;
}
.section.sec-spon .spon_wrap  .bx-wrapper .bx-controls-direction a {
    position: static;
}
.section.sec-spon .spon_wrap .bx-prev {
    background: url('/img/sub/spon-prev.png') no-repeat center; 
    width: 30px;
    height: 30px;
}
.section.sec-spon .spon_wrap .bx-next {
    background: url('/img/sub/spon-next.png') no-repeat center; 
    width: 30px;
    height: 30px;
}

/* section - 포인트섹션 */

.section.sec_point {
    height: 100vh;
    background: url(/img/sub/sec_point_bg.png) no-repeat center;
    background-size: cover;
}

.sec_point_title{
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec_point_title img{
    width: 100%;
    height: 100%;
}

.pc-title { display: block;}
.mo-title { display: none; }

/* section3 - 인포 */
.section.sec03 {
    background-color: #f9f9f9;
    padding: 120px 0;
} 

.section.sec03 .tit {
    text-align: center;
    margin-bottom: 80px;
} 

.section.sec03 .info-txt {
    margin: 60px auto 0;
    width: 900px;
}
.section.sec03 .info-txt .list {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.section.sec03 .info-txt .list.award {
    align-items: flex-start;
}
.section.sec03 .info-txt .min_tit {
    width: 170px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    background: #0a3ff1;
}
.section.sec03 .info-txt .min_tit span {
    display: inline-block;
    padding: 5px 10px;
    font-family: 'Vitro_core';
    font-style: oblique 15deg;
}
.section.sec03 .info-txt .txt {
    font-size: 24px;
    color: #353535;
}

.section.sec03 .info-txt .txt .line-h {
    line-height: 50px;
}

.section.sec03 .info-txt .spon {
    display: flex;
    gap: 30px;
    align-items: center;
}

.section.sec03 .info-txt .spon a > img{
    margin-top: 8px;
}
.section.sec03 .info-txt .souvenir_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.section.sec03 .info-txt .mc_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sec03_character{
    width: 435px;
    height: 367px;
    position: absolute;
    top: 65%;
    left: 80%;
    transform: translate(-50%,-50%);

}

/* section4 - 리더스 그룹 */
.section.sec04 {
    background-color: #ffffff;
    background-image: url(/img/sub/sec04_bg.png);
    background-repeat: no-repeat;
    padding: 120px 0;
}
.section.sec04 h2 {
    margin-bottom: 50px;
}
.section.sec04 .con.top p {
    color: #353535;
    font-size: 22px;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}
.section.sec04 .con.middle {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.section.sec04 .con.middle .tag {
    display: inline-block;
    padding: 10px 30px;
    color: #ffffff;
    font-size: 22px;
    font-family: 'Vitro_core';
    text-align: center;
    background: #dc2525;
    border-radius: 3px;
}
.section.sec04 .con.middle p {
    color: #353535;
    font-size: 20px;
}
.section.sec04 .con.middle p b {
    display: inline-block;
    width: 80px;
    font-size: 24px;
    padding-right: 10px;
    font-family: 'Vitro_core';
}
.section.sec04 .con.bottom {
    margin-top: 60px;
}
.section.sec04 .con.bottom h6 {
    position: relative;
    z-index: 1;
    background: #00000000;
    padding: 10px;
    color: #dc2525;
    text-align: center;
    font-size: 30px;
    font-family: 'Vitro_core';
    font-weight: normal;
}
.section.sec04 .con.bottom h6::before {
    position: absolute;
    content: '';
    z-index: -2;
    width: 480px;
    height: 2px;
    top: 50%;
    right: 0%;
    background: #dc2525;
}
.section.sec04 .con.bottom h6::after {
    position: absolute;
    content: '';
    z-index: -2;
    width: 480px;
    height: 2px;
    top: 50%;
    left: 0;
    background: #dc2525;
}

.section.sec04 .con.bottom ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    width: 80%;
    margin: 40px auto 0;
}
.section.sec04 .con.bottom li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    width: 250px;
    height: 280px;
    padding: 20px;
    border: 2px solid #dc2525;
}

.section.sec04 .con.bottom li .min_step {
    font-size: 22px;
    font-family: 'Vitro_core';
    text-align: center;
    margin-top: 10px;
    color: #dc2525;
}

.section.sec04 .con.bottom li .min_step:nth-child(2) {
    background: #ffffff;
}

.section.sec04 .con.bottom li img {
    margin: 20px 0px;
}
.section.sec04 .con.bottom li .min_tit {
    font-size: 22px;
    font-family: 'Vitro_core';
    text-align: center;
    margin-bottom: 10px;
    line-height: 30px
}
.section.sec04 .con.bottom li p {
    font-size: 16px;
    text-align: center;
}
.section.sec04 .con.bottom li:nth-child(2) {
    background: #dc2525;
}
.section.sec04 .con.bottom li:nth-child(2) p {
    color: #fff;
}
.section.sec04 .con.bottom .btn_wrap {
    text-align: center;
    margin-top: 50px;
}
.section.sec04 .con.bottom .btn_wrap a {
    display: inline-block;
    padding: 10px 80px;
    border: 2px solid #dc2525;
    background-color: #fff;
    border-radius: 10px;
    color: #dc2525;
    font-size: 22px;
    font-family: 'Vitro_core';
    transition: all 0.2s;
    margin-bottom: 20px;
}
.section.sec04 .con.bottom .btn_wrap a:hover {
    background: #dc2525;
    border-color: #dc2525;
    color: #fff;
}
.section.sec04 .con.bottom > p {
    color: #dc2525;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

/* section5 - 타임테이블 */
.section.sec05 {
    padding: 120px 0 220px;
    background: url(/img/sub/sec05_bg.png) no-repeat;
    background-size: cover;
}
.section.sec05 table thead {

}
.section.sec05 table thead th {
    font-size: 24px;
    color: #ffffff;
    font-family: 'Vitro_core';
    text-align: center;
    padding: 15px;
    border-right: 1px solid #fff;
    background: #2a2a2a;
    padding: 12px 16px;
}
.section.sec05 table tbody tr {

}
.section.sec05 table tbody td {
    font-size: 20px;
    color: #1c1c1c;
    font-family: 'Vitro_core';
    text-align: center;
    border-right: 1px solid #000;
    background-color: #fff;
    padding: 20px 0px;
    line-height: 2;
}

.section.sec05 table tbody tr td span {
    font-size: 18px;
    color: #222222;
}

.section.sec05 table tbody td:last-child {
    border-right: 0;
}
.section.sec05 table tbody tr.black td {
    color: #fff;
    border-right: 1px solid #fff;
    background: #dc2525;
}
.section.sec05 table tbody tr.black .img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.section.sec05 table tbody tr.black .img_wrap.two {
    line-height: 2;
    padding: 20px;
}

/* section6 - 코스안내 */
.section.sec06 {
    padding: 120px 0;
    background: url(/img/sub/sec06_bg.png) no-repeat center;
    background-size: cover;
}
.gift_ready {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* section7 - 코스안내 */
.section.sec07 {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.section.sec07 .tab_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}
.section.sec07 .tab_wrap .tab_btn {
    display: inline-block;
    font-size: 24px;
    font-family: 'Vitro_core';
    padding: 15px 70px;
    color: #dc2525;
    border: 2px solid #dc2525;
    border-radius: 10px;
    cursor: pointer;
}

.section.sec07 .tab_wrap .tab_btn:nth-child(2) {
    display: inline-block;
    font-size: 24px;
    font-family: 'Vitro_core';
    padding: 15px 70px;
    color: #dc2525;
    border: 2px solid #dc2525;
    border-radius: 10px;
    cursor: pointer;
}
.section.sec07 .tab_con_wrap {
    display: flex;
    justify-content: center;
}

.section.sec07 .tab_wrap .tab_btn.on {
    background: #dc2525;
    border-color: #dc2525;
    color: #ffffff;
}

.section.sec07 .tab_wrap .tab_btn:nth-child(2).on {
    background: #dc2525;
    border-color: #dc2525;
    color: #ffffff;
}

.section.sec07 .tab_con {
    display: none;
}
.section.sec07 .tab_con.on {
    display: block;
}


/* section7 - 참가신청 */
.section.sec08 {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: url(/img/sub/sec08_bg.png) no-repeat center;
    background-size: cover;
}
.section.sec08 h2 {
    color: #fff;
    margin-bottom: 80px;
}
.section.sec08 h2 > span {
    color: #fff;
}
.section.sec08 ul {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 100px;
    justify-content: center;
}

.section.sec08 .apply_half{
    filter: drop-shadow(5px 5px 5px #000c359e);
    transition: all 0.3s ease;
}

.section.sec08 .apply_half:hover {
    scale: 1.02;
}

.section.sec08 .apply_10k{
    filter: drop-shadow(5px 5px 5px #000c359e) ;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.section.sec08 .apply_10k:hover {
    scale: 1.02;
}

.section.sec08 .btn_wrap {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
}
.section.sec08 .btn_wrap a {
    width: 250px;
    display: inline-block;
    font-size: 24px;
    font-family: 'Vitro_core';
    padding: 15px 20px;
    border: 2px solid #fff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.2s;
    background: #fff;
    color: #000;
}
.section.sec08 .btn_wrap a:nth-child(2) {
    background: none;
    color: #fff;
}
.section.sec08 .btn_wrap a:hover {
    background: #dc2525;
    border-color: #fff;
    color: #fff;
}
.section.sec08 .ani_text {
    position: absolute;
    top: 40%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 150px;
    font-family: 'Vitro_core';
    -webkit-text-stroke: 1px #ffffffa3;
    color: #ffffff00;
    animation: flow 100s linear infinite;

}

@keyframes flow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-150%);
    }
}


/* section8 - 공지사항 */
.section.sec09 {
    padding: 120px 0;
}
.section.sec09 .con {
    display: flex;
    align-items: center;
    gap: 70px;
}
.section.sec09 .board {
    width: 600px;
} 
.section.sec09 .board .btn-more {
    text-align: right;
    margin-bottom: 15px;
} 
.section.sec09 .board .btn-more a {
    font-size: 19px;
    color: #1b1b1b;
} 
.section.sec09 .board ul {
    border-top: 2px solid #1b1b1b;
    width: 100%;
}
.section.sec09 .board ul li a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid #1b1b1b;
    padding: 15px 30px;
    color: #1b1b1b;
}
.section.sec09 .board ul li .tag {
    padding: 8px 20px;
    border-radius: 8px;
    color: #fff;
    background: #dc2525;
    font-size: 14px;
    font-weight: bold;
}
.section.sec09 .board ul li p {
    font-size: 19px;
    margin: 0;
    width: 60%; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}
.section.sec09 .board ul li .date {
    position: absolute;
    right: 30px;
    font-size: 16px;
}


/* section9 - 자주 묻는 질문 */
.section.sec10 {
    padding: 120px 0;
    background: url(/img/sub/sec10_bg.png) no-repeat center;
    background-size: cover;
}
.section.sec10 h2 {
    color: #fff;
}
.section.sec10 h2 >span {
    color: #fff;
}
.section.sec10 .con .sch_box {
    display: none;
}
.section.sec10 .con .board_paging {
    display: none;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table li {
    background: rgb(0 0 0 / 63%);
    margin-bottom: 20px;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr {
    border-bottom: 0;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.title {
    color: #fff;
    font-size: 22px;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.title span {
    font-weight: bold;
}
.section.sec10 .con  .new_board_2021 .board_wrap .board_faq_con .list_table {
    border-top: 0;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .content .n_tr {
    border-bottom: 0;
    background: none;
    border-top: 1px solid #e1e1e1;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .content .n_tr .n_td.txt {

    color: #e5e5e5;
    line-height: 1.6;
    font-size: 18px;
}
.section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.arrow .arrow_icon {
    width: 26px;
    height: 15px;
    background: url(/img/sub/board-arrow.png);
}

/* section10 - 찾아오시는길 */
.section.sec11 {
    overflow: hidden;
    padding: 120px 0 200px;
}
.section.sec11 .con {
    display: flex;
    gap: 40px;
}
.section.sec11 .con .map #daumRoughmapContainer1737522187121  {
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.section.sec11 .con .txt h6 {
    display: inline-block;
    background: #dc2525;
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-family: 'Vitro_core';
}
.section.sec11 .con .txt h6 b {
    font-size: 20px;
}

.section.sec11 .con .txt h6 span {
    font-size: 18px;
    margin-left: 10px;
}

.section.sec11 .con .txt h6 img {
    padding-right: 10px;
}
.section.sec11 .con .txt .min-tit {
    font-size: 20px;
    font-weight: bold;
}
.section.sec11 .con .txt1 {
    margin: 20px 0;
}
.section.sec11 .con .txt1 p {
    font-size: 18px;
    line-height: 2;
}
.section.sec11 .con .txt1 .num {
    color: #fff;
    background: #00174b;
    border-radius: 50px;
    padding: 0px 8px;
    font-weight: bold;
    margin-right: 5px;
}
.section.sec11 .con .txt1 .num.two {
    background: #007410;
}
.section.sec11 .con .txt2 .min-tit {
    margin-bottom: 5px;
}
.section.sec11 .con .txt2 p {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.section.sec11 .con .txt2 p span {
    color: #fff;
    background: #0064ff;
    border-radius: 3px;
    padding: 0 5px;
}
.section.sec11 .con .txt2 p span.green {background: #00c24e;}
.section.sec11 .con .txt2 p span.red {background: #ff0000;}
.section.sec11 .ani_text {
    position: absolute;
    bottom: -60px;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 150px;
    font-family: 'Vitro_core';
    color: #f9f9f9;
    animation: flow 100s linear infinite;
    font-style: oblique 15deg;
}

section .section_address.lst{
    display: none;
}

    /* 참가신청 폼 */
    /* .sub.apply02 .agree_con_box {
        overflow: scroll;
    } */

@media (max-width: 1920px) {
    .section.sec01 .btn_wrap {
        bottom: 100px;
    }
}
@media (max-width: 1600px) {
    #gnb_layout .logo a img {
        width: 70%;
    }
    #gnb_layout .gnb .btn-chat {
        right: 20px;
    }
    #gnb_layout .gnb .btn-spon {
        right: 190px;
    }
    #gnb_layout .gnb .dept1 a {
        padding: 0 20px;
    }
    .section.sec01 .btn_wrap {
        bottom: 100px;
    }
}
@media (max-width: 1200px) {
    #gnb_layout .logo a img {
        height: auto;
    }
}

@media all and (max-width:768px) {
    /* header */
    #open-sitemap {
        background: url(/img/all_menu.png);
    }
    #gnb_layout .mobile.nav .top .logo {
        width: auto;
    }
    #gnb_layout .logo img {
        height: 20px;
    }
    #gnb_layout .mobile.nav .top .logo img {
        margin-top: 30px;
    }
    #gnb_layout .mobile.nav.on {
        background: #ffffff;
    }
    #gnb_layout .mobile.nav > ul > li > a {
        color: #222222;
    }
    #gnb_layout .mobile.nav > ul > li > a > img{
        vertical-align: top;
        margin-top: 5px;
        margin-bottom: 10px;
    }


    /* footer */
    .footer .copy .top {
        flex-direction: column;
        gap: 10px;
    }
    .footer .copy .top .ft_logo {
        font-size: 18px;
    }

    /* 공통 */
    .container{
        width: auto;
    }
    section.section .container {
        width: 100%;
        padding: 0 20px;
    }
    section.section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    section.section h2 span {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .red_txt {
        font-size: 14px;
    }

    /* fixed-icon */
    .fixed-icon {
        bottom: 20px;
        right: 10px;
        gap: 10px;
    }
    .fixed-icon a {
        width: 80px;
        height: 80px;
    }
    .fixed-icon a:last-child { 
        display: inline-block; 
    }

    /* section1 - visual */
    .section.sec01 {
        background: url(/img/main/visual_mo.png) no-repeat center;
        height: 90vh;
        background-size: cover;
    }
    .main_visual_title{
        position: absolute;
        width: 320px;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .section.sec01 .dday{
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section.sec01 .dday .dday_line {
        display: flex;
        gap: 15px;
        background: #001660;
        border: 1px solid #fff;
        border-radius: 10px;
        padding: 10px 30px; 
    }
    
    .section.sec01 .dday p {
        font-size: 35px;
        color: #ffffff;
        font-weight: normal;
        font-family: 'Vitro_core';
        letter-spacing: 2px;
    }
    
    .section.sec01 .dday span {
        font-size: 35px;
        color: #ffffff;
        font-weight: normal;
        font-family: 'Vitro_core';
        letter-spacing: 3px;
    }

    .section.sec01 .btn_wrap {
        bottom: 100px;
        gap: 10px;
    }
    .section.sec01 .btn_wrap a {
        font-size: 16px;
        padding: 12px 45px;
    }
    .loop_cont {
        width: auto;
        overflow: hidden;
    }
    .banner_list {
        width: calc(500% + 10px);
      }

    /* section2 */

    .section.sec02 {
        position: relative;
        width: 100%;
        height: auto;
        background: url('/img/sub/sec02_bg_mo.png') no-repeat center;
        background-size: cover;
        display: flex;
        align-items: center;
    }
    .section.sec02 .con-txt {
        flex-direction: column;
        gap: 50px;
        padding: 70px 0;
        text-align: center;
    }
    .section.sec02 .spon_wrap h4 {
        font-size: 18px;
    }
    .section.sec02 .spon_wrap {
        /* display: none; */
        flex-direction: column;
        padding: 20px 30px;
        gap: 10px;
    }
    .section.sec02 .spon_wrap .bx-controls.bx-has-controls-direction {
        display: none;
    }
    .section.sec02 .con-txt .txt p {
        font-size: 20px;
    }
    .section.sec02 .con-txt .txt p b {
        font-size: 20px;
    }
    .section.sec02 .con-txt .txt h6 {
        font-size: 20px;
    }
    .section.sec02 .con-txt .txt .tit_top{
        font-size: 14px;
    }
    .section.sec02 .con-txt .txt h6 b {
        font-size: 28px;
    }

    .section.sec02 .con-txt img{
        width: 85%;
    } 

    .section.sec02 .btn_wrap{
        gap: 15px;
        display: grid;
        justify-content: center;
    }

    .section.sec02 .btn_wrap a{
        clip-path: none;
        padding: 10px 60px;
        font-size: 18px;
    }

    .section.sec02 .btn_wrap a:nth-child(2){
        clip-path: none;
        padding: 12px 80px;
        font-size: 20px;
    }

    .section.sec-spon .spon_wrap {
        flex-direction: column;
        padding: 20px 10px;
        gap: 15px;
    }
    
    .section.sec-spon .spon_wrap h4 {
        font-size: 18px;
    }

    .section.sec-spon .spon_wrap .bx-controls.bx-has-controls-direction {
        display: none;
    }




    /* section3 */
    .section.sec03 {
        padding: 80px 0;
    }
    .section.sec03 .info-txt {
        width: 100%;
        margin: 30px auto 0;
    }
    .section.sec03 .info-txt .min_tit {
        font-size: 14px;
        width: 130px;
    }
    .section.sec03 .info-txt .txt {
        font-size: 14px;
        text-align: center;
    }
    .section.sec03 .info-txt .list {
        gap: 10px;
        flex-direction: column;
        align-items: center;

    }
    .section.sec03 .info-txt .list.award {
        align-items: center;
    }
    .section.sec03 .info-txt .txt .line-h {
    line-height: 30px;
    }

    .sec03_character{
        display: none;
    }
 
    .pc-title { display: none; }
    .mo-title { 
        display: block; 
        width: 100%;
        height: 100%;
    }
    .section.sec_point{
        height: 70vh;
    }

    .sec_point_title {
        width: 100%;
        padding: 0px 20px;
    }

    /* section4 */
    .section.sec04 {
        padding: 80px 0;
    }
    .section.sec04 .con.top p {
        font-size: 14px;
    }
    .section.sec04 .con.middle {
        flex-direction: column;
        gap: 10px;
    }
    .section.sec04 .con.middle .tag {
        font-size: 14px;
        padding: 8px 15px;
    }
    .section.sec04 .con.middle .tag img {
        width: 20px;
    }
    .section.sec04 .con.middle p {
        font-size: 14px;
    }
    .section.sec04 .con.middle p b {
        font-size: 16px;
        width: 48px;
    }
    .section.sec04 .con.bottom h6 {
        font-size: 24px;
    }
    .section.sec04 .con.bottom h6::after {
        width: 100px;
    }
    .section.sec04 .con.bottom h6::before {
        width: 100px;
    }
    .section.sec04 .con.bottom ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section.sec04 .con.bottom li .min_tit {
        font-size: 18px;
    }
    .section.sec04 .con.bottom li p {
        font-size: 14px;
    }
    .section.sec04 .con.bottom .btn_wrap a {
        font-size: 16px;
    }
    .section.sec04 .con.bottom > p {
        font-size: 14px;
    }

    /* section5 */
    .section.sec05 {
        padding: 80px 0;
    }
    .section.sec05 table thead th {
        font-size: 14px;
    }
    .section.sec05 table tbody td {
        font-size: 14px;
        line-height: 1.6;
        padding: 10px 5px;
        font-family: 'Noto Sans KR';
        font-weight: 600;
    }

    .section.sec05 table tbody tr.black .img_wrap.two {
        flex-direction: column;
    }


    .section.sec05 table tbody tr td span{
        font-size: 14px;
    }

    /* section7 */
    .section.sec07 {
        padding: 80px 0;
    }
    .section.sec07 .tab_wrap {
        gap: 10px;
        margin-bottom: 20px;
    }
    .section.sec07 .tab_wrap .tab_btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .section.sec07 .tab_wrap .tab_btn {
        font-size: 16px;
        padding: 12px 40px;
    }
    
    .section.sec07 .tab_wrap .tab_btn:nth-child(2) {
        font-size: 16px;
        padding: 12px 40px;
    }
    
    .section.sec07 .tab_wrap .tab_btn.on {
        background: #dc2525;
        border-color: #dc2525;
        color: #ffffff;
    }
    
    .section.sec07 .tab_wrap .tab_btn:nth-child(2).on {
        background: #dc2525;
        border-color: #dc2525;
        color: #ffffff;
    }


    /* section8 */
    .section.sec08 {
        padding: 80px 0;
    }
    .section.sec08 ul {
        gap: 30px;
        flex-direction: column;
    }
    .section.sec08 .btn_wrap {
        display: grid;
        gap: 10px;
        margin-top: 30px;
    }
    .section.sec08 .btn_wrap a {
        font-size: 16px;
        padding: 12px 20px;
    }
    .section.sec08 .ani_text {
        display: none;
    }

    /* section8 */
    .section.sec09 {
        padding: 80px 0;
    }
    .section.sec09 .con {
        flex-direction: column;
        gap: 20px;
    }
    .section.sec09 .con .img  {
        display: none;
    }
    .section.sec09 .con .img img {
        width: 60%;
    }
    .section.sec09 .board {
        width: 100%;
    }
    .section.sec09 .board ul li a {
        padding: 10px;
        gap: 10px;
    }
    .section.sec09 .board ul li .tag {
        padding: 5px 10px;
        font-size: 12px;
    }
    .section.sec09 .board ul li p {
        font-size: 14px;
        width: 50%;
    }
    .section.sec09 .board ul li .date {
        font-size: 12px;
        right: 10px;
    }
    .section.sec09 .board .btn-more a {
        font-size: 14px;
    }

    /* section9 */
    .section.sec10 {
        padding: 80px 0;
    }
    .section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.arrow .arrow_icon {
        width: 20px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .n_tr .n_td.title {
        font-size: 14px;
    }
    .section.sec10 .con .new_board_2021 .board_wrap .board_faq_con .list_table .n_tbody .content .n_tr .n_td.txt {
        font-size: 14px;
    }

    /* section10 */
    .section.sec11 {
        padding: 80px 0;
    }
    .section.sec11 .con {
        flex-direction: column;
    }
    .section.sec11 .con .txt h6 {
        display: block;
        text-align: center;
    }
    .section.sec11 .con .txt h6 b {
        font-size: 18px;
    }
    .section.sec11 .con .txt1 p {
        font-size: 14px;
    }
    .section.sec11 .con .txt1 .num {
        padding: 0 6px;
    }
    .section.sec11 .con .txt2 p {
        font-size: 14px;
    }
    .section.sec11 .con .map #daumRoughmapContainer1737522187121 {
        width: 100% !important;
    }
    .section.sec11 .con .map #daumRoughmapContainer1737522187121 .wrap_map {
        height: 200px !important;
    }
    .section.sec11 .ani_text {
        display: none;
    }
    .guide_txt {
        font-size: 14px;
        line-height: 20px;
    }
    .map{
        display: flex;
    }

    /* 참가신청 폼 */
    .sub.apply02 .agree_con_box {
        overflow: scroll;
    }

}

/* etc - 공통 */
#etc_header {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    height: 100px;
    background: #dc2525;
    text-align: center;
}
#etc_header a {
    display: inline-block;
    padding: 20px;
}
.sub_contents_header .sub_con_title {
    width: 1170px;
    text-align: center;
}

/* 개인정보처리방침 */
#wrap.privacy .sub_contents_header {
    padding-top: 160px;
}
#wrap.privacy p {
    font-size: 18px;
    line-height: 1.8;
}
#wrap.privacy table {
    font-size: 18px;
    border-top: 1px solid #ddd;
}
#wrap.privacy table tr {
    border-bottom: 1px solid #ddd;
    line-height: 1.6;
    text-align: center;
}
#wrap.privacy table th {
    text-align: center;
    background: #f8f8f8;
    padding: 10px;
    border-right: 1px solid #ddd;
}
#wrap.privacy table th:last-child {
    border-right: 0;
}
#wrap.privacy table tr td {
    padding: 10px;
    border-right: 1px solid #ddd;
}
#wrap.privacy table tr td:last-child {
    border-right: 0;
}
#wrap.privacy table tr td.br {
    border-right: 1px solid #ddd;
}

.apply_guide {
    display: block;
}

@media all and (max-width:768px) {
    #wrap.privacy .sub_contents_header {
        padding-top: 100px;
    }
    #wrap.privacy table {
        font-size: 14px;
    }
    #wrap.privacy p {
        font-size: 14px;
    }
    .sub_contents_header .sub_con_title{
        width: auto;
    }
    #etc_header a {
        scale: 0.8;
    }
}