@charset "UTF-8";

html,
body {
  height: 100%;
  width: 100%;
}

body.fixed {
  overflow-y: hidden;
}

.main {
  width: 100%;
  height: 100%;
  padding-top: 155px;
}

#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 350px;
}

.container {
  width: 100%;
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 16px;
}
.container_B {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 155px;
  z-index: 101;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  /* transition: 0.35s; */
}
.header_top {
  height: 60px;
  background: #f5f5f5;
  padding: 0 20px;
}

.header_top .header_top_inner {
  max-width: 1400px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_top .header_top_inner .logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header_top .header_top_inner .logos,
.header_top .header_top_inner .rights {
  max-width: 312px;
  width: 100%;
}

.header_top .header_top_inner .logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header_top .header_top_inner .logos img:first-child {
  width: 101px;
  height: 22px;
}

.header_top .header_top_inner .logos img:last-child {
  width: 138px;
  height: 24px;
}

.header_top .header_top_inner b {
  color: #0e4194;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -2%;
}

.header_top .header_top_inner .rights {
  display: flex;
  justify-content: end;
  gap: 24px;
  align-items: center;
}

.header_top .header_top_inner .rights a,
.header_top .header_top_inner .rights button {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -2%;
}
.header_top .header_top_inner .rights button.logout {
  color: #8c8c8c;
}
.gnb {
  overflow: hidden;
  height: 95px;
}
.header_bottom .header_pc {
  display: flex;
  align-items: center;
  padding: 0 16px;
  max-width: 1288px;
  margin: 0 auto;
  height: 95px;
  justify-content: space-between;
}

.header_bottom .header_pc > li {
  width: 100%;
  max-width: 200px;
  text-align: center;
  height: 100%;
}

.header_bottom .header_pc > li a:not(.lnb__item a) {
  height: 100%;
  display: inline-block;
  width: 100%;
  line-height: 95px;
  color: #141414;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -2%;
}

.header_bottom .header_pc > .gnb__item:hover a {
  color: #299738;
}

.header_bottom .header_pc > .gnb__item.active > a {
  color: #299738;
}
.header_search_btn {
  background: url(../_img/common/icon_search.svg) no-repeat center center / contain;
  width: 32px;
  height: 32px;
  margin-left: 24px;
}

/* menu */
.header.active {
  height: 312px;
}
.header.active .gnb {
  height: 312px;
}
.gnb__item:first-child .lnb__list {
  border-left: 1px solid #d9d9d9;
}
.lnb__list {
  /* transition: 0.35s; */
  border-right: 1px solid #d9d9d9;
  height: 157px;
  padding: 24px 16px;
  border-top: 1px solid #d9d9d9;
  width: 100%;
}

.lnb__list .lnb__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.lnb__list .lnb__item > a {
  padding: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  height: 31px;
}
.header_gnb_inner {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}

.header_bottom .header_pc > .gnb__item:hover .lnb__list {
  background: #299738;
  color: #ffffff;
  border: none;
}

.header_bottom .header_pc > .gnb__item:hover .lnb__list .lnb__item a {
  color: #fff;
}

.header_bottom .header_pc > .gnb__item .lnb__list .lnb__item a {
  display: inline-block;
  width: auto;
  height: 100%;
  border-bottom: 2px solid transparent;
  min-height: 31px;
}

.header_bottom .header_pc > .gnb__item .lnb__list .lnb__item a:hover {
  border-bottom: 2px solid #fff;
  width: fit-content;
}
.header_bottom .lnb__item a {
  color: #8c8c8c;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}
.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000099;
  z-index: 100;
  display: none;
}
.header-bg.active {
  display: block;
}
.mypage__area {
  position: relative;
}
.mypage_ul {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 6px;
  padding: 16px 32px;
  box-shadow: 0 9px 25px 0 #0000000d, 0px 6px 20px 0 #0000000a;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.mypage_ul.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mypage_ul a {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #141414;
  padding: 4px 0;
  display: inline-block;
}
.mypage_ul a:hover {
  color: #299738;
}
/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -350px;
  height: 350px;
  transform: translateY(-100%);
  background-color: #e7ebf1;
}
.footer__inner {
  max-width: 1432px;
  width: 100%;
  padding: 40px 16px;
  height: 100%;
  margin: 0 auto;
}
.footer__inner .terms {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #b4bfd4;
}

.footer__inner .terms a {
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}
.footer__inner .terms a.blue_txt {
  font-weight: 700;
  color: #0e4194;
  line-height: 140%;
}

.footer__inner .address {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__inner .address .cont {
  display: flex;
  gap: 84px;
  align-items: center;
}

.footer__inner .address .cont .img_box {
  width: 204px;
}
.footer__inner .address .cont img.logo_1 {
  max-width: 184px;
  width: 100%;
}

.footer__inner .address .cont img.logo_2 {
  max-width: 184px;
  width: 100%;
}

.footer__inner .address .cont .txt h1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #454545;
  margin-bottom: 8px;
}
.footer__inner .address .cont .txt p {
  color: #454545;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -2%;
}

