@charset "utf-8";

/* 공통 시작 */
.cinner {max-width: 1400px;margin: 0 auto;}

@media all and (max-width: 1499px){
    .cinner {margin: 0 50px;}
}
@media all and (max-width: 1399px){
    .cinner {margin: 0 30px;}
}
@media all and (max-width: 640px){
    .cinner {margin: 0 20px;}
}
/* 공통 끝 */


/* top btn 시작 */
#top_btn {position:fixed;bottom:10px;right:10px;width:40px;height:40px;background:#000;opacity:0.3;border-radius:30px;color:#fff;text-align:center;font-size:15px;z-index:99;border:0}
#top_btn:hover{opacity:1}
/* top btn 시작 */



/* header 시작 */
#header {width: 100%;height: 100px;background: #fff;position: fixed;top: 0;left: 0;z-index: 999;transition: .35s;}
.header__nav {height: 100%;}
.header__nav .nav {height: 100%;}
.header__nav .cinner {display: flex;justify-content: space-between;align-items: center;height: 100%;}
.header__nav .header__logo a {display: block;width: 200px;}

#main-nav {height: 100%;}
.main-nav__depth1 {height: 100%;}
.main-nav__depth1 .mn-ul1 {display: flex;height: 100%;}
.main-nav__depth1 .mn-li1 {position: relative;}
.main-nav__depth1 .mn-a1 {display: flex;align-items: center;min-width: 70px;height: 100%;padding: 0 35px;color: #000;text-align: center;font-weight: 500;}
.main-nav__depth2 {display:none;min-width: 180px;background: #F5F5F5;position: absolute;top: 100%;left: 50%;z-index: 100;transform: translateX(-50%);}
.main-nav__depth2 .mn-ul2 {width: 100%;}
.main-nav__depth2 .mn-li2 {border-bottom: 1px solid #eee;box-sizing: border-box;}
.main-nav__depth2 .mn-a2 {display: block;width: 100%;padding: 15px;box-sizing: border-box;font-size: .90em;font-weight: 500;text-align: center;transition: .35s;}
.main-nav__depth2 .mn-a2:hover,
.main-nav__depth2 .mn-a2:focus {color: var(--color-main);}
.header__nav .header__contact > a {display: flex;align-items: center;color: #fff;font-size: 1.50em;font-weight: 700;position: relative;}
.header__nav .header__contact > a::before {content: '';display: block;width: 40px;height: 40px;background: url(../img/common/ico-call.png) center center / cover no-repeat;}
.header__nav .nav__btn {display: flex;justify-content: center;align-items: center;width: 100px;aspect-ratio: 1 /1;background: var(--color-main);}
.header__nav .nav__btn a {display: flex;align-items: center;width: 21px;aspect-ratio: 1 / 1;}

@media all and (max-width: 1399px){
    .main-nav__depth1 .mn-a1 {padding: 0 30px;}
}
@media all and (max-width: 1199px){
	#main-nav {display: none;}
	.header__nav .nav__btn {position: absolute;top: 0;bottom: 0;right: 0;margin: auto;}
}
@media all and (max-width: 1024px){
    #header {height: 80px;}
	.header__nav .nav__btn  {width: 80px;}
}
@media all and (max-width: 640px){
    .header__nav .header__logo a img {max-width: 85%;}
    
}
@media all and (max-width: 480px){
    .header__nav .nav__btn a::before, 
    .header__nav .nav__btn a::after,
    .header__nav .nav__btn a span {height: 2px;}
}
/* header 끝 */

/* sidebar 시작 */
#sidebar {display: none;width: 100%;height: 100%;background: #fff;position: fixed;top: 0;left: 0;z-index: 9999;box-shadow: 0 0 5px 5px rgba(50, 60, 70, 0.15);-webkit-box-shadow: 0 0 5px 5px rgba(50, 60, 70, 0.15);}
.sidebar__header {height: 100px;background: var(--color-main);position: relative;} 
.sidebar__header .cinner {display: flex;justify-content: space-between;align-items: center;height: 100%;} 
.sidebar__header-logo {display: block;width: 200px;} 
.sidebar__header-logo img {max-width: 100%; } 
.sidebar__btn-close {display: flex;align-items: center;width: 100px;aspect-ratio: 1 / 1;position: relative;} 
.sidebar__btn-close::before, 
.sidebar__btn-close::after {content: '';display: block;width: 30%;height: 3px;background: #fff;position: absolute;top: 0;left: 0;right: 0;bottom: 0;margin: auto;} 
.sidebar__btn-close::before {transform: rotate(45deg);} 
.sidebar__btn-close::after {transform: rotate(-45deg);} 

.sidebar__cont {height: calc(100vh - 100px);padding: 60px 0;border-top: 1px solid rgba(255,255,255,.3);box-sizing: border-box;/* overflow-y: auto; */}
.sidebar__menu {height: 100%;overflow: hidden;overflow-y: auto;}
.sidebar__menu_depth1 {width: 100%;overflow-y: auto;}
.sidebar__menu_depth1::-webkit-scrollbar {width: 0px;border-radius: 10px;}
.sidebar__menu_depth1::-webkit-scrollbar-thumb {background-color: #000;border-radius: 10px;}
.sidebar__menu_depth1::-webkit-scrollbar-track {background-color: unset;border-radius: 10px;}
.sidebar__menu_depth1 .sm-ul1 {display: flex;align-items: flex-start;flex-flow: row wrap;gap: 30px 60px;}
.sidebar__menu_depth1 .sm-li1 {width: calc(25% - 45px);}
.sidebar__menu_depth1 .sm-a1 {display: block;padding: 10px 0;border-bottom: 2px solid #000;box-sizing: border-box;font-weight: 500;}
.sidebar__menu_depth2 .sm-ul2 {margin-top: 15px;}
.sidebar__menu_depth2 .sm-li2 {padding: 4px 0;}
.sidebar__menu_depth2 .sm-a2 {color: #333;font-size: .90em;font-weight: 500;transition: .35s;}
.sidebar__menu_depth2 .sm-li2.active .sm-a2 {color: var(--color-main);font-weight: 600;}
.sidebar__menu_depth2 .sm-s2 {display: inline-block;padding-left: 10px;position: relative;}
.sidebar__menu_depth2 .sm-s2::before {content: '';display: block;width: 3px;height: 3px;background: #333;position: absolute;top: 0;bottom: 0;left: 0;margin: auto;transition: .35s;}
.sidebar__menu_depth2 .sm-a2:hover .sm-s2::before,
.sidebar__menu_depth2 .sm-a2:focus .sm-s2::before,
.sidebar__menu_depth2 .sm-li2.active .sm-s2::before {background: var(--color-main);}
.sidebar__menu_depth3 .sm-li3 {padding: 3px 0;}
.sidebar__menu_depth3 .sm-a3 {color: rgba(255,255,255,.4);font-size: .90em;padding: 5px 0;}
.sidebar__menu_depth3 .sm-a3:hover,
.sidebar__menu_depth3 .sm-a3:focus {color: #fff;text-decoration: underline;text-underline-offset: 4px;}

[class*=sidebar__menu_depth] a {transition: .35s;}
[class*=sidebar__menu_depth] a:hover,
[class*=sidebar__menu_depth] a:focus {color: var(--color-main);}

@media all and (max-width: 1199px){
	.sidebar__menu .cinner {margin: 0;}
	.sidebar__menu_depth1 {width: 100%;height: auto;margin-top: 0;} 
	.sidebar__menu_depth1 .sm-ul1 {display: block;width: 100%;} 
	.sidebar__menu_depth1 .sm-li1 {width: 100%;border-bottom: 1px solid #EBEBEB;box-sizing: border-box;position: relative;} 
	.sidebar__menu_depth1 .sm-a1 {display: block;margin: 0;padding: 20px 30px;border-bottom: 0;}
	.sidebar__menu_depth1 .sm-li1:has(.sidebar__menu_depth2) .toggle-arrow {display: block;width: 16px;height: 16px;border-top: 2px solid #303030;border-right: 2px solid #303030;transform: rotate(135deg);position: absolute;top: 28px;right: 38px;cursor: pointer;transition: transform 0.3s ease-in-out;}
	.sidebar__menu_depth1 .sm-li1:has(.sidebar__menu_depth2).active .toggle-arrow {transform: rotate(-45deg);}
	.sidebar__menu_depth1 .sm-li1:not(:last-child) {margin-bottom: 0;} 
	.sidebar__menu_depth2 {width: 100%;max-height: 0;overflow: hidden;background: #f4f4f4;transition: max-height 0.3s ease-in-out;}
	.sidebar__menu_depth2.open {display: block;max-height: 500px;}
	.sidebar__menu_depth2 .sm-ul2 {margin-top: 0;padding: 10px 0;border-top: 1px solid #EBEBEB;box-sizing: border-box;} 
	.sidebar__menu_depth2 .sm-li2 {padding: 0;}
	.sidebar__menu_depth2 .sm-a2 {display: block;padding: 10px 30px;color: #666;font-weight: 500;}
	.sidebar__menu_depth2 .sm-li2.active .sm-a2 {color: var(--color-main);font-weight: 600;}
	.sidebar__menu_depth2 .sm-s2 {display: inline-block;padding-right: 12px;position: relative;}
	.sidebar__btn-close {position: absolute;top: 0;bottom: 0;right: 0;margin: auto;}
}
@media all and (max-width: 1024px){
	.sidebar__header {height: 80px;}
	.sidebar__btn-close {width: 80px;}
	.sidebar__cont {padding: 0;}
}
@media all and (max-width: 640px){
    .sidebar__header-logo img {max-width: 85%;}
    .sidebar__menu_depth1 .sm-a1 {font-size: 1.11em;}
    .sidebar__menu_depth1 .sm-li1:has(.sidebar__menu_depth2) .toggle-arrow {top: 27px;right: 28px;}
}
@media all and (max-width: 480px){
    .sidebar__btn-close::before, 
    .sidebar__btn-close::after {height: 2px;}
}
/* sidebar 끝 */

/* footer 시작 */
#footer {padding: 72px 0 0;background: #2C2A2A;}
.footer__cont .cinner {display: flex;align-items: center;gap: 0 50px;position: relative;}
.footer__logo {flex: 0 0 auto;width: 120px;}
.footer__logo > img {max-width: 100%;}
.footer__info {display: flex;flex-direction: column;gap: 10px 0;}
.footer__info .info {display: flex;gap: 0 30px;}
.footer__info .info > li {color: #b9b9b9;font-size: 14px;text-align: center;}
.footer__info .info > li > address {font-style: normal;}
.footer__info .info > li em {padding-right: 5px;color: #fff;font-size: 16px;font-weight: 600;font-style: normal;}
.footer__contact {height: 50px;padding: 14px 30px;border: 1px solid #fff;box-sizing: border-box;border-radius: 25px;color: #fff;font-size: 14px;position: absolute;top: 0;bottom: 0;right: 0;margin: auto;transition: .35s;}
.footer__contact:hover,
.footer__contact:focus {background: rgba(255,255,255,.2);text-decoration: underline;text-underline-offset: 6px;}
.footer__links {margin-top: 30px;border-top: 1px solid #4A4A4A;box-sizing: border-box;}
.footer__links .cinner {display: flex;align-items: center;padding: 20px 0;}
.footer__links .copy p {color: #6b6b6b; font-size: 14px;}

@media all and (max-width: 1199px){
	#footer {padding: 50px 0 0;}
    .footer__cont .cinner {flex-direction: column;gap: 20px 0;}
	.footer__info {align-items: center;gap: 5px 0;}
    .footer__info .info {gap: 0 20px;}
	.footer__contact {position: relative;}
	.footer__links .cinner {justify-content: center;}
}
@media all and (max-width: 1024px){
    .footer__info {gap: 5px 0;}
    .footer__info .info {flex-wrap: wrap;gap: 5px 10px;}
}
@media all and (max-width: 768px){
    #footer {padding: 30px 0 0;}
    .footer__logo > img {max-width: 85%;margin: 0 auto;}
    .footer__cont {flex-direction: column;gap: 20px 0;}
    .footer__info .info {justify-content: center;}
	.footer__links .cinner {padding: 10px 0;}
}
/* footer 끝 */


/* sub visual 시작 */
#sub-visual {display: flex;flex-direction: column;align-items: center;height: 378px;margin-top: 100px;margin-bottom: 160px;position: relative;}
.sub-visual__img {background-size: cover;background-position: center center;background-repeat: no-repeat;position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
/* .sub-visual__img img {width: 100%;height: 100%;position: absolute;top: 0;left: 50%;transform: translateX(-50%);} */
.sub-visual__cont {display: flex;align-items: center;justify-content: center;flex: 0 1 auto;width: 100%;height: 100%;z-index: 1;position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
.sub-visual__cont .title {color: #fff;font-size: 3.0em;font-weight: 700;text-align: center;}
.sub-visual__cont .txt {color: #fff;text-align: center;line-height: 1.3;}
.sub-visual__cont .location {display: flex;justify-content: center;align-items: center;gap: 0 30px;}
.sub-visual__cont .location > li {position: relative;}
.sub-visual__cont .location > li:not(:last-child)::after {content:'';display:block;width: 8px;aspect-ratio: 1 / 1;border-top: 1px solid #fff;border-right: 1px solid #fff;box-sizing: border-box;position: absolute;top: 50%;right: -15px;transform: rotate(45deg) translateY(-50%);}
.sub-visual__cont .location > li > * {color: #fff;font-size: 16px;opacity: .7;}
.sub-visual__cont .location > li:last-child > * {font-weight: 700;opacity: 1;}
#cnavi {display: none;}

@media all and (max-width: 1024px){
	#sub-visual {height: 328px;margin-top: 80px;margin-bottom: 120px;}
	.sub-visual__img {background-position: 70% center;}
}
@media all and (max-width: 768px){
	#sub-visual {margin-bottom: 100px;}
}
/* sub visual 끝 */


/* sub-page 시작 */
.sub-page .page-tit {margin-bottom: 76px;}
.sub-page .page-tit .tit {font-size: 2.50em;font-weight: 700;text-align: center;}

@media all and (max-width: 768px){
	.sub-page .page-tit {margin-bottom: 50px;}
}
@media all and (max-width: 640px){
	.sub-page .page-tit .tit {font-size: 2.0em;}
}
/* sub-page 끝 */



/* 게시판 기본 세팅 시작 */
.bo_sch_wrap {width:100%;height:100%;z-index:999; margin-bottom: 50px; padding: 35px 40px; background: #f5f5f5; border-radius: 10px;}
.bo_sch {text-align:left;width:100%;margin: 0 auto; max-height:300px;overflow-y:auto;border-radius:5px;border-radius:3px;}
.bo_sch:after {display:block;visibility:hidden;clear:both;content:""}
.bo_sch h3 {padding:15px;border-bottom:1px solid #e8e8e8}
.bo_sch legend {background:red}
.bo_sch form {display:block}
.bo_sch select {float:left;font-size:17px;color:#333;padding:0 15px;border-radius:10px;margin-right:10px; border:0;width:210px;height:50px;border:1px solid #dfdfdf;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075)}
.bo_sch select:focus{border: 1px solid var(--color-main) !important; outline: none !important;}
.bo_sch .sch_bar {display:inline-block;width:calc(100% - 220px);float:left;border:none;overflow:hidden;box-shadow: none !important;}
.bo_sch .sch_bar{box-shadow: none !important;}
.bo_sch .sch_input {width:calc(100% - 170px);height:50px;font-size:17px;border:0;padding:0 15px;background-color:#fff;float:left;border:1px solid #dfdfdf;border-radius:10px;box-shadow: none;}
.bo_sch .sch_input:focus{border:1px solid var(--color-main) !important; box-shadow: none !important;}
.bo_sch .sch_input::placeholder{color: #666;}
.bo_sch .sch_btn {width:160px;height:50px;float:right;color:#fff;background:var(--color-main);border:0;border-radius: 10px;line-height: 50px;}
.bo_sch .sch_btn span{font-size:17px;font-weight:600;}
.bo_sch .bo_sch_cls {position:absolute;right:0;top:0;color:#b5b8bb;border:0;padding:12px 15px;font-size:16px;background:#fff}
.bo_sch_bg {background:#000;background:rgba(0,0,0,0.1);width:100%;height:100%}

/* list */
#bo_list_total{float: right; font-size: 18px; color: #333;}
#bo_list_total span{color: var(--color-main);font-weight: 700;}
.btn_bo_user{float: left;}
#bo_list .td_num2{color:#333; font-weight: 600;}
.bo_tit{/* text-align: center; */}
.bo_tit a{color: #808080; font-weight: 500;}
.bo_tit a:hover{text-decoration: none; color: #2d8800;}
.sv_member{color: #808080;}
#bo_list .td_num{color: #808080;}
#bo_list .td_datetime{color: #808080;}

/* view */
#bo_v_title .bo_v_tit{font-size: 24px;}
#bo_v_con{font-size: 17px;}
#bo_v_info .sv_member{font-size: 14px; color: #333;}
#bo_v_info strong{font-size:14px;}
a.btn_admin, .btn_admin {font-size: 18px;}
a.btn_b01, .btn_b01{color: var(--color-main); font-size: 18px;}
.btn_b01:hover, .btn_b01:hover{color: #333;}

/* write */
#bo_w .bo_w_tit .frm_input,
.tbl_frm01 textarea, .write_div textarea{font-size: 16px;}
@media all and (max-width:1024px){ 
  .bo_sch_wrap{padding: 30px;}
  .bo_sch select{width: 150px;}  
  .bo_sch .sch_bar{width: calc(100% - 160px);}
  .bo_sch .sch_btn{width: 120px;}
  .bo_sch .sch_input{width: calc(100% - 130px);}
}
@media all and (max-width:768px){ 
  .bo_sch_wrap{padding: 20px;}
  .bo_sch select,
  .bo_sch .sch_input,
  .bo_sch .sch_btn span{font-size: 15px;}
  #bo_list_total{font-size: 16px;}
  .tbl_head01 thead th{padding: 17px 0;font-size: 16px;}
  .tbl_head01 td{font-size: 16px;}
  .bo_sch select{width: 100px; padding:0 10px;}
  .bo_sch .sch_bar{width: calc(100% - 110px);}
  .bo_sch .sch_btn{width: 100px;}
  .bo_sch .sch_input{width: calc(100% - 110px); padding: 0 10px;}
}
@media all and (max-width:500px){
  #bo_v_title .bo_v_tit{font-size: 20px;}
  #bo_v_con{font-size: 16px;}
  .bo_sch_wrap{padding: 20px 10px;}
  .bo_sch select{margin-right: 5px; height: 40px; border-radius: 5px;}
  .bo_sch .sch_bar{width: calc(100% - 105px);}
  .bo_sch .sch_btn{width: 50px;height: 40px;border-radius: 5px;line-height: 40px;}
  .bo_sch .sch_input{width: calc(100% - 55px); height: 40px; border-radius: 5px;}
}
/* 게시판 기본 세팅 끝 */