@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: va-color(grey500);
  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;
}

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

@media (max-width: 768px) {
  .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: #E4E4E7;
}
.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: #52525B;
  font-weight: 300;
}
.card__desc + .card__desc {
  margin-top: 1.2rem;
  color: #71717A;
}
.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%;
  }
}

/* bg 유형 */
.card-bg {
  border-radius: 1.6rem;
  background-color: #FFECE9;
  padding: 5.2rem 3.2rem;
}
.card-bg .dotList__item {
  font-size: 1.6rem;
  padding-left: 1.2rem;
}
@media (max-width: 768px) {
  .card-bg .dotList__item {
    font-size: 1.4rem;
  }
}
.card-bg .dotList__item:before {
  top: 1.3rem;
}
.card-bg .mtit {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.card-bg .mtit ~ .mtit {
  margin-top: 3.2rem;
}
.card-bg .mbg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF3E24;
  height: 4.3rem;
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
.card-bg .mbg i img {
  vertical-align: middle;
  margin-right: 1rem;
}

.card-tbg {
  overflow: hidden;
  border: 1px solid #E4E4E7;
  border-radius: 1.6rem;
}
.card-tbg .resfig {
  border-radius: 0;
}
.card-tbg .t-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A1A1AA;
  height: 6.8rem;
  font-size: 2.2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .card-tbg .t-tit {
    height: 5.2rem;
    font-size: 2rem;
  }
}
.card-tbg .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 24rem;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
.card-tbg .txt i {
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .card-tbg .txt {
    height: 20rem;
  }
}

.card-line {
  position: relative;
  border: 1px solid #E4E4E7;
  border-radius: 1.2rem;
  padding: 2.4rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.8rem;
}
.card-line .name {
  font-size: 1.8rem;
  display: flex;
  gap: 1.6rem;
}
.card-line .email {
  margin-left: auto;
  color: #FF3E24;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .card-line .email {
    font-size: 1.5rem;
  }
}
.card-line.center {
  align-items: center;
  text-align: center;
}
.card-line.center .name {
  font-size: 2rem;
}
.card-line.center .email {
  margin-left: 0;
}
.card-line.num-type .name {
  flex-direction: column;
}
.card-line.num-type .name strong {
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  .card-line.num-type .name strong {
    font-size: 1.8rem;
  }
}
.card-line.num-type .name p {
  font-size: 1.8rem;
  margin-top: 1.2rem;
  font-weight: 400;
  color: #52525B;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .card-line.num-type .name p {
    font-size: 1.5rem;
  }
}
.card-line.num-type .num {
  position: absolute;
  top: 1.2rem;
  right: 2.4rem;
  color: #FF3E24;
  font-weight: 100;
  font-size: 5rem;
}
@media (max-width: 768px) {
  .card-line.num-type .num {
    font-size: 4rem;
  }
}

.tabCont {
  position: relative;
}

/* tab bs */
.tab-inner {
  width: 100%;
  position: relative;
  border-top: 1px solid transparent;
  margin-top: -4px;
}
.tab-inner.line:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 7.2rem;
  background-color: #E4E4E7;
  height: 1px;
}
@media (max-width: 768px) {
  .tab-inner.line:before {
    display: none;
  }
}

/* 탭제어 별외 */
.tab-inner-pg {
  width: 100%;
  position: relative;
}
.tab-inner-pg.line:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 7.2rem;
  background-color: #E4E4E7;
  height: 1px;
}
@media (max-width: 768px) {
  .tab-inner-pg.line:before {
    display: none;
  }
}

.tab {
  margin: 0 auto;
  max-width: 144rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .tab {
    margin-top: -3px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .tab-3 .tab__item {
    width: 33.33%;
  }
}
.tab__item {
  position: relative;
  color: #3F3F46;
  height: 7.2rem;
  line-height: 7.2rem;
  font-size: 2rem;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .tab__item {
    height: auto;
  }
}
.tab__item:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  height: 3px;
}
.tab__item:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #F4F4F5;
  width: 1px;
}
.tab__item.actived {
  color: #FF3E24;
  font-weight: 700;
}
.tab__item.actived:before {
  background-color: #FF3E24;
}
@media (max-width: 768px) {
  .tab__item.actived:before {
    height: 2px;
  }
}
@media (max-width: 768px) {
  .tab__item.last {
    margin-right: auto;
  }
}
.tab__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 8rem;
  color: inherit;
}
@media (max-width: 768px) {
  .tab__link {
    height: 5.2rem;
    line-height: 5.2rem;
    font-size: 1.5rem;
    padding: 0 1.6rem;
  }
  .tab__link:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F4F4F5;
    height: 1px;
  }
}
.tab--bg {
  max-width: 144rem;
}
@media (max-width: 768px) {
  .tab--bg {
    margin: 0 1.6rem;
  }
}
.tab--bg .tab__item {
  height: 5.6rem;
  line-height: 5.6rem;
  flex: 1;
  background-color: #F4F4F5;
}
.tab--bg .tab__item.col-3 {
  width: 33.333%;
}
@media (max-width: 768px) {
  .tab--bg .tab__item {
    height: 5.2rem;
    line-height: 5.2rem;
    font-size: 1.5rem;
    width: 50%;
    flex: 0 1 auto;
  }
}
.tab--bg .tab__item.actived {
  color: #fff;
  background-color: #FF3E24;
}
.tab--bg .tab__item.actived:before {
  display: none;
}

