@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700");
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
   font-size: 16px;


   overflow-x: hidden;
}

ul,
li {
   list-style: none;
}

a {
   text-decoration: none;
   color: inherit;
}

img {
   max-width: 100%;
   vertical-align: top;
   border: 0;
}

button {
   border: none;
   background: none;
   cursor: pointer;
   font-family: inherit;
}

input {
   font-family: inherit;
}

/* Layout */
.inner {
   width: 1280px;
   margin: 0 auto;
   position: relative;
}

/* =========================================
   Header
   ========================================= */
/* Top Util */
#header {
   position: relative;
   z-index: 100;
   background: #fff;
}

#header::before {
   content: "";
   display: none;
   position: absolute;
   top: 40px;
   left: 0;
   width: 100%;
   height: 70px;
   background: #333;
   /* 요청하신 # (임시 다크 그레이) 배경색 */
   z-index: -1;
}

.top_util {
   background: #3c7d3b;
   color: #fff;
   height: 51px;
   line-height: 51px;
   font-size: 15px;
   position: relative;
}

.top_util .inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.top_util .left_util {
   display: flex;
   align-items: center;
  
}

.top_util .left_util .tel {
   display: flex;
   align-items: center; margin-top: -3px !important;
   gap: 8px ;
  font-family: 'Roboto', sans-serif;
   font-weight: 700;
   font-size: 24px ;}

/* Branch Guide Hover Layer */
.branch_guide {
   display: flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
   font-size: 15px; padding-left:13px
}
.branch_guide img { width:13px !important}
.branch_guide>span {
   display: inline-block;
   padding: 0 4px;
}

/* 100% 가로 확장 레이어 배경 구현 우회 (vw 스크롤 이슈 제거) */
.branch_guide:hover .branch_layer {
   display: block;
}

.branch_layer {
   position: absolute;
   top: 40px;
   left: 50%;
   width: 100vw;
   height: 70px;
   transform: translateX(-50%);
   display: none;
   z-index: 900;
}

.branch_layer::before {
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   width: 100vw;
   height: 100%;
   background: rgba(63, 124, 51, 0.8);
   transform: translateX(-50%);
   z-index: -1;
}

.branch_layer .inner {
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   padding-left: 100px;
   gap: 40px;
}

.branch_layer a {
   color: #fff;
   font-size: 15px;
   font-weight: 500;
}

.branch_layer a:hover {
   text-decoration: none;
}

/* Header - Main */
.header_main {
   height: 88px;
   background: #fff;
}

.header_main .inner {
   display: flex;
   align-items: center;
   height: 100%;
   justify-content: space-between;
}

.header_main .logo img { width:235px
}

/* GNB (3 depths) */
#gnb {
   display: flex;
   gap: 56px;
   height: 100%;
}

#gnb>li {
   position: relative;
   height: 100%;
   display: flex;
   align-items: center;
}

#gnb>li>a {
   display: flex;
   align-items: center;
   height: 100%;
   font-size: 19px;
   font-weight: 700;
   color: #333;
}

#gnb>li:hover>a {
   color: #3c7d3b;
}

.depth2 {
   display: none;
   position: absolute;
   top: 87px;
   left: 50%;
   transform: translateX(-50%);
   width: 164px;
   background: #fff;
   border: 1px solid #ddd;
   border-top: 3px solid #3c7d3b;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   padding: 0; padding:14px 0px
}

#gnb>li:hover .depth2 {
   display: block;
}

.depth2>li {
   position: relative;
}

.depth2>li>a {
   display: block;
   padding: 11.4px 6px;
   font-size: 16px;
   color: #555;
   font-weight: 600;
   text-align: center;
}

.depth2>li:hover>a {
   background: #edf2ea;
   color: #3f7c33;
}

.depth3 {
   display: none;
   position: absolute;
   top: 0;
   left: 100%;
   width: 155px;
   background: #fff;
   border: 1px solid #ddd;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   padding: 12px 0px;
   margin-left: 2px;
}

.depth2>li:hover .depth3 {
   display: block;
}

.depth3>li>a {
   display: block;
   padding: 10px 2px;
   font-size: 14.2px;
   color: #555; font-weight:700; text-align:center
}

.depth3>li:hover>a {
   background: #edf2ea;
   color: #3f7c33;
}

/* Header - Right Util */
.header_right_util {
   display: flex;
   gap: 18px;
   align-items: center
}

.header_right_util a {
   display: flex;
   flex-direction: column;
   align-items: center;
   font-size: 15px;
   color: #555;
   gap: 4px;
}

.header_right_util a img {
   width: 26px !important; 
}

.header_right_util a:hover {
   color: #3c7d3b;
}

/* =========================================
   Quick Menu
   ========================================= */