.footer__inner .sub_textg {
  text-align: right;
  margin-top: 16px;
  color: #8c8c8c;
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
}

/* mo_slider */

aside.mo_sidebar {
  visibility: hidden;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #00000099;
}
aside.mo_sidebar.open {
  visibility: visible;
}
.sidebar__inner {
  position: absolute;
  left: -301px;
  top: 0;
  width: 301px;
  background-color: #fff;
  height: 100%;
  transition: 0.35s;
}
aside.mo_sidebar.open .sidebar__inner {
  left: 0;
}
.sidebar__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 16px;
  border-bottom: 1px solid #eaeaea;
}
.sidebar__close .btn_close_sidebar {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../_img/common/icon_close_sidebar.svg) no-repeat center center / contain;
}
.sidebar__gnb {
  margin-top: 8px;
}

.sidebar__gnb li .btn-lnb {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #111;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.sidebar__gnb li .btn-lnb.active {
  background: #299738;
  color: #fff;
}

.sidebar__gnb li.green .btn-lnb p {
  background: url(../_img/common/icon_arrow_down_wh.svg) no-repeat center center / contain;
}
.sidebar__gnb li .btn-lnb.active p {
  transform: rotateX(180deg);
}
.sidebar__gnb li .btn-lnb p {
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
  background: url(../_img/common/icon_arrow_down_gray.svg) no-repeat center center / contain;
}
.sidebar__gnb li .lnb__list_mo {
  background: #f5f5f5;
  padding: 8px 0;
}
.sidebar__gnb li .lnb__list_mo li {
  padding: 12px 16px;
  color: #8c8c8c;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.mo_header {
  display: none;
}
.btn_mo_menu {
  background: url(../_img/common/icon_ham.svg) no-repeat center center / contain;
  width: 24px;
  height: 24px;
}
.btn_mo_member {
  background: url(../_img/common/icon_member.svg) no-repeat center center / contain;
  width: 24px;
  height: 24px;
}
.mo_header h1 {
  color: #0e4194;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 900px) {
  .header_top {
    height: 34px;
  }
  .header_top .header_top_inner .logos {
    gap: 24px;
    max-width: 100%;
    justify-content: center;
  }
  .header_top .header_top_inner .logos img:first-child {
    height: 16px;
    width: 74px;
  }
  .header_top .header_top_inner .logos img:last-child {
    height: 18px;
    width: 104px;
  }
  .header_top_inner b,
  .header_top .header_top_inner .rights {
    display: none;
  }
  .mo_header {
    display: flex;
    padding: 0 16px;
    height: 56px;
    align-items: center;
    justify-content: space-between;
  }
  .mo_header .btns {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header_bottom {
    display: none;
  }
  .header {
    height: 90px;
  }
  .main {
    padding-top: 90px;
  }
  .header_search_btn {
    width: 24px;
    height: 24px;
    margin-left: 0;
  }
}
/* Mobile */
@media screen and (max-width: 768px) {
  .header_top {
    height: 34px;
  }
  .header_top .header_top_inner .logos {
    gap: 24px;
    max-width: 100%;
    justify-content: center;
  }
  .header_top .header_top_inner .logos img:first-child {
    height: 16px;
    width: 74px;
  }
  .header_top .header_top_inner .logos img:last-child {
    height: 18px;
    width: 104px;
  }
  .header_top_inner b,
  .header_top .header_top_inner .rights {
    display: none;
  }

  .header_bottom {
    display: none;
  }
  .header {
    height: 90px;
  }

  .main {
    padding-top: 90px;
  }
  .footer {
    height: 346px;
    bottom: -346px;
  }
  .footer__inner {
    padding: 24px 16px;
  }
  #wrap {
    padding-bottom: 346px;
  }
  .footer__inner .terms {
    padding-bottom: 16px;
  }
  .footer__inner .terms a {
    font-size: 16px;
  }
  .footer__inner .address {
    margin-top: 24px;
  }
  .footer__inner .address .cont {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .footer__inner .address .cont .img_box {
    order: 2;
    width: 100%;
  }
  .footer__inner .address .cont img.logo_1 {
    width: 119px;
  }
  .footer__inner .address .cont .txt h1 {
    font-size: 16px;
  }
  .footer__inner .address .cont .txt p {
    font-size: 15px;
  }
  .footer__inner .address .cont img.logo_2 {
    width: 119px;
  }
  .footer__inner .sub_textg {
    display: none;
  }
  .mypage_ul {
    padding: 8px 24px;
    right: -8px;
    left: auto;
    transform: translateX(0);
    top: calc(100% + 22px);
  }
  .mypage_ul.active {
    gap: 4px;
  }
  .mypage_ul a {
    font-size: 16px;
    padding: 8px 0;
  }
}
