@charset "UTF-8";
/*-----------------------------------------------------------------
   base
------------------------------------------------------------------*/
/* import */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* reset */
html {
  font-size: 62.5%;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

form, fieldset {
  display: block;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: "Pretendard", "Helvetica Neue", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 1.5rem;
}

table, tbody, tr, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: none;
}

button, input, select {
  overflow: visible;
  border-width: 1px;
  border-style: solid;
  border-color: color(w80);
  background: transparent;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button {
  cursor: pointer;
  user-select: none;
  border: none;
}

/* flex */
/* grid */
/* position absolute : abs */
/* position fixed : fix */
/* 센터 abs 정렬  */
/* border-radius */
.heading-h1 {
  font-size: 10rem;
  letter-spacing: -1.5px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .heading-h1 {
    font-size: 2.8rem;
    letter-spacing: -1.2px;
    font-weight: 700;
    line-height: 1.2;
  }
}

.heading-h2 {
  font-size: 6rem;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .heading-h2 {
    font-size: 3.6rem;
    letter-spacing: -0.8px;
    font-weight: 700;
    line-height: 1.2;
  }
}

.heading-h3 {
  font-size: 4.8rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .heading-h3 {
    font-size: 2.4rem;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.4;
  }
}

.heading-h4 {
  font-size: 3.6rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .heading-h4 {
    font-size: 1.8rem;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.6;
  }
}

.heading-h5 {
  font-size: 2.8rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .heading-h5 {
    font-size: 1.8rem;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.6;
  }
}

.heading-h6 {
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .heading-h6 {
    font-size: 1.44rem;
    letter-spacing: 0.8px;
    font-weight: 400;
    line-height: 1.6;
  }
}

.txt-lg {
  font-size: 2rem;
  letter-spacing: -0.5px;
  font-weight: 400;
  line-height: 1.5;
}

.txt-md {
  font-size: 1.6rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
}

.txt-sm {
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.6;
}

/* 반응형 이미지 소스 공통 : 작업중 */
.fig {
  border-radius: 1.6rem;
  overflow: hidden;
}
.fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 18rem;
}
.card__info {
  max-width: 78%;
}
.card__head {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 0.6em;
  line-height: 1.4;
}
.card__head .mtit > i > img {
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: middle;
  margin-top: -2px;
}
@media (max-width: 768px) {
  .card__head {
    font-size: 1.8rem;
  }
}
.card__num {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin-top: 6rem;
  padding-right: 1rem;
  color: #FF3E24;
}
.card__num .num {
  font-size: 10rem;
  line-height: 0.9;
  padding-top: 0.8rem;
}
.card__num .sml {
  font-size: 2rem;
}
.card__num .sml_up {
  font-size: 3.8rem;
  font-weight: bold;
  margin-left: 0.6rem;
}
.card__fig {
  overflow: hidden;
  position: relative;
  height: 34.4rem;
  border-radius: 1.6rem;
  background-color: #E5E7EB;
}
.card__img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.card__obj {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card__desc {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #4B5563;
  font-weight: 300;
}
.card__desc + .card__desc {
  margin-top: 1.2rem;
  color: #6D7280;
}
.card__btn {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .card {
    min-height: auto;
    flex-direction: column;
  }
  .card__head {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .card__head .mtit {
    font-size: 1.9rem;
  }
  .card__head .mtit > i > img {
    width: 24px;
    margin-right: 0;
  }
  .card__num {
    margin-left: auto;
    margin-top: 0;
  }
  .card__num .num {
    font-size: 4.8rem;
    margin: 0 1rem;
  }
  .card__num .sml {
    font-size: 1.8rem;
  }
  .card__num .sml_up {
    font-size: 2.4rem;
    margin-left: -0.8rem;
  }
  .card__info {
    margin-top: 2.4rem;
    max-width: 100%;
  }
  .card__info .dotList {
    margin-left: 0.4rem;
  }
  .card__desc {
    font-size: 1.3rem;
  }
  .card__desc > br {
    display: none;
  }
  .card__fig {
    width: 100%;
    height: 50vw;
  }
  .card__obj {
    width: 70%;
  }
}

[class^=icon-] {
  display: inline-block;
  vertical-align: middle;
}

.icon-up {
  width: 3.4rem;
  height: 3.4rem;
  background-image: url("../img/icon_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-up {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.icon-global {
  width: 2rem;
  height: 2rem;
  background-image: url("../img/icon_global.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-global {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.icon-mail {
  width: 3.4rem;
  height: 3.4rem;
  background-image: url("../img/icon_mail.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-mail {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.icon-pause {
  width: 3rem;
  height: 3rem;
  background-image: url("../img/icon_pause.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-pause {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.icon-play {
  width: 3rem;
  height: 3rem;
  background-image: url("../img/icon_play.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-play {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.icon-home {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../img/icon_home.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-home {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.icon-arr {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../img/icon_arr.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .icon-arr {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/*-----------------------------------------------------------------
   button
------------------------------------------------------------------*/
.btn-primary-sm {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #FF3E24;
  color: #fff;
  border: 1px solid transparent;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
}
.btn-primary-sm:hover {
  background-color: #E71C01;
}
@media (max-width: 768px) {
  .btn-primary-sm {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
}

.btn-primary-md {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #FF3E24;
  color: #fff;
  border: 1px solid transparent;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.btn-primary-md:hover {
  background-color: #E71C01;
}
@media (max-width: 768px) {
  .btn-primary-md {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}

.btn-primary-lg {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #FF3E24;
  color: #fff;
  border: 1px solid transparent;
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
}
.btn-primary-lg:hover {
  background-color: #E71C01;
}
@media (max-width: 768px) {
  .btn-primary-lg {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
}

.btn-secondary-sm {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #E5E7EB;
  color: #1F2937;
  border: 1px solid transparent;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
}
.btn-secondary-sm:hover {
  background-color: #DDDDDD;
}
@media (max-width: 768px) {
  .btn-secondary-sm {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
}

.btn-secondary-md {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #E5E7EB;
  color: #1F2937;
  border: 1px solid transparent;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.btn-secondary-md:hover {
  background-color: #DDDDDD;
}
@media (max-width: 768px) {
  .btn-secondary-md {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}

.btn-secondary-lg {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  background-color: #E5E7EB;
  color: #1F2937;
  border: 1px solid transparent;
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
}
.btn-secondary-lg:hover {
  background-color: #DDDDDD;
}
@media (max-width: 768px) {
  .btn-secondary-lg {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
}

.btn-line-bs-sm {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #1F2937;
  border: 1px solid #9CA3AF;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
}
.btn-line-bs-sm:hover {
  border-color: #1F2937;
}
@media (max-width: 768px) {
  .btn-line-bs-sm {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
}

.btn-line-bs-md {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #1F2937;
  border: 1px solid #9CA3AF;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.btn-line-bs-md:hover {
  border-color: #1F2937;
}
@media (max-width: 768px) {
  .btn-line-bs-md {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}

.btn-line-bs-lg {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #1F2937;
  border: 1px solid #9CA3AF;
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
}
.btn-line-bs-lg:hover {
  border-color: #1F2937;
}
@media (max-width: 768px) {
  .btn-line-bs-lg {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
}

.btn-line-wh-sm {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border: 1px solid #E5E7EB;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
}
.btn-line-wh-sm:hover {
  border-color: #fff;
}
@media (max-width: 768px) {
  .btn-line-wh-sm {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }
}

.btn-line-wh-md {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border: 1px solid #E5E7EB;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.btn-line-wh-md:hover {
  border-color: #fff;
}
@media (max-width: 768px) {
  .btn-line-wh-md {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}

.btn-line-wh-lg {
  position: relative;
  display: inline-block;
  padding: 0 1.6rem;
  border: none;
  transition: all 0.4s ease;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border: 1px solid #E5E7EB;
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
}
.btn-line-wh-lg:hover {
  border-color: #fff;
}
@media (max-width: 768px) {
  .btn-line-wh-lg {
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
  }
}

/*-----------------------------------------------------------------
   icon button
------------------------------------------------------------------*/
.ibtn-sm {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: #F3F4F6;
  width: 3.2rem;
  height: 3.2rem;
}
.ibtn-sm > svg {
  width: 1.4rem;
  height: 1.4rem;
}

.ibtn-md {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: #F3F4F6;
  width: 4.8rem;
  height: 4.8rem;
}
.ibtn-md > svg {
  width: 1.6rem;
  height: 1.6rem;
}

.ibtn-lg {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 50%;
  background-color: #F3F4F6;
  width: 5.6rem;
  height: 5.6rem;
}
.ibtn-lg > svg {
  width: 2.4rem;
  height: 2.4rem;
}

/* 개별버튼 */
.btn-recruit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  min-width: 9rem;
  height: 4rem;
  background-color: #FF3E24;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .btn-recruit {
    min-width: auto;
    font-size: 1.5rem;
    height: 3rem;
  }
}

/* dotList */
.dotList__item {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.4rem;
  color: #1F2937;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
.dotList__item:before {
  content: "";
  position: absolute;
  top: 1.7rem;
  display: inline-block;
  left: 0;
  vertical-align: middle;
  background-color: #1F2937;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #FF3E24;
}
.dotList__item .cirList {
  margin-top: 1.6rem;
}
.dotList + .tblWp {
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .dotList__item {
    font-size: 1.4rem;
    padding: 0.3rem 0 0.3rem 1.4rem;
  }
  .dotList__item:before {
    top: 1.2rem;
  }
}

/* 숫자 변형 리스트  */
.numeraList__item {
  position: relative;
  font-size: 1.6rem;
  padding-left: 3.2rem;
  line-height: 1.6;
  padding-top: 3.4rem;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid #374151;
}
.numeraList__item:last-child {
  border: none;
  margin-bottom: 0;
}
.numeraList__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 2.6rem;
  font-size: 1.8rem;
  text-align: left;
  color: var(--primary);
  vertical-align: middle;
  font-weight: 800;
}
.numeraList__item:nth-child(1):before {
  content: "01";
}
.numeraList__item:nth-child(2):before {
  content: "02";
}
.numeraList__item:nth-child(3):before {
  content: "03";
}
.numeraList__item:nth-child(4):before {
  content: "04";
}
.numeraList__item:nth-child(5):before {
  content: "05";
}
.numeraList__item:nth-child(6):before {
  content: "06";
}
.numeraList__item:nth-child(7):before {
  content: "07";
}
.numeraList__item:nth-child(8):before {
  content: "08";
}
.numeraList__item:nth-child(9):before {
  content: "09";
}
.numeraList__item:nth-child(10):before {
  content: "010";
}

/* 원형 리스트 */
.cirList {
  counter-reset: circle 0;
}
.cirList__item {
  position: relative;
  list-style: none;
  font-size: 1.6rem;
  padding-left: 2.4rem;
  padding-bottom: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.8rem;
}
.cirList__item > p {
  margin-top: 1rem;
}
.cirList__item:before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  counter-increment: circle 1;
  content: counter(circle);
  text-align: center;
  border: 1px solid #4B5563;
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.5rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .cirList__item {
    font-size: 1.4rem;
  }
}

/* 숫자 리스트 */
.stepList > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem 0;
}
.stepList__lt {
  display: flex;
}
@media (max-width: 768px) {
  .stepList__lt {
    display: flex;
    flex-direction: column;
  }
}
.stepList__lt .step {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3rem;
  width: 9.2rem;
  height: 4rem;
  text-align: center;
  color: color(white);
  font-size: 1.4rem;
  background-color: #1F2937;
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .stepList__lt .step {
    width: 8rem;
  }
}
@media (max-width: 768px) {
  .stepList__lt .text {
    margin-left: 1.8rem;
  }
}
.stepList__lt .text .fst {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .stepList__lt .text .fst {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
}
.stepList__lt .text .snd {
  margin-top: 2rem;
  color: #fff;
  opacity: 0.6;
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .stepList__lt .text .snd {
    font-size: 1.6rem;
  }
}
.stepList__rt {
  color: #FF3E24;
  opacity: 0.6;
  font-size: 7rem;
  font-weight: 700;
}

.box {
  position: relative;
  padding: 3.6rem 3rem;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
}
@media (max-width: 768px) {
  .box {
    padding: 1.8rem;
  }
}
.box__tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.6rem;
}
.box__tit .dash {
  flex: 1;
  display: block;
}
.box__tit .dash:after {
  content: "";
  display: block;
  background-color: #fff;
  opacity: 0.3;
  height: 1px;
  width: 100%;
}
@media (max-width: 768px) {
  .box__tit {
    margin-bottom: 0.6rem;
  }
}
.box__desc {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .box__desc {
    font-size: 1.4rem;
  }
  .box__desc br {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1599px) {
  .box {
    padding: 2.4rem;
  }
  .box__tit {
    margin-bottom: 1rem;
  }
}

.box-wh {
  position: relative;
  padding: 1.8rem 1rem;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 1.2rem;
  width: 100%;
}
.box-wh__tit {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
}
.box-wh__tit .stat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  margin-right: 8px;
}
.box-wh__tit .stat-1 {
  background-color: #16A34A;
}
.box-wh__tit .stat-2 {
  background-color: #2563EB;
}
.box-wh__tit .stat-3 {
  background-color: #9333EA;
}
.box-wh__tit .stat-4 {
  background-color: #EA580C;
}
.box-wh__tit .stat-5 {
  background-color: #B3185B;
}
.box-wh__tit .stat-6 {
  background-color: #374151;
}
@media (max-width: 768px) {
  .box-wh__tit {
    font-size: 1.8rem;
  }
}
.box-wh__desc {
  font-size: 3.6rem;
  text-align: right;
}
.box-wh + .box-wh {
  margin-top: 1.2rem;
}
@media (max-width: 768px) {
  .box-wh {
    padding: 1rem;
  }
  .box-wh + .box-wh {
    margin-top: 0;
  }
}

.hd {
  z-index: 99;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  color: #374151;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease-in-out;
  /* logo */
}
.hd .inner {
  margin: 0 auto;
  width: 144rem;
  height: 7.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .hd .inner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hd .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 9.4rem;
    width: 100%;
  }
}
.hd .logo {
  z-index: 90;
  position: relative;
  width: 8.8rem;
  height: 3.6rem;
  background-image: url("../img/logo_wh.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hd .logo > a {
  display: block;
  width: 100%;
  height: 100%;
}
.hd .logo .blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .hd .logo {
    width: 5.6rem;
    height: 2.352rem;
  }
}
.hd.iswhite {
  background-color: #fff;
}
.hd.iswhite .logo {
  background-image: url("../img/logo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hd.iswhite .logo.white {
  background-image: url("../img/logo_wh.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hd.iswhite .btn-lang {
  color: #1F2937;
}
.hd.iswhite .btn-lang:before {
  background-image: url("../img/icon_global_bk.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hd.iswhite .hd__gnb .gnb__itm.active .gnb__lnk {
  color: #FF3E24;
}
.hd.iswhite .hd__gnb .gnb__lnk {
  color: #1F2937;
}
.hd.iswhite .hd__gnb .toggle-btn .burger:before, .hd.iswhite .hd__gnb .toggle-btn .burger:after {
  background-color: #000;
}
.hd.iswhite .hd__gnb .toggle-btn .burger.white:before, .hd.iswhite .hd__gnb .toggle-btn .burger.white:after {
  background-color: #fff;
}
.hd__gnb {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hd__gnb .gnb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hd__gnb .gnb__itm {
  position: relative;
}
.hd__gnb .gnb__itm:hover .snb {
  height: auto;
  opacity: 1;
}
.hd__gnb .gnb__lnk {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  padding: 0 3.2rem;
  height: 100%;
  line-height: 100%;
}
.hd__other {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.hd__other .btn-lang {
  color: #fff;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .hd__other .btn-lang {
    font-size: 1.4rem;
  }
}
.hd__other .btn-lang:before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin-right: 0.6rem;
  background-image: url("../img/icon_global.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .hd {
    height: 9.4rem;
    padding: 1.6rem;
  }
  .hd .logo {
    margin-top: 2px;
  }
  .hd__gnb {
    margin-right: 2rem;
  }
  .hd__gnb .gnb {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
  }
  .hd__gnb .gnb__itm {
    flex: 1;
    text-align: center;
  }
  .hd__gnb .gnb__lnk {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.2rem 0;
  }
  .hd__gnb .toggle-btn .burger:before, .hd__gnb .toggle-btn .burger:after {
    width: 2.6rem;
    height: 0.2rem;
  }
}

.toggle-btn {
  z-index: 99;
  /* 2line burger */
}
.toggle-btn .burger {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75em 2em 1.5em 2em;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  border: none;
  width: 2.8rem;
  height: 2rem;
  transition: all 250ms ease-out;
  cursor: pointer;
}
.toggle-btn .burger.white:before, .toggle-btn .burger.white:after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.toggle-btn .burger:before, .toggle-btn .burger:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 4rem;
  height: 0.2rem;
  transition: all 250ms ease-out;
  will-change: transform;
}
.toggle-btn .burger:before {
  transform: translateY(-3px);
}
.toggle-btn .burger:after {
  transform: translateY(3px);
}
.toggle-btn .burger.active:before {
  transform: translateY(0) rotate(45deg);
}
.toggle-btn .burger.active:after {
  transform: translateY(0) rotate(-45deg);
}
.toggle-btn .burger.active:hover:before, .toggle-btn .burger.active:hover:after {
  background-color: #fff;
}

.fmenu {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 100vw;
  height: 100vh;
  color: #E5E7EB;
}
.fmenu-inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  will-change: transform;
}
.fmenu-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/mvis.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  mix-blend-mode: difference;
  opacity: 0.4;
}
.fmenu__item {
  display: flex;
  cursor: pointer;
}
.fmenu__txt {
  position: relative;
  text-align: center;
  font-size: 5.6rem;
  line-height: 1.8;
  font-weight: 700;
  will-change: transform;
  transition: letter-spacing 0.3s;
}
.fmenu__txt:hover {
  letter-spacing: 0.03em;
  color: #FF3E24;
}
.fmenu__txt.active:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 45%;
  background-color: #FF3E24;
  width: 0;
  height: 1.2rem;
}
@media (max-width: 768px) {
  .fmenu__txt {
    font-size: 3rem;
  }
}

/* footer */
.ft {
  padding: 4rem 0;
  text-align: center;
  background-color: #000000;
}
.ft .addr-inner .addr {
  color: #fff;
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .ft .addr-inner .addr__logo > img {
    width: 6rem;
  }
}
.ft .addr-inner .copyright {
  color: #CCCED3;
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .ft .addr-inner .copyright {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .ft {
    padding: 2.4rem 0;
    flex-direction: column;
  }
  .ft .ft-logo {
    margin-bottom: 1.6rem;
  }
  .ft .ft-logo img {
    width: 50%;
  }
}
.ft .go-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  width: 5rem;
  height: 5rem;
}
@media (max-width: 768px) {
  .ft .go-top {
    width: 4rem;
    height: 4rem;
    bottom: 7.4rem;
  }
}
.ft .go-top > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ft .go-top.visible {
  visibility: visible;
  opacity: 1;
}

.grid-1 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 768px) {
  .grid-1 {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-2 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid-2 {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid-3 {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .grid-4 {
    display: grid;
    gap: 0.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-5 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .grid-5 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-6 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .grid-6 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-7 {
  display: grid;
  gap: auto;
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 768px) {
  .grid-7 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-8 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 768px) {
  .grid-8 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-9 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(9, 1fr);
}
@media (max-width: 768px) {
  .grid-9 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-10 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(10, 1fr);
}
@media (max-width: 768px) {
  .grid-10 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-11 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(11, 1fr);
}
@media (max-width: 768px) {
  .grid-11 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-12 {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 768px) {
  .grid-12 {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
}

.inner {
  margin: 0 auto;
  width: 144rem;
}
@media (max-width: 768px) {
  .inner {
    width: 100%;
  }
}

/* fr_main */
.pnt {
  color: #FF3E24;
}

.fn-eng {
  font-family: "Bebas Neue";
  font-weight: normal;
}

/* mVis */
.mVis {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
@media (max-width: 768px) {
  .mVis {
    height: 120vh;
  }
}
.mVis .visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mVis .visual__item > img {
  object-fit: cover;
  width: 100%;
}
.mVis .visual__copy {
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30vh;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1599px) {
  .mVis .visual__copy {
    top: 24vh;
  }
}
.mVis .visual__copy .heading-h1 {
  font-weight: normal;
  letter-spacing: 1px;
}
.mVis .visual__copy .clip-txt {
  overflow: hidden;
  line-height: 1;
}
.mVis .visual__copy .clip-txt .rena {
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .mVis .visual__copy .clip-txt .rena {
    margin: 0 0.4rem;
  }
  .mVis .visual__copy .clip-txt .rena > img {
    height: 2rem;
  }
}
@media (max-width: 768px) {
  .mVis .visual__copy {
    top: 25vh;
    width: 100%;
  }
  .mVis .visual__copy .heading-h1 {
    font-size: 4.2rem;
  }
}
.mVis .visual__hero {
  position: absolute;
  bottom: 4rem;
  width: 144rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.mVis .visual__hero .box {
  color: #fff;
}
@media (max-width: 768px) {
  .mVis .visual__hero {
    bottom: 1.6rem;
    width: 100%;
    padding: 0 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .mVis .visual__hero .box__desc {
    font-size: 1.3rem;
  }
}
.mVis .visual .controler {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 50%;
}
.mVis .visual .controler .progress-wrap {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.mVis .visual .controler .progress-bar {
  height: 100%;
  background: #FF3E24;
  width: 0%;
}
.mVis .visual .toggleBtn .icon {
  margin-left: 1.6rem;
  display: inline-block;
  vertical-align: middle;
}

/* sub 추가 */
.sVis {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .sVis {
    height: auto;
  }
}
.sVis .visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.sVis .visual__item > img {
  object-fit: cover;
  width: 100%;
}
.sVis .visual__copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 11rem;
  color: #fff;
  padding-top: 12rem;
}
.sVis .visual__copy .tit {
  text-align: center;
  font-size: 7.6rem;
}
.sVis .visual__copy .location {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .sVis .visual__copy {
    padding-top: 6rem;
  }
  .sVis .visual__copy .tit {
    font-size: 3.2rem;
  }
  .sVis .visual__copy .location {
    font-size: 1.3rem;
  }
}

.sCon {
  padding: 12rem 0;
}
@media (max-width: 768px) {
  .sCon .inner {
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon {
    padding: 6.2rem 0;
  }
}
.sCon .pg-tit {
  font-weight: bold;
  font-size: 4rem;
  padding-bottom: 5.6rem;
}
@media (max-width: 768px) {
  .sCon .pg-tit {
    font-size: 2.6rem;
    padding-bottom: 2.4rem;
  }
}
.sCon .layout.ceo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .sCon .layout.ceo {
    flex-direction: column;
  }
}
.sCon .layout.ceo .fig {
  width: 40rem;
  aspect-ratio: 400/456;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .fig {
    width: 100%;
  }
}
.sCon .layout.ceo .contxt {
  width: 96rem;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .contxt {
    width: 100%;
    padding-top: 3.2rem;
  }
}
.sCon .layout.ceo .contxt .top {
  margin-bottom: 3.2rem;
}
.sCon .layout.ceo .contxt .top p {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .contxt .top p {
    font-size: 2.2rem;
  }
  .sCon .layout.ceo .contxt .top p br {
    display: none;
  }
}
.sCon .layout.ceo .contxt .desc {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .contxt .desc {
    font-size: 1.5rem;
  }
}
.sCon .layout.ceo .contxt .desc-item {
  margin-bottom: 3.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .contxt .desc-item {
    margin-bottom: 2.4rem;
  }
}
.sCon .layout.ceo .contxt .desc-sig {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .contxt .desc-sig img {
    width: 10rem;
  }
}

/* section */
.section--about {
  margin: 0 auto;
  width: 144rem;
  padding: 10rem 0; /* 추후수정 */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section--about {
    width: 100%;
  }
}
.section--about .hGr {
  padding-right: 6.2rem;
}
.section--about .hGr .heading-gr {
  width: 43rem;
}
.section--about .hGr .heading-gr .heading-h5 {
  line-height: 1.2;
}
.section--about .about {
  flex: 1;
  width: 100%;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .section--about .about {
    width: 100%;
    margin-top: 2rem;
  }
}
.section--about .about .certi {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .section--about .about .certi {
    margin-top: 2.4rem;
  }
  .section--about .about .certi .txt-lg {
    font-size: 1.4rem;
  }
}
.section--about .about .certi__tit {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.section--about .about .certi__tit > i > img {
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: middle;
  margin-top: -2px;
}
@media (max-width: 768px) {
  .section--about .about .certi__tit {
    font-size: 2rem;
    padding-bottom: 0.6em;
  }
}
.section--about .about .certi__list {
  margin-top: 2.4rem;
}
.section--about .about .certi__list .item {
  text-align: center;
}
.section--about .about .certi__list .item__txt {
  padding-top: 1.6rem;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section--about .about .certi__list .item img {
    width: 100%;
  }
  .section--about .about .certi__list .item__txt {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .section--about {
    padding: 4rem 1.6rem;
    flex-direction: column;
  }
  .section--about .hGr {
    width: 100%;
    padding-right: 0;
  }
  .section--about .hGr .heading-gr {
    width: 100%;
    margin-bottom: 1rem;
  }
  .section--about .hGr .txt-lg {
    font-size: 1.4rem;
  }
}
.section--business {
  width: 100%;
  background-image: url("../img/bg_business.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .section--business {
    background-image: url(../img/bg_business-mo.jpg);
    background-size: cover;
  }
}
.section--business .inner {
  margin: 0 auto;
  width: 144rem;
}
@media (max-width: 768px) {
  .section--business .inner {
    width: 100%;
  }
}
.section--business .hGr .heading-gr {
  width: auto;
}
.section--business .hGr .desc {
  color: #fff;
}
.section--business .hGr .desc .dotList {
  margin-bottom: 1.6rem;
}
.section--business .hGr .desc .dotList__item {
  color: #fff;
}
.section--business .hGr .desc .dotList__item::before {
  background-color: #fff;
}
@media (max-width: 768px) {
  .section--business .hGr {
    position: relative;
    top: 0;
    height: auto;
  }
  .section--business .hGr .txt-lg {
    font-size: 1.4rem;
  }
}
.section--business .business-diagram {
  height: 90rem;
  margin: 10rem 0;
  text-align: center;
  position: relative;
  width: 100%;
}
.section--business .business-diagram .diagram-c {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 21rem;
}
.section--business .business-diagram .pos {
  position: absolute;
  display: flex;
  gap: 1.6rem;
}
.section--business .business-diagram .pos-1 {
  top: -1rem;
  left: 61rem;
}
.section--business .business-diagram .pos-2 {
  top: 25rem;
  right: 10rem;
  flex-direction: column;
}
.section--business .business-diagram .pos-3 {
  bottom: -8.6rem;
  right: 25rem;
  flex-direction: column;
}
.section--business .business-diagram .pos-4 {
  bottom: -6rem;
  left: 28rem;
  flex-direction: column;
}
.section--business .business-diagram .pos-5 {
  top: 25rem;
  left: 15rem;
  flex-direction: column;
}
.section--business .business-diagram .box {
  border-radius: 8px;
  max-width: 35rem;
  padding: 2rem;
}
.section--business .business-diagram .box__desc {
  font-size: 1.6rem;
}
.section--business .business-diagram .box__desc .dotList__item {
  padding: 0.5rem 0 0.5rem 1.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  text-align: left;
}
.section--business .business-diagram .box__desc .dotList__item:before {
  background-color: #fff;
}
@media (max-width: 768px) {
  .section--business .business-diagram {
    height: auto;
    margin: 0;
  }
  .section--business .business-diagram .diagram-c {
    position: relative;
    top: auto;
    margin-bottom: 1.6rem;
  }
  .section--business .business-diagram .diagram-c img {
    width: 24rem;
  }
  .section--business .business-diagram .pos {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .section--business .business-diagram .pos .ico img {
    width: 8rem;
  }
  .section--business .business-diagram .pos-1 {
    top: auto;
    left: auto;
  }
  .section--business .business-diagram .pos-2 {
    top: auto;
    right: auto;
  }
  .section--business .business-diagram .pos-3 {
    bottom: auto;
    right: auto;
  }
  .section--business .business-diagram .pos-4 {
    bottom: auto;
    left: auto;
  }
  .section--business .business-diagram .pos-5 {
    top: auto;
    left: auto;
  }
  .section--business .business-diagram .box {
    max-width: 100%;
    padding: 1rem;
    min-height: 10rem;
  }
  .section--business .business-diagram .box__desc {
    font-size: 1.4rem;
  }
  .section--business .business-diagram .box__desc .dotList__item {
    padding: 0.5rem 0 0.5rem 1.4rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .section--business {
    flex-direction: column;
    padding: 8rem 1.6rem 4rem 1.6rem;
  }
  .section--business .hGr {
    padding-bottom: 2.4rem;
    width: 100%;
    padding-right: 0;
  }
  .section--business .heading-h5 > br {
    display: none;
  }
}
.section--location {
  position: relative;
  padding-top: 10rem;
}
.section--location .inner {
  margin: 0 auto;
  width: 144rem;
}
@media (max-width: 768px) {
  .section--location .inner {
    width: 100%;
  }
}
.section--location .hGr {
  margin-bottom: 1rem;
}
.section--location .hGr .heading-h1 {
  padding: 0 0 1.8rem 0;
}
.section--location .hGr .addr {
  flex: 1;
}
.section--location .hGr .addr .addr-tit {
  margin-bottom: 16px;
}
.section--location .hGr .addr .addr-list {
  color: #374151;
  font-size: 1.7rem;
}
.section--location .hGr .addr .addr-list__dl {
  display: flex;
  margin: 1.2rem 0;
}
.section--location .hGr .addr .addr-list__dl dt {
  width: 6.8rem;
}
.section--location .hGr .addr .addr-list__dl dt ~ dt {
  margin-left: 5rem;
}
@media (max-width: 768px) {
  .section--location .hGr .addr .addr-list__dl dt ~ dt {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .section--location .hGr .addr .addr-list__dl {
    margin: 0.6rem 0;
    font-size: 1.5rem;
    flex-wrap: wrap;
  }
  .section--location .hGr .addr .addr-list__dl dd {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .section--location .hGr .addr .addr-list__txt {
    font-size: 1.5rem;
  }
}
.section--location .location-area {
  display: flex;
  justify-content: space-between;
}
.section--location .location-area .left-addr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 768px) {
  .section--location .location-area .left-addr {
    width: 100%;
  }
}
.section--location .location-area .left-addr .addr-map {
  margin: 2rem 0;
}
.section--location .location-area .left-addr .addr-map img {
  object-fit: cover;
}
@media (max-width: 768px) {
  .section--location .location-area .left-addr .addr-map img {
    width: 100%;
  }
}
.section--location .location-area .left-addr .addr-subway {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.section--location .location-area .left-addr .addr-subway .line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
}
.section--location .location-area .left-addr .addr-subway .line-2 {
  background-color: #00AA1C;
}
.section--location .location-area .left-addr .addr-subway .line-3 {
  background-color: #FF7E00;
}
.section--location .location-area .place-wrap {
  margin-top: 10rem;
  display: flex;
}
.section--location .location-area .place-wrap .place {
  width: 25.6rem;
  margin-right: 6rem;
}
.section--location .location-area .place-wrap .map {
  flex: 1;
  text-align: center;
}
.section--location .contact-area {
  margin-top: 8rem;
  background-image: url("../img/bg_contact.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 36rem;
}
.section--location .contact-area .inner {
  height: 100%;
  text-align: center;
  margin: 0 auto;
  width: 144rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .section--location .contact-area .inner {
    width: 100%;
  }
}
.section--location .contact-area .inner .fn-eng {
  font-size: 4rem;
}
.section--location .contact-area .inner .btn-primary-lg > i {
  margin-left: 8px;
}
.section--location .contact-area .heading-h5 {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .section--location {
    padding: 8rem 0 0 0;
    height: auto;
  }
  .section--location .hGr {
    padding: 0 1.6rem;
  }
  .section--location .location-area {
    padding: 0 1.6rem;
    flex-direction: column;
    gap: 4rem;
  }
  .section--location .location-area .map img {
    width: 100%;
  }
  .section--location .location-area .place {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  .section--location .location-area .place > section {
    width: 48%;
  }
  .section--location .info {
    margin-top: 0.4rem;
  }
  .section--location .info .txt-lg span {
    display: block;
  }
  .section--location .contact-area {
    margin-top: 4rem;
    height: 28rem;
  }
  .section--location .contact-area .inner .fn-eng {
    font-size: 3rem;
  }
}

/* spacing */
.hGr {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
@media (max-width: 768px) {
  .hGr {
    flex-direction: column;
    gap: 0;
  }
}
.hGr .desc {
  flex: 1;
  color: #6D7280;
}
.hGr .desc p + p {
  margin-top: 1.6rem;
}

/* 배경 attached */
.bgFix {
  background-position: center center;
  background-attachment: fixed;
  text-align: center;
  padding: 2rem 5rem;
  display: flex;
  align-items: center;
}

/* floatAnimation */
@keyframes floatAnimation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}