.tabView {
  padding-top: 9.6rem;
}
@media (max-width: 768px) {
  .tabView {
    padding-top: 4.8rem;
  }
}
.tabView__sec {
  display: none;
}
.tabView__sec:after {
  content: "";
  clear: both;
  display: block;
}
.tabView__sec.actived {
  display: block;
}
.tabView__dsc {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 6.2rem;
  font-weight: 300;
}
.tabView__dsc > p + p {
  margin-top: 3.2rem;
}

[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: #E4E4E7;
  color: #27272A;
  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: #E4E4E7;
  color: #27272A;
  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: #E4E4E7;
  color: #27272A;
  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: #27272A;
  border: 1px solid #A1A1AA;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
}
.btn-line-bs-sm:hover {
  border-color: #27272A;
}
@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: #27272A;
  border: 1px solid #A1A1AA;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}
.btn-line-bs-md:hover {
  border-color: #27272A;
}
@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: #27272A;
  border: 1px solid #A1A1AA;
  font-size: 1.8rem;
  padding: 1.6rem 3rem;
}
.btn-line-bs-lg:hover {
  border-color: #27272A;
}
@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 #E4E4E7;
  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 #E4E4E7;
  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 #E4E4E7;
  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: #F4F4F5;
  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: #F4F4F5;
  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: #F4F4F5;
  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 {
    display: none;
    min-width: auto;
    font-size: 1.5rem;
    height: 3rem;
  }
}

/* dotList */
.dotList__item {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.4rem;
  color: #27272A;
  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: #27272A;
  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.5rem;
    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 #3F3F46;
}
.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 #52525B;
  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: #fff;
  font-size: 1.4rem;
  background-color: #27272A;
  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;
}

@media (max-width: 768px) {
  .wrap-tbList {
    overflow-x: auto;
  }
}

.tbList {
  width: 100%;
}
.tbList th {
  padding: 1.8rem;
  border-top: 2px solid #27272A;
  border-bottom: 1px solid #D4D4D8;
  border-right: 1px solid #D4D4D8;
  background-color: #F4F4F5;
  font-weight: 600;
  font-size: 1.7rem;
}
.tbList th:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .tbList th {
    font-size: 1.5rem;
    padding: 1.5rem;
  }
}
.tbList td {
  padding: 1.8rem;
  border-bottom: 1px solid #D4D4D8;
  border-right: 1px solid #D4D4D8;
  text-align: center;
  vertical-align: top;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.tbList td:last-child {
  border-right: none;
}
.tbList td.subj {
  text-align: left;
}
.tbList td.bg {
  background-color: #F4F4F5;
  font-weight: 600;
}
.tbList td.chk {
  padding-left: 2.6rem;
}
@media (max-width: 768px) {
  .tbList td {
    font-size: 1.5rem;
    padding: 1.5rem;
    font-weight: 300;
  }
}

.tbData {
  width: 100%;
  border-top: 2px solid #52525B;
}
.tbData th {
  padding: 2.4rem;
  border-bottom: 1px solid #D4D4D8;
  text-align: left;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.7rem;
}
.tbData td {
  padding: 2.4rem 2.4rem 2.4rem 0;
  border-bottom: 1px solid #D4D4D8;
  text-align: left;
  background-color: #fff;
  font-size: 1.6rem;
}
.tbData--ty2 {
  border-top: none;
}

.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: 1440px) {
  .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: #18181B;
}
.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;
  }
}

.box-pnt-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  border: 1px solid #FF3E24;
  border-radius: 16px;
  height: 15.6rem;
}
@media (max-width: 768px) {
  .box-pnt-line {
    flex-direction: column;
    height: auto;
    padding: 2.4rem 1.6rem;
  }
}
.box-pnt-line .box-pnt-line-tit {
  font-size: 3.2rem;
  font-weight: 600;
  color: #FF3E24;
}
@media (max-width: 768px) {
  .box-pnt-line .box-pnt-line-tit {
    font-size: 2rem;
    text-align: center;
  }
}
.box-pnt-line .box-pnt-line-tit > i {
  margin-right: 3.2rem;
}
@media (max-width: 768px) {
  .box-pnt-line .box-pnt-line-tit > i {
    display: block;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1.6rem;
  }
  .box-pnt-line .box-pnt-line-tit > i img {
    width: 8rem;
  }
}
.box-pnt-line .box-pnt-line-tit > i img {
  vertical-align: middle;
}

.hd {
  z-index: 99;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  color: #3F3F46;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.2s all linear;
  /* logo */
}
.hd .inner {
  margin: 0 auto;
  max-width: 144rem;
  width: 100%;
  height: 7.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .hd .inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .hd .inner {
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .hd .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    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__gnb {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hd__gnb {
    display: none;
  }
}
.hd__gnb .gnb {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hd__gnb .gnb__itm {
  position: relative;
}
.hd__gnb .gnb__itm:hover .snb {
  height: auto;
  opacity: 1;
}
.hd__gnb .gnb__itm:nth-child(1) {
  width: 15rem;
}
.hd__gnb .gnb__itm:nth-child(2) {
  width: 18rem;
}
.hd__gnb .gnb__itm:nth-child(3) {
  width: 18rem;
}
.hd__gnb .gnb__lnk {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
  height: 100%;
  line-height: 7.6rem;
}
.hd__gnb .full-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
  width: 100%;
  overflow: hidden;
  background: white;
  display: none;
}
.hd__gnb .full-menu-inner {
  display: flex;
  margin: 0 auto;
  width: 51.3rem;
  transform: translateX(-4.1rem) translateY(1rem);
}
.hd__gnb .full-menu-item:nth-child(1) {
  width: 15rem;
}
.hd__gnb .full-menu-item:nth-child(2) {
  width: 18rem;
}
.hd__gnb .full-menu-item:nth-child(3) {
  width: 18rem;
}
.hd__gnb .full-menu-item li {
  padding: 1.2rem;
  text-align: center;
  font-size: 1.8rem;
}
.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;
    margin-top: 0.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;
}
.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: #27272A;
}
.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: #27272A;
}
.hd.iswhite .hd__other .toggle-btn .burger:before, .hd.iswhite .hd__other .toggle-btn .burger:after {
  background-color: #18181B;
}
.hd.iswhite .hd__other .toggle-btn .burger.white:before, .hd.iswhite .hd__other .toggle-btn .burger.white:after {
  background-color: #fff;
}
@media (max-width: 768px) {
  .hd {
    height: 5.6rem;
    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;
  }
}

