@charset "UTF-8";
.max-width {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

#floating {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 9999999;
}

.float-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-list li {
  list-style: none;
}

.float-list li a {
  display: flex;
  height: 70px;
  width: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  /* padding: 10px 16px 10px 12px; */
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.float-list li:first-child a {
  background: #659b15; /* 기본 검정 */
}

.float-list li:last-child a {
  background: #EE7B16; /* 기본 검정 */
}

.float-list li:first-child a:hover {
  background: #4b750b; /* 기본 검정 */
}

.float-list li:last-child a:hover {
  background: #cd6204; /* 기본 검정 */
}

/* 아이콘 영역 */
.float-list li .icon {
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 각각 아이콘 연결 (검정 오버레이 적용 버전) */
.float-list li.kakao .icon {
  background-color: #ffffff; /* 검정으로 덮기 */
  mask: url("../img/main/icon-kakao.svg") no-repeat center/contain;
  -webkit-mask: url("../img/main/icon-kakao.svg") no-repeat center/contain;
}

.float-list li.phone .icon {
  background-color: #ffffff;
  mask: url("../img/main/icon-phone.svg") no-repeat center/contain;
  -webkit-mask: url("../img/main/icon-phone.svg") no-repeat center/contain;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  #floating {
    right: 15px;
    bottom: 25px;
  }
  .float-list li a {
    padding: 8px 14px;
    font-size: 14px;
  }
}
#header {
  border-top: 8px solid #7B9F3A;
  background: linear-gradient(to bottom, rgba(182, 209, 134, 0.68) 0%, rgba(230, 244, 206, 0.39) 18%, rgba(255, 255, 255, 0.25) 100%);
}
#header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header_wrap > div {
  margin-left: auto;
  display: flex;
  align-items: end;
  flex-direction: column;
}
#header .header_wrap .gnb-all-wrap {
  display: flex;
  align-items: center;
}
#header .header_wrap .ttop {
  display: inline-flex;
  gap: 15px;
  padding: 10px 27px;
  margin-top: 16px;
  box-sizing: border-box;
  height: 33px;
  flex-shrink: 0;
  border-radius: 16.5px;
  background: rgba(164, 197, 105, 0.42);
}
#header .header_wrap .ttop li {
  display: flex;
  align-items: center;
}
#header .header_wrap .ttop li a {
  color: #3C5C0C;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#header .header_wrap .menu-wrap .gnb {
  display: flex;
  gap: 40px;
}
#header .header_wrap .menu-wrap .gnb > li:nth-child(13), #header .header_wrap .menu-wrap .gnb > li:nth-child(9), #header .header_wrap .menu-wrap .gnb > li:nth-child(10), #header .header_wrap .menu-wrap .gnb li:nth-child(11), #header .header_wrap .menu-wrap .gnb li:nth-child(12) {
  display: none;
}
#header .header_wrap .menu-wrap .gnb > li {
  padding: 30px 0;
  position: relative;
}
#header .header_wrap .menu-wrap .gnb > li:hover a {
  color: #649023;
}
#header .header_wrap .menu-wrap .gnb > li:hover .ulDepth2 {
  display: flex;
}
#header .header_wrap .menu-wrap .gnb > li > a {
  color: #2A2A2A;
  font-family: "Pretendard";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#header .header_wrap .menu-wrap .gnb > li > ul.ulDepth2 {
  display: none;
  z-index: 9999;
  flex-direction: column;
  position: absolute;
  left: -10px;
  top: 80px;
  margin: 0 auto;
  width: 167px;
  border-radius: 0 0 20px 20px;
  background: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 20px 0;
  box-sizing: border-box;
}
#header .header_wrap .menu-wrap .gnb > li > ul.ulDepth2 li a {
  color: #4D4D4D;
  text-align: center;
  font-family: "Pretendard";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-decoration: none;
  /* 187.5% */
}
#header .header_wrap .menu-wrap .gnb > li > ul.ulDepth2 li:hover a {
  color: #649023;
}