#quick_menu {
   position: absolute;
   right: 10px;
   top: 310px;
   z-index: 90;
   width: 205px;
   background: #fff;
   border: 1px solid #3f7c33;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
   overflow: hidden;
   transition: top 0.3s;
}

.qm_head {
   background: #3f7c33;
   color: #fff;
   padding: 15px 0;
   text-align: center;
   font-size: 20px;
   font-weight: 700;
   line-height: 1.2;
}

.qm_body {
   padding: 15px 10px;
   background: #fdfdfd;
}

.qm_body .qm_tit {
   font-size: 15px;
   color: #000;
   margin-bottom: 5px;
   text-align: left;
   font-weight:bold
}

.qm_tabs {
   display: flex;
   margin-bottom: 5px;
   gap: 5px;
}
.qm_tabs.sub{ margin-bottom:21px !important}
.qm_tabs a {
   flex: 1;
   text-align: center;
   font-size: 13px;
   padding: 3px 0;
   background: #f5f6f7;
   border: 1px solid #d5d5d5;
   color: #555555;
   border-radius: 3px; font-weight:600
}

.qm_tabs a:hover,
.qm_tabs a.on {
   background: #3f7c33;
   color: #fff;
   border-color: #3f7c33;
}

.qm_form input,
.qm_form textarea {
   width: 100%;
   border: 1px solid #d5d5d5;
   padding: 7px;
   margin-bottom: 7px;
   font-size: 12px;
   resize: none; border-radius:3px
}

.qm_form button {
   width: 100%;
   background: #3f7c33;
   color: #fff;
   padding: 11px 0;
   font-size: 15px;
   font-weight: bold;
   border-radius: 25px;
   margin-top: 30px;
   transition: background 0.3s; margin-top:10px !important; margin-bottom:5px
}

.qm_form button:hover {
   background: #2b5f2a;
}

#quick_menu.fixed {
   position: fixed;
   top: 300px;
}

/* =========================================
   Footer
   ========================================= */
#footer {
   background: #dddddd;
   padding: 40px 0px 45px;
   font-size: 16px;
   color: #666;
   width: 100%;
   min-width: 1280px;
}

.f_menu {
   display: flex;
   justify-content: center;
   gap: 34px 44px;
   font-weight: 600;
   color: #1c1c1c; font-size: 20px;
}

.f_menu a {
   position: relative;
}

.f_menu a::after {
   content: '';
   position: absolute;
   right: -23px;
   top: 3px;
   width: 1px;
   height: 18px;
   background: #7d7d7d;
}


.f_menu a:last-child::after {
   display: none;
}