/* dimd */
.gnb-dimmed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}

.toggle-btn {
  z-index: 99;
  display: none;
  /* 2line burger */
}
@media (max-width: 768px) {
  .toggle-btn {
    display: block;
  }
}
.toggle-btn .burger {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  padding: 0.4rem 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: 2.8rem;
  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;
  flex-direction: column;
  gap: 1rem;
  width: 100vw;
  height: 100vh;
  color: #E4E4E7;
  padding: 8rem 1.6rem 1.6rem 1.6rem;
}
.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 {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.fmenu__item:last-child {
  border: none;
}
.fmenu__item .btn-primary-lg {
  width: 100%;
  margin-top: 4.2rem;
}
.fmenu__item .fmenu-sub {
  z-index: 99;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.fmenu__item .fmenu-sub a {
  font-size: 1.6rem;
  padding: 0.8rem 1.2rem;
  display: block;
  width: 100%;
}
.fmenu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.fmenu__link i.down {
  transform: rotate(90deg);
  margin-right: 0.4rem;
}
.fmenu__link i.active {
  transform: rotate(-90deg);
  margin-left: 0.4rem;
}
.fmenu__txt {
  position: relative;
  font-size: 3.2rem;
  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: #D4D4D8;
  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: 5.8rem;
  }
}
.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;
  max-width: 144rem;
  width: 100%;
}
@media (max-width: 768px) {
  .inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .inner {
    padding: 0 1.6rem;
  }
}