/* 스크롤 고정 기본 스타일 */
#header {
  position: relative;
  width: 100%;
  z-index: 9999999;
  transition: all 0.3s ease;
}

/* 스크롤 내려갈 때 고정 */
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff; /* 필요하면 변경 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bx-viewport, .sliderUl, .sliderLi, .sliderLi a {
  width: 100%;
  height: 100%;
}

#mainVisual .sliderLi a {
  display: block;
  aspect-ratio: 16/9; /* 원하는 비율 */
  overflow: hidden;
}

#mainVisual .bx-viewport img {
  width: 100% !important;
  background: none !important; /* 🔥 핵심 */
  -o-object-fit: cover;
     object-fit: cover;
}

#mainVisual {
  overflow: hidden;
  height: 617px;
  position: relative;
  display: flex;
  justify-content: center;
}
#mainVisual:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}
#mainVisual .max-width {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  height: 100%;
  right: 0;
  margin: 0 auto;
}
#mainVisual .main-text {
  position: relative;
  padding: 17px 35px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  margin-top: -50px;
}
#mainVisual .main-text > span:first-child {
  color: #EE7B16;
  font-family: "Pretendard";
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 55px;
  /* 220% */
}
#mainVisual .main-text p {
  color: #2E2E2E;
  font-family: "Pretendard";
  font-size: 45px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
  /* 88.889% */
}
#mainVisual .main-text p span {
  color: #557234;
  font-family: "Pretendard";
  font-size: 45px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
}
#mainVisual .main-text > span:last-child {
  color: #2E2E2E;
  font-family: "Pretendard";
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
  display: block;
  line-height: 45px;
}
#mainVisual .bottom-line {
  position: absolute;
  bottom: 0;
  background: #557234;
  width: 100%;
  height: 75px;
  flex-shrink: 0;
  z-index: 999;
}
#mainVisual .bottom-line ul {
  display: flex;
  gap: 85px;
}
#mainVisual .bottom-line ul li {
  display: flex;
  gap: 15px;
  align-items: centerx;
  color: #FFF;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-items: center;
}
#mainVisual .bottom-line ul li span {
  flex-shrink: 0;
}
#mainVisual .bottom-line .contact-btn {
  width: 239px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 57px;
  flex-shrink: 0;
  border-radius: 49.5px;
  background: #fff;
  margin-left: auto;
  transition: all 0.2s;
}
#mainVisual .bottom-line .contact-btn img.black {
  filter: brightness(0) invert(0);
}
#mainVisual .bottom-line .contact-btn:hover {
  background: #272E38;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
#mainVisual .bottom-line .contact-btn:hover img.black {
  filter: none;
}
#mainVisual .bottom-line .contact-btn:hover span {
  color: #fff;
}
#mainVisual .bottom-line .contact-btn span {
  color: #272E38;
  font-family: "Pretendard";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  cursor: pointer;
}

.bx-controls {
  position: absolute;
  right: 0;
  bottom: 100px;
  left: 0;
  margin: 0 auto;
  z-index: 9;
}
.bx-controls .bx-pager {
  display: flex;
  justify-content: center;
}

/* bx-controls 전체 감춤 처리 - dot만 남김 */
.bx-wrapper .bx-controls-direction {
  display: none;
}

/* dot 영역 (pager) */
.bx-wrapper .bx-pager {
  text-align: center;
  margin-top: 15px;
}

/* dot 기본 */
.bx-wrapper .bx-pager.bx-default-pager a {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  text-indent: -9999px;
  transition: background 0.3s;
}

/* 활성 dot */
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #649023;
}

/* dot hover 효과 */
.bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #666;
}

#mainContents .board {
  display: flex;
  gap: 65px;
  margin-top: 100px;
}
#mainContents .board .category {
  display: none;
}
#mainContents .board > div {
  width: 50%;
}
#mainContents .board .title-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #649023;
  justify-content: space-between;
  padding-bottom: 10px;
}
#mainContents .board .title-wrap h2 {
  padding-left: 20px;
  position: relative;
  color: #2A2A2A;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
