#wrap {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem 0;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0;
    height: 60px;
  }
}
.header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header .inner {
    height: 60px;
  }
}
.header .logo {
  position: relative;
  width: 29.7rem;
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header__bg {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.header__bg--active {
  height: 28.5rem;
  opacity: 1;
  visibility: visible;
}
.header__menu-box {
  display: none;
  align-items: center;
  width: 24px;
  height: 100%;
  gap: 150px;
}
@media screen and (max-width: 1024px) {
  .header__menu-box {
    display: flex;
  }
}
.header__menu-btn {
  position: relative;
  width: 100%;
  height: 3rem;
}
.header__menu-btn__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: background-color 0.5s ease-in-out;
}
.header__menu-btn__line + .header__menu-btn__line {
  margin-top: 6px;
}

.gnb {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .gnb {
    display: none;
  }
}
.gnb__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.gnb__list__item {
  position: relative;
  padding: 0 4rem;
}
.gnb__list__item:focus .gnb__list__link, .gnb__list__item:hover .gnb__list__link, .gnb__list__item--active .gnb__list__link {
  background-position: 0 calc(100% - 0.1rem);
  background-size: 100% 2px;
  color: #449100;
}
.gnb__list__link {
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 2rem;
  color: #000;
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 calc(100% - 0.1rem);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.4s ease, color 0.3s ease-in-out;
}
.gnb__list__link:hover, .gnb__list__link:focus {
  background-position: 0 calc(100% - 0.1rem);
  background-size: 100% 2px;
  color: #449100;
}
.gnb__list__item:last-child .gnb__list__link {
  padding-right: 0;
}
.gnb__dept2 {
  position: absolute;
  top: 8.4rem;
  left: 4rem;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.gnb__dept2 li {
  font-size: 1.5rem;
  line-height: 3rem;
  color: #000;
}
.gnb__dept2 a {
  color: #000;
}
.gnb__dept2 a:hover, .gnb__dept2 a:focus {
  color: #449100;
}
.gnb__dept2--active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
}
.footer__top {
  position: relative;
  padding: 1.5rem 0;
  background-color: #EDEDED;
}
.footer__top .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 490px) {
  .footer__top .inner {
    justify-content: center;
  }
}
.footer__bottom {
  position: relative;
  padding: 3rem 0;
  background-color: #313131;
  font-size: var(--font-size14);
  color: #fff;
}
.footer__bottom__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.footer__bottom__text + .footer__bottom__text {
  margin-top: 1rem;
}
.footer__bottom__text span {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__bottom__text span {
    display: block;
    width: 100%;
  }
}
.footer__bottom__text span + span {
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__bottom__text span + span {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.footer__bottom__text .admin-link {
  position: relative;
  display: inline-block;
  margin-left: 3rem;
  color: #e8d319;
}
@media screen and (max-width: 1024px) {
  .footer__bottom__text .admin-link {
    display: none;
  }
}
.footer__bottom .moblie-admin-link {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer__bottom .moblie-admin-link {
    display: block;
    margin-bottom: 1rem;
    color: #e8d319;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 490px) {
  .footer__links {
    width: 100%;
    justify-content: center;
  }
}
.footer__links li {
  position: relative;
}
.footer__links li + li {
  margin-left: 2rem;
}
.footer__links li a {
  font-weight: 500;
  font-size: var(--font-size14);
  color: #000;
}
.footer .family-site {
  position: relative;
}
@media screen and (max-width: 490px) {
  .footer .family-site {
    width: 100%;
    margin-top: 1rem;
  }
}
.footer .family-site--open .family-site__btn span::after {
  transform: rotate(180deg);
}
.footer .family-site__btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 17rem;
  height: 3.5rem;
  padding: 0 1rem;
  background-color: #fff;
  border: 1px solid #ddd;
}
@media screen and (max-width: 490px) {
  .footer .family-site__btn {
    width: 100%;
    height: 4.5rem;
  }
}
.footer .family-site__btn span {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: var(--font-size14);
  color: #000;
  text-align: left;
}
.footer .family-site__btn span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
  right: 0;
  width: 1.2rem;
  height: 0.7rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(../imgs/ico/ico_black_down_arr.svg);
  transition: all 0.3s ease;
}
.footer .family-site__menu {
  display: none;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  right: 0;
  padding-bottom: 1rem;
  border: 1px solid #ddd;
  border-bottom: 0;
  background-color: #fff;
  z-index: 10;
}
.footer .family-site__menu a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 1rem;
  height: 3rem;
  font-size: var(--font-size14);
  color: #000;
  font-weight: 700;
}