/* 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: 1440px) {
  .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: 10%;
  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;
  align-items: center;
  gap: 6px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .sVis .visual__copy {
    padding-top: 7rem;
  }
  .sVis .visual__copy .tit {
    font-size: 3.6rem;
  }
  .sVis .visual__copy .location {
    font-size: 1.3rem;
    margin-top: 0.8rem;
  }
}

.sCon {
  padding: 0 0 12rem 0;
  /* 250701 추가*/
}
.sCon .sCon-cont {
  margin-top: 9.6rem;
}
.sCon .sCon-cont .sCon-cont-tit {
  font-size: 5rem;
  font-weight: 600;
  padding-bottom: 4rem;
  margin: 0 auto;
  max-width: 144rem;
  width: 100%;
}
@media (max-width: 768px) {
  .sCon .sCon-cont .sCon-cont-tit {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .sCon .sCon-cont .sCon-cont-tit {
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .sCon-cont .sCon-cont-tit {
    font-size: 3.2rem;
    text-align: center;
    padding: 0 1.6rem 3.2rem 1.6rem;
  }
}
.sCon .sCon-cont .tabView .inner {
  padding-top: 0;
}
@media (max-width: 768px) {
  .sCon .sCon-cont {
    margin-top: 4.2rem;
  }
}
.sCon .tab-inner.fixed {
  border-top: 1px solid #F4F4F5;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  z-index: 99;
}
@media (max-width: 768px) {
  .sCon {
    padding: 0 0 6.2rem 0;
  }
}
.sCon .titGr {
  padding-bottom: 5.6rem;
}
@media (max-width: 768px) {
  .sCon .titGr {
    padding: 0 1.6rem 2.8rem 1.6rem;
  }
}
.sCon .titGr.center {
  text-align: center;
}
.sCon .titGr .pg-tit {
  font-weight: bold;
  font-size: 5rem;
}
@media (max-width: 768px) {
  .sCon .titGr .pg-tit {
    text-align: center;
    font-size: 3.2rem;
    padding-bottom: 2.4rem;
  }
}
.sCon .titGr .pg-tit.left {
  font-size: 3.8rem;
}
@media (max-width: 768px) {
  .sCon .titGr .pg-tit.left {
    text-align: left;
    font-size: 2.2rem;
  }
}
.sCon .titGr .pg-desc {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sCon .titGr .pg-desc {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.sCon .titGr .quote {
  position: relative;
  display: block;
  margin-top: 5.6rem;
}
@media (max-width: 768px) {
  .sCon .titGr .quote {
    margin-top: 4.2rem;
  }
}
.sCon .titGr .quote-tit {
  font-size: 3.8rem;
  font-weight: 600;
  color: #FF3E24;
}
@media (max-width: 768px) {
  .sCon .titGr .quote-tit {
    font-size: 2.2rem;
    padding: 0 2.4rem;
  }
}
.sCon .titGr .quote-desc {
  font-size: 2rem;
  line-height: 1.6;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .sCon .titGr .quote-desc {
    font-size: 1.6rem;
    padding: 0 2.4rem;
  }
}
.sCon .titGr .quote:before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon-qu-l.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 22px;
  margin-bottom: 3rem;
}
.sCon .titGr .quote:after {
  content: "";
  display: inline-block;
  background-image: url("../img/icon-qu-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 22px;
  margin-top: 3rem;
}
.sCon .layout {
  /* 서브타이틀 */
}
.sCon .layout .sub-tit {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.sCon .layout .sub-tit.lg {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .sCon .layout .sub-tit {
    font-size: 2.2rem;
    padding: 0 1.6rem;
  }
}
.sCon .layout .sub-desc {
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sCon .layout .sub-desc {
    font-size: 1.6rem;
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout .card-tbg {
    margin: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout .card-bg {
    margin: 0 1.6rem;
  }
}
.sCon .layout .box-pnt-line + .list-item {
  margin-top: 5.6rem;
}
@media (max-width: 768px) {
  .sCon .layout .box-pnt-line + .list-item {
    margin-top: 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout .box-pnt-line {
    margin: 0 1.6rem 1.6rem 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout .tbList {
    margin: 0 0 0 1.6rem;
  }
}
.sCon .layout.card-list .list-item {
  display: flex;
  justify-content: space-between;
  padding: 0 0 5.6rem 0;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item {
    flex-direction: column;
    padding: 1.6rem;
  }
}
.sCon .layout.card-list .list-item.col {
  flex-direction: column;
}
.sCon .layout.card-list .list-item .resfig {
  width: 52rem;
  height: 36rem;
  aspect-ratio: 520/360;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item .resfig {
    width: 100%;
    margin: 1.6rem 0;
  }
}
.sCon .layout.card-list .list-item .contxt {
  width: 80rem;
  line-height: 1.6;
}
.sCon .layout.card-list .list-item .contxt + .dotList {
  margin-top: 2.4rem;
}
.sCon .layout.card-list .list-item .contxt.wid {
  width: 100%;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item .contxt {
    width: 100%;
  }
}
.sCon .layout.card-list .list-item .contxt .tit {
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 1.6rem;
}
.sCon .layout.card-list .list-item .contxt .tit ~ .tit {
  margin-top: 6.8rem;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item .contxt .tit ~ .tit {
    margin-top: 4.2rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item .contxt .tit {
    font-size: 2.2rem;
  }
}
.sCon .layout.card-list .list-item .contxt .desc {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item .contxt .desc {
    font-size: 1.6rem;
  }
}
.sCon .layout.card-list .list-item .contxt .detail {
  margin-top: 2rem;
  font-size: 2rem;
}
.sCon .layout.card-list .list-item .contxt .detail .detail-bl {
  margin-bottom: 0.4rem;
  color: #FF3E24;
  background-color: #FFECE9;
  height: 3rem;
  min-width: 6.4rem;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.sCon .layout.card-list .list-item-fig {
  padding: 0 0 5.6rem 0;
}
.sCon .layout.card-list .list-item-fig .tit {
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item-fig .tit {
    font-size: 2.2rem;
  }
}
.sCon .layout.card-list .list-item-fig .fig-bg {
  background-color: #F4F4F5;
  padding: 4.2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item-fig .fig-bg .fig img {
    width: 100%;
  }
}
.sCon .layout.card-list .list-item-fig .process {
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item-fig .process {
    flex-direction: column;
  }
}
.sCon .layout.card-list .list-item-fig .process > div {
  flex: 1;
}
@media (max-width: 768px) {
  .sCon .layout.card-list .list-item-fig {
    margin-top: 4.2rem;
    padding: 0 1.6rem 1.6rem 1.6rem;
  }
}
.sCon .layout.vision .resfig {
  position: relative;
  width: 144rem;
  aspect-ratio: 1440/560;
}
.sCon .layout.vision .resfig .copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  min-width: 73.2rem;
}
.sCon .layout.vision .resfig .copy .mid {
  font-size: 3.2rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sCon .layout.vision .resfig .copy .mid {
    font-size: 1.6rem;
  }
}
.sCon .layout.vision .resfig .copy .big {
  margin-top: 3.8rem;
  font-size: 4.8rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sCon .layout.vision .resfig .copy .big {
    font-size: 2.4rem;
  }
}
.sCon .layout.vision .resfig .copy .desc {
  margin-top: 2.8rem;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .sCon .layout.vision .resfig .copy .desc {
    font-size: 1.4rem;
    padding: 0 20rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.vision .resfig {
    width: 100%;
    height: 36rem;
  }
}
.sCon .layout.vision .process {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process {
    margin-top: 4.8rem;
  }
}
.sCon .layout.vision .process-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list {
    flex-direction: column;
    padding: 0 1.6rem;
  }
}
.sCon .layout.vision .process-list .step {
  text-align: center;
  width: 26.8rem;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list .step {
    width: 100%;
    margin-bottom: 3.2rem;
  }
}
.sCon .layout.vision .process-list .step .ico-box {
  height: 24rem;
  background-color: #F4F4F5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.6rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list .step .ico-box {
    height: 21rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list .step .ico-box .ico-process-1 img {
    scale: 0.8;
  }
}
.sCon .layout.vision .process-list .step .step-num {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.sCon .layout.vision .process-list .step .step-txt {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #FF3E24;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list .step .step-txt {
    font-size: 1.4rem;
  }
}
.sCon .layout.vision .process-list .step .step-txt-2 {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  color: #52525B;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sCon .layout.vision .process-list .step .step-txt-2 {
    margin-top: 1.2rem;
    font-size: 1.5rem;
    padding: 0 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;
    padding: 0 1.6rem;
  }
}
.sCon .layout.ceo .resfig {
  width: 40rem;
  aspect-ratio: 400/456;
}
@media (max-width: 768px) {
  .sCon .layout.ceo .resfig {
    width: 100%;
  }
}
.sCon .layout.ceo .contxt {
  width: 97rem;
}
@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;
  }
}
.sCon .layout.ci .sub-tit {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.ci .sub-tit {
    margin-top: 4.8rem;
    font-size: 2.2rem;
  }
}
.sCon .layout.ci .ci-bg {
  margin-top: 5.6rem;
  border-radius: 1.6rem;
  background-color: #F4F4F5;
  min-height: 48rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .sCon .layout.ci .ci-bg {
    min-height: 36rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.ci .ci-bg img {
    width: 100%;
  }
}
.sCon .layout.ci .ci-pallet {
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
}
.sCon .layout.ci .ci-pallet .cbox {
  padding: 3rem 2.4rem;
}
.sCon .layout.ci .ci-pallet .cbox:nth-child(1) {
  grid-row: 1/span 2;
}
.sCon .layout.ci .ci-pallet .cbox:nth-child(2) {
  grid-row: 3/span 2;
}
.sCon .layout.ci .ci-pallet .cbox.red {
  background-color: #FF3E24;
}
.sCon .layout.ci .ci-pallet .cbox.white {
  color: #FF3E24;
  background-color: #fff;
}
.sCon .layout.ci .ci-pallet .cbox.gray-1 {
  background-color: #ccc;
}
.sCon .layout.ci .ci-pallet .cbox.gray-2 {
  color: #fff;
  background-color: #808080;
}
.sCon .layout.ci .ci-pallet .cbox.gray-3 {
  color: #fff;
  background-color: #333333;
}
.sCon .layout.ci .ci-pallet .cbox.gray-4 {
  color: #fff;
  background-color: #000;
}
.sCon .layout.ci .ci-pallet .cbox .bold {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 1.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.ci .ci-pallet .cbox .bold {
    font-size: 1.5rem;
  }
}
.sCon .layout.ci .ci-pallet .cbox .hex {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.ci .ci-pallet .cbox .hex {
    font-size: 1.3rem;
  }
}
.sCon .layout.ci .ci-pallet .cbox .rgba {
  margin-top: 0.6rem;
  display: inline-flex;
  gap: 1rem;
}
.sCon .layout.recycle .sub-tit {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .sub-tit {
    margin-top: 4.8rem;
    font-size: 2.2rem;
  }
}
.sCon .layout.recycle .icon-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list {
    flex-wrap: wrap;
  }
}
.sCon .layout.recycle .icon-list .step {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step {
    width: 50%;
  }
}
.sCon .layout.recycle .icon-list .step:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  display: block;
  background-color: #E4E4E7;
  height: 100%;
  width: 1px;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step:after {
    display: none;
  }
}
.sCon .layout.recycle .icon-list .step:last-child:after {
  display: none;
}
.sCon .layout.recycle .icon-list .step .ico-box {
  height: 12.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step .ico-box .ico-process-1 img {
    scale: 0.8;
  }
}
.sCon .layout.recycle .icon-list .step .step-num strong {
  font-size: 4rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step .step-num strong {
    font-size: 2.4rem;
  }
}
.sCon .layout.recycle .icon-list .step .step-num span {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step .step-num span {
    font-size: 1.5rem;
  }
}
.sCon .layout.recycle .icon-list .step .step-txt {
  font-size: 1.8rem;
  padding-top: 1.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .icon-list .step .step-txt {
    font-size: 1.4rem;
  }
}
.sCon .layout.recycle .chart {
  position: relative;
  margin-top: 9.6rem;
  border: 1px solid #E4E4E7;
  padding: 5.2rem;
  border-radius: 1.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart {
    margin-top: 4.8rem;
    padding: 2.4rem;
  }
}
.sCon .layout.recycle .chart .chart-tit {
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .chart-tit {
    font-size: 1.8rem;
  }
}
.sCon .layout.recycle .chart .chart-tit span {
  font-size: 2rem;
  font-weight: 200;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .chart-tit span {
    font-size: 1.4rem;
  }
}
.sCon .layout.recycle .chart .chart-img {
  display: block;
  margin-top: 4.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .chart-img img {
    width: 100%;
  }
}
.sCon .layout.recycle .chart .stat {
  font-size: 1.8rem;
  position: absolute;
  top: 5rem;
  right: 5rem;
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .stat {
    position: relative;
    top: auto;
    right: auto;
    font-size: 1.5rem;
    margin-top: 2.4rem;
  }
}
.sCon .layout.recycle .chart .stat .stat-1 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  background-color: #3F3F46;
  border-radius: 4px;
  width: 1.6rem;
  height: 1.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .stat .stat-1 {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.sCon .layout.recycle .chart .stat .stat-2 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  background-color: #FF3E24;
  border-radius: 4px;
  width: 1.6rem;
  height: 1.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart .stat .stat-2 {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.sCon .layout.recycle .chart-de {
  margin-top: 9.6rem;
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .chart-de {
    margin-top: 4.8rem;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.sCon .layout.recycle .chart-de .card-bg {
  flex: 1;
}
.sCon .layout.recycle .process-list-arr {
  margin-top: 4.2rem;
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .process-list-arr {
    flex-direction: column;
  }
}
.sCon .layout.recycle .process-list-arr li {
  flex: 1;
  position: relative;
}
.sCon .layout.recycle .process-list-arr li:last-child:after {
  display: none;
}
.sCon .layout.recycle .process-list-arr li:nth-child(1) .card-tbg .t-tit {
  background-color: #A1A1AA;
}
.sCon .layout.recycle .process-list-arr li:nth-child(2) .card-tbg .t-tit {
  background-color: #71717A;
}
.sCon .layout.recycle .process-list-arr li:nth-child(3) .card-tbg .t-tit {
  background-color: #3F3F46;
}
.sCon .layout.recycle .process-list-arr li:nth-child(4) .card-tbg .t-tit {
  background-color: #FF3E24;
}
.sCon .layout.recycle .process-list-arr li:nth-child(4) .card-tbg .t-tit > img {
  width: 7rem;
}
.sCon .layout.recycle .process-list-arr li:after {
  content: "";
  position: absolute;
  right: -4.2rem;
  top: 45%;
  width: 4.3rem;
  height: 3.9rem;
  display: inline-block;
  background-image: url("../img/icon_busi_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .process-list-arr li:after {
    right: auto;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.sCon .layout.recycle .map-spot {
  margin-top: 4.2rem;
  position: relative;
  padding: 4rem;
  background-color: #FAFAFA;
  border: 1px solid #E4E4E7;
  border-radius: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot {
    flex-direction: column;
    padding: 2.4rem;
    margin: 1.6rem;
  }
}
.sCon .layout.recycle .map-spot .map-spot-desc .map-spot-desc-t {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .map-spot-desc .map-spot-desc-t {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.sCon .layout.recycle .map-spot .map-spot-desc .dotList {
  margin-top: 2.8rem;
}
.sCon .layout.recycle .map-spot .map-spot-desc .dotList__item {
  font-size: 1.7rem;
}
.sCon .layout.recycle .map-spot .map-spot-desc .dotList__item:before {
  top: 1.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .map-spot-desc .dotList__item {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .map-img img {
    width: 100%;
    margin-top: 4rem;
  }
}
.sCon .layout.recycle .map-spot .stat {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .stat {
    font-size: 1.5rem;
    top: 2.4rem;
    left: auto;
    right: auto;
  }
}
.sCon .layout.recycle .map-spot .stat .stat-item {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .stat .stat-item {
    font-size: 1.5rem;
  }
}
.sCon .layout.recycle .map-spot .stat .stat-item i {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .sCon .layout.recycle .map-spot .stat .stat-item i {
    width: 10px;
    height: 10px;
  }
}
.sCon .layout.recycle .map-spot .stat .stat-item:nth-child(1) i {
  background-color: #D12F14;
}
.sCon .layout.recycle .map-spot .stat .stat-item:nth-child(2) i {
  background-color: #F39181;
}
.sCon .layout.recycle .map-spot .stat .stat-item:nth-child(3) i {
  background-color: #F8BEB5;
}
.sCon .layout.recycle .map-spot .stat .stat-item:nth-child(4) i {
  background-color: #FBDFDA;
}
.sCon .layout.Flake .sub-tit {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .sub-tit {
    margin-top: 4.8rem;
    font-size: 2.2rem;
  }
}
.sCon .layout.Flake .Flake-arr {
  text-align: center;
  padding: 2.4rem 0;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .Flake-arr img {
    width: 12rem;
  }
}
.sCon .layout.Flake .Flake-img {
  display: block;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .Flake-img {
    background-color: #FFECE9;
    border-radius: 1.6rem;
    padding: 2.4rem;
    margin: 0 1.6rem;
  }
  .sCon .layout.Flake .Flake-img img {
    width: 100%;
  }
}
.sCon .layout.Flake .process-list-cir {
  display: flex;
  gap: 4rem;
  border-radius: 1.6rem;
  padding: 4rem;
  border: 1px solid #E4E4E7;
  margin: 4.6rem 0;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .process-list-cir {
    flex-direction: column;
    padding: 6rem 4rem 4rem 4rem;
    gap: 2.4rem;
  }
}
.sCon .layout.Flake .process-list-cir .point-box {
  width: 57.8rem;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4rem;
  border: 1px solid #FF3E24;
  background-color: #FFECE9;
  border-radius: 1.6rem;
  padding: 4rem 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .process-list-cir .point-box {
    width: 100%;
    flex-direction: column;
  }
}
.sCon .layout.Flake .process-list-cir .point-box .mtit {
  color: #FF3E24;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 0;
}
.sCon .layout.Flake .process-list-cir .point-box > div {
  text-align: center;
  flex: 1;
}
.sCon .layout.Flake .process-list-cir .point-box .point-box-tit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-width: 20rem;
  padding: 0 1.6rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #FF3E24;
  height: 4.5rem;
  border-radius: 1.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .process-list-cir .point-box .point-box-tit {
    font-size: 1.6rem;
  }
  .sCon .layout.Flake .process-list-cir .point-box .point-box-tit img {
    width: 2.2rem;
  }
}
.sCon .layout.Flake .process-list-cir .non-point-box {
  flex: 1;
  display: flex;
  gap: 4rem;
  padding: 4rem 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .process-list-cir .non-point-box {
    flex-wrap: wrap;
  }
}
.sCon .layout.Flake .process-list-cir .non-point-box .mtit {
  color: #FF3E24;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 0;
}
.sCon .layout.Flake .process-list-cir .non-point-box > div {
  text-align: center;
  flex: 1;
}
.sCon .layout.Flake .application {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  margin-top: 4.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .application {
    flex-direction: column;
  }
}
.sCon .layout.Flake .application .card-tbg .t-tit {
  background-color: #FF3E24;
}
.sCon .layout.Flake .application .card-tbg .fig {
  width: 44rem;
  aspect-ratio: 440/237;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .application .card-tbg .fig {
    width: 100%;
  }
}
.sCon .layout.Flake .application .application-icon {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-around;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .application .application-icon {
    flex-wrap: wrap;
    padding: 0 2.4rem;
  }
}
.sCon .layout.Flake .application .application-icon .card-cir {
  flex: 1;
  text-align: center;
}
.sCon .layout.Flake .application .application-icon .card-cir .txt {
  margin-top: 1.6rem;
}
.sCon .layout.Flake .application .application-icon:before {
  content: "";
  position: absolute;
  left: -6.2rem;
  top: 24%;
  width: 4.3rem;
  height: 3.9rem;
  display: inline-block;
  background-image: url("../img/icon_busi_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .sCon .layout.Flake .application .application-icon:before {
    left: auto;
    top: -8%;
    transform: rotate(90deg);
  }
}
.sCon .layout.pellet .sub-tit {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .sub-tit {
    margin-top: 4.8rem;
    font-size: 2.2rem;
  }
}
.sCon .layout.pellet .pellet-arr {
  position: relative;
  text-align: center;
  padding: 2.4rem 0 0 0;
}
.sCon .layout.pellet .pellet-arr > i {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -7rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-arr > i {
    top: 2.4rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-arr > i img {
    width: 12rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.pellet .box-pnt-line {
    margin: 5.6rem 1.6rem 1.6rem 1.6rem;
  }
}
.sCon .layout.pellet .pellet-process {
  padding-bottom: 9.8rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-process {
    height: auto;
    padding-bottom: 4.8rem;
    background-color: #FFECE9;
  }
}
.sCon .layout.pellet .pellet-process .pellet-img {
  display: block;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-process .pellet-img img {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.sCon .layout.pellet .pellet-process .inner {
  position: relative;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-process .inner {
    padding: 4.2rem 1.6rem 2.4rem 1.6rem;
  }
}
.sCon .layout.pellet .pellet-process .tit {
  font-size: 2.4rem;
  font-weight: 500;
  padding: 0 0 4.2rem 0;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-process .tit {
    font-size: 1.8rem;
    text-align: center;
    padding: 2.4rem 0;
  }
}
.sCon .layout.pellet .pellet-process .stat {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
}
.sCon .layout.pellet .pellet-process .stat .stat-item {
  margin-left: 2.4rem;
}
.sCon .layout.pellet .pellet-process .stat .stat-item:nth-child(1) {
  color: #FF3E24;
}
.sCon .layout.pellet .pellet-process .stat .stat-item:nth-child(2) {
  color: #3CAD92;
}
.sCon .layout.pellet .pellet-process .stat .stat-item i {
  margin-right: 0.8rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .pellet-process .stat {
    right: auto;
    left: auto;
    top: 2.4rem;
    font-size: 1.5rem;
  }
}
.sCon .layout.pellet .product-list {
  margin-top: 4.6rem;
  display: flex;
  gap: 3.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .product-list {
    flex-direction: column;
  }
}
.sCon .layout.pellet .product-list .part {
  flex: 1;
}
.sCon .layout.pellet .product-list .part .card-tbg {
  border-radius: 1.6rem 1.6rem 0 0;
}
.sCon .layout.pellet .product-list .part .card-tbg .t-tit {
  gap: 0.5rem;
  height: 5.8rem;
  background-color: #FF6550;
}
.sCon .layout.pellet .product-list .part .card-tbg .t-tit.t2 {
  background-color: #FF3E24;
}
.sCon .layout.pellet .product-list .part .card-tbg .t-tit.t3 {
  background-color: #E83821;
}
.sCon .layout.pellet .product-list .part .tbList th {
  border-top: none;
}
.sCon .layout.pellet .application-process {
  display: flex;
  justify-content: space-between;
  margin-top: 4.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .application-process {
    flex-direction: column;
    margin-top: 2.4rem;
    padding: 0 1.6rem;
  }
}
.sCon .layout.pellet .application-process .right {
  position: relative;
}
.sCon .layout.pellet .application-process .right .fig + .fig {
  margin-top: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .application-process .right .fig {
    width: 100%;
    margin-top: 4.2rem;
  }
}
.sCon .layout.pellet .application-process .right:before {
  z-index: 99;
  content: "";
  position: absolute;
  left: -8.2rem;
  top: 47%;
  width: 4.3rem;
  height: 3.9rem;
  display: inline-block;
  background-image: url("../img/icon_busi_arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 768px) {
  .sCon .layout.pellet .application-process .right:before {
    left: 45%;
    top: 0;
    transform: rotate(90deg);
  }
}
.sCon .layout.customer .sub-tit {
  margin-top: 2.4rem;
}
.sCon .layout.customer .sub-tit ~ .sub-tit {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.customer .sub-tit {
    margin-top: 4.8rem;
    font-size: 2.2rem;
  }
}
.sCon .layout.customer .certi {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .sCon .layout.customer .certi {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.customer .certi .certi-item {
    width: calc(50% - 0.8rem);
  }
}
.sCon .layout.customer .certi .certi-item .dotList {
  margin-top: 1.2rem;
}
.sCon .layout.customer .certi .certi-item .dotList__item {
  font-size: 1.6rem;
}
.sCon .layout.customer .certi .certi-item .certi-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E4E4E7;
  border-radius: 16px;
  height: 20rem;
}
@media (max-width: 768px) {
  .sCon .layout.customer .certi .certi-item .certi-box {
    height: 16rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.customer .certi .certi-item .certi-box img {
    scale: 0.8;
  }
}
.sCon .layout.customer .certi .certi-item .certi-txt {
  padding-top: 1.2rem;
  font-size: 1.6rem;
}
.sCon .layout.customer .company {
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.customer .company {
    margin-top: 4.8rem;
  }
}
.sCon .layout.customer .company .tbList {
  margin-top: 5.6rem;
}
.sCon .layout.customer .company-contact {
  margin-top: 3.2rem;
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .sCon .layout.customer .company-contact {
    flex-direction: column;
  }
}
.sCon .layout.customer .company-contact > div {
  flex: 1;
}
.sCon .layout.contact {
  position: relative;
  margin: 0 auto;
  max-width: 144rem;
  width: 100%;
}
@media (max-width: 768px) {
  .sCon .layout.contact {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .sCon .layout.contact {
    padding: 0 1.6rem;
  }
}
@media (max-width: 768px) {
  .sCon .layout.contact {
    padding: 0 1.6rem;
  }
}
.sCon .layout.contact .hGr {
  margin-bottom: 3.6rem;
}
.sCon .layout.contact .hGr .addr {
  flex: 1;
}
.sCon .layout.contact .hGr .addr .addr-tit {
  margin-bottom: 16px;
}
.sCon .layout.contact .hGr .addr .addr-list {
  color: #3F3F46;
  font-size: 1.7rem;
}
.sCon .layout.contact .hGr .addr .addr-list__dl {
  display: flex;
  margin: 1.2rem 0;
}
.sCon .layout.contact .hGr .addr .addr-list__dl dt {
  width: 6.8rem;
}
.sCon .layout.contact .hGr .addr .addr-list__dl dt ~ dt {
  margin-left: 5rem;
}
@media (max-width: 768px) {
  .sCon .layout.contact .hGr .addr .addr-list__dl dt ~ dt {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .sCon .layout.contact .hGr .addr .addr-list__dl {
    margin: 0.6rem 0;
    font-size: 1.5rem;
    flex-wrap: wrap;
  }
  .sCon .layout.contact .hGr .addr .addr-list__dl dd {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .sCon .layout.contact .hGr .addr .addr-list__txt {
    font-size: 1.5rem;
  }
}
.sCon .layout.contact .location-area {
  display: flex;
  justify-content: space-between;
}
.sCon .layout.contact .location-area .left-addr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 768px) {
  .sCon .layout.contact .location-area .left-addr {
    width: 100%;
  }
}
.sCon .layout.contact .location-area .left-addr .addr-map {
  margin: 0 0 2rem 0;
}
.sCon .layout.contact .location-area .left-addr .addr-map img {
  object-fit: cover;
}
@media (max-width: 768px) {
  .sCon .layout.contact .location-area .left-addr .addr-map img {
    width: 100%;
  }
}
.sCon .layout.contact .location-area .left-addr .addr-subway {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sCon .layout.contact .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;
}
.sCon .layout.contact .location-area .left-addr .addr-subway .line-2 {
  background-color: #00AA1C;
}
.sCon .layout.contact .location-area .left-addr .addr-subway .line-3 {
  background-color: #FF7E00;
}
.sCon .layout.contact .location-area .place-wrap {
  margin-top: 10rem;
  display: flex;
}
.sCon .layout.contact .location-area .place-wrap .place {
  width: 25.6rem;
  margin-right: 6rem;
}
.sCon .layout.contact .location-area .place-wrap .map {
  flex: 1;
  text-align: center;
}
.sCon .layout.contact .p-info {
  margin: 6.2rem 0 4.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}
.sCon .layout.contact .p-info > div {
  flex: 1;
}
@media (max-width: 768px) {
  .sCon .layout.contact .p-info {
    flex-direction: column;
    margin: 4.2rem 0;
  }
}
.sCon .layout.contact .contact-area {
  margin-top: 8rem;
  height: 36rem;
}
@media (max-width: 768px) {
  .sCon .layout.contact .contact-area {
    margin-top: 4.2rem;
    height: 28rem;
  }
}
.sCon .layout.contact .contact-area .inner {
  height: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 144rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background-color: #F4F4F5;
}
@media (max-width: 768px) {
  .sCon .layout.contact .contact-area .inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .sCon .layout.contact .contact-area .inner {
    padding: 0 1.6rem;
  }
}
.sCon .layout.contact .contact-area .inner .fn-eng {
  font-size: 4rem;
  color: #FF3E24;
}
.sCon .layout.contact .contact-area .inner .btn-primary-lg > i {
  margin-left: 8px;
}
.sCon .layout.contact .contact-area .mtit {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .sCon .layout.contact .contact-area .mtit {
    font-size: 1.8rem;
  }
}
.sCon .layout.contact .contact-area .heading-h5 {
  font-size: 2.4rem;
}

/* section */
.section--about {
  margin: 0 auto;
  max-width: 144rem;
  width: 100%;
  padding: 10rem 0; /* 추후수정 */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section--about {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .section--about {
    padding: 0 1.6rem;
  }
}
.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;
  max-width: 144rem;
  width: 100%;
}
@media (max-width: 768px) {
  .section--business .inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .section--business .inner {
    padding: 0 1.6rem;
  }
}
.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;
  max-width: 144rem;
  width: 100%;
}
@media (max-width: 768px) {
  .section--location .inner {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .section--location .inner {
    padding: 0 1.6rem;
  }
}
.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: #3F3F46;
  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;
  max-width: 144rem;
  width: 100%;
  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%;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .section--location .contact-area .inner {
    padding: 0 1.6rem;
  }
}
.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 .contact-area .heading-h5 {
    font-size: 1.8rem;
  }
}
@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: #71717A;
}
.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);
  }
}