#mainContents .board .title-wrap h2:before {
  left: 0;
  content: "";
  top: 0;
  position: absolute;
  display: block;
  width: 9px;
  height: 24px;
  background: url(../img/main/title-dot.png) no-repeat center;
}
#mainContents .board .title-wrap a {
  display: flex;
  align-items: center;
  color: #EE7B16;
  font-weight:600;
}
#mainContents .board .title-wrap a:hover {
  text-decoration: none;
  color: #cd6204;
}
#mainContents .board ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DBDBDB;
  padding: 15px 0;
  box-sizing: border-box;
}
#mainContents .board ul li:hover a {
  color: #649023;
}
#mainContents .board ul li time {
  color: #8C8C8C;
}
#mainContents .board ul li .new-icon {
  background: #ee7b16;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
  color: #fff;
}
#mainContents .board ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: #343434;
}

.tab-content > .tab-panel {
  display: none;
}

.tab-content > .tab-panel.on {
  display: block;
}

.tab-list li.on a {
  color: #5c7b2e;
  font-weight: 700;
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
}
.tab-list li {
  padding: 15px 25px;
  border-radius: 11px;
  background: #EBEBEB;
  border: 2px solid transparent;
}
.tab-list li a {
  color: #5D5D5D;
  font-family: "Pretendard";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}
.tab-list li.on, .tab-list li:hover {
  border-radius: 11px;
  box-sizing: border-box;
  border: 2px solid #649023;
  background: #fff;
  cursor: pointer;
}
.tab-list li.on a, .tab-list li:hover a {
  color: #649023;
}

