@charset "utf-8";

html, body {
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 숨김 */
}

body{
overflow-x: hidden;
padding:0;
letter-spacing:-1px;
}

body.menu-open {
overflow: hidden;
}

/* base */
#wrap {width:100%; margin:0 auto; padding:0;}
.wrap   {max-width:1600px; margin:0 auto; padding:0; position:relative;}
.wrap10 {max-width:1000px; margin:0 auto; padding:0; position:relative;}
.wrap12 {max-width:1200px; margin:0 auto; padding:0; position:relative;}
.wrap14 {max-width:1400px; margin:0 auto; padding:0; position:relative;}
.wrap16 {max-width:1600px; margin:0 auto; padding:0; position:relative;}
.wrap_100 {max-width:100%; margin:0 auto; padding:0; position:relative;}

.wrap_sub {background-color:#f7f7f7; padding:70px 0 140px;}
.wrap_bg1 {background-color:#ffffff;}
.wrap_bg2 {background-color:#fbf8f7;}

/* 헤더 레이아웃 */
header {
width: 100%;
border-bottom: 1px solid #ccc;
background: #ddddddba;
position: relative;
z-index: 1000;
/* 상단 고정 추가 */
position: fixed;
top: 0;
left: 0;
transition: all 0.4s ease;
}

/* [메뉴 고정시] 추가 설정 */
body {/* padding-top: 100px; */}
header.scrolled {background: rgb(50 68 120 / 85%); backdrop-filter: blur(5px); border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
header.scrolled .main-menu > li > a {color: #fff;}
header.scrolled .sub-menu {background: rgb(50 68 120 / 90%); box-shadow: 0 8px 15px rgba(0,0,0,0.5);}
.header h1 img { height: 40px; transition: all 0.3s ease-in-out; }
header.scrolled .sub-menu li a {color: #ccc;}
header.scrolled .sub-menu li a:hover {background: rgba(255, 255, 255, 0.1);color: #fca2c6;}
header.scrolled .hamburger span {background: #fff;}

header .header {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
height: 100px;
}

/* 로고 사이즈 조절 */
header .header div.logo img {
height: 40px;
}

/* 메인 메뉴 설정 */
header nav ul.main-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
height: 100%;
}
header nav ul.main-menu > li {
position: relative;
height: 100px;
line-height: 100px;
}
header nav ul.main-menu > li > a {
display: block;
padding: 0 25px;
font-size: 1.1rem;
font-weight: 500;
color: #333;
text-decoration: none;
transition: color 0.3s;
}
header nav ul.main-menu > li:hover > a {
color: #e11769; /* 마라톤 포인트 컬러(핑크) */
}

@media (max-width: 1024px) {
    body { padding-top: 60px; }
    header .header { height:60px; }
    header .header div.logo img { height:30px; }
    header.scrolled .main-menu > li > a {background-color:#fff;color: #666;}
    header.scrolled .sub-menu {background:#f9f9f9;}
    header.scrolled .sub-menu li a {color: #666;}
}

.menu_dim {
    display: none;
}
@media (max-width: 1024px) {
    .menu_dim {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.55);
        z-index: 999;
    }
    .menu_dim.active {
        display: block;
    }
    header nav.menu {
        z-index: 9998;
    }
    body.menu-open {
        overflow: hidden;
    }
}

/* 서브 메뉴 설정 (기본 숨김) */
header nav ul.sub-menu {
position: absolute;
top: 100px; /* 헤더 높이만큼 아래로 */
left: 50%;
transform: translateX(-50%);
min-width: 180px;
background: #fff;
list-style: none;
padding: 10px 0;
margin: 0;
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
border-radius: 0 0 10px 10px;
/* 애니메이션 효과 */
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

/* 마우스 오버 시 서브메뉴 노출 */
header nav ul.main-menu li:hover .sub-menu {
opacity: 1;
visibility: visible;
top: 100px; /* 살짝 위로 올라오는 느낌을 주고 싶다면 80px로 고정 */
}

/* 현재 페이지 표시 (ASP 조건문으로 붙는 ID 처리) */
#sub-menu-on {
border-top: 2px solid #ff3385;
}

/* 서브 메뉴 항목 스타일 */
header nav ul.sub-menu li a {
display: block;
padding: 10px 20px;
font-size: 1rem;
color: #666;
text-decoration: none;
line-height: 1.4;
transition: background 0.2s;
}

header nav ul.sub-menu li a:hover {
background: #fdf2f7; /* 연한 핑크 배경 */
color: #ff3385;
}

/* 햄버거 버튼 영역 */
header div.m_menu_btn {
display: none; /* 기본적으로 PC에서는 숨김 */
margin-left: 20px;
z-index: 1001;
}

header div button.hamburger {
width: 24px;
height: 24px;
position: relative;
background: none;
border: none;
cursor: pointer;
padding: 0;
margin:0 8px;
}

header div button.hamburger span {
display: block;
position: absolute;
height: 3px;
width: 100%;
background: #333; /* 기본 색상 */
border-radius: 9px;
opacity: 1;
left: 0;
transform: rotate(0deg);
transition: .25s ease-in-out;
}

/* 햄버거 선 위치 설정 */
header div button.hamburger span:nth-child(1) { top: 0px; }
header div button.hamburger span:nth-child(2) { top: 8px; }
header div button.hamburger span:nth-child(3) { top: 16px; }



/* [애니메이션] 활성화 상태 (X 모양) */
.hamburger.open span:nth-child(1) {
top: 10px;
transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
opacity: 0;
left: -60px;
}
.hamburger.open span:nth-child(3) {
top: 10px;
transform: rotate(-135deg);
}

/* 반응형 설정: 보통 1024px 이하에서 메뉴를 숨기고 햄버거를 노출 */
@media (max-width: 1024px) {
    header .header {
        padding: 0 15px;
    }
    header .logo {
        flex-shrink: 0;
    }
    header div.m_menu_btn {
        display: block !important;
        position: relative;
        z-index: 9999;
    }
    header nav.menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        background: #fff;
        z-index: 9998;
        -webkit-overflow-scrolling: touch;
    }
    header nav.menu.active {
        display: block;
    }
    header nav ul.main-menu {
        display: block;
        width: 100%;
        height: auto;
    }
    header nav ul.main-menu > li {
        height: auto;
        line-height: normal;
        border-bottom: 1px solid #eee;
    }
    header nav ul.main-menu > li > a {
        padding: 16px 20px;
    }
    header nav ul.sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        background: #f7f7f7;
        display: block;
    }
}



/* 푸터 */
footer {
  background: #14393b;
  color: #cfcbe6;
  padding: 70px 0 30px;
  font-size: 14px;
}

/* 좌측 */
footer .footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

footer .footer-sub {
  font-size: 12px;
  color: #9a94b0;
  margin-bottom: 15px;
}

footer .footer-desc {
  line-height: 1.7;
  margin-bottom: 20px;
}

footer .footer-sns a {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: 0.2s;
}

footer .footer-sns a:hover {
  background: rgba(255,255,255,0.2);
}

footer .footer-col h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-col li {
  margin-bottom: 8px;
}

footer .footer-col a {
  color: #cfcbe6;
  text-decoration: none;
}

footer .footer-col a:hover {
  color: #fff;
}

/* 하단 */
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #9a94b0;
}

footer .policy a {
  margin-left: 15px;
  color: #9a94b0;
  text-decoration: none;
}

footer .policy a:hover {
  color: #fff;
}

/* 메인팝업 */
.main_pop_layer{position:absolute;z-index:999;border:1px solid #ddd;}
.main_pop_layer_close_box{padding:5px 10px;font-size:14px;background:#ddd;display: flex;justify-content: space-between;}
.main_pop_layer_close{cursor:pointer;background:#ddd;border:none;}
.main_pop_layer_close span{display:inline-block;width:20px;height:20px;background:url('/images/common/close.png') no-repeat 50% 3px / 10px;vertical-align:middle;}
@media screen and (max-width: 768px){
    .main_pop_layer{display:block; left:0 !important;top:60px !important; margin:0 20px; z-index:9999;background:#fff;}
    .main_pop_content{max-height:calc(100vh - 80px);overflow-y:auto;}
    .main_pop_layer img{max-width:100%;max-height:100%;}
    .main_pop_layer_close_box{padding:10px;background:#ddd;}
    .main_pop_layer_close{cursor:pointer;background:#ddd;}
    .main_pop_layer_close span{display:inline-block;width:20px;height:20px;background:url('/images/common/close.png') no-repeat 50% 3px / 10px;vertical-align:middle;}
}



/* 메인 - 이미지 */
.m_visual {
width: 100%;
height: auto;
max-height: 900px;
aspect-ratio: 16 / 9;
text-align: center;
padding: 0;
margin: 0 auto;
}
.m_visual img{max-width:100%;padding:0; margin:0;}
#m_visual {
position: relative;
overflow: hidden;
}
#m_visual_bg1, #m_visual_bg2 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: contain;
background-position: 50% 0;
transition: opacity 1s ease-in-out;
opacity: 0;
z-index: 1;
}
#m_visual_img {
position: relative;
z-index: 2;
}

.main_sec .bg-canvas {
position: absolute;
inset: 0;
z-index: 99;
}
.main_sec canvas {
width: 100%;
height: 100%;
display: block;
}

/* 메인 - 날씨정보 */
.weather_line {
position: absolute;
bottom: 10px;
right: 20px;
display: inline-flex;
align-items: center;
font-size: 1rem;
color: #3f6e8f;
z-index: 999;
}

/* 메인 - 대회안내 */
.main_sec_info {
  padding: 70px 20px;
  background-color: #f0f8ff;
}

.main_sec_info h4 {
  margin: 0 0 22px;
  color: #07304d;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-align:center;
}

.main_sec_info h4 small {
  display: inline-block;
  margin-left: 10px;
  color: #78a7b7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.main_sec_info .main-info.main-info-txt {
  position: relative;
  padding: 44px 42px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbfd 100%);
  border: 1px solid rgba(145, 214, 199, 0.55);
  border-radius: 28px;
  overflow: hidden;
}

.main_sec_info .main-info.main-info-txt::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: rgba(145, 214, 199, 0.18);
  border-radius: 50%;
}

.main_sec_info .main-info.main-info-txt::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  background: rgba(64, 142, 219, 0.08);
  border-radius: 50%;
}

.main_sec_info .main-info.main-info-txt ul {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.main_sec_info .main-info.main-info-txt li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(8, 47, 76, 0.18);
}

.main_sec_info .main-info.main-info-txt li:first-child {
  padding-top: 0;
}

.main_sec_info .main-info.main-info-txt li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.main_sec_info .main-info.main-info-txt strong {
  width: 96px;
  flex: 0 0 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: -0.04em;
  background: #0b7fa3;
  border-radius: 999px;
}

.main_sec_info .main-info.main-info-txt p {
  flex: 1;
  margin: 3px 0 0;
  color: #377eb1;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.main_sec_info .main-info.main-info-txt small {
  display: inline-block;
  margin-left: 4px;
  color: #5d7b8d;
  font-size: 15px;
  font-weight: 500;
}

/* 버튼 영역 */
.main_sec_info .main_button_join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.main_sec_info .main_button_join .btn {
  min-width: 170px;
  height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  transition: all 0.25s ease;
}

.main_sec_info .main_button_join .btn-outline-primary {
  color: #0b7fa3;
  border: 2px solid #0b7fa3;
  background: #ffffff;
}

.main_sec_info .main_button_join .btn-outline-primary:hover {
  color: #ffffff;
  background: #0b7fa3;
  border-color: #0b7fa3;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 127, 163, 0.22);
}

.main_sec_info .main_button_join .btn-outline-success {
  color: #2f9b67;
  border: 2px solid #2f9b67;
  background: #ffffff;
}

.main_sec_info .main_button_join .btn-outline-success:hover {
  color: #ffffff;
  background: #2f9b67;
  border-color: #2f9b67;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(47, 155, 103, 0.22);
}

@media (max-width: 768px) {
  .main_sec_info {
    padding: 44px 16px;
  }

  .main_sec_info .main-info.main-info-txt {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .main_sec_info .main-info.main-info-txt li {
    gap: 14px;
    padding: 17px 0;
  }

  .main_sec_info .main-info.main-info-txt strong {
    width: 82px;
    flex-basis: 82px;
    font-size: 14px;
  }

  .main_sec_info .main-info.main-info-txt p {
    font-size: 16px;
  }

  .main_sec_info .main-info.main-info-txt small {
    display: block;
    margin: 4px 0 0;
    font-size: 13px;
  }

  .main_sec_info .main_button_join {
    flex-direction: column;
    gap: 10px;
  }

  .main_sec_info .main_button_join .btn {
    width: 100%;
    max-width: 320px;
    height: 52px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .main_sec_info .main-info.main-info-txt {
    padding: 28px 18px;
  }

  .main_sec_info .main-info.main-info-txt li {
    display: block;
  }

  .main_sec_info .main-info.main-info-txt strong {
    width: auto;
    min-width: 86px;
    margin-bottom: 8px;
  }

  .main_sec_info .main-info.main-info-txt p {
    font-size: 15px;
  }
}

/* 메인 - 링크 */
.main_sec_menu {width: 100%; padding: 70px 20px; background: #fff;}
.main_menu_grid {max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #dbe3ea; border-left: 1px solid #dbe3ea;}
.menu_item {min-height: 120px; padding: 12px 48px; display: flex; align-items: center; gap: 32px; text-decoration: none; color: #082f4c; border-right: 1px solid #dbe3ea; border-bottom: 1px solid #dbe3ea; background: #fff; transition: all 0.25s ease;}
.menu_item:hover {background: #f5fbfd; transform: translateY(-2px);}
.menu_item strong {font-size: 24px; letter-spacing: -0.05em; line-height: 1.25; color: #082f4c; white-space: nowrap;}
.menu_icon {width: 64px; height: 64px; flex: 0 0 64px; display: inline-flex; align-items: center; justify-content: center;}
.menu_icon img {width: 64px; height: 64px; display: block; object-fit: contain;}
@media (max-width: 1024px) {
  .main_menu_grid {grid-template-columns: repeat(2, 1fr);}
  .menu_item {min-height: 160px; padding: 36px 34px;}
  .menu_item strong {font-size: 26px;}
}
@media (max-width: 640px) {
    .main_sec_menu {padding: 40px 16px;}
    .main_menu_grid {grid-template-columns: 1fr;}
    .menu_item {min-height: 96px;padding: 24px 20px;gap: 20px;}
    .menu_icon {width: 54px;height: 54px;flex-basis: 54px;}
    .menu_icon img {width: 54px;height: 54px;}
    .menu_item strong {font-size: 22px;}
}

/* 메인 - 카운터 */
.main_sec_dday {
position: relative;
width: 100%;
min-height: 150px;
padding: 55px 20px 48px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: #07304d;
background:
linear-gradient(135deg, transparent 0 12%, rgba(120, 210, 232, 0.22) 12.1%, transparent 12.7%),
linear-gradient(135deg, transparent 84%, rgba(167, 226, 238, 0.26) 84.1%, transparent 84.8%),
linear-gradient(135deg, #ffffff 0%, #eaf9fd 52%, #d7f2f8 100%);
border-style: solid;
border-color: rgb(185 209 240 / 60%);
border-width: 1px 0;
}

.main_sec_dday::before {
content: "";
position: absolute;
inset: -80px;
background:
linear-gradient(135deg, transparent 23%, rgba(255, 255, 255, 0.55) 23.15%, transparent 23.55%),
linear-gradient(135deg, transparent 70%, rgba(102, 195, 222, 0.18) 70.15%, transparent 70.45%),
repeating-linear-gradient(135deg,rgba(7, 48, 77, 0.025) 0 2px,transparent 2px 7px);
opacity: 0.75;
pointer-events: none;
}

.dday_inner {
position: relative;
z-index: 1;
text-align: center;
}

.dday_timer {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 24px;
}

.time_box {
min-width: 78px;
}

.time_box strong {
display: block;
font-size: 52px;
line-height: 1;
font-weight: 800;
letter-spacing: 1px;
color: #446f91;
}

.time_box span {
display: block;
margin-top: 10px;
font-size: 0.65rem;
line-height: 1;
color: #ffffff;
background-color: #7297b1c9;
padding: 4px 0;
letter-spacing: 1px;
}

.dday_timer em {
display: block;
margin-top: 1px;
font-style: normal;
font-size: 48px;
line-height: 1;
color: #14324a;
}

.dday_place {
margin-top: 20px;
padding-top: 20px;
border-top: solid 1px #333;
font-size: 22px;
line-height: 1.4;
font-weight: 500;
letter-spacing: -0.03em;
color: #14324a;
}

@media (max-width: 768px) {
    .main_sec_dday {
        min-height: 150px;
        padding: 48px 16px 42px;
    }
    .dday_timer {
        gap: 10px;
    }
    .time_box {
        min-width: 54px;
    }
    .time_box strong {
        font-size: 36px;
    }
    .time_box span {
        margin-top: 8px;
        font-size: 10px;
    }
    .dday_timer em {
        font-size: 34px;
    }
    .dday_place {
        font-size: 18px;
    }
}


/* 메인 - 공지사항 */
.main_sec_notice {
width: 100%;
padding: 55px 0;
background: #fff;
}

.main_sec_notice .wrap14 {
width: min(1200px, calc(100% - 32px));
margin: 0 auto;
}

.main_sec_notice .row {
display: flex;
align-items: flex-start;
}

/* 공지사항 영역 */
.main_sec_notice .main_notice {
width: 100%;
padding-right: 40px;
}

.main_sec_notice .main_notice h4 {
margin: 0 0 22px;
color: #07304d;
font-size: 30px;
line-height: 1.2;
letter-spacing: -0.04em;
}

.main_sec_notice .main_notice h4 small {
display: inline-block;
margin-left: 10px;
color: #78a7b7;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.08em;
vertical-align: middle;
}

.main_sec_notice .clear {
margin-top: 0 !important;
}

/* 공지사항 한 줄 */
.main_sec_notice .main_notice_item {
display: flex;
align-items: center;
gap: 18px;
padding: 15px 0;
border-bottom: 1px solid rgba(7, 48, 77, 0.12);
}

.main_sec_notice .main_notice_item:first-child {
border-top: 1px solid rgba(7, 48, 77, 0.18);
}

.main_sec_notice .main_notice_item .date {
width: 74px;
flex: 0 0 74px;
margin: 0;
color: #0b7fa3;
font-size: 15px;
font-weight: 700;
line-height: 1;
}

.main_sec_notice .main_notice_item .date strong {
font-weight: 800;
}

.main_sec_notice .main_notice_item .text {
flex: 1;
min-width: 0;
margin: 0;
}

.main_sec_notice .main_notice_item .text a {
display: block;
color: #07304d;
font-size: 17px;
font-weight: 500;
line-height: 1.45;
letter-spacing: -0.035em;
text-decoration: none;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.main_sec_notice .main_notice_item .text a:hover {
  color: #0b7fa3;
  text-decoration: underline;
}

/* 우측 배너 */
.main_sec_notice .col-md-2 {
  margin-left: auto;
}

.main_sec_notice .main_quick_banner {
width: 100%;
min-width: 180px;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 6px;
margin-top: 55px;
}

.main_sec_notice .main_quick_banner .mgt15,
.main_sec_notice .main_quick_banner .mgt8 {
  margin: 0 !important;
}

.main_sec_notice .main_quick_banner a {
  display: block;
}

.main_sec_notice .main_quick_banner img {
  display: block;
  max-width: 100%;
  height: auto;
}


@media (max-width: 767px) {
  .main_sec_notice {
    padding: 38px 20px;
  }

  .main_sec_notice .row {
    display: block;
  }

  .main_sec_notice .main_notice {
    padding-right: 0;
  }

  .main_sec_notice .main_notice h4 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .main_sec_notice .main_notice_item {
    gap: 12px;
    padding: 12px 0;
  }

  .main_sec_notice .main_notice_item .date {
    width: 62px;
    flex-basis: 62px;
    font-size: 14px;
  }

  .main_sec_notice .main_notice_item .text a {
    font-size: 15px;
  }

  .main_sec_notice .main_quick_banner {
    width: 100%;
    min-width: 0;
    margin-top: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .main_sec_notice .main_quick_banner a {
    flex: 1;
    max-width: 180px;
  }

  .main_sec_notice .main_quick_banner img {
    width: 100%;
  }
}



/*서브 - 가로메뉴*/
.sub-visual-tab {  margin:40px 0 0 0; padding:20px 0 0 0; border-bottom: solid 2px #4c8bb8;}
.sub-visual-tab ul { display: flex; padding: 0; margin: 0; width: 100%; height: auto;}
.sub-visual-tab li { flex: 0 0 20%; width:20%; }
.sub-visual-tab a { display: flex; align-items: center; justify-content: center; position: relative; padding:5px 10px; height:50px; font-size: 1.1rem; color: #000;}
.sub-visual-tab a::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px;}
.sub-visual-tab li a.active { color: #fff; background-color: #4c8bb8; border-radius:8px 8px 0 0;}

.sub-tab-list { margin-top: 0; padding-bottom: 70px;}
.sub-tab-list li { position: relative; width: auto;}
.sub-tab-list li:not(:last-child)::before { content: ''; position: absolute; top: 0; bottom: 0; right: -2px; margin: auto; width: 4px; height: 4px; background: #cccccc; border-radius: 50%; }
.sub-tab-list li a.active { color: #13998e; }
.sub-tab-list a { padding:0 20px; font-size: 20px; color: #666666; }
.sub-tab-list .sub-menu-tab { justify-content: center; }

@media screen and (max-width: 1024px) {
    .sub-visual-tab { margin-bottom: 5px; padding: 4px 0 0;  width: 100%; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;}
    .sub-visual-tab::-webkit-scrollbar { display: none;}
    .sub-visual-tab ul { margin: 0; padding:0; max-width: none;}
	.sub-visual-tab li { flex: 1 0 auto; width:auto;}
	.sub-visual-tab li:last-child { margin-right: 0; }
	.sub-visual-tab a { height: 40px; font-size: 16px; padding:8px 16px; }
    .sub-visual-tab li a.active {border-radius: 0;}
    #contents {
        position: relative;
        float: right;
        width: 100%;
        max-width: 100%;
        padding-bottom: 100px;
        margin-top: 10px;
    }
}




/* 타이틀 */
.wrap_sub .sec-sub-title {
  color: #399b99;
  letter-spacing: 3px;
  font-size: 0.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.wrap_sub .sec-title {
  font-size: 2rem;
  font-weight: 500;
  color: #2c2540;
  margin-bottom: 10px;
}

.wrap_sub .sec-desc {
  color: #7b768f;
  font-size: 0.8rem;;
}

/* 카드 */
.wrap_sub .event-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  padding:80px 40px;
}
@media screen and (max-width: 1024px) {
    .wrap_sub {padding:40px 0 60px;}
    .wrap_sub .event-card {margin: 20px; padding:40px 20px;}

}


.tbl_01 {width:100%; margin:auto;}
.tbl_01 th, .tbl_overview td{border-bottom:1px solid #eee;text-align:left;vertical-align:top}
.tbl_01 th{padding:15px 0 0 10px;font-size:1.0rem; font-weight:500}
.tbl_01 td{padding:15px; font-size:1.0rem;}
.tbl_01 td ul li{position:relative;padding-left:94px;}
.tbl_01 td ul li em{position:absolute;left:0;}
@media screen and (max-width: 1024px) {
    .tbl_01 th{display:block;padding:15px 10px}
    .tbl_01 td{display:block;}
}


.note_box{font-size:1rem;color:#666;line-height:1.5;}
.note_box + .note_box{margin-top:40px}
.note_box h3{text-align:left;color:#2f5a8e;}
.note_box h4{font-size:1.2rem;color:#333;}
.note_box h5{font-size:1rem;color:#0098cf;}
.note_box h3, .note_box h4, .note_box h5, .note_box p{margin-bottom:10px}
.note_box ul{}
.note_box li{position:relative;padding-left:14px;}
.note_box li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#ddd}
.note_box .list-dot li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#00adef}
.note_box .list-dot li:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:#00adef}
.note_box .list-dot li.no-desc:before{content:'';position:absolute;left:0;top:9px;width:4px;height:4px;background:none;}
.note_box ol li{}
.note_box li + li{margin-top:8px;}
.note_box_pd p, .note_box_pd ul{padding-left:24px}
.note_box li strong{font-weight:500;color:#000}
.note_box .deco_line{text-decoration:underline;}
.note_box .deco_point{color:#00adef;}
.group_bx{padding:20px 15px;background:#f7f7f7;}
.group_bx li:before{display:none;}


/* 각 페이지 세부 */
.event-card .intro_img_banner {display: flex; flex-wrap: wrap; align-items: left; gap: 0.5rem;}
.event-card .intro_img_banner img {display: block; max-width: 140px; max-height: 55px; width: auto; height: auto; object-fit: contain;}
.event-card .intro_img_banner a { display: inline-block;}



.map_box{max-width:1100px;margin:40px auto;color:#263d4d;font-size:1.05rem;line-height:1.7}
.map_box .map_section{margin-bottom:40px}
.map_box .map_title{position:relative;margin:0 0 18px;padding-left:14px;color:#198cde;font-size:1.1rem;font-weight:500;letter-spacing:-.04em;line-height:1.35}
.map_box .map_title::before{content:"";position:absolute;left:0;top:.2rem;width:4px;height:1rem;background:#0b9f8a;border-radius:4px}
.map_box .map_title span{margin-left:6px;color:#5d7b8d;font-size:1.0rem;font-weight:400}
.map_box .map_img{overflow:hidden;border:1px solid #e1e8ed;border-radius:14px;background:#f8fafc}
.map_box .map_img img{display:block;width:100%;height:auto}
.map_box .route_list{display:grid;gap:12px}
.map_box .route_item{padding:18px 20px;background:#f8fbfc;border:1px solid #e2edf1;border-radius:6px}
.map_box .route_item strong{display:block;margin-bottom:6px;color:#0b7fa3;font-size:1.05rem;font-weight:500;letter-spacing:-.035em}
.map_box .route_item p{margin:0 15px;color:#3f5868;font-size:1rem;letter-spacing:-.035em;word-break:keep-all}
.map_box .table_scroll{width:100%;overflow-x:auto}
.map_box .map_table{width:100%;min-width:720px;border-collapse:collapse;border-top:1px solid #07304d;background:#fff}
.map_box .map_table th,.map_box .map_table td{padding:14px 12px;border:1px solid #dde6eb;color:#354b5a;font-size:1.05rem;line-height:1.55;text-align:center;vertical-align:middle}
.map_box .map_table th{color:#07304d;font-weight:500;background:#f1f7fa}
.map_box .map_table .td_bg{color:#07304d;font-weight:400;background:#f8fbfc}
.map_box .map_table .notice_td{text-align:left;color:#3f5868}
@media (max-width:768px){
    .map_box{font-size:1.05rem}
    .map_box .map_section{margin-bottom:34px}
    .map_box .map_title{font-size:1.1rem}
    .map_box .map_title span{display:block;margin:4px 0 0;font-size:1rem}
    .map_box .route_item{padding:15px 16px}
    .map_box .route_item strong{font-size:1.05rem}
    .map_box .route_item p{font-size:1rem}
}


.event-card .tblBox{ margin-top:30px; margin-bottom:10px;}
.event-card .tblBox .tblTit{ margin-bottom: 30px; font-size: 28px; font-weight: 400; text-align: center; }
.event-card .tblBox table{ width: 100%; border: 1px solid #ddd; }
.event-card .tblBox table tr{ border-bottom: 1px solid #ddd; }
.event-card .tblBox table th{ padding: 16px 8px; font-size: 1.1rem; text-align: center; border-bottom: 1px solid #ddd; background-color:#f7f7f7;color:#555; font-weight:500; }
.event-card .tblBox table td{ padding: 12px 10px; font-size: 1.0rem; text-align: center; border-left: 1px solid #ddd;font-weight: 300;}



.list_tb {border-top:1px solid #c3c3c3;border-bottom:1px solid #c3c3c3;}
.list_tb th{font-weight:400;padding:12px 6px;background-color:#f9f9f9;}
.list_tb td{font-weight:300;padding:12px 6px;background-color:#fff;}
.list_tb td.board_comment{padding:15px 15px; background-color:#fff;}
@media screen and (max-width: 1024px){
    .table_mobile {width: 100%;overflow:hidden;overflow-x: scroll;}
    .table_mobile table {width: 100%;min-width:800px;}
}


.add-member-wrap{}
.add-member-wrap table{}
.add-member-wrap table thead{background:#f4f4f4;}
.add-member-wrap table th{padding:5px 8px;border:1px solid #ddd;text-align:left;background-color:#f5f5f5;font-weight:400;height:49px;}
.add-member-wrap table td{padding:5px 8px;border:1px solid #ddd;text-align:left;background-color:#f9f9f9;}
.add-member-wrap table label{font-weight:300;}
span.state-wait{color:#999;}
span.state-end{color:#222;}
.add-member-wrap h3 { font-size: 1.25rem;}

.note_box_01 {
    border: solid 1px #cacaca;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}


.ratio-9x16 {
    --bs-aspect-ratio: 177.77%;
}
.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}
.hide-youtube-title {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.hide-youtube-title iframe {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
}

.hide-youtube-title-short {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.hide-youtube-title-short iframe {
    position: absolute;
    top: -13%;
    left: 0;
    width: 100%;
    height: 120%;
}

.youtube-title-main {
    font-size: clamp(1rem, 4vw, 1.5rem);
    text-align:center;
}