.f_info {
   text-align: center;
   line-height: 1.6; padding-top:25px; color:#1c1c1c
}
.f_info span{ color:#b4b4b4}

/* =========================================
   Main Visual / Content
   ========================================= */
.main_visual {
   position: relative;
   width: 100%;
   height: auto;
   background: #f5f5f5;
   overflow: hidden; margin-bottom:4px !important
}

.main-swiper {
   width: 101%;
   height:100% 
}

.main-swiper .swiper-slide {
   width: 100%;
   height: auto;
   text-align: center;
}

.main-swiper .swiper-slide img {
   width: 100%;
   height: auto;
   display: block;
}

.main_visual .swiper-pagination {
   bottom: 39px !important;
   display: flex;
   justify-content: center;
   gap: 6px;
}

.main_visual .swiper-pagination-bullet {
   width: 14px;
   height: 14px;
   border-radius: 50%;
   opacity: 1;
   transition: all 0.3s;
   cursor: pointer; border:1px solid #fff; background-color:transparent
}

.main_visual .swiper-pagination-bullet-active {
     width: 14px;
   height: 14px;
   opacity: 1;
   background: #fff;
}

.sec_center {
   padding: 83px 0;
   text-align: center;
}

.sec_tit {
   font-size: 32px;
   font-weight: 700;
   margin-bottom: 27px;
   text-align: left;
}

.center_list {
   display: flex;
   flex-wrap: wrap;
   gap: 18px 31px ;
}

.center_item {
   width: calc((100% - 62px) / 3);
   text-align: left;
}

.center_item .img_box {
   position: relative;
   overflow: hidden;
   margin-bottom: 17px;
   transition: transform 0.3s, box-shadow 0.3s;
}

.center_item .img_box img {
   width: 100%;
   height: 272px;
   object-fit: cover;
   display: block;
   transition: transform 0.3s;
}

.center_item .img_box .icon_arrow {
   position: absolute;
   right: 14px;
   bottom: 12px;
   width: 33px;
   height: 33px;
   background: #3c7d3b;
   border-radius: 50%;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   background-image:url(/img/icon_arrow.png); background-repeat:no-repeat
}

.center_item:hover .img_box {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.center_item:hover .img_box img {
   transform: scale(1.05);
}

.center_item .txt_box dt {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 7px;
}

.center_item .txt_box dd {
   font-size: 18px;
   color: #636363;
}

/* Info & Schedule */
.info-grid { display: flex; gap: 40px; margin-bottom:89px}
.info-box { flex: 1;  }
.info-box h4 { font-size: 24px; margin-bottom: 15px !important}
.notice ul{ background: #fff; padding: 27px 32px 24px; border: 1px solid #ddd; border-radius:10px;}
.notice ul li {   }
.notice ul li:last-child { border-bottom: none; }
.notice ul li a { display: flex; justify-content: space-between; align-items: center; padding:8px 0px; color:#393939 ; font-size:20px !important}
.notice .text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notice .new-badge { background: #ff6b6b; color: #fff; font-size: 10px; padding: 2px 4px; border-radius: 2px; margin: 0 5px; }
.notice .date { color: #9a9a9a; }

.schedule-content {  line-height: 2; position: relative; background: #fff; padding: 27px 32px  24px; border: 1px solid #ddd; border-radius:10px}
.schedule-content p{ color:#1c1c1c; font-size:20px; }
.schedule-content span{ color:#3f7c33}
.schedule-content .btn-link { position: absolute; right: 28px; bottom: 35px; color: #1c1c1c; font-size: 18px; vertical-align:central; line-height:0.1em; font-weight:600}
.schedule-content .btn-link img {vertical-align: middle; width:27px; padding-left:5px}
/* Footer Area */
.footer-wrapper { background: #3f7c33; color: #fff; }
.location-service { padding: 71px 0px 40px; background: #3f7c33; } /* Green bg */

.location-service .container { display: flex; gap: 2px; }

.location-box { flex: 3; display: flex; overflow: hidden; color: #fff; }
.location-box .map-placeholder{ width:410px !important}
.location-box .map-area img{ width:410px ; display: flex; align-items: center; justify-content: center; text-align: center; }
.location-box .map-area h3 { color: #fff;font-size: 31.6px; display:block; padding-bottom:30px} 
.location-box .time-info { width: 70%; padding: 30px 45px; }
.location-box h4 { font-size: 23px; margin-bottom: 20px; color: #fff; font-weight: bold; padding-top:33px}
.location-box h4 span { font-size: 42px; color: #fff8af; display:block;  font-family: 'Roboto', sans-serif; }
.location-box h5 { font-size: 23px; margin-bottom: 10px; color: #fff; margin-top:27px}
.location-box ul li { display: flex; margin-bottom: 4.5px; font-size: 21px; padding-top:7px;letter-spacing:-0.5px}
.location-box ul li .label { width: 125px;  color: #fff; margin-right:35px ;text-align: justify;text-align-last: justify; letter-spacing:-1px}
.location-box ul li:last-child{letter-spacing:-0.2px !important}

.quick-service { flex: 1; display: flex; flex-direction: column; padding-left:100px; background-image:url(/img/quick-service-bg.png); background-repeat:no-repeat; background-position:top left}
.quick-service h3  { color: #fff;font-size: 30px;padding-bottom:33px} 
.btn-quick { background: transparent; border: 2px solid #dbddda; color: #fff; padding: 17px 20px; border-radius: 50px; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; margin-bottom:13px; }
.btn-quick img { display:inline-block; padding:0px 13px; }
.btn-quick span img {width:48px}
.btn-quick p{ margin-right:auto; padding-left:18px; font-size:20px}
.btn-quick:hover { background: #295d1f; color: #fff; font-weight: bold; }

/* =========================================
   Layer Popup
   ========================================= */
#layer_popup {
   position: absolute;
   top: 150px;
   left: 10px;
   z-index: 9999;
   display: none;
   width: 450px;
}

.pop_inner {
   background: #fff;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.pop-swiper {
   width: 450px;
   height: 493px;
}

.pop-swiper .swiper-slide {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   background: #ddd;
}

.pop-pagination {
   bottom: 10px !important;
}

.pop-pagination .swiper-pagination-bullet {
   background: #fff;
   opacity: 0.5;
   width: 10px;
   height: 10px;
   border-radius: 5px;
   transition: 0.3s;
}

.pop-pagination .swiper-pagination-bullet-active {
   opacity: 1;
   background: #3f7c33;
   width: 25px;
}

.pop_bottom {
   display: flex;
   justify-content: space-between;
   align-items: stretch;
   background: #222;
   color: #fff;
   font-size: 13px;
}

.pop_bottom label {
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: 5px;
   padding: 10px 15px;
}

.btn_pop_close {
   color: #fff;
   font-weight: bold;
   padding: 10px 15px;
   display: flex;
   align-items: center;
}