.category {
  margin-top: 100px;
  background: #F9FAF4;
  padding: 80px 0;
}
.category h2 {
  color: #000;
  text-align: center;
  font-family: "Pretendard";
  font-size: 33px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.category h2 span {
  color: #649023;
}
.category .content-wrap {
  display: flex;
  gap: 40px;
}
.category .content-wrap .main-ic {
  width: 289px;
  height: 293px;
  flex-shrink: 0;
  border-radius: 30px;
  background: #BDD98C;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.category .content-wrap .main-ic p {
  color: #0F1900;
  font-family: "Pretendard";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.category .content-wrap .main-sub-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category .content-wrap .main-sub-list ul li {
  position: relative;
  width: 186px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.category .content-wrap .main-sub-list ul li:hover a {
  display: flex;
  transition: all 0.2s;
  background: #dee8cc;
}
.category .content-wrap .main-sub-list ul li div {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.2s;
  border-radius: 10px;
}
.category .content-wrap .main-sub-list ul li div:hover {
  border: 1px solid #649023;
  transition: all 0.2s;
  cursor: pointer;
}
.category .content-wrap .main-sub-list ul li div h3 {
  position: relative;
  color: #000;
  font-family: "Pretendard";
  font-size: 23px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.category .content-wrap .main-sub-list ul li div h3:before {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  display: block;
  width: 34px;
  height: 4.882px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #BDD98C;
}
.category .content-wrap .main-sub-list ul li div p {
  margin-top: 40px;
  color: #2E2E2E;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.category .content-wrap .main-sub-list ul li div a {
  position: absolute;
  bottom: 20px;
  display: none;
  text-decoration: none;
  padding: 0 20px;
  box-sizing: border-box;
  height: 25px;
  border-radius: 14px;
  background: #EEF5E2;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}
.category .content-wrap .main-sub-list ul li div a span {
  color: #649023;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.info {
  margin-top: 100px;
}
.info h2 {
  padding-left: 20px;
  position: relative;
  color: #2A2A2A;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.info h2:before {
  left: 0;
  content: "";
  top: 0;
  position: absolute;
  display: block;
  width: 9px;
  height: 24px;
  background: url(../img/main/title-dot.png) no-repeat center;
}
.info .content {
  padding: 0 70px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  height: 233px;
  background: url(../img/main/sec-3-bgimg.png) no-repeat center;
}
.info .content > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info .content h3 {
  color: #281964;
  font-family: "Pretendard";
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.info .content p {
  color: #262626;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 136.364% */
}
.info .content .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 262px;
  height: 63.651px;
  flex-shrink: 0;
  border-radius: 49.5px;
  background: #281964;
  text-decoration: none;
}
.info .content .link-btn:hover {
  background: #130938;
  transition: all 0.2s;
  cursor: pointer;
}
.info .content .link-btn span {
  color: #FFF;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.section.section_address.lst,
.wrap_controllers.hide {
  display: none;
}

.map {
  display: flex;
  margin-top: 100px;
  align-items: self-end;
}
.map > div {
  width: 50%;
  height: 530px;
}
.map > div.info {
  background: #F5F5F5;
  display: flex;
  justify-content: end;
}
.map > div.info .inner {
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 40px;
}
.map > div.info .inner .title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.map > div.info .inner .title-wrap h3 {
  color: #000;
  font-family: "Pretendard";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.map > div.info .inner .info-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.map > div.info .inner .info-content li {
  display: flex;
}
.map > div.info .inner .info-content li span:first-child {
  color: #649023;
  font-family: "Pretendard";
  font-size: 18x;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  width: 120px;
  flex-shrink: 0;
}
.map > div.info .inner .info-content li span:last-child {
  color: #232323;
  font-family: "Pretendard";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#footer {
  border-top: 1px solid #8C8C8C;
  padding: 80px 0;
  background: linear-gradient(to top, rgba(182, 209, 134, 0.68) 0%, rgba(230, 244, 206, 0.39) 18%, rgba(255, 255, 255, 0.25) 100%);
}
#footer .footer_bot {
  display: flex;
  gap: 100px;
}
#footer .footer_info {
  font-size: 14px;
  color: #555555;
}
#footer .footer_info h3 {
  color: #000;
  margin-bottom: 10px;
}

.sub_visu {
  background: #fff;
  height: 350px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
.sub_visu img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.lnb {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  border-bottom: 1px solid #c2c2c2;
}
.lnb .ulDepth3 {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.lnb:has(.menuDepth3.on) .menuDepth2 > a {
  display: none;
}
.lnb:has(.menuDepth3.on) .menuDepth3.on > a {
  display: block;
}
.lnb:has(.menuDepth2.on) .menuDepth3 {
  display: none;
}
.lnb .groupmenu {
  width: 100%;
  max-width: 1400px;
}
.lnb .groupmenu .ulDepth2 {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.lnb .groupmenu .menuDepth1 > a {
  display: none;
}
.lnb .groupmenu .menuDepth3 {
  padding: 0 !important;
}
.lnb .groupmenu .menuDepth3.on a {
  text-align: center;
}
.lnb .groupmenu .menuDepth3.on:before {
  bottom: -20px !important;
}
.lnb .groupmenu .menuDepth2,
.lnb .groupmenu .menuDepth3 {
  padding: 20px 0;
  position: relative;
}
.lnb .groupmenu .menuDepth2 a,
.lnb .groupmenu .menuDepth3 a {
  font-family: "Pretendard";
  color: #989898;
  font-size: 18px;
  font-weight: bold;
}
.lnb .groupmenu .menuDepth2.on a,
.lnb .groupmenu .menuDepth3.on a {
  color: #000000;
}
.lnb .groupmenu .menuDepth2.on:before,
.lnb .groupmenu .menuDepth3.on:before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #7B9F3A;
  position: absolute;
  bottom: 0;
  left: 0;
}

.subcontent .title-wrap {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.subcontent .title-wrap h3 {
  color: #2A2A2A;
  font-family: "Pretendard";
  font-size: 30px;
}
.subcontent .title-wrap span {
  color: #939393;
  font-family: "Pretendard";
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
.subcontent .title-wrap:before {
  position: absolute;
  bottom: 45px;
  right: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  width: 60px;
  height: 6px;
  display: block;
  border-radius: 20px;
  background: #7c9f3a;
}
.subcontent .greeting-wrap {
  display: flex;
  gap: 70px;
  justify-content: center;
  gap: 30px;
}
.subcontent .greeting-wrap img {
  width: 400px;
  border-radius: 0 50px;
}
.subcontent .greeting-wrap .text-wrap {
  font-family: "Pretendard";
  font-weight: normal;
  color: #222;
  /* gap: 50px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
}
.subcontent .greeting-wrap .large-font {
  font-size: 30px;
  line-height: 40px;
  color: #2A2A2A;
  font-family: "Pretendard";
  /* margin-bottom: 0px; */
  display: block;
  color: #7c9f3a;
  font-weight: 700;
}

.map-wrap .cont {
  display: none;
}

.address-box {
  font-family: "Pretendard";
  display: flex;
  justify-content: space-around;
  font-size: 16px;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  margin: 35px 0;
  margin-top: 50px;
}
.address-box h3 {
  font-size: 25px;
  color: #000;
}
.address-box > div {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.address-box > div span:first-child {
  font-weight: bold;
  color: #7c9f3a;
}

.gray-box {
  background: #f5f5f5;
  border-radius: 50px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  font-family: "Pretendard";
  color: #000;
}
.gray-box > ul {
  display: flex;
  font-size: 16px;
  gap: 50px;
  align-items: center;
}
.gray-box > ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.gray-box > ul li span:first-child {
  font-weight: bold;
  color: #000;
}
.gray-box > ul li i {
  color: #7c9f3a;
}

.subcon_wrap {
  background: #fff;
  padding-bottom: 100px;
}

.subcontent .map {
  margin-top: 20px;
}

.public {
  font-family: "Pretendard";
  margin-top: 50px;
  display: flex;
  gap: 50px;
}
.public > div {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
  background: #f1f1f1;
  border-radius: 30px;
}
.public h3 {
  color: #7c9f3a;
  font-size: 20px;
  margin-bottom: 20px;
}
.public p span {
  color: #415a10;
}

#header .header_wrap #m_gnb {
  width: 28px;
  height: 22px;
  margin-left: auto;
}

.all-menu-wrap div.all-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px; /* 필요에 따라 조정 */
  height: 80vh; /* 필요에 따라 조정 */
  background: #fff;
  z-index: 9999;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.all-menu-wrap div.all-menu h1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

/* 배경 오버레이 */
.all-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px; /* × 크기 */
  font-weight: bold;
  color: #333;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #000;
}

/* 1depth 메뉴 */
.all-menu > ul.ulDepth1 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  /* justify-content: center; */
  height: calc(100% - 50px - 62px);
  overflow-y: scroll;
  width: 100%;
   padding: 0 2rem;
   box-sizing: border-box;
}

.all-menu > ul.ulDepth1::-webkit-scrollbar {
   width: 3px; 
   height: 20px; 
}

.all-menu > ul.ulDepth1::-webkit-scrollbar-thumb {
   background: #659b15; /* 스크롤바 막대 색상 */
   border-radius: 12px 12px 12px 12px;
}

.all-menu > ul.ulDepth1::-webkit-scrollbar-track {
	background: rgba(101,155,21,0.1); /* 스크롤바 뒷 배경 색상 */
}

.all-menu > ul.ulDepth1 > li.menuDepth1 {
  /* min-width: 200px; */
  width: calc((100% - 200px) / 5);
}

.all-menu > ul.ulDepth1 > li.menuDepth1 > a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  text-decoration: none;
  border-bottom: 2px solid #ddd;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 15px;
  text-align: center;
}

/* 2depth 메뉴 */
.all-menu .ulDepth2 {
  margin-top: 10px;
  padding-left: 10px;
}

.all-menu .ulDepth2 li a {
  display: block;
  font-size: 16px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: center;
  font-family: "Pretendard";
}

.all-menu .ulDepth2 li a:hover {
  color: #0077cc;
}

.lawer-info {
  width: 90%;
}
.lawer-info > span {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  display: block;
  padding: 5px 0;
}
.lawer-info ul li {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  padding: 5px 15px;
}
.lawer-info ul li::before {
  display: block;
  width: 5px;
  height: 5px;
  background: #cfdfb1;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 0px;
  content: "";
}/*# sourceMappingURL=layout.css.map */