@charset "utf-8";

/* 색 설정 */
:root {
    --main-color: #DF1D24;
    --black-color : #333;
    --white-color : #fff;
    --row_gradient : linear-gradient(90deg, #DF1D24 0%, #C81F25 100%);
}


/* size */
@media screen and (max-width: 1250px) { } /* tablet */
@media screen and (max-width: 650px) { } /* mobile */

.inner{ width:1440px; margin:0 auto; }

@media screen and (max-width: 1440px) { 
    .inner{ width:100%; padding:0 20px; }
} /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box { font-size: 13px; }
} /* mobile */

/* 스크롤 커스텀 */
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: var(--main-color); border-radius: 10px;}

/* 드래그 블록 커스텀 */
/* ::selection { background-color:var(--main-color); color:#fff; } */


/* default */
*{
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color : inherit;
    box-sizing: border-box;
    letter-spacing: inherit;
    line-height: inherit;
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{ font-family: 'Paperlogy'; font-weight: 500; font-size: 16px; letter-spacing: -0.04em; color: var(--black-color); overflow: hidden; }

a{ color:inherit; }
p { word-break: keep-all;  }
b { font-weight: 700; }
img { max-width: 100%; vertical-align: top; }
div { word-break: keep-all; }
.paging_box{ padding:10px 0; display:flex; align-items: center; justify-content: center; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }
/* common */
section { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
section.red-banner-sec,
section.black-banner-sec { min-height: unset; }
.t-titleBox { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.t-stick { width: 5px; height: 30px; background: var(--main-color); }
.t-title { font-size: 32px; font-weight: 700; }
/* .pointerNone { pointer-events: none; cursor: none; } */
@media screen and (max-width: 1440px) { 
    .t-title { font-size: 26px; }
    .t-stick { height: 26px; }
}

@media screen and (max-width: 1024px) { 
    .t-titleBox { margin-bottom: 20px; }
}

@media screen and (max-width: 768px) { 
    .t-titleBox { gap: 10px; }
    .t-title { font-size: 24px; }
    .t-stick { height: 24px; } 
}

@media screen and (max-width: 480px) { 
    .t-title { font-size: 20px; }
    .t-stick { height: 20px; } 
}
section.sub { display: block; }
/* @ header @ */
header { width: 100%; position: fixed; top: 0; left: 0; z-index: 99; font-family: 'Pretendard', sans-serif; color: var(--white-color);  transition: all 200ms; }
header.on { background: var(--white-color); color: var(--black-color); }
header.sub { background: var(--white-color); color: var(--black-color); }
header .header-warp { border-bottom: 1px solid rgba(255, 255, 255, .1);  display: flex; align-items: center; justify-content: space-between; }
header .header-warp .header-logo { width: fit-content; display: block;}
header .header-warp .header-logo-b { display: none; }
header.on .header-warp .header-logo-w { display: none; }
header.on .header-warp .header-logo-b { display: block; }

header.sub .header-warp .header-logo-w { display: none; }
header.sub .header-warp .header-logo-b { display: block; }

header nav {  }
header nav ul { display: flex; align-items: center; justify-content: center; gap: 10px; }
header nav ul li { padding: 10px 0; text-align: center; font-size: 18px; position: relative; }
header nav ul li > a { display: block; width: 150px; }
header nav ul li:hover > a,
header nav ul li:focus > a,
header nav ul li.on { color: var(--black-color); background: var(--white-color); }
header nav ul li:nth-child(1):hover > a,
header nav ul li:nth-child(1):focus > a,
header nav ul li:nth-child(1).on { color: unset; background: unset; }

header .mo-menu { display: none; position: relative; z-index: 101; }

/* 헤더 드롭다운 */
header .menu1 { padding: 10px 0; border-radius: 10px; }
header .subMenu { display: none; position: absolute; top: calc(100% - 10px); left: 50%; transform: translateX(-50%); box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.20);}
header .subMneu .menu2 { }
header nav ul li .subMenu { margin-top: 10px; background: var(--white-color); border-radius: 10px; }
header nav ul li .menu2 a { padding: 15px 0; width: 150px; display: block; font-size: 16px; color: var(--black-color); text-align: center; cursor: pointer; }

/* 헤더 메뉴 호버 */
header nav ul li .menu2 a > span { position: relative; padding-bottom: 5px; }
header nav ul li .menu2 a > span::after { content: ""; position: absolute; left: 0; top: 100%; width: 100%; height: 1.5px; background-color: var(--main-color); transform: scale(0); transition: transform 0.2s; }
header nav ul li .menu2 a:hover > span::after { transform: scale(1); }

/* 헤더 햄버거 메뉴 */
header.on .menuBtn span { background: var(--black-color); }
header.sub .menuBtn span { background: var(--black-color); }

.menuBtn{ width: 33px; aspect-ratio: 1; display: flex; justify-content: center; flex-direction: column; gap: 8px; background: transparent; border: none; position: relative; z-index: 100; }
.menuBtn span{ display: block; height: 2px; background: var(--white-color); transition: opacity .3s, transform .3s; transform-origin: center; }

.menuBtn.on span:nth-child(1){ transform: rotate(45deg) translateX(10px) translateY(8px)}
.menuBtn.on span:nth-child(2){ opacity: 0; }
.menuBtn.on span:nth-child(3){ transform: rotate(-45deg) translateX(5px) translateY(-5px); }

/* 헤더 모바일 */
header .sub-Container  { position: absolute; top: 100%; left: 0; width: 100%; height: 100vh; background: var(--white-color); color: var(--black-color); opacity: 0; visibility: hidden;  transition: opacity 200ms, visibility 200ms; }
header .sub-Container.on { opacity: 1; visibility: visible;  }
header.on .sub-Container {  }
header .sub-Container a { display: block; padding: 20px; }
header .sub-Container li .sub-menu-box { display: none; position: relative; top: auto; bottom: auto; transform: none; }
header .sub-Container li .sub-menu-box.on { display: block; }
header .sub-Container li .sub-menu-box a { font-size: 16px; }
header ul.sub-Container>li>a {  font-size: 20px;font-weight: 700; display: flex; align-items: center; justify-content: space-between; }
header ul.sub-Container>li>a .moArrow { transition: transform 200ms; }
header ul.sub-Container>li>a .moArrow.on { transform: rotate(-180deg); }

@media screen and (max-width: 1440px) { 
    header .header-warp .header-logo { width: 160px; }
    header nav ul li { font-size: 16px; }
    header nav ul li .menu2 a { font-size: 14px; }
    header nav ul li > a { width: 120px; }
    header nav ul li .menu2 a { width: 120px; }
}

@media screen and (min-width: 1024px) {
    /* header .sub-Container.on { display: none; } */
}
@media screen and (max-width: 1024px) { 
    header .header-warp { padding: 10px 0; }
    header .header-warp .header-logo { width: 130px; }
    header nav ul li .subMenu { margin-top: 5px; }

    header .pc-menu { display: none; }
    header .mo-menu { display: block; }


}

@media screen and (max-width: 768px) { 
    .menuBtn { width: 24px; gap: 6px; }
    .menuBtn.on span:nth-child(1){ transform: rotate(45deg) translateX(7px) translateY(6px)}
    .menuBtn.on span:nth-child(3){ transform: rotate(-45deg) translateX(5px) translateY(-5px); }
    header .header-warp { padding: 13px 0; }
    
}

@media screen and (max-width: 480px) { 
    header ul.sub-Container>li>a { font-size: 18px; }
    header .sub-Container li .sub-menu-box a { font-size: 14px; }
    header ul.sub-Container>li>a .moArrow { width: 14px; }
    header .header-warp .header-logo { width: 100px; height: 18px;  } 
}


/* @ main @ */
/* main-visual-sec */
section.main-visual-sec { min-height: 100vh; background: url('../img/main/main-visual/bg.jpg') no-repeat center / cover; display: flex; align-items: center; justify-content: center; color:  var(--white-color); }
section.main-visual-sec .inner { display: flex; align-items: center; flex-direction: column; justify-content: center; }
section.main-visual-sec .main-visual-wrap { text-align: center; }
section.main-visual-sec .main-visual-wrap .main-Visual-img {  }
section.main-visual-sec .main-visual-wrap .titleBox { margin: 20px auto 15px; width: 800px; padding: 15px 10px; background: var(--row_gradient); border-radius: 100px; text-align: center; }
section.main-visual-sec .main-visual-wrap .titleBox .t1 { font-size: 64px; font-weight: 700; text-shadow: 4px 7px 11px rgba(0, 0, 0, 0.15); }
section.main-visual-sec .main-visual-wrap .titleBox .t2 { font-size: 16px; font-weight: 700; letter-spacing: 13px; text-shadow: 4px 7px 11px rgba(0, 0, 0, 0.15); letter-spacing: 0.6em; }
section.main-visual-sec .main-visual-wrap .t3 { width: fit-content; font-size: 32px; padding-bottom: 5px; border-bottom: 3px solid var(--main-color); margin: 0 auto; }
section.main-visual-sec .main-visual-wrap .textBox { margin: 40px auto 70px; border-radius: 5px;  overflow: hidden; }
section.main-visual-sec .main-visual-wrap .textBox .redDiv { font-size: 32px; padding: 15px 10px; background: var(--main-color); }
section.main-visual-sec .main-visual-wrap .textBox .blackDiv { width: fit-content; font-size: 24px; padding: 15px 30px; line-height: 160%; background: #000; margin: 0 auto; }
section.main-visual-sec .main-visual-wrap .textBox .blackDiv .red { color: var(--main-color); }
section.main-visual-sec .main-visual-wrap .mainBtn { width: 240px; margin: 0 auto; padding: 20px 0; font-size: 24px; display: flex; align-items: center; justify-content: center; gap: 20px; background: var(--main-color); border: none; border-radius: 5px; box-shadow: 0 0 33px 0 rgba(220, 28, 35, 0.72); }
section.main-visual-sec .main-visual-wrap .mainBtn .arrow {  }
section.main-visual-sec .main-visual-wrap .mainBtn .text {  }

@media screen and (max-width: 1440px) { 
    section.main-visual-sec .main-visual-wrap .titleBox { width: 600px; }
    section.main-visual-sec .main-visual-wrap .titleBox .t1 { font-size: 48px; text-align: center; }
    section.main-visual-sec .main-visual-wrap .titleBox .t2 { font-size: 12px; }
    section.main-visual-sec .main-visual-wrap .t3 { font-size: 24px; }
    section.main-visual-sec .main-visual-wrap .textBox .redDiv { font-size: 24px; }
    section.main-visual-sec .main-visual-wrap .textBox .blackDiv { font-size: 20px; }
    section.main-visual-sec .main-visual-wrap .mainBtn { width: 200px; padding: 15px 0; font-size: 16px; }
}

@media screen and (max-width: 1024px) { 
    section.main-visual-sec .main-visual-wrap .titleBox { max-width: 460px; }
    section.main-visual-sec .main-visual-wrap .titleBox .t1 { font-size: 36px; text-align: center; }
    section.main-visual-sec .main-visual-wrap .titleBox .t2 { font-size: 10px; }
    section.main-visual-sec .main-visual-wrap .t3 { font-size: 20px; }
    section.main-visual-sec .main-visual-wrap .textBox .redDiv { font-size: 20px; }
    section.main-visual-sec .main-visual-wrap .textBox .blackDiv { font-size: 18px; }
    section.main-visual-sec .main-visual-wrap .mainBtn { width: 180px; padding: 15px 0; font-size: 16px; }
    section.main-visual-sec .main-visual-wrap .main-Visual-img { width: 150px; }
}

@media screen and (max-width: 768px) { 

}

@media screen and (max-width: 480px) { 
    section.main-visual-sec .main-visual-wrap .main-Visual-img { width: 120px; }
    section.main-visual-sec .main-visual-wrap { max-width: unset; width: 100%; margin: 0 auto; }
    section.main-visual-sec .main-visual-wrap .titleBox { max-width: 100%; width: 100%;  }
    section.main-visual-sec .main-visual-wrap .titleBox .t1 { font-size: 28px;}
    section.main-visual-sec .main-visual-wrap .titleBox .t2 { font-size: 8px; }
    section.main-visual-sec .main-visual-wrap .t3 { font-size: 18px; }
    section.main-visual-sec .main-visual-wrap .textBox .redDiv { font-size: 18px; }
    section.main-visual-sec .main-visual-wrap .textBox .blackDiv { font-size: 16px; padding: 15px 15px; }
    section.main-visual-sec .main-visual-wrap .mainBtn { width: 140px; padding: 12px 0; font-size: 14px; }
    section.main-visual-sec .main-visual-wrap .mainBtn .arrow { width: 8px; }
}

/* program-sec */
section.program-sec { padding: 100px 0; background: url('../img/main/program-sec/common_bg.jpg') no-repeat center / cover; }
section.program-sec .titleDiv { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
section.program-sec .titleDiv .t-titleBox { margin-bottom: 0; }
section.program-sec .titleDiv .programBtn { width: 180px; font-size: 18px; font-weight: 700; background: var(--row_gradient); color: var(--white-color); border: none; padding: 10px 0; border-radius: 100px; }

@media screen and (max-width: 1440px) { 
    section.program-sec .titleDiv .programBtn { width: 160px; font-size: 16px; }
    section.program-sec .titleDiv { margin-bottom: 20px; }
}

@media screen and (max-width: 1024px) { 

}

@media screen and (max-width: 768px) { 
    section.program-sec .titleDiv .programBtn { font-size: 14px; }
    section.program-sec .titleDiv .programBtn { width: 140px; }
}

@media screen and (max-width: 480px) { 
    section.program-sec .titleDiv .programBtn { padding: 7px 0; font-size: 12px; }
    section.program-sec .titleDiv .programBtn { width: 100px; }
}

/* red-banner-sec */
section.red-banner-sec { padding: 40px 0; background: linear-gradient(90deg, #AC161C 0%, #DF1D24 50%, #AC161C 100%); color: var(--white-color); }
section.red-banner-sec .inner { display: flex; flex-direction: column; gap: 20px; justify-content: center; align-items: center; text-align: center; }
section.red-banner-sec .redTitleBox { font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; }
section.red-banner-sec .redTitleBox .bell {  }
section.red-banner-sec .t1 { font-size: 20px; font-weight: 700; line-height: 180%;  font-family: 'Pretendard', sans-serif; }
section.red-banner-sec .t2 { font-size: 16px; font-family: 'Pretendard', sans-serif; }

@media screen and (max-width: 1440px) { 
    section.red-banner-sec .redTitleBox .bell {  }
    section.red-banner-sec .redTitleBox .text {  }
}

@media screen and (max-width: 1024px) { 

}

@media screen and (max-width: 768px) { 
    section.red-banner-sec .redTitleBox .bell { width: 20px; }
    section.red-banner-sec .redTitleBox .text { font-size: 20px; }
    section.red-banner-sec .t1 { font-size: 18px; }
    section.red-banner-sec .t2 { font-size: 14px; }
}

@media screen and (max-width: 480px) { 
    section.red-banner-sec { padding: 30px 0; }
    section.red-banner-sec .t1 { font-size: 16px; }
    section.red-banner-sec .t1 br { display: none; }
    section.red-banner-sec .t2 { font-size: 12px; } 
    section.red-banner-sec .inner { gap: 15px; }
}

/* speaker-sec */
section.speaker-sec { padding: 100px 0; background: url('../img/main/speaker-sec/common_bg.jpg') no-repeat center / cover;  }
section.speaker-sec .speaker-wrap {  }
section.speaker-sec .speaker-wrap ul { display: grid; grid-template-columns: repeat(3, 1fr); row-gap: 40px; column-gap: 15px; font-family: 'Pretendard', sans-serif;  }
section.speaker-sec .speaker-wrap ul li {  }
section.speaker-sec .speaker-wrap ul li .item { height: 100%; display: flex; flex-direction: column; gap: 20px; padding: 20px; background: var(--white-color); border-radius: 20px; justify-content: space-between; }
section.speaker-sec .speaker-wrap ul li .item .blackDiv { padding: 10px 10px; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--black-color); color: var(--white-color); border-radius: 100px; }
section.speaker-sec .speaker-wrap ul li .item .blackDiv .num { flex-shrink: 0; font-size: 14px; font-weight: 700; padding: 5px 15px; color: var(--black-color); border-radius: 100px ; background: var(--white-color); font-weight: 700; font-family: 'Paperlogy'; }
section.speaker-sec .speaker-wrap ul li .item .blackDiv .name { font-size: 20px; font-weight: 700;  }
section.speaker-sec .speaker-wrap ul li .item .blackDiv .name .position {  font-size: 14px; font-weight: 500; }

section.speaker-sec .speaker-wrap ul li .item .imgBox { display: flex; align-items: center; justify-content: center; gap: 20px;  }
section.speaker-sec .speaker-wrap ul li .item .imgBox .speaker-img {  }
section.speaker-sec .speaker-wrap ul li .item .imgBox .history { display: flex; flex-direction: column; gap: 5px; }
section.speaker-sec .speaker-wrap ul li .item .imgBox .history .list { font-size: 14px; }

section.speaker-sec .speaker-wrap ul li .item .grayDiv { font-size: 14px; font-weight: 700; padding: 10px 10px; text-align: center; border-radius: 100px; background: #e4e4e4; }

@media screen and (max-width: 1440px) { 
    section.speaker-sec .speaker-wrap ul li .item .imgBox .speaker-img {  }
    section.speaker-sec .speaker-wrap ul li .item .imgBox { flex-direction: column; }
}

@media screen and (max-width: 1024px) { 
    section.speaker-sec .speaker-wrap ul { grid-template-columns: repeat(2, 1fr); }
    section.speaker-sec .speaker-wrap ul li .item .imgBox {  }
    section.speaker-sec .speaker-wrap ul li .item .imgBox .speaker-img {  }
}

@media screen and (max-width: 768px) { 
    section.speaker-sec { padding: 13vw 0; }
    
    section.speaker-sec .speaker-wrap ul li .item .imgBox {  }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .num { font-size: 12px; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .name { font-size: 14px; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .name .position { font-size: 12px; }
    section.speaker-sec .speaker-wrap ul li .item .grayDiv { font-size: 12px; }

    section.speaker-sec .speaker-wrap ul li .item .blackDiv { flex-direction: column; }
    
}

@media screen and (max-width: 600px) { 
    section.speaker-sec .speaker-wrap ul { grid-template-columns: repeat(1, 1fr); }
    section.speaker-sec .speaker-wrap ul li .item .imgBox .history .list { font-size: 16px; }
    section.speaker-sec .speaker-wrap ul li .item .grayDiv { font-size: 14px; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .name .position{ display: flex; flex-direction: column; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv{ width: 70%; padding: 20px 10px; margin: 0 auto;  }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .num{ width: fit-content; display: flex; align-items: center; justify-content: center; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .name { text-align: center; }
}
@media screen and (max-width: 480px) { 
    section.speaker-sec .speaker-wrap ul li .item{ padding: 20px 10px; }
    section.speaker-sec .speaker-wrap ul li .item .blackDiv .num{ padding: 5px 10px; font-size: 12px; }
    section.speaker-sec .speaker-wrap ul li .item .imgBox .history .list { font-size: 14px; }
    section.speaker-sec .speaker-wrap ul li .item .grayDiv { font-size: 12px; }

}


/* black-banner-sec */
section.black-banner-sec { padding: 80px 0; background: url('../img/main/black-banner-sec/bg.jpg') no-repeat center / cover; text-align: center; }
section.black-banner-sec .black-banner-logo {  }
section.black-banner-sec .text { margin: 20px 0 40px; font-size: 32px; font-weight: 700; color: var(--white-color); line-height: 150%; }
section.black-banner-sec .b-bannerBtn { font-size: 20px; font-weight: 700; width: 180px; padding: 10px 0; background: var(--row_gradient); border: none; border-radius: 100px; color: var(--white-color); }

@media screen and (max-width: 1440px) { 
    section.black-banner-sec .black-banner-logo { width: 180px; }
    section.black-banner-sec .text { font-size: 26px; }
    section.black-banner-sec .b-bannerBtn { font-size: 18px; }
}

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

@media screen and (max-width: 768px) { 
    section.black-banner-sec { padding: 10vw 0; }
    section.black-banner-sec .black-banner-logo { width: 150px; }
    section.black-banner-sec .text { font-size: 24px; }
    section.black-banner-sec .b-bannerBtn {width: 140px; font-size: 14px; }
}

@media screen and (max-width: 480px) { 
    section.black-banner-sec .black-banner-logo { width: 130px; }
    section.black-banner-sec .text { margin: 10px auto 20px; font-size: 20px; }
    section.black-banner-sec .b-bannerBtn { width: 120px; font-size: 12px; }
}

/* map-sec */
section.map-sec { padding: 100px 0; background: url('../img/main/map-sec/common_bg.jpg') no-repeat center / cover;  }
section.map-sec .inner {  }
section.map-sec .mapDiv{  }
section.map-sec .mapDiv .item {  display: flex; align-items: center; }
section.map-sec .mapDiv .locationBox { padding: 40px; background: var(--white-color); border-radius: 20px; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.20); }
section.map-sec .mapDiv .locationBox .mapBox { width: 970px; height: 518px; border-radius: 20px; overflow: hidden; }
section.map-sec .mapDiv .locationBox .textWrap { display: flex; align-items: center; gap: 20px; margin-top: 20px; }
section.map-sec .mapDiv .locationBox .textWrap .textBox { display: flex; align-items: center; gap: 10px; }
section.map-sec .mapDiv .locationBox .textWrap .textBox .icon1 {  }
section.map-sec .mapDiv .locationBox .textWrap .textBox .text { display: flex; gap: 10px; align-items: center; font-size: 18px; font-family: 'Pretendard', sans-serif; color: #666666; }
section.map-sec .mapDiv .locationBox .textWrap .textBox .text b { font-size: 20px; color: var(--black-color); }
section.map-sec .mapDiv .item .wrap { width: 100%; }
section.location-sec ul { display: grid; grid-template-columns: repeat(2,1fr); column-gap: 40px;  }
section.location-sec ul li { }
section.location-sec ul li .textBox { display: flex; flex-direction: column; gap: 15px; padding: 30px; background: var(--white-color); font-family: 'Pretendard', sans-serif; border-radius: 20px; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.20); }
section.location-sec ul li .textBox .text { font-size: 16px; color: #666666; }
section.location-sec ul li .titleDiv .t-titleBox { margin-bottom: 0; }
section.location-sec ul li .titleDiv { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
section.location-sec ul li .titleDiv .text { font-size: 20px; color: var(--main-color); font-weight: 700; }
section.location-sec ul li .contentBox { display: grid; grid-template-columns: repeat(3,1fr); column-gap: 20px;  padding: 37px 30px; border-radius: 20px; background: linear-gradient(180deg, #DF1D24 0%, #AC181E 100%); }
section.location-sec ul li .contentBox .con { padding: 20px 10px; background: var(--white-color); text-align: center; border-radius: 20px; }
section.location-sec ul li .contentBox .con .guide_icon { margin-bottom: 10px; }
section.location-sec ul li .contentBox .con .text { font-size: 16px; font-weight: 700; line-height: 150%; }

@media screen and (max-width: 1440px) { 
    section.map-sec .mapDiv .locationBox { padding: 30px; }
    section.map-sec .mapDiv .locationBox .mapBox { max-width: 970px; width: 100%; height: 38vw; }
    section.map-sec .mapDiv .item .map-logo { width: 300px; }

    section.location-sec { column-gap: 20px; }
    section.location-sec li .titleDiv .text { font-size: 18px; }
    section.location-sec li .contentBox { column-gap: 10px; }
    section.location-sec li .textBox { padding: 20px; }
    section.location-sec li .textBox .text { font-size: 14px; }
    section.location-sec li .contentBox .con .guide_icon { width: 50px; }
    section.location-sec li .contentBox .con { padding: 10px 0; }
}

@media screen and (max-width: 1050px) {
    section.location-sec { grid-template-columns:repeat(1,1fr); row-gap: 40px; }
    section.location-sec li .contentBox .con .guide_icon { width: unset; }
    section.location-sec li .contentBox .con { padding: 20px 0; }
    section.location-sec li .contentBox .con .text { font-size: 20px; }
}

@media screen and (max-width: 1024px) { 
    section.map-sec .mapDiv .item .map-logo { width: 220px; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .icon1 { width: 24px; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .text { font-size: 16px; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .text b { font-size: 18px; }
    section.map-sec .mapDiv .locationBox { padding: 20px; }
}

@media screen and (max-width: 900px) { 
    section.map-sec .mapDiv .locationBox .textWrap { flex-direction: column;  align-items: unset;}
}
@media screen and (max-width: 768px) { 
    section.map-sec { padding: 10vw 0; }
    section.location-sec li .titleDiv { margin-bottom: 20px; }
    section.map-sec .mapDiv .item { flex-direction: column; }
    section.map-sec .mapDiv .item .map-logo { transform: rotate(-90deg); }
    section.map-sec .mapDiv .locationBox .mapBox { height: 52vw; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .icon1 { width: 20px; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .text b { font-size: 16px; }
    section.map-sec .mapDiv .locationBox .textWrap .textBox .text { font-size: 14px; }
    section.map-sec .mapDiv { margin-bottom: 40px; }

    section.location-sec li .contentBox { padding: 20px; }
    section.location-sec li .contentBox .con .guide_icon { width: 100px; }
    section.location-sec li .contentBox .con { padding: 20px 0; }
    section.location-sec li .contentBox .con .text { font-size: 16px; }
}

@media screen and (max-width: 480px) { 
    section.map-sec .mapDiv .item .map-logo { width: 55%; }
    section.location-sec li .textBox .text { font-size: 12px; }
    section.location-sec li .titleDiv .text { font-size: 16px; }
    section.location-sec li .textBox { padding: 20px 10px; gap: 10px; }
    section.location-sec li .contentBox { grid-template-columns: repeat(1,1fr); row-gap:  20px; }
    section.location-sec li .contentBox .con { width: 90%; margin: 0 auto; display: flex; justify-content: flex-start; align-items: center; gap: 20px; }
    section.location-sec li .contentBox .con .text { font-size: 16px; }
    
    section.location-sec li .titleDiv { flex-direction: column; align-items: flex-start; gap: 10px;}
    section.location-sec li .contentBox .con .guide_icon { margin-bottom: 0; }
    section.location-sec ul li .contentBox .con { padding: 20px; }
    section.location-sec ul li .contentBox .con .text { font-size: 14px; }
}


/* @ footer @ */
footer { padding: 40px 0; background: var(--black-color); color: var(--white-color); }
footer .f-logo {  }
footer ul { margin: 30px 0 40px; width: 560px; display: flex; flex-wrap: wrap; gap: 20px; }
footer ul li { font-family: 'Pretendard', sans-serif; display: flex; align-items: center; gap: 10px; font-size: 16px; }
footer .copyright { font-size: 12px; }

@media screen and (max-width: 1440px) { 
    footer .f-logo { width: 180px; }
}

@media screen and (max-width: 1024px) { 

}

@media screen and (max-width: 768px) { 
    footer .f-logo { width: 160px; }
    footer ul { width: 380px; }
    footer ul li { font-size: 14px; }

}


@media screen and (max-width: 480px) { 
    footer .copyright { font-size: 10px; }
    footer ul { flex-direction: column; gap: 10px; margin: 20px 0 20px; }
    footer .f-logo { width: 130px; }
}


/* @ sub @ */
.sub {  }
.sub section { min-height: unset; }

/* @ common-visual-sec @ */
.sub .common-visual-sec { min-height: 50vh; padding-top: 40px; background: url('../img/common-visual.jpg') no-repeat center / cover; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; }
.sub .common-visual-sec .text { font-size: 54px; font-weight: 700; color: var(--white-color); }

@media screen and (max-width: 1440px) { 
    .sub .common-visual-sec { min-height: 42vh;}
    .sub .common-visual-sec .logo { width: 160px; }
    .sub .common-visual-sec .text { font-size: 48px; }
}

@media screen and (max-width: 1024px) { 
    .sub .common-visual-sec { min-height: 34vh;}
    .sub .common-visual-sec .text { font-size: 36px; }
    
}

@media screen and (max-width: 768px) { 
    .sub .common-visual-sec { min-height: 34vh;}
    .sub .common-visual-sec { gap: 10px; }
    .sub .common-visual-sec .logo { width: 130px; }
}

@media screen and (max-width: 480px) { 
    .sub .common-visual-sec .text { font-size: 24px; }
    .sub .common-visual-sec { min-height: 24vh;}
    
    
}
/* @ common-menu-sec @ */
section.common-menu-sec { padding: 30px 0; background: #F3F5F7; }
section.common-menu-sec ul { max-width: 1000px; width: 100%; margin: 0 auto;  display: flex; align-items: center; gap: 20px; justify-content: center; }
section.common-menu-sec ul li { width: calc(100%/2); }
section.common-menu-sec ul li.on a { color: var(--white-color); background: var(--main-color); border: 1px solid var(--main-color); font-weight: 500; }
section.common-menu-sec ul li a { width: 100%; display: block; padding: 20px 0;  font-size: 20px; font-weight: 400; color: #666; text-align: center; border: 1px solid #666; border-radius: 100px; }
.sub4 section.common-menu-sec { background: var(--white-color); }
@media screen and (max-width: 1440px) { 
    section.common-menu-sec ul li a { font-size: 18px; }
}

@media screen and (max-width: 1024px) { 

}

@media screen and (max-width: 768px) { 
    section.common-menu-sec ul li a { font-size: 16px; padding: 12px 0; }
}

@media screen and (max-width: 480px) { 
    section.common-menu-sec ul { gap: 10px; }
    section.common-menu-sec ul li a { font-size: 14px; padding: 8px 0; }
}

/* --- sub1 --- */
/* intro-sec */
section.intro-sec { padding: 100px 0; background: #F3F5F7;}
section.intro-sec .intro-logo { margin-bottom: 40px; }
section.intro-sec .introDiv { display: flex; align-items: center; justify-content: space-between; }
section.intro-sec .introDiv .text { font-size: 20px; font-family: 'Pretendard', sans-serif; line-height: 150%;}
section.intro-sec .introDiv .sub1-img { width: 40%; }

@media screen and (max-width: 1440px) { 
    section.intro-sec .intro-logo { width: 300px; }
    section.intro-sec .introDiv .text { font-size: 18px; }
    section.intro-sec .introDiv .sub1-img { width: 35%; }
    section.intro-sec .introDiv {  }
}

@media screen and (max-width: 1050px) { 
    section.intro-sec .intro-logo { width: 280px; display: block; margin: 0 auto 40px;  }
    section.intro-sec .introDiv { flex-direction: column; gap: 40px; }
    section.intro-sec .introDiv .text { order: 1;  }
    section.intro-sec .introDiv .sub1-img { order: 0; }
}
@media screen and (max-width: 1024px) { 

}

@media screen and (max-width: 768px) { 
    section.intro-sec .intro-logo { width: 200px; margin-bottom: 20px; }
    section.intro-sec .introDiv .sub1-img { width: 60%; }
    section.intro-sec { padding: 10vw 0; }
    section.intro-sec .introDiv .text { font-size: 16px; }
    section.intro-sec .introDiv .text br { display: none; }
    section.intro-sec .introDiv { gap: 20px; }
}

@media screen and (max-width: 480px) { 
    section.intro-sec .intro-logo {width: 150px; }
    section.intro-sec .introDiv .text { font-size: 14px; }
    section.intro-sec .introDiv .sub1-img { width: 80%; }
}


/* --- sub2 --- */

/* --- sub2-1 --- */
section.season-sec { padding: 0 0 100px; background: #F3F5F7; }
section.season-sec .titleDiv { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
section.season-sec .titleDiv .t-titleBox { margin-bottom: 0; }

section.season-sec .tabBox { display: flex; align-items: center; gap: 20px; font-family: 'Pretendard', sans-serif; }
section.season-sec .tabBox .text { font-size: 18px; }
section.season-sec .tabBox .seasonDiv { position: relative; z-index: 5; }
section.season-sec .tabBox .seasonDiv .box { position: relative; font-size: 16px;  }
section.season-sec .tabBox .seasonDiv .box .tabmenu1 { padding: 10px 20px; display: flex; align-items: center; gap: 20px; background: #e4e4e4; background: var(--white-color); box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.10);  }
section.season-sec .tabBox .seasonDiv .box .tabmenu1 .t1 {  }
section.season-sec .tabBox .seasonDiv .box .tabmenu1 .s-arrow { transition: transform 100ms; cursor: pointer; }
section.season-sec .tabBox .seasonDiv .box .tabmenu1 .s-arrow.on { transform: rotate(-180deg); }
section.season-sec .tabBox .seasonDiv .box .tabmenu2 { opacity: 0; width: 100%; position: absolute; top: 100%; left: 0; padding: 10px 20px; background: var(--white-color); box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.20); }
section.season-sec .tabBox .seasonDiv .box .tabmenu2.on { opacity: 1; }
section.season-sec .tabBox .seasonDiv .box .tabmenu2 .t2 {  }

@media screen and (max-width: 1440px) { 
    section.season-sec .tabBox .text { font-size: 16px; }
}

@media screen and (max-width: 1024px) { 
    section.season-sec .tabBox .text { font-size: 16px; }
}

@media screen and (max-width: 768px) { 
    section.season-sec { padding: 0 0 10vw; } 
    section.season-sec .tabBox .text { font-size: 14px; }
    section.season-sec .tabBox { gap: 10px; }
    section.season-sec .tabBox .seasonDiv .box .tabmenu1 .t1 { font-size: 12px; }
    section.season-sec .tabBox .seasonDiv .box .tabmenu2 { font-size: 12px; }
    section.season-sec .tabBox .seasonDiv .box .tabmenu1 .s-arrow { width: 10px; }
    section.season-sec .tabBox .seasonDiv .box .tabmenu1 { padding: 8px 13px; }
    section.season-sec .tabBox .seasonDiv .box .tabmenu2 { padding: 8px 13px; }
}

@media screen and (max-width: 480px) { 
    section.season-sec .tabBox .text { font-size: 12px; }

}


/* --- sub2-2 --- */

/* --- sub3 --- */
.sub section.speaker-sec { padding: 0; background: #F3F5F7; }
.sub .basicBoardArti .basicList > li .item .number.on { color: var(--main-color); }

@media screen and (max-width: 1440px) { 
  .speaker-sec .inner{ padding: 0; }
}

/* --- sub4 --- */

/* sub4_1 notice */
.sub .notice-sec { font-family: 'Pretendard', sans-serif; }
.sub .paging_box { margin-top: 30px; }
.sub4 .boardArti { padding: 0 0 100px;}

@media screen and (max-width: 768px) { 
    .sub4 .boardArti { padding: 0 0 10vw;  }
}

/* sub4_1 youtube */
section.youtube-sec { padding: 0 0 100px; }
section.youtube-sec ul { display: grid; grid-template-columns: repeat(4,1fr);  font-family: 'Pretendard', sans-serif; row-gap: 20px; column-gap: 10px; }
section.youtube-sec ul li {  }
section.youtube-sec ul li .item {  }
section.youtube-sec ul li .item .videoBox { height: 250px; border-radius: 20px; overflow: hidden; background-repeat: no-repeat; background-size: cover; }
section.youtube-sec ul li .item .text { margin-top: 10px; font-size: 16px; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; text-align: center; }

@media screen and (max-width: 1440px) { 
    section.youtube-sec ul { grid-template-columns: repeat(4,1fr); }
    section.youtube-sec ul li .item .videoBox { height: 18vw; border-radius: 10px; }
}

@media screen and (max-width: 1024px) { 
    section.youtube-sec ul { grid-template-columns: repeat(2,1fr); }
    section.youtube-sec ul li .item .videoBox { height: 33vw; }
}

@media screen and (max-width: 768px) { 
    section.youtube-sec { padding: 0 0 10vw; }
    section.youtube-sec ul li .item .text { font-size: 14px; }
    section.youtube-sec ul li .item .videoBox { height: 33vw; }
}

@media screen and (max-width: 480px) { 
    section.youtube-sec ul { grid-template-columns: repeat(2,1fr); }
}


/* 표 이미지 모바일 */
.mo-box .table-wrap .touch-slide { display: none; font-weight: 500; }
@media screen and (max-width: 1024px) {
    .mo-box .table-wrap{  position: relative;  }
    .mo-box .table-wrap .scroll-x{ overflow-x: scroll; }
    .mo-box .table-wrap .touch-slide{ color: #fff; font-weight: 700; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.5); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; border-radius: 10px; }
    .mo-box .table-wrap .touch-slide { display: flex; }
    .mo-box .table-wrap .touch-slide .icon{ animation: smoothBlink 2s ease-in-out infinite; width: 50px; }
    .mo-box .table-wrap .scroll-x .program-img{ width: 900px; max-width: 900px; }
    .mo-box .table-wrap .scroll-x .season-img{ width: 900px; max-width: 900px; }
    .mo-box .table-wrap .touch-slide .center { font-weight: 400; }
}

@media screen and (max-width: 480px) {
    .mo-box .table-wrap .touch-slide .icon { width: 40px; }
    .mo-box .table-wrap .touch-slide { font-size: 12px; }
}

/* 11/18 */
section.location-sec { min-height: 60vh; padding: 100px 0; background: var(--white-color); }

@media screen and (max-width: 1440px) { 

}

@media screen and (max-width: 1024px) { 
    section.location-sec ul { grid-template-columns: repeat(1,1fr); row-gap: 40px; }
}

@media screen and (max-width: 768px) { 
    section.location-sec { padding: 13vw 0; }
    section.location-sec ul li .contentBox { grid-template-columns:repeat(1,1fr); row-gap: 20px; }
}

@media screen and (max-width: 480px) { 
    section.location-sec ul li .textBox { padding: 20px; }
    section.location-sec ul li .contentBox { padding: 20px; }
    section.location-sec ul li .titleDiv .text { font-size: 16px; }
    section.location-sec ul li .titleDiv { margin-bottom: 20px; }
    section.location-sec ul li .textBox .text { font-size: 14px; }
}