#container {
  position: relative;
}
@media screen and (max-width: 1024px) {
  #container {
    padding-top: 60px;
  }
}

.mobile-menu-open .mobile-gnb {
  display: block;
  opacity: 1;
}

.mobile-gnb {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 0;
  overflow-y: scroll;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.mobile-gnb__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  padding: 2rem 20px 4rem 20px;
}
.mobile-gnb__head button {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../imgs/ico/ico_close.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.mobile-gnb__body {
  position: relative;
}
.mobile-gnb__list {
  position: relative;
}
.mobile-gnb__1dpet {
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
.mobile-gnb__1dpet__link {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 2.3rem;
  color: #000;
  padding: 1.5rem 2rem 1.5rem 2rem;
}
.mobile-gnb__1dpet__link::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 2.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../imgs/ico/ico_black_down_arr.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}
.mobile-gnb__1dpet__link--right-arr::after {
  transform: rotate(-90deg);
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link {
  color: #09CE91;
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link::after {
  transform: rotate(180deg);
  background-image: url(../imgs/ico/ico_green_down_arr.svg);
}
.mobile-gnb__1dpet--active .mobile-gnb__1dpet__link--right-arr::after {
  transform: rotate(-90deg);
  background-image: url(../imgs/ico/ico_green_down_arr.svg);
}
.mobile-gnb__1dpet--active .mobile-gnb__2dept {
  display: block;
}
.mobile-gnb__2dept {
  display: none;
  padding: 0 2rem;
}
.mobile-gnb__2dept > li > a {
  display: block;
  font-weight: 500;
  color: #909090;
  padding: 8px 0;
  font-size: 1.9rem;
  transition: color 0.3s ease-in-out;
}
.mobile-gnb__2dept > li > a.active {
  color: #09CE91;
}

.snb {
  position: relative;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 6rem;
  border-bottom: 1px solid #f3f3f3;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 1024px) {
  .snb .inner {
    overflow: hidden;
    overflow-x: visible;
  }
}
.snb__list {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  gap: 0 4rem;
  margin: 0 auto;
}
.snb__1depth {
  position: relative;
}
.snb__1depth__link {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 6rem;
  font-size: var(--font-size16);
  color: #666;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  white-space: nowrap;
  font-weight: 400;
}
.snb__1depth--active .snb__1depth__link {
  font-weight: 700;
  color: #519812;
  border-bottom-color: #519812;
}

#sub-container {
  margin-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1400px) {
  #sub-container {
    padding-bottom: 7.1428571429vw;
  }
}
@media screen and (max-width: 800px) {
  #sub-container {
    padding-bottom: 12.5vw;
  }
}
@media screen and (max-width: 640px) {
  #sub-container {
    padding-bottom: 15.625vw;
  }
}

/*---------- Eb BackToTop ----------*/
.eb-backtotop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  height: 4.6rem;
  width: 4.6rem;
  cursor: pointer;
  display: block;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (max-width: 991px) {
  .eb-backtotop {
    bottom: 7rem;
  }
}
.eb-backtotop.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.eb-backtotop::after {
  position: absolute;
  content: "\f106";
  font-family: "FontAwesome";
  font-weight: 900;
  text-align: center;
  font-size: var(--font-size16);
  color: #757575;
  left: 0;
  top: 0;
  height: 4.6rem;
  width: 4.6rem;
  line-height: 2.8rem;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eb-backtotop:hover::after {
  color: #3949ab;
}
.eb-backtotop svg path {
  fill: none;
}
.eb-backtotop svg.backtotop-progress path {
  stroke: #b5b5b5;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eb-backtotop svg.backtotop-progress path {
  stroke: #3949ab;
}
.eb-backtotop .progress-count {
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  font-size: 11px;
  text-align: center;
  color: #a5a5a5;
}
.eb-backtotop::after {
  color: #2b2b2e;
}