/* ---------------contact-section START--------------- */
.contact-section {
  overflow: hidden;
}
.contact-section.active .contact-wrap .text-inner .text-box {
  opacity: 1;
  transform: translateX(0);
}
.contact-section.active .contact-wrap .map-box {
  opacity: 1;
  transform: scale(1);
}
.contact-section .contact-wrap {
  display: flex;
  align-items: center;
}
.contact-section .contact-wrap .text-inner {
  width: 460px;
  box-sizing: border-box;
  padding-right: 100px;
}
.contact-section .contact-wrap .text-inner .text-box {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s, transform 1s;
}
.contact-section .contact-wrap .text-inner .text-box:nth-of-type(1) {
  transition-delay: 0.3s;
}
.contact-section .contact-wrap .text-inner .text-box:nth-of-type(2) {
  transition-delay: 0.6s;
}
.contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
  margin-top: 45px;
  box-sizing: border-box;
  padding-top: 45px;
  border-top: 1px solid #eee;
}
.contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-tel {
  margin-top: 30px;
}
.contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-desc {
  margin-top: 30px;
}
.contact-section .contact-wrap .text-inner .text-box .contact-desc {
  line-height: 1.3;
}
.contact-section .contact-wrap .text-inner .text-box .contact-tel {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-section .contact-wrap .text-inner .text-box .time-list {
  margin-top: 30px;
}
.contact-section .contact-wrap .text-inner .text-box .time-list li {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-section .contact-wrap .text-inner .text-box .time-list li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
.contact-section .contact-wrap .text-inner .text-box .time-list li .time-tit {
  display: flex;
  justify-content: space-between;
  width: 90px;
}
.contact-section .contact-wrap .text-inner .text-box .time-list li .time-text {
  width: calc(100% - 90px - 30px);
  box-sizing: border-box;
}
.contact-section .contact-wrap .text-inner .text-box .time-list + .warning-text {
  margin-top: 20px;
}
.contact-section .contact-wrap .text-inner .text-box .warning-text + .warning-text {
  margin-top: 10px;
}
.contact-section .contact-wrap .text-inner .text-box .map-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.contact-section .contact-wrap .text-inner .text-box .map-list li a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  overflow: hidden;
}
.contact-section .contact-wrap .text-inner .text-box .map-list li a img, .contact-section .contact-wrap .text-inner .text-box .map-list li a svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.3s;
  transition-timing-function: linear;
}
.contact-section .contact-wrap .map-box {
  width: calc(100% - 460px);
  height: 630px;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #eee;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.contact-section .contact-wrap .map-box svg {
  display: none;
}
.contact-section .contact-wrap .map-box .wrap_controllers {
  display: none;
}
.contact-section .contact-wrap .map-box .cont {
  display: none;
}
.contact-section .contact-wrap .map-box .root_daum_roughmap,
.contact-section .contact-wrap .map-box .root_daum_roughmap_landing,
.contact-section .contact-wrap .map-box .wrap_map {
  width: 100% !important;
  height: 100% !important;
}

/* ---------------contact-section END--------------- */
/* ---------------media screen START--------------- */
@media screen and (max-width: 1350px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .text-inner {
    width: 420px;
    padding-right: 80px;
  }
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: 41px;
    padding-top: 41px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-tel {
    margin-top: 27px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-desc {
    margin-top: 27px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list {
    margin-top: 27px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li {
    gap: 27px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li:not(:nth-of-type(1)) {
    margin-top: 13.5px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-tit {
    width: 85px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-text {
    width: calc(100% - 85px - 27px);
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list + .warning-text {
    margin-top: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .warning-text + .warning-text {
    margin-top: 9px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list {
    gap: 18px;
    margin-top: 27px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list li a {
    width: 45px;
    height: 45px;
  }
  .contact-section .contact-wrap .map-box {
    width: calc(100% - 420px);
    height: 570px;
    border-radius: 27px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .text-inner {
    width: 380px;
    padding-right: 60px;
  }
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: 37px;
    padding-top: 37px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-tel {
    margin-top: 24px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-desc {
    margin-top: 24px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list {
    margin-top: 24px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li {
    gap: 24px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li:not(:nth-of-type(1)) {
    margin-top: 12px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-tit {
    width: 80px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-text {
    width: calc(100% - 80px - 24px);
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list + .warning-text {
    margin-top: 16px;
  }
  .contact-section .contact-wrap .text-inner .text-box .warning-text + .warning-text {
    margin-top: 8px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list {
    gap: 16px;
    margin-top: 24px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list li a {
    width: 40px;
    height: 40px;
  }
  .contact-section .contact-wrap .map-box {
    width: calc(100% - 380px);
    height: 510px;
    border-radius: 24px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap {
    display: block;
  }
  .contact-section .contact-wrap .text-inner {
    width: 100%;
    padding-right: unset;
    display: flex;
    align-items: flex-start;
  }
  .contact-section .contact-wrap .text-inner .text-box {
    width: 50%;
  }
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: unset;
    padding-top: unset;
    border-top: unset;
  }
  .contact-section .contact-wrap .map-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5/1;
    margin-top: 55px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 750px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .text-inner {
    display: block;
  }
  .contact-section .contact-wrap .text-inner .text-box {
    width: 100%;
  }
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: 37px;
    padding-top: 37px;
    border-top: 1px solid #eee;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: 33px;
    padding-top: 33px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-tel {
    margin-top: 21px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-desc {
    margin-top: 21px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list {
    margin-top: 21px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li {
    gap: 21px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li:not(:nth-of-type(1)) {
    margin-top: 10.5px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-tit {
    width: 75px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-text {
    width: calc(100% - 75px - 21px);
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list + .warning-text {
    margin-top: 14px;
  }
  .contact-section .contact-wrap .text-inner .text-box .warning-text + .warning-text {
    margin-top: 7px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list {
    gap: 14px;
    margin-top: 21px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list li a {
    width: 35px;
    height: 35px;
  }
  .contact-section .contact-wrap .map-box {
    border-radius: 21px;
    margin-top: 47px;
  }
  /* ---------------contact-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------contact-section START--------------- */
  .contact-section .contact-wrap .text-inner .text-box:not(:nth-of-type(1)) {
    margin-top: 29px;
    padding-top: 29px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-tel {
    margin-top: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .contact-title + .contact-desc {
    margin-top: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list {
    margin-top: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li {
    gap: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li:not(:nth-of-type(1)) {
    margin-top: 9px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-tit {
    width: 70px;
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list li .time-text {
    width: calc(100% - 70px - 18px);
  }
  .contact-section .contact-wrap .text-inner .text-box .time-list + .warning-text {
    margin-top: 12px;
  }
  .contact-section .contact-wrap .text-inner .text-box .warning-text + .warning-text {
    margin-top: 6px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list {
    gap: 12px;
    margin-top: 18px;
  }
  .contact-section .contact-wrap .text-inner .text-box .map-list li a {
    width: 30px;
    height: 30px;
  }
  .contact-section .contact-wrap .map-box {
    border-radius: 18px;
    margin-top: 40px;
  }
  /* ---------------contact-section END--------------- */
}
/* ---------------media screen END--------------- */