@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
/* font-family: 'Noto Sans KR', sans-serif; */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* Bold 700 */
/* Black 900 */

@import url("https://fonts.googleapis.com/css2?family=Gulzar&display=swap");
/* font-family: 'Gulzar', serif; */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@100;200;300;400;500;600;700&display=swap");
/* font-family: 'IBM Plex Sans KR', sans-serif; */
/* Thin 100 */
/* ExtraLight 200 */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* SemiBold 600 */
/* Bold 700 */

@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");
/* font-family: 'Merriweather', serif; */
/* Light 300 */
/* Regular 400 */
/* Bold 700 */
/* Black 900 */
/* scroll Event */

@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");
/* font-family: 'Nanum Myeongjo', serif; */
/* Regular 400 */
/* Bold 700 */
/* ExtraBold 800 */

@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* font-family: "Gothic A1", sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");
/* font-family: "Nanum Gothic", sans-serif; */
/* font-weight: 400; */
/* font-weight: 700; */
/* font-weight: 800; */

/* ani */
@keyframes load_R {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_L {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes load_F {
  0% {
    transform: translateX(30px) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}
@keyframes load_T {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load_B {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load_head {
  0% {
    transform: translateY(-30px) translateX(-50%);

    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}
@keyframes load_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* animation: load_bg 2s both;
animation-delay: 0.2s; */

::-webkit-scrollbar {
  width: 0px;
}

.ani {
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s;
}
.ani_T {
  opacity: 0;
  transform: translateY(-15px);
  transition: all 1s;
}
.ani_L {
  opacity: 0;
  transform: translateX(-15px);
  transition: all 1s;
}
.ani_R {
  opacity: 0;
  transform: translateX(15px);
  transition: all 1s;
}
.ani_O {
  opacity: 0;
  transition: all 1s;
}

.aniIn {
  opacity: 1;
  transform: translateY(0);
}
.aniIn_T {
  opacity: 1;
  transform: translateY(0);
}
.aniIn_L {
  opacity: 1;
  transform: translateX(0);
}
.aniIn_R {
  opacity: 1;
  transform: translateX(0);
}
.aniIn_O {
  opacity: 1;
}

.t-delay0_1 {
  transition-delay: 0.1s;
}
.t-delay0_2 {
  transition-delay: 0.2s;
}
.t-delay0_3 {
  transition-delay: 0.3s;
}
.t-delay0_4 {
  transition-delay: 0.4s;
}
.t-delay0_5 {
  transition-delay: 0.5s;
}
.t-delay0_6 {
  transition-delay: 0.6s;
}
.t-delay0_7 {
  transition-delay: 0.7s;
}
.t-delay0_8 {
  transition-delay: 0.8s;
}
.t-delay0_9 {
  transition-delay: 0.9s;
}
.t-delay1 {
  transition-delay: 1s;
}

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  /* font-family: "IBM Plex Sans KR", sans-serif; */
  font-family: "Noto Sans KR", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1;
  letter-spacing: -1.2px;
  word-break: keep-all;
  color: #000;
}
.wrep {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
section {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
}
#common {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
}

.img_cat {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  right: 20px;
  bottom: 12px;
}

/* header */
.header {
  height: 100px;

  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: 0.8s;
  z-index: 7777;

  /* background: crimson; */

  animation: load_head 1.5s both;
  animation-delay: 1.8s;
}
.header:hover {
  background: white;
}
.header.active {
  top: -100%;
  transition: 1.5s;
}
.header {
  height: 100px;
}
.header .inner {
  width: 88.6%;
  height: 100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  width: 140px;
  margin-right: 220px;
}
.header .logo a {
  width: 100%;
  display: block;
}
.header .logo a img {
  width: 100%;
}

.header .menuWrap {
  /* width: 600px; */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.header .menuWrap li {
  width: 110px;
  height: 100%;
}
.header .menuWrap li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  font-weight: #363636;
  color: #fff;
}

.header .call_box {
  width: 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .call_box img {
}
.header .call_box .bi_on {
  width: 160px;
}
.header .call_box .call {
  width: 180px;
}
.logo_group {
  width: 21%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.call_group {
  position: absolute;
  top: 37px;
  margin-left: 191px;
  display: flex;

}
.lo_map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.call_group .call {
  position: absolute;
  transition: 0.5s;
}

.header:hover .logo_group .logo_color {
  opacity: 1;
}
.header:hover .logo_group .logo_white {
  opacity: 0;
}

.header:hover .call_group .call_color {
  opacity: 1;
}
.header:hover .call_group .call_white {
  opacity: 0;
}



.header:hover .menuWrap li a {
  color: #3e3a39;
}
.header .menu li a {
  color: #fff;
}
.logo_group .logo {
      width: 40%;
    height: 100%;
    position: absolute;
    transition: 0.5s;
}
.logo_color {
    opacity: 0;
}

.call_color {
  opacity: 0;
}


/* .menuWrap:hover + .bon_site,
.bon_site:hover {
  height: 300px;
  opacity: 1;
} */

.bon_site {
  width: 100%;
  z-index: 10000; /* 더 높게 */
  background: #f2f2f2;
  position: fixed; /* 수정 포인트! */
  left: 0;
  top: 100px; /* header 높이만큼 띄움 */

  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.8s ease, opacity 0.8s ease;
}
.bon_site:hover {
}

.bon_items {
  margin: 15px auto 0;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 23px;
}
.bon_items .item {
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}
.bon_items .item ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bon_items .item ul li {
  margin: 10px 0;
}
.bon_items .item ul li a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #2c2c2c;
  transition: 0.3s;
}
.bon_items .item.item02 ul li a span {
  transform: translateY(-4px);
  display: inline-block;
  margin: 0 1.5px;
}

.bon_items .item ul li a:hover {
  color: #003e2f;
}

/* fix_box */
.fix_box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  z-index: 9999;
  /* height: 540px; */
  /* background: white; */
  box-sizing: border-box;

  animation: load_F 2s both;
  animation-delay: 0.2s;
}
.fix_box.active {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.247);
}

.fix_box .pop_open {
  width: 100%;
  height: 260px;
  background: #003e2f;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.fix_box .pop_open .zone_box {
  width: 100%;
  height: 200px;

  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_box .pop_open .zone_box img {
  width: 19px;
  margin: 0 auto;
  display: block;
}
.fix_box .pop_open .pop_ani {
  width: 100%;
  height: 50px;
  background: #003e2f;

  display: flex;
  justify-content: center;
  align-items: center;
}
.fix_box .pop_open .pop_ani .dummy {
  width: 30px;
  height: 30px;
  position: relative;
  transform: rotate(180deg);
  transition: 0.5s;
}
.fix_box .pop_open .pop_ani .dummy.active {
  transform: rotate(0);
}
.fix_box .pop_open .pop_ani .dummy span {
  width: 11px;
  height: 3px;
  background: #ffffff;
  display: block;
  position: absolute;
  top: 50%;
}
.fix_box .pop_open .pop_ani .dummy span:nth-child(1) {
  transform: translateY(-50%) rotate(-45deg);
  margin-top: 2px;
  transform-origin: left top;
  left: 10px;
}
.fix_box .pop_open .pop_ani .dummy span:nth-child(2) {
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left bottom;
  left: 10px;
}
/* 클릭 시 X자 모양 */
.fix_box .pop_open.active .dummy span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.fix_box .pop_open.active .dummy span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}

.fix_box .quick_btn {
  width: 100px;
  height: 120px;
}
.fix_box .quick_btn .item {
  width: 100px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gr_open_bt {
  background-color: #000;
}
.fix_box .gr_open_bt h2 {
  color: #fff;
  font-family: "sult";
  font-size: 36px;
  font-weight: bold;
}
.fix_box .gr_open_bt h3 {
  margin-top: 10px;
  color: #b9a389;
  font-family: "sult";
  font-weight: bold;
  font-size: 22px;
}
.fix_box .quick_btn .item img {
  width: 30%;
}
.fix_box .benefit_btn {
  background: #b99f6f;
}
.fix_box .benefit_btn img {
  width: 39px !important;
}
.fix_box .benefit_btn .item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #2c2c2c;
  text-align: center;
  margin-top: 10px;
}
.fix_box .benefit_btn .item h3 span {
  font-size: 17px;
  color: #003e2f;
}
.fix_box .customer_btn {
  width: 100%;
  height: 120px;
  background: white;
}
.fix_box .customer_btn .item {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fix_box .customer_btn .item img {
}
.fix_box .customer_btn .item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #4d4d4f;
  text-align: center;
  margin-top: 10px;
}
.fix_box .customer_btn .item h3 span {
  font-size: 17px;
  color: #003e2f;
}
/* fix_end */

/* 본사이트 */

/* .header .open_call {
  width: 120%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 160%;
}
.header .open {
  width: 274%;
  height: 36px;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.header .open span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #fff;
  transition: 0.5s;
  display: block;
}
.header .call {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: #c70037;
  transition: 0.5s;
}
.header.active .call {
  color: #c70037;
}
.header.active .open span {
  color: #fff;
}
.header .call .fa {
  font-size: 26px;
}
.header .call span {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-left: 4px;
}
.header:hover {
  background: white;
}
.header:hover .logo_group .logo.logo_white {
  opacity: 0;
}
.header:hover .logo_group .logo.logo_red {
  opacity: 1;
}
.header:hover .menu li a {
  color: #3e3a39;
}
.header .menu li:hover a {
  color: #c70037;
}
.header:hover .menu li:hover a {
  color: #c70037;
}
.header:hover .call {
  color: #c70037;
}
.header:hover .open span {
  color: #fff;
} */

/* footer */
.footer {
}
.footer .top {
  width: 100%;
  height: 70px;
  background: #09413E;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .top h3 {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}
.footer .top .line {
  width: 2px;
  height: 16px;
  display: block;
  background: #fff;
  margin: 0 18px;
}

.footer .btm {
  width: 100%;
  padding: 62px 0 120px;
  /* height: 550px; */

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.footer .btm .foot_logo {
  width: 230px;
}
.footer .btm .items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 52px 0;
}
.footer .btm .items img {
  display: block;
}
.footer .btm p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4d4d4f;
}
.footer .btm h2 {
  font-size: 18px;
  font-weight: 700;
  color: #3c5e47;
  margin-top: 52px;
}
.footer .btm h2 a {
  font-size: 18px;
  font-weight: 700;
  color: #3c5e47;
}

@media all and (min-width: 1250px) and (max-width: 1770px) {
  /* header */
  .header {
    height: 100px;
  }
  .header.active {
    top: -100%;
    transition: 1.5s;
  }
  .header {
    height: 100px;
  }
  .header .inner {
    width: 100%;
  }

  .header .menuWrap {
    height: 100%;
    gap: 32px;
  }
  .header .menuWrap li a {
    font-size: 16px;
    font-weight: #363636;
  }

  .header .open_call {
    width: 150%;
  }

  .bon_site {
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    background: #f2f2f2;
    position: absolute;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    transition: height 0.5s ease, opacity 0.5s ease;
  }
  .bon_items {
    margin-top: 15px;
  }
}
