@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.skip-nav {
  z-index: 5100;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -100%;
  width: 100%;
}
.skip-nav .skip {
  padding: 1rem;
  flex-basis: 50%;
  text-align: center;
  background-color: #fff;
}
.skip-nav .skip:focus {
  color: #fff;
  background-color: #a7a7a7;
}

.skip-nav.active {
  top: 0;
}

.inner {
  margin: 0 auto;
  width: 1560px;
  max-width: 100%;
}

.header-wrap {
  z-index: 5000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 12rem;
  transition: all 0.5s;
}
.header-wrap:before {
  content: "";
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #FE7304;
  transition: all 0.3s;
}

.header-wrap.hide {
  transform: translateY(-100%);
}

.header-wrap.show {
  transform: translateY(0);
}

.header-wrap.active {
  height: 445px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.header-wrap.active:before {
  width: 100%;
}
.header-wrap.active .header .logo > a {
  background: url("/static/img/common/logo.svg") no-repeat center/contain;
}
.header-wrap.active .header .gnb > li {
  height: auto;
  width: auto;
}
.header-wrap.active .header .gnb > li > a {
  color: #000;
}
.header-wrap.active .header .lnb {
  position: relative;
  width: auto;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header-wrap.active .header .language .ico {
  background: url("/static/img/common/ic_globe.svg") no-repeat center/contain;
}
.header-wrap.active .header .language .btn button:after {
  background: #000;
  opacity: 0.5;
}
.header-wrap.active .header .language .btn button span {
  color: #000;
}
.header-wrap.active .header .allmenu button i {
  background: url("/static/img/common/ic_allmenu.svg") no-repeat center/contain;
}

.header-wrap.fixed {
  background: #ffffff;
}
.header-wrap.fixed .header .logo > a {
  background: url("/static/img/common/logo.svg") no-repeat center/contain;
}
.header-wrap.fixed .header .gnb > li > a {
  color: #000;
}
.header-wrap.fixed .header .language .ico {
  background: url("/static/img/common/ic_globe.svg") no-repeat center/contain;
}
.header-wrap.fixed .header .language .btn button:after {
  background: #000;
  opacity: 0.5;
}
.header-wrap.fixed .header .language .btn button span {
  color: #000;
}
.header-wrap.fixed .header .allmenu button i {
  background: url("/statics/img/common/ic_allmenu.svg") no-repeat center/contain;
}

.header-wrap.none-bg {
  background: #ffffff;
}
.header-wrap.none-bg .header .logo > a {
  background: url("/static/img/common/logo.svg") no-repeat center/contain;
}
.header-wrap.none-bg .header .gnb > li > a {
  color: #000;
}
.header-wrap.none-bg .header .language .ico {
  background: url("/static/img/common/ic_globe.svg") no-repeat center/contain;
}
.header-wrap.none-bg .header .language .btn button:after {
  background: #000;
  opacity: 0.5;
}
.header-wrap.none-bg .header .language .btn button span {
  color: #000;
}
.header-wrap.none-bg .header .allmenu button i {
  background: url("/static/img/common/ic_allmenu.svg") no-repeat center/contain;
}

.header {
  padding: 0 2rem;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 12rem;
}
.header .logo {
  position: relative;
  z-index: 5;
  width: 26rem;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 65/12;
}
.header .logo > a {
  display: block;
  background: url("/static/img/common/logo_w.svg") no-repeat center/contain;
  width: 100%;
  height: 100%;
}
.header .nav {
  display: flex;
}
.header .gnb {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  height: 12rem;
}
.header .gnb > li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  text-align: center;
  width: auto;
  height: 12rem;
  overflow: hidden;
}
.header .gnb > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 12rem;
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  gap: 0.6rem;
  transition: all 0.3s;
}
.header .lnb {
  position: relative;
  opacity: 0;
  width: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 5rem 0;
  pointer-events: none;
}
.header .lnb > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 5rem;
  font-size: 1.9rem;
  font-weight: 300;
  color: #000;
  text-align: center;
  white-space: nowrap;
}
.header .lnb > li > a:hover {
  font-weight: 700;
  color: #fe7304;
}
.header .language {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.header .language .ico {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("/static/img/common/ic_globe_w.svg") no-repeat center/contain;
}
.header .language .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .language .btn button {
  display: flex;
  align-items: center;
}
.header .language .btn button:after {
  content: "";
  margin: 0 0.5rem;
  width: 0.1rem;
  height: 1rem;
  background: #fff;
  opacity: 0.5;
}
.header .language .btn button:last-of-type:after {
  display: none;
}
.header .language .btn button span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  opacity: 0.5;
}
.header .language .btn button.on span {
  opacity: 1;
}
.header .allmenu {
  display: none;
}
.header .allmenu button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.header .allmenu button i {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: url("/static/img/common/ic_allmenu_w.svg") no-repeat center/contain;
}

.footer {
  position: relative;
  width: 100%;
  padding: 10rem 0;
  background: #fff;
  border-top: 1px solid rgba(254, 115, 4, 0.5);
}
.footer .upper {
  margin: 0 0 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .upper .logo .txt {
  line-height: 5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e1e1e;
}
.footer .upper .logo .tit {
  line-height: 5rem;
  font-size: 5rem;
  font-weight: 700;
  color: #1e1e1e;
}
.footer .upper .link {
  display: flex;
  align-items: center;
}
.footer .upper .link a {
  display: flex;
  align-items: center;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e1e1e;
}
.footer .upper .link a:after {
  content: "";
  width: 1px;
  height: 1.3rem;
  margin: 0 2rem;
  background: #1e1e1e;
  opacity: 0.3;
}
.footer .upper .link a:last-of-type:after {
  display: none;
}
.footer .main .flex {
  display: flex;
  gap: 9rem;
  margin: 0 0 5rem;
}
.footer .main .flex .box {
  flex: auto;
}
.footer .main .flex .tit {
  margin: 0 0 1rem;
  line-height: 3.3rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fe7304;
}
.footer .main .flex .con dl {
  display: flex;
  gap: 1.5rem;
  line-height: 1.6;
  font-size: 1.5rem;
  color: #6c6c6c;
}
.footer .main .flex .con dt {
  width: 8.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.footer .main .flex .con dd {
  white-space: nowrap;
}
.footer .main .flex .img {
  display: flex;
  gap: 1rem;
}
.footer .main .cite {
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1e1e1e;
}
.footer .sidebar {
  position: fixed;
  top: calc(50% + 2rem);
  right: 5rem;
  z-index: 101;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.footer .sidebar .con {
  display: flex;
  flex-direction: column;
  padding: 3.5rem 0 4.5rem;
  width: 8.5rem;
  border-radius: 8.5rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #fff;
  gap: 2rem;
  text-align: center;
}
.footer .sidebar .con a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .sidebar .con a img {
  width: 4.6rem;
  height: 5.7rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.footer .sidebar .con a span {
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
}
.footer .sidebar .btn .gotop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 8.5rem;
  background: #fe7304;
}
.footer .sidebar .btn .gotop:before {
  content: "";
  width: 4.6rem;
  height: 4.6rem;
  background: url("/static/img/common/gotop.svg") no-repeat center/contain;
}
.footer .sidebar.active {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.content-wrap.main .section {
  overflow: hidden;
}
.content-wrap.main .inner {
  max-width: 100%;
}
.content-wrap.main .title-wrap {
  position: relative;
  margin: 0 0 8rem 0;
}
.content-wrap.main .title-wrap .txt {
  margin: 0 0 2rem;
  line-height: 1.4;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff76e6;
}
.content-wrap.main .title-wrap .tit {
  line-height: 1.2;
  font-size: 6rem;
  font-weight: 700;
  color: #000;
}
.content-wrap.main .title-wrap .more {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.content-wrap.main .title-wrap .more a {
  display: block;
  width: 6rem;
  height: 2.2rem;
  background: url("/static/img/common/ic_arrow_link.svg") no-repeat center/contain;
}
.content-wrap.main .sec-1 {
  position: relative;
  overflow: hidden;
}
.content-wrap.main .sec-1 .slider-wrap {
  height: 96rem;
}
.content-wrap.main .sec-1 .slider-wrap .img-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.content-wrap.main .sec-1 .slider-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.main .sec-1 .slider-wrap .img-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 12, 61, 0) 27.19%, rgba(0, 10, 31, 0.9) 91.02%);
}
.content-wrap.main .sec-1 .slider-wrap .txt-wrap {
  position: absolute;
  bottom: 21rem;
  left: 0;
  width: 100%;
}
.content-wrap.main .sec-1 .slider-wrap .txt-wrap .t1 {
  margin: 0 0 3rem 0;
  line-height: 1.05;
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
}
.content-wrap.main .sec-1 .slider-wrap .txt-wrap .t2 {
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
}
.content-wrap.main .sec-1 .pager-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.content-wrap.main .sec-1 .pager-wrap .inner {
  display: flex;
  align-items: center;
  height: 10rem;
  gap: 4rem;
}
.content-wrap.main .sec-1 .pager-wrap .pager-btn {
  display: flex;
  line-height: 3rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.5;
}
.content-wrap.main .sec-1 .pager-wrap .pager-btn .num:after {
  content: "/";
  margin: 0 0.5rem;
  font-weight: 300;
}
.content-wrap.main .sec-1 .pager-wrap .pager-btn .tit {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.content-wrap.main .sec-1 .pager-wrap .pager-btn .tit:after {
  content: "";
  width: 6rem;
  height: 0.2rem;
  background: #fff;
}
.content-wrap.main .sec-1 .pager-wrap .pager-btn.active {
  opacity: 1;
}
.content-wrap.main .sec-1 .gauge-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  height: 5px;
  background: #CDD4DA;
}
.content-wrap.main .sec-1 .gauge-wrap i {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  background: #FE7304;
}
.content-wrap.main .sec-0 {
  background-color: #000;
  position: relative;
  overflow: hidden;
  padding-top: 17rem;
}
.content-wrap.main .sec-0 .solution {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 0 0 5rem 0;
}
.content-wrap.main .sec-0 .solution .title-wrap .txt {
  color: #fff;
}
.content-wrap.main .sec-0 .solution .title-wrap .tit {
  color: #fff;
}
.content-wrap.main .sec-0 .solution .title-wrap .more a {
  background: url("/static/img/common/ic_arrow_link_w.svg") no-repeat center/contain;
}
.content-wrap.main .sec-0 .solution .slider-wrap .swiper-slide {
  width: auto;
  height: 45rem;
}
.content-wrap.main .sec-0 .solution .slider-wrap .swiper-slide:not(.swiper-slide-active) .box {
  width: 37rem;
  height: 35rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
}
.content-wrap.main .sec-0 .solution .slider-wrap .swiper-slide:not(.swiper-slide-active) .icon {
  width: 4rem;
  height: 4rem;
}
.content-wrap.main .sec-0 .solution .slider-wrap .swiper-slide-active .subject {
  margin: 0 0 1rem;
  line-height: 1.3;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
.content-wrap.main .sec-0 .solution .slider-wrap .swiper-slide-active .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  opacity: 0.8;
}
.content-wrap.main .sec-0 .solution .slider-wrap .box {
  display: block;
  padding: 4rem 4.5rem;
  width: 48rem;
  height: 45rem;
  border: 1px solid #fe7304;
  background: #fe7304;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.content-wrap.main .sec-0 .solution .slider-wrap .icon {
  margin: 0 0 2rem;
  width: 7rem;
  height: 7rem;
  background: url("/static/img/main/img_solution.svg") no-repeat center/contain;
}
.content-wrap.main .sec-0 .solution .slider-wrap .subject {
  margin: 0 0 1rem;
  line-height: 1.3;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}
.content-wrap.main .sec-0 .solution .slider-wrap .desc {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  opacity: 0.8;
}
.content-wrap.main .sec-0 .solution .scroll-wrap {
  margin: 5rem 0 0 0;
  width: 100%;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
}
.content-wrap.main .sec-0 .solution .scroll-wrap .swiper-scrollbar-drag {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
}
.content-wrap.main .sec-0 .background {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.content-wrap.main .sec-0 .background:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0.2;
  transition: all 0.5s;
}
.content-wrap.main .sec-0 .background:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #101155;
  opacity: 0.7;
}
.content-wrap.main .sec-0 .background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-attachment: fixed;
}
.content-wrap.main .sec-0 .background.active {
  top: 0;
  width: 100%;
  height: 100%;
}
.content-wrap.main .sec-0 .background.active img {
  width: 100%;
  height: 100%;
}
.content-wrap.main .sec-0 .background.active:before {
  opacity: 0.5;
}
.content-wrap.main .sec-0 .background.active:after {
  opacity: 0.2;
}
.content-wrap.main .sec-2 {
  position: relative;
  overflow: hidden;
}
.content-wrap.main .sec-2 .innovation {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 18rem 0;
  height: 96rem;
}
.content-wrap.main .sec-2 .innovation .txt {
  position: relative;
  z-index: 2;
  margin: 0 0 3rem;
  line-height: 1.4;
  font-size: 3rem;
  font-weight: 700;
  color: #fe7304;
  transition: all 0.3s;
}
.content-wrap.main .sec-2 .innovation .tit {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: 700;
  color: #1b2a3b;
  transition: all 0.3s;
}
.content-wrap.main .sec-2 .innovation .text {
  position: relative;
  width: 100%;
  z-index: 2;
  white-space: nowrap;
  opacity: 1;
}
.content-wrap.main .sec-2 .innovation .hidden-box {
  position: relative;
  width: 100%;
  z-index: 3;
  margin-top: 20rem;
  opacity: 0;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transition: 0.3s;
}
.content-wrap.main .sec-2 .innovation .hidden-box .tit {
  color: #FFF;
  text-align: left;
  font-size: 7rem;
  font-style: normal;
  font-weight: 700;
  line-height: 105%;
  /* 73.5px */
  margin-bottom: 3rem;
}
.content-wrap.main .sec-2 .innovation .hidden-box p {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 42px */
  text-align: left;
}
.content-wrap.main .sec-2 .innovation .hidden-box.active {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.content-wrap.main .sec-2 .innovation .text.active {
  opacity: 0;
}
.content-wrap.main .sec-2 .innovation .text.active .txt {
  color: #fff;
}
.content-wrap.main .sec-2 .innovation .text.active .tit {
  color: #fff;
}
.content-wrap.main .sec-2 .solution {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 0 0 5rem 0;
}
.content-wrap.main .sec-2 .solution .title-wrap .txt {
  color: #fff;
}
.content-wrap.main .sec-2 .solution .title-wrap .tit {
  color: #fff;
}
.content-wrap.main .sec-2 .solution .title-wrap .more a {
  background: url("/static/img/common/ic_arrow_link_w.svg") no-repeat center/contain;
}
.content-wrap.main .sec-2 .solution .slider-wrap .swiper-slide {
  width: auto;
  height: 45rem;
}
.content-wrap.main .sec-2 .solution .slider-wrap .swiper-slide:not(.swiper-slide-active) .box {
  width: 37rem;
  height: 35rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.3);
}
.content-wrap.main .sec-2 .solution .slider-wrap .swiper-slide:not(.swiper-slide-active) .icon {
  width: 4rem;
  height: 4rem;
}
.content-wrap.main .sec-2 .solution .slider-wrap .box {
  display: block;
  padding: 4rem 4.5rem;
  width: 48rem;
  height: 45rem;
  border: 1px solid #fe7304;
  background: #fe7304;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.content-wrap.main .sec-2 .solution .slider-wrap .icon {
  margin: 0 0 2rem;
  width: 7rem;
  height: 7rem;
  background: url("/static/img/main/img_solution.svg") no-repeat center/contain;
}
.content-wrap.main .sec-2 .solution .slider-wrap .subject {
  margin: 0 0 1rem;
  line-height: 1.3;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}
.content-wrap.main .sec-2 .solution .slider-wrap .desc {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
}
.content-wrap.main .sec-2 .solution .scroll-wrap {
  margin: 5rem 0 0 0;
  width: 100%;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
}
.content-wrap.main .sec-2 .solution .scroll-wrap .swiper-scrollbar-drag {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
}
.content-wrap.main .sec-2 .background {
  position: absolute;
  z-index: 3;
  top: 456px;
  left: 50%;
  width: 350px;
  height: 230px;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.content-wrap.main .sec-2 .background:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
}
.content-wrap.main .sec-2 .background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-attachment: fixed;
}
.content-wrap.main .sec-2 .background.active {
  top: 0;
  width: 100%;
  height: 100%;
}
.content-wrap.main .sec-2 .background.active img {
  width: 100%;
  height: 100%;
}
.content-wrap.main .sec-2 .background.active:before {
  opacity: 0.5;
}
.content-wrap.main .sec-2 .background.active:after {
  opacity: 0.2;
}
.content-wrap.main .sec-3 {
  position: relative;
  padding: 17rem 0;
  overflow: hidden;
}
.content-wrap.main .sec-3 .online {
  display: flex;
}
.content-wrap.main .sec-3 .online .left {
  width: 72rem;
  max-width: 100%;
}
.content-wrap.main .sec-3 .online .right {
  width: 84rem;
  max-width: 100%;
}
.content-wrap.main .sec-3 .online .title {
  margin: 0 0 8rem;
}
.content-wrap.main .sec-3 .online .title .txt {
  margin: 0 0 2rem;
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
  color: #fe7304;
}
.content-wrap.main .sec-3 .online .title .tit {
  line-height: 1.2;
  font-size: 6rem;
  font-weight: 700;
}
.content-wrap.main .sec-3 .online .text {
  margin: 0 0 8rem;
  line-height: 1.4;
  font-size: 3.5rem;
}
.content-wrap.main .sec-3 .online .info dl {
  display: flex;
  align-items: flex-start;
  margin: 0 0 2rem;
}
.content-wrap.main .sec-3 .online .info dl dt {
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap.main .sec-3 .online .info dl dd .t1 {
  line-height: 3.8rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.content-wrap.main .sec-3 .online .info dl dd .t2 {
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 300;
}
.content-wrap.main .sec-3 .online .form {
  border-radius: 0.5rem;
  border: 1px solid #fe7304;
  background: #f8f8f8;
  padding: 8rem;
}
.content-wrap.main .sec-3 .online .input dl {
  display: flex;
  margin: 0 0 1.5rem;
  gap: 1rem;
}
.content-wrap.main .sec-3 .online .input dt {
  width: 18rem;
  line-height: 4.4rem;
  font-size: 1.8rem;
  font-weight: 500;
  flex: 0 0 auto;
}
.content-wrap.main .sec-3 .online .input dd {
  flex: 1;
}
.content-wrap.main .sec-3 .online .input .inp-area {
  display: flex;
  align-items: center;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp {
  width: 100%;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp input {
  padding: 1rem;
  width: 100%;
  height: 4.4rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 1.5rem;
  font-weight: 300;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp textarea {
  padding: 1rem;
  width: 100%;
  height: 12rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  resize: none;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp.w200 {
  width: 20rem;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp.w80 {
  width: 8rem;
}
.content-wrap.main .sec-3 .online .input .inp-area .inp.w90 {
  width: 9rem;
}
.content-wrap.main .sec-3 .online .input .inp-area .txt {
  margin: 0 1rem;
  font-size: 2rem;
  font-weight: 300;
}
.content-wrap.main .sec-3 .online .input .file-area {
  display: flex;
  align-items: center;
}
.content-wrap.main .sec-3 .online .input .file-area .file-txt {
  width: 36.8rem;
  height: 4.4rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  max-width: 100%;
  padding: 1rem;
}
.content-wrap.main .sec-3 .online .input .file-area .file-txt span {
  font-size: 1.5rem;
  line-height: 2.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-word;
  overflow: hidden;
}
.content-wrap.main .sec-3 .online .input .file-area .file-btn {
  flex: 0 0 auto;
}
.content-wrap.main .sec-3 .online .input .file-area .file-btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 12rem;
  height: 4.4rem;
  background: #9B9B9B;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.content-wrap.main .sec-3 .online .input .file-area .file-btn .btn input {
  display: none;
}
.content-wrap.main .sec-3 .online .caution {
  margin: 0 0 3rem;
  line-height: 3.2rem;
  font-size: 1.6rem;
  text-align: right;
  border-bottom: 1px solid #000;
}
.content-wrap.main .sec-3 .online .button {
  margin: 4rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap.main .sec-3 .online .button button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4rem;
  height: 6.4rem;
  border-radius: 6.4rem;
  border: 1px solid #ff893b;
  background: #fe7304;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.content-wrap.main .sec-4 {
  position: relative;
  padding: 15.5rem 0;
  background: #F6F6F6;
  overflow: hidden;
}
.content-wrap.main .sec-4 .inquiry .title {
  text-align: left;
  margin: 0 0 5rem;
}
.content-wrap.main .sec-4 .inquiry .title .txt {
  position: relative;
  z-index: 2;
  margin: 0 0 3rem;
  line-height: 1.4;
  font-size: 3rem;
  font-weight: 700;
  color: #fe7304;
  transition: all 0.3s;
}
.content-wrap.main .sec-4 .inquiry .title .tit {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: 700;
  color: #1b2a3b;
  transition: all 0.3s;
}
.content-wrap.main .sec-4 .inquiry .slider {
  overflow: hidden;
}
.content-wrap.main .sec-4 .inquiry .slider .list li {
  border-bottom: 1px solid #cdd4da;
}
.content-wrap.main .sec-4 .inquiry .slider .list .box {
  display: flex;
  padding: 2rem 0;
  gap: 1rem;
  border: 1px solid transparent;
}
.content-wrap.main .sec-4 .inquiry .slider .list .box:hover {
  background: #fff;
  border: 1px solid #FE7304;
}
.content-wrap.main .sec-4 .inquiry .slider .list .num {
  width: 6rem;
  height: 3.5rem;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con {
  flex: 1;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .subject {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 3.5rem;
  font-size: 2rem;
  font-weight: 600;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .date {
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 2rem;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 1rem;
  gap: 2rem;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .comment .subject {
  font-weight: 300;
}
.content-wrap.main .sec-4 .inquiry .slider .list .con .comment .subject:before {
  content: "";
  display: inline-flex;
  margin: 0 1rem 0 0;
  width: 2rem;
  height: 2.5rem;
  background: url("/static/img/common/ic_arrow_commnet.svg") no-repeat center/contain;
}
.content-wrap.main .sec-4 .inquiry .slider .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0 0;
}
.content-wrap.main .sec-4 .inquiry .slider .swiper-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: #d9d9d9;
  opacity: 1;
}
.content-wrap.main .sec-4 .inquiry .slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #FE7304;
}

.content-wrap.sub .subvisual-wrap {
  position: relative;
  padding: 47rem 0 26rem;
  background: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-wrap.sub .subvisual-wrap .title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  word-break: break-word;
}
.content-wrap.sub .subvisual-wrap .navi {
  position: relative;
  z-index: 2;
  margin: 6rem 0 0 0;
  display: flex;
  gap: 1rem;
}
.content-wrap.sub .subvisual-wrap .navi a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 7rem;
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
}
.content-wrap.sub .subvisual-wrap .navi a.on {
  background: #FE7304;
  border-color: #FE7304;
}
.content-wrap.sub .subvisual-wrap .bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.content-wrap.sub .subvisual-wrap .bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.content-wrap.sub .subvisual-wrap .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.sub .subvisual-wrap .bg.blue:before {
  background: rgba(29, 31, 151, 0.2);
}
.content-wrap.sub .subvisual-wrap.none-bg {
  padding: 24rem 0 0;
  background: #ffffff;
}
.content-wrap.sub .subvisual-wrap.none-bg .title {
  color: #000;
}
.content-wrap.sub .subvisual-wrap.none-bg .navi a {
  border-color: rgba(0, 0, 0, 0.5);
  color: rgba(0, 0, 0, 0.5);
}
.content-wrap.sub .subvisual-wrap.none-bg .navi a.on {
  color: #fff;
}
.content-wrap.sub .title-box {
  margin: 0 0 8rem;
  text-align: left;
}
.content-wrap.sub .title-box .tit {
  margin: 0 0 3rem;
  line-height: 1.4;
  font-size: 5rem;
  font-weight: 700;
}
.content-wrap.sub .title-box .tab {
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content-wrap.sub .title-box .tab button {
  position: relative;
  opacity: 0.2;
  line-height: 1.4;
  font-size: 5rem;
  font-weight: 700;
}
.content-wrap.sub .title-box .tab button.on {
  opacity: 1;
}
.content-wrap.sub .title-box .tab button.on:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: #000;
}
.content-wrap.sub .title-box .txt {
  margin: 0 0 1rem;
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fe7304;
  text-transform: uppercase;
}
.content-wrap.sub .title-box .sub {
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 300;
}
.content-wrap.sub .about-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .about-wrap .flex {
  display: flex;
}
.content-wrap.sub .about-wrap .flex .title-box {
  width: 50rem;
  max-width: 100%;
}
.content-wrap.sub .about-wrap .content {
  flex: 1;
  width: 100%;
}
.content-wrap.sub .about-wrap .content .tit {
  margin: 0 0 6rem;
  line-height: 1.4;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fe7304;
}
.content-wrap.sub .about-wrap .content .txt {
  margin: 0 0 10rem;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 300;
}
.content-wrap.sub .about-wrap .content .txt p {
  margin: 0 0 3rem;
}
.content-wrap.sub .about-wrap .content .txt p:last-child {
  margin-bottom: 0;
}
.content-wrap.sub .about-wrap .content .txt ul {
  margin: 0 0 3rem;
}
.content-wrap.sub .about-wrap .content .txt ul:last-child {
  margin-bottom: 0;
}
.content-wrap.sub .about-wrap .content .txt ul li {
  line-height: 2.2;
  font-size: 2.2rem;
  font-weight: 500;
}
.content-wrap.sub .about-wrap .content .txt strong {
  font-weight: 700;
}
.content-wrap.sub .about-wrap .content .img {
  margin: 0 0 10rem;
}
.content-wrap.sub .about-wrap .content .img img {
  max-width: 100%;
  height: auto;
}
.content-wrap.sub .about-wrap .content .map {
  margin-bottom: 5rem;
}
.content-wrap.sub .about-wrap .content .address ul {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.content-wrap.sub .about-wrap .content .address ul li p {
  display: flex;
  align-items: center;
  color: #000;
  font-family: Pretendard;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  /* 33px */
  text-transform: uppercase;
}
.content-wrap.sub .about-wrap .content .address ul li p span {
  display: block;
}
.content-wrap.sub .about-wrap .content .address ul li p span img {
  display: block;
}
.content-wrap.sub .about-wrap .content .address ul li p span {
  padding-right: 1.5rem;
}
.content-wrap.sub .about-wrap .content .address ul li p.point {
  color: #FE7304;
  font-family: Pretendard;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
  /* 33.6px */
  text-transform: uppercase;
}
.content-wrap.sub .history-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .history-wrap .flex {
  display: flex;
}
.content-wrap.sub .history-wrap .flex .title-box {
  width: 50rem;
  max-width: 100%;
}
.content-wrap.sub .history-wrap .content {
  flex: 1;
  width: 100%;
}
.content-wrap.sub .history-wrap .content .item {
  display: flex;
  gap: 10rem;
  align-items: flex-start;
  position: relative;
}
.content-wrap.sub .history-wrap .content .item .left {
  flex: 1;
  text-align: right;
}
.content-wrap.sub .history-wrap .content .item .left .head {
  margin: 0 0 2rem;
  line-height: 1.4;
  font-size: 2.2rem;
  font-weight: 700;
  color: #F85C2C;
}
.content-wrap.sub .history-wrap .content .item .left .year {
  margin: 0 0 4rem;
  line-height: 1;
  font-size: 6rem;
  font-weight: 600;
  color: #B8A99C;
  font-family: "montserrat", sans-serif;
}
.content-wrap.sub .history-wrap .content .item .left .image {
  width: 480px;
  max-width: 100%;
  margin: 0 0 0 auto;
  background: #fafafa;
}
.content-wrap.sub .history-wrap .content .item .left .image img {
  max-width: 100%;
  height: auto;
}
.content-wrap.sub .history-wrap .content .item .right {
  flex: 1;
  text-align: left;
}
.content-wrap.sub .history-wrap .content .item .right .hist {
  position: relative;
}
.content-wrap.sub .history-wrap .content .item .right .hist:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: -5rem;
  height: 100%;
  border-left: 1px solid rgba(255, 137, 59, 0.3);
}
.content-wrap.sub .history-wrap .content .item .right .hist ul {
  position: relative;
  --line-height: 0%;
}
.content-wrap.sub .history-wrap .content .item .right .hist ul:before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: -5rem;
  height: var(--line-height);
  border-left: 1px solid #FF893B;
}
.content-wrap.sub .history-wrap .content .item .right .hist ul li {
  position: relative;
  padding: 0 0 6rem;
}
.content-wrap.sub .history-wrap .content .item .right .hist ul li:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 1.1rem;
  left: -5.4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background: #FFDCC5;
}
.content-wrap.sub .history-wrap .content .item .right .hist ul li.active:before {
  background: #ff893b;
}
.content-wrap.sub .history-wrap .content .item .right .hist ul li.active:after {
  content: "";
  position: absolute;
}
.content-wrap.sub .history-wrap .content .item .right .year {
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
  color: #3b2013;
  margin: 0 0 1rem;
  font-family: "montserrat", sans-serif;
}
.content-wrap.sub .history-wrap .content .item .right .text {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: 300;
}
.content-wrap.sub .history-wrap .content .item:first-of-type .right .hist {
  margin: 9rem 0 0 0;
}
.content-wrap.sub .history-wrap .content .item:first-of-type .right .hist:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: -1.25rem;
  left: -5.9rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 2.1rem;
  border: 0.6rem solid #FF893B;
  background: #fff;
}
.content-wrap.sub .history-wrap .content .item:first-of-type .right .hist ul {
  padding: 7rem 0 0 0;
}
.content-wrap.sub .history-wrap .content .item:last-of-type .right .hist ul li:last-of-type {
  padding-bottom: 0;
}
.content-wrap.sub .vision-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .vision-wrap .flex {
  display: flex;
}
.content-wrap.sub .vision-wrap .flex .title-box {
  width: 50rem;
  max-width: 100%;
}
.content-wrap.sub .vision-wrap .content {
  flex: 1;
  width: 100%;
}
.content-wrap.sub .vision-wrap .text {
  line-height: 1.4;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fe7304;
  margin: 0 0 6rem;
}
.content-wrap.sub .vision-wrap .step {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.4rem;
}
.content-wrap.sub .vision-wrap .step dl {
  min-width: 24.8rem;
  max-width: 100%;
}
.content-wrap.sub .vision-wrap .step dl dt {
  margin: 0 0 0.6rem;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: 800;
  color: #fe7304;
}
.content-wrap.sub .vision-wrap .step dl dd {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.content-wrap.sub .vision-wrap .step dl dd img {
  max-width: 100%;
  height: auto;
}
.content-wrap.sub .vision-wrap .step ul {
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 300;
  color: #333;
}
.content-wrap.sub .vision-wrap .step li {
  position: relative;
  padding: 0 0 0 1.4rem;
}
.content-wrap.sub .vision-wrap .step li:before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background: #333;
}
.content-wrap.sub .vision-wrap .image {
  margin: 5rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap.sub .vision-wrap .image img {
  max-width: 100%;
  height: auto;
}
.content-wrap.sub .vision-wrap .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.content-wrap.sub .vision-wrap .bg:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.content-wrap.sub .vision-wrap .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.content-wrap.sub .product-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .product-wrap .flex {
  display: flex;
}
.content-wrap.sub .product-wrap .flex .title-box {
  width: 50rem;
  max-width: 100%;
  position: relative;
}
.content-wrap.sub .product-wrap .flex .title-box .stick {
  position: sticky;
  top: 20rem;
}
.content-wrap.sub .product-wrap .tab-box {
  display: none;
}
.content-wrap.sub .product-wrap .tab-box.on {
  display: block;
}
.content-wrap.sub .product-wrap .content {
  flex: 1;
  width: 100%;
}
.content-wrap.sub .product-wrap .item {
  margin: 0 0 10rem;
}
.content-wrap.sub .product-wrap .name {
  margin: 0 0 3rem;
  line-height: 1.4;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fe7304;
}
.content-wrap.sub .product-wrap .name small {
  margin: 0 0 0 1rem;
  font-size: 3rem;
}
.content-wrap.sub .product-wrap .image {
  margin: 0 0 4rem;
  display: flex;
  gap: 3rem;
}
.content-wrap.sub .product-wrap .image .img {
  position: relative;
}
.content-wrap.sub .product-wrap .image .img:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #f6d3bd;
  pointer-events: none;
}
.content-wrap.sub .product-wrap .image .img img {
  width: 100%;
  height: auto;
}
.content-wrap.sub .product-wrap .image.grid {
  margin: 0 0 4rem;
  gap: 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.content-wrap.sub .product-wrap .image.grid .img {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.content-wrap.sub .product-wrap .image.grid .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.sub .product-wrap .desc {
  display: flex;
  flex-direction: column;
}
.content-wrap.sub .product-wrap .desc p {
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 300;
  margin: 0 0 3rem;
}
.content-wrap.sub .product-wrap .desc span {
  position: relative;
  padding: 0 0 0 2rem;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 500;
}
.content-wrap.sub .product-wrap .desc span:before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0.6rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background: #000;
}
.content-wrap.sub .product-wrap .table {
  overflow: hidden;
  overflow-x: auto;
}
.content-wrap.sub .product-wrap .table table {
  min-width: 100%;
}
.content-wrap.sub .product-wrap .table table tr {
  height: 6rem;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  font-size: 2rem;
}
.content-wrap.sub .product-wrap .table table th {
  background: #fafafa;
  vertical-align: middle;
  border-right: 1px solid #e1e1e1;
  font-weight: 600;
}
.content-wrap.sub .product-wrap .table table th:last-child {
  border-right: 0;
}
.content-wrap.sub .product-wrap .table table td {
  background: #ffffff;
  vertical-align: middle;
  border-right: 1px solid #e1e1e1;
  font-weight: 300;
}
.content-wrap.sub .product-wrap .table table td:last-child {
  border-right: 0;
}
.content-wrap.sub .product-wrap .table table thead {
  border-top: 1px solid #000;
}
.content-wrap.sub .product-wrap .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.content-wrap.sub .product-wrap .bg:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}
.content-wrap.sub .product-wrap .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  transform: scaleX(-1);
}
.content-wrap.sub .product2-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .product2-wrap .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.content-wrap.sub .product2-wrap .list ul li {
  width: calc(25% - 1.875rem);
  border: 1px solid #d8d4d4;
  background: #f4f6fa;
  padding: 3rem;
}
.content-wrap.sub .product2-wrap .list .img {
  width: 100%;
  aspect-ratio: 30/24;
}
.content-wrap.sub .product2-wrap .list .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.sub .product2-wrap .list .ico {
  margin: -2rem 0 4rem 0;
  width: 12.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #f5d3bd;
}
.content-wrap.sub .product2-wrap .list .ico img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.sub .product2-wrap .list .tit {
  margin: 0 0 1rem;
  line-height: 1.4;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fe7304;
}
.content-wrap.sub .product2-wrap .list .txt {
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 300;
}
.content-wrap.sub .product3-wrap {
  position: relative;
}
.content-wrap.sub .product3-wrap .sec-1 {
  position: relative;
  padding: 12rem 0 6rem;
}
.content-wrap.sub .product3-wrap .sec-2 {
  position: relative;
  padding: 15rem 0;
}
.content-wrap.sub .product3-wrap .sec-2 .title-box {
  width: 50rem;
  max-width: 100%;
}
.content-wrap.sub .product3-wrap .flex {
  display: flex;
}
.content-wrap.sub .product3-wrap .step {
  margin: 0 0 20rem 0;
}
.content-wrap.sub .product3-wrap .step ul {
  display: flex;
  gap: 5rem;
}
.content-wrap.sub .product3-wrap .step ul li {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 5px solid #ff893b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}
.content-wrap.sub .product3-wrap .step ul li:nth-child(1) {
  border-color: rgba(255, 137, 59, 0.2);
}
.content-wrap.sub .product3-wrap .step ul li:nth-child(2) {
  border-color: rgba(255, 137, 59, 0.4);
}
.content-wrap.sub .product3-wrap .step ul li:nth-child(3) {
  border-color: rgba(255, 137, 59, 0.6);
}
.content-wrap.sub .product3-wrap .step ul li:nth-child(4) {
  border-color: rgba(255, 137, 59, 0.8);
}
.content-wrap.sub .product3-wrap .step ul li:nth-child(5) {
  border-color: rgb(255, 137, 59);
}
.content-wrap.sub .product3-wrap .step ul li .num {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem;
  height: 3.4rem;
  border-radius: 3.4rem;
  background: #fff8f2;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f96e00;
}
.content-wrap.sub .product3-wrap .step ul li .tit {
  margin: 0 0 1rem;
  line-height: 5rem;
  font-size: 2.3rem;
  font-weight: 500;
}
.content-wrap.sub .product3-wrap .step ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.content-wrap.sub .product3-wrap .case {
  position: relative;
}
.content-wrap.sub .product3-wrap .case .img {
  mix-blend-mode: darken;
  pointer-events: none;
}
.content-wrap.sub .product3-wrap .case .label li {
  position: absolute;
}
.content-wrap.sub .product3-wrap .case .label li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 5.8rem;
  height: 1px;
  background: #fe7304;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(1) {
  top: 39rem;
  left: 1rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(2) {
  top: 23rem;
  left: 14rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(3) {
  top: 17rem;
  left: 32rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(4) {
  top: 59rem;
  left: 66rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(4):before {
  left: unset;
  right: 100%;
  width: 6.6rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(4) i {
  left: unset;
  top: -5.3rem;
  right: calc(100% + 19.5rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(4) i:before {
  top: -3.75rem;
  left: 1.6rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(4) i:after {
  width: 15rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(5) {
  top: 52.1rem;
  left: 88rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(5):before {
  left: unset;
  right: 100%;
  width: 6.6rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(5) i {
  left: unset;
  top: -0.9rem;
  right: calc(100% + 8.8rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(5) i:before {
  top: 0.7rem;
  left: -0.1rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(5) i:after {
  width: 2.5rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(6) {
  top: 44.5rem;
  left: 90.5rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(6):before {
  left: unset;
  right: 100%;
  width: 10rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(6) i {
  left: unset;
  top: -2.1rem;
  right: calc(100% + 15.2rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(6) i:before {
  top: -0.9rem;
  left: 0;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(6) i:after {
  width: 6rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(7) {
  top: 38rem;
  left: 121rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(7):before {
  left: unset;
  right: 100%;
  width: 10rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(7) i {
  left: unset;
  top: 2.4rem;
  right: calc(100% + 10.5rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(7) i:before {
  top: -0.9rem;
  left: 0;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(7) i:after {
  display: none;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(8) {
  top: 32rem;
  left: 129rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(8):before {
  left: unset;
  right: 100%;
  width: 5rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(8) i {
  left: unset;
  top: -0.85rem;
  right: calc(100% + 7.1rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(8) i:before {
  top: 0.5rem;
  left: -0.25rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(8) i:after {
  width: 2.5rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(9) {
  top: 8rem;
  left: 135rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(9):before {
  left: unset;
  right: 100%;
  width: 5rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(9) i {
  left: unset;
  top: 1.7rem;
  right: calc(100% + 9.2rem);
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(9) i:before {
  top: 3.5rem;
  left: 0.1rem;
}
.content-wrap.sub .product3-wrap .case .label li:nth-child(9) i:after {
  width: 5rem;
  transform: rotate(-45deg);
}
.content-wrap.sub .product3-wrap .case .label li i {
  position: absolute;
  top: 50%;
  left: calc(100% + 4.8rem);
}
.content-wrap.sub .product3-wrap .case .label li i:before {
  left: 100%;
  content: "";
  position: absolute;
  top: 4rem;
  left: 5rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 1.2rem;
  border: 2px solid #fff;
  background: #fe7304;
}
.content-wrap.sub .product3-wrap .case .label li i:after {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 0.1rem;
  width: 6rem;
  height: 1px;
  background: #fe7304;
  transform: rotate(45deg);
}
.content-wrap.sub .product3-wrap .case .label li span {
  padding: 0 2.5rem;
  min-width: 13rem;
  height: 4.2rem;
  border-radius: 4.2rem;
  border: 1px solid #fe7304;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrap.sub .product3-wrap .certify ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.content-wrap.sub .product3-wrap .certify ul li {
  width: 27rem;
  max-width: 100%;
}
.content-wrap.sub .product3-wrap .certify .img {
  width: 100%;
  height: auto;
  aspect-ratio: 27/39;
}
.content-wrap.sub .product3-wrap .certify .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrap.sub .product3-wrap .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.content-wrap.sub .product3-wrap .bg:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(239, 239, 244, 0.75), rgb(239, 239, 244)), linear-gradient(0deg, rgba(50, 122, 255, 0.03), rgba(50, 122, 255, 0.03)), linear-gradient(180deg, rgba(0, 0, 0, 0) 69.48%, rgba(94, 114, 143, 0.2) 112.36%);
}
.content-wrap.sub .product3-wrap .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  transform: scaleX(-1);
}
.content-wrap.sub .contact-wrap {
  position: relative;
  padding: 12rem 0;
}
.content-wrap.sub .contact-wrap .title-box {
  margin: 0 0 5rem;
}
.content-wrap.sub .contact-wrap .title-box .tit {
  margin: 0 0 1rem 0;
  color: #3B2013;
}
.content-wrap.sub .contact-wrap .title-box .sub {
  color: #3B2013;
}
.content-wrap.sub .contact-wrap .required {
  border-bottom: 1px solid #000;
  line-height: 3.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #3b2013;
  text-align: right;
}
.content-wrap.sub .contact-wrap .form {
  display: flex;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.content-wrap.sub .contact-wrap .form .tit {
  width: 30rem;
  max-width: 100%;
  font-size: 3rem;
  font-weight: 700;
  color: #fe7304;
}
.content-wrap.sub .contact-wrap .form .con {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 8rem;
}
.content-wrap.sub .contact-wrap .form .con dl {
  width: 100%;
  display: flex;
  aling-items: center;
  min-height: 4.4rem;
}
.content-wrap.sub .contact-wrap .form .con dl.w50p {
  width: calc(50% - 4rem);
}
.content-wrap.sub .contact-wrap .form .con dt {
  width: 18rem;
  max-width: 100%;
  line-height: 4.4rem;
  font-size: 2rem;
  font-weight: 500;
}
.content-wrap.sub .contact-wrap .form .con dt.req:after {
  content: "*";
  margin: 0 0 0 1rem;
}
.content-wrap.sub .contact-wrap .form .con dd {
  flex: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
.content-wrap.sub .contact-wrap .form .inp-area {
  display: flex;
  align-items: center;
  width: 100%;
}
.content-wrap.sub .contact-wrap .form .inp-area .img.mr20 {
  margin-right: 2rem;
}
.content-wrap.sub .contact-wrap .form .inp-area .img imng {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content-wrap.sub .contact-wrap .form .inp-area .inp {
  width: 100%;
}
.content-wrap.sub .contact-wrap .form .inp-area .inp input {
  width: 100%;
  height: 4.4rem;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  font-weight: 300;
}
.content-wrap.sub .contact-wrap .form .inp-area .inp textarea {
  width: 100%;
  height: 23rem;
  padding: 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  font-weight: 300;
}
.content-wrap.sub .contact-wrap .form .inp-area .inp.w150 {
  width: 15rem;
  max-width: 100%;
}
.content-wrap.sub .contact-wrap .form .inp-area .txt {
  margin: 0 0.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: #000;
}
.content-wrap.sub .contact-wrap .form .chk-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  height: 3.3rem;
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox input {
  display: none;
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox input ~ i {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox input ~ span {
  font-size: 2rem;
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox input:checked ~ i {
  background: #fe7304;
}
.content-wrap.sub .contact-wrap .form .chk-area .checkbox input:checked ~ i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.4rem 0 0 -0.5rem;
  width: 1rem;
  height: 0.6rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.content-wrap.sub .contact-wrap .form .file-area {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.content-wrap.sub .contact-wrap .form .file-area .txt {
  width: 100%;
  height: 4.4rem;
  line-height: 2.4rem;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  font-weight: 300;
  color: #888;
}
.content-wrap.sub .contact-wrap .form .file-area .btn {
  flex: 0 0 auto;
  width: 16rem;
}
.content-wrap.sub .contact-wrap .form .file-area .btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.4rem;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
  text-align: center;
  background: #9b9b9b;
}
.content-wrap.sub .contact-wrap .form .file-area .btn label input {
  display: none;
}
.content-wrap.sub .contact-wrap .form .agree-area {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
}
.content-wrap.sub .contact-wrap .form .agree-area .txt {
  width: 100%;
  height: 6rem;
  line-height: 2.4rem;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  font-weight: 300;
  color: #888;
  background: #f3f3f3;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk {
  flex: 0 0 auto;
  width: 16rem;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 1rem;
  height: 3.3rem;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input {
  display: none;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input ~ i {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input ~ span {
  font-size: 1.4rem;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input:checked ~ i {
  background: #fe7304;
}
.content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input:checked ~ i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.4rem 0 0 -0.5rem;
  width: 1rem;
  height: 0.6rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.content-wrap.sub .contact-wrap .button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 0 0;
  gap: 2rem;
}
.content-wrap.sub .contact-wrap .button .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 17.5rem;
  height: 6.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 2.2rem;
  font-weight: 500;
}
.content-wrap.sub .contact-wrap .button .btn_01 {
  background: #000;
  color: #fff;
}
.content-wrap.sub .contact-wrap .button .btn_01:hover {
  background: #333;
}
.content-wrap.sub .contact-wrap .button .btn_02 {
  background: #fff;
  color: #000;
}
.content-wrap.sub .contact-wrap .button .btn_02:hover {
  background: #f1f1f1;
}
@media (max-width: 1280px) {
  .content-wrap.sub .inner {
    max-width: 100%;
  }
  .content-wrap.sub .contact-wrap .inner {
    max-width: 100%;
    width: 100%;
  }
  .content-wrap.sub .contact-wrap {
    padding: 10rem 0;
  }
  .content-wrap.sub .contact-wrap .form .tit {
    width: 24rem;
    font-size: 2.6rem;
  }
  .content-wrap.sub .contact-wrap .form .con {
    gap: 1rem 4rem;
  }
  .content-wrap.sub .contact-wrap .form .con dt {
    width: 15rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .content-wrap.sub .inner {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap {
    padding: 8rem 0;
  }
  .content-wrap.sub .contact-wrap .form {
    flex-direction: column;
    gap: 4rem;
  }
  .content-wrap.sub .contact-wrap .form .tit {
    width: 100%;
    font-size: 2.8rem;
  }
  .content-wrap.sub .contact-wrap .form .con {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .con dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .content-wrap.sub .contact-wrap .form .con dl.w50p {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .con dt {
    width: 100%;
    line-height: 1.4;
  }
  .content-wrap.sub .contact-wrap .form .con dd {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .content-wrap.sub .contact-wrap {
    padding: 6rem 0;
  }
  .content-wrap.sub .contact-wrap .title-box {
    margin-bottom: 3rem;
  }
  .content-wrap.sub .contact-wrap .title-box .tit {
    font-size: 2.6rem;
  }
  .content-wrap.sub .contact-wrap .title-box .sub {
    font-size: 1.4rem;
  }
  .content-wrap.sub .contact-wrap .required {
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
  .content-wrap.sub .contact-wrap .form {
    padding: 4rem 0;
  }
  .content-wrap.sub .contact-wrap .form .tit {
    font-size: 2.4rem;
  }
  .content-wrap.sub .contact-wrap .form .con {
    gap: 2rem;
  }
  .content-wrap.sub .contact-wrap .form .con dt {
    font-size: 1.6rem;
  }
  .content-wrap.sub .contact-wrap .form .con dd {
    gap: 1rem;
  }
  .content-wrap.sub .contact-wrap .form .inp-area {
    flex-wrap: wrap;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp input,
  .content-wrap.sub .contact-wrap .form .inp-area .inp textarea {
    font-size: 1.4rem;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp textarea {
    height: 18rem;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp.w150 {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .chk-area {
    gap: 1rem 2rem;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox span {
    font-size: 1.6rem;
  }
  .content-wrap.sub .contact-wrap .form .file-area {
    flex-direction: column;
  }
  .content-wrap.sub .contact-wrap .form .file-area .btn {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .agree-area {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk {
    width: auto;
  }
  .content-wrap.sub .contact-wrap .button {
    flex-direction: column;
    gap: 1.2rem;
  }
  .content-wrap.sub .contact-wrap .button .btn {
    width: 100%;
    min-width: auto;
    font-size: 1.8rem;
    height: 5.4rem;
  }
  .content-wrap.sub .about-wrap .content .map {
    width: 100%;
    margin-bottom: 5rem;
  }
  .content-wrap.sub .about-wrap .content .address ul {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .content-wrap.sub .about-wrap .content .address ul li p {
    display: flex;
    align-items: center;
    color: #000;
    font-family: Pretendard;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    /* 33px */
    text-transform: uppercase;
  }
  .content-wrap.sub .about-wrap .content .address ul li p span {
    display: block;
  }
  .content-wrap.sub .about-wrap .content .address ul li p span img {
    display: block;
  }
  .content-wrap.sub .about-wrap .content .address ul li p span {
    padding-right: 1.5rem;
  }
  .content-wrap.sub .about-wrap .content .address ul li p.point {
    color: #FE7304;
    font-family: Pretendard;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.4;
    /* 33.6px */
    text-transform: uppercase;
  }
}
.content-wrap.sub .modal-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3rem;
  width: 76rem;
  max-width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 100;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.content-wrap.sub .modal-wrap .head {
  position: relative;
  margin: 0 0 4rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content-wrap.sub .modal-wrap .head .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: url("/static/img/common/ic_close.svg") no-repeat center;
  cursor: pointer;
}
.content-wrap.sub .modal-wrap .title {
  text-align: center;
  margin: 4rem 0;
  line-height: 3.5rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.content-wrap.sub .modal-wrap .button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.content-wrap.sub .modal-wrap .button button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 14rem;
  height: 5.4rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  font-weight: 500;
}
.content-wrap.sub .modal-wrap .button button:hover {
  background: #f1f1f1;
}
.content-wrap.sub .modal-wrap.active {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 85.375rem) {
  .header-wrap {
    height: 5rem;
  }
  .header-wrap:before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #113e9a;
    transition: all 0.3s;
  }
  .header-wrap.active {
    height: 445px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  .header-wrap.active:before {
    width: 100%;
  }
  .header-wrap.active .header .logo > a {
    background: url("/static/img/common/logo.svg") no-repeat center/contain;
  }
  .header-wrap.active .header .gnb > li > a {
    color: #000;
  }
  .header-wrap.active .header .lnb {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .header-wrap.active .header .language .btn button:after {
    background: #000;
    opacity: 0.5;
  }
  .header-wrap.active .header .language .btn button span {
    color: #000;
  }
  .header-wrap.active .header .allmenu button i {
    background: url("/static/img/common/ic_allmenu.svg") no-repeat center/contain;
  }
  .header-wrap.fixed {
    background: #ffffff;
  }
  .header-wrap.fixed .header .logo > a {
    background: url("/static/img/common/logo.svg") no-repeat center/contain;
  }
  .header-wrap.fixed .header .gnb > li > a {
    color: #fff;
  }
  .header-wrap.fixed .header .language .btn button:after {
    background: #000;
    opacity: 0.5;
  }
  .header-wrap.fixed .header .language .btn button span {
    color: #000;
  }
  .header-wrap.fixed .header .allmenu button i {
    background: url("/static/img/common/ic_allmenu.svg") no-repeat center/contain;
  }
  .header-wrap.menu-open {
    background: #ffffff;
  }
  .header-wrap.menu-open .header .logo > a {
    background: url("/static/img/common/logo.svg") no-repeat center/contain;
  }
  .header-wrap.menu-open .header .gnb > li > a {
    color: #fff;
  }
  .header-wrap.menu-open .header .language .ico {
    background: url("/static/img/common/ic_globe.svg") no-repeat center/contain;
  }
  .header-wrap.menu-open .header .language .btn button:after {
    background: #000;
    opacity: 0.5;
  }
  .header-wrap.menu-open .header .language .btn button span {
    color: #000;
  }
  .header-wrap.menu-open .header .allmenu button i {
    background: url("/static/img/common/ic_allmenu.svg") no-repeat center/contain;
  }
  .header {
    padding: 0 2rem;
  }
  .header .inner {
    min-height: 4.8rem;
  }
  .header .logo {
    width: 12rem;
  }
  .header .logo > a {
    display: block;
    background: url("/static/img/common/logo_w.svg") no-repeat center/contain;
    width: 100%;
    height: 100%;
  }
  .header .nav {
    position: fixed;
    z-index: 4;
    top: 5rem;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    background: rgba(237, 109, 10, 0.5);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
  }
  .header .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .header .gnb {
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 2rem;
    width: 100%;
  }
  .header .gnb > li {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
    height: auto;
  }
  .header .gnb > li > a {
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    gap: 0.6rem;
    transition: all 0.3s;
    justify-content: flex-start;
  }
  .header .gnb > li.active .lnb {
    display: block;
  }
  .header .lnb {
    position: static;
    transform: unset !important;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0;
    display: none;
    pointer-events: all;
  }
  .header .lnb > li > a {
    justify-content: flex-start;
    line-height: 3rem;
    font-size: 1.4rem;
    color: #fff;
    text-align: left;
  }
  .header .lnb > li > a:hover {
    font-weight: 700;
    color: #fff;
  }
  .header .language {
    position: absolute;
    top: 12px;
    right: 60px;
    z-index: 5;
  }
  .header .language .ico {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background: url("/static/img/common/ic_globe_w.svg") no-repeat center/contain;
  }
  .header .language .btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .language .btn button {
    display: flex;
    align-items: center;
  }
  .header .language .btn button:after {
    content: "";
    margin: 0 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background: #fff;
    opacity: 0.5;
  }
  .header .language .btn button:last-of-type:after {
    display: none;
  }
  .header .language .btn button span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    opacity: 0.5;
  }
  .header .language .btn button.on span {
    opacity: 1;
  }
  .header .allmenu {
    position: absolute;
    top: 12px;
    right: 20px;
    display: block;
    z-index: 5;
  }
  .header .allmenu button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .header .allmenu button i {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background: url("/static/img/common/ic_allmenu_w.svg") no-repeat center/contain;
  }
  .footer .inner {
    max-width: 100%;
  }
  .footer {
    padding: 4rem 2rem;
  }
  .footer .upper {
    margin: 0 0 2rem;
    flex-wrap: wrap;
    gap: 2rem 0;
  }
  .footer .upper .logo .txt {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .footer .upper .logo .tit {
    line-height: 1.5;
    font-size: 3.5rem;
  }
  .footer .upper .link {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
  .footer .upper .link a {
    font-size: 1.4rem;
  }
  .footer .upper .link a:after {
    content: "";
    width: 1px;
    height: 1.3rem;
    margin: 0 2rem;
    background: #1e1e1e;
    opacity: 0.3;
  }
  .footer .upper .link a:last-of-type:after {
    display: none;
  }
  .footer .main .flex {
    flex-wrap: Wrap;
    gap: 2rem;
    margin: 0 0 2rem;
  }
  .footer .main .flex .box {
    flex: auto;
  }
  .footer .main .flex .tit {
    margin: 0 0 1rem;
    line-height: 3.3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fe7304;
  }
  .footer .main .flex .con dl {
    display: flex;
    gap: 1rem;
    line-height: 1.6;
    font-size: 1.5rem;
    color: #6c6c6c;
  }
  .footer .main .flex .con dt {
    width: 6.5rem;
    font-weight: 700;
  }
  .footer .main .flex .img {
    flex-wrap: wrap;
  }
  .footer .main .cite {
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1e1e1e;
  }
  .footer .sidebar {
    top: unset;
    bottom: 1.5rem;
    right: 2rem;
    transform: unset;
  }
  .footer .sidebar .con {
    padding: 2.5rem 1rem;
    width: 6rem;
    border-radius: 5.5rem;
  }
  .footer .sidebar .con a img {
    width: 3rem;
    height: 3rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer .sidebar .con a span {
    display: none;
  }
  .footer .sidebar .btn .gotop {
    width: 6rem;
    height: 6rem;
  }
  .footer .sidebar .btn .gotop:before {
    width: 2.4rem;
    height: 2.4rem;
  }
  .footer .sidebar.active {
    top: unset;
    bottom: 2rem;
  }
  .content-wrap.main .section {
    overflow: hidden;
  }
  .content-wrap.main .title-wrap {
    position: relative;
    margin: 0 0 8rem 0;
  }
  .content-wrap.main .title-wrap .txt {
    margin: 0 0 1rem;
    font-size: 1.8rem;
  }
  .content-wrap.main .title-wrap .tit {
    font-size: 2.5rem;
  }
  .content-wrap.main .title-wrap .tit br {
    display: none;
  }
  .content-wrap.main .title-wrap .more {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0 0;
  }
  .content-wrap.main .title-wrap .more a {
    display: block;
    width: 6rem;
    height: 2.2rem;
    background: url("/static/img/common/ic_arrow_link.svg") no-repeat center/contain;
  }
  .content-wrap.main .sec-0 .solution .inner {
    max-width: 100%;
  }
  .content-wrap.main .sec-1 {
    position: relative;
    overflow: hidden;
  }
  .content-wrap.main .sec-1 .slider-wrap {
    height: 54rem;
  }
  .content-wrap.main .sec-1 .slider-wrap .txt-wrap {
    bottom: 10rem;
    padding: 2rem;
  }
  .content-wrap.main .sec-1 .slider-wrap .txt-wrap .t1 {
    margin: 0 0 2rem 0;
    font-size: 3.6rem;
  }
  .content-wrap.main .sec-1 .slider-wrap .txt-wrap .t2 {
    font-size: 1.8rem;
  }
  .content-wrap.main .sec-1 .pager-wrap {
    padding: 0 2rem;
  }
  .content-wrap.main .sec-1 .pager-wrap .pager-btn {
    flex-direction: column;
    font-size: 1.4rem;
    align-items: flex-start;
    text-align: left;
  }
  .content-wrap.main .sec-1 .pager-wrap .pager-btn .tit {
    gap: 1rem;
  }
  .content-wrap.main .sec-1 .pager-wrap .pager-btn .tit:after {
    width: 1rem;
  }
  .content-wrap.main .sec-1 .pager-wrap .pager-btn.active {
    opacity: 1;
  }
  .content-wrap.main .sec-2 {
    position: relative;
    overflow: hidden;
  }
  .content-wrap.main .sec-2 .innovation {
    padding: 6rem 2rem;
    height: 56rem;
  }
  .content-wrap.main .sec-2 .innovation .inner {
    max-width: 100%;
  }
  .content-wrap.main .sec-2 .innovation .txt {
    font-size: 1.6rem;
  }
  .content-wrap.main .sec-2 .innovation .tit {
    font-size: 3rem;
  }
  .content-wrap.main .sec-2 .innovation .hidden-box {
    margin-top: 13rem;
  }
  .content-wrap.main .sec-2 .innovation .hidden-box .tit {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .content-wrap.main .sec-2 .innovation .hidden-box p {
    font-size: 2.5rem;
  }
  .content-wrap.main .sec-3 {
    padding: 6rem 2rem;
  }
  .content-wrap.main .sec-3 .online {
    flex-wrap: wrap;
  }
  .content-wrap.main .sec-3 .online .left {
    width: 100%;
  }
  .content-wrap.main .sec-3 .online .right {
    width: 100%;
  }
  .content-wrap.main .sec-3 .online .title {
    margin: 0 0 4rem;
  }
  .content-wrap.main .sec-3 .online .title .txt {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
  .content-wrap.main .sec-3 .online .title .tit {
    font-size: 3.2rem;
  }
  .content-wrap.main .sec-3 .online .text {
    margin: 0 0 4rem;
    font-size: 2rem;
  }
  .content-wrap.main .sec-3 .online .info dl {
    display: flex;
    align-items: flex-start;
    margin: 0 0 2rem;
  }
  .content-wrap.main .sec-3 .online .info dl dt {
    width: 3rem;
    height: 3rem;
  }
  .content-wrap.main .sec-3 .online .info dl dd .t1 {
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .info dl dd .t2 {
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .form {
    padding: 2rem;
  }
  .content-wrap.main .sec-3 .online .input dl {
    flex-wrap: wrap;
  }
  .content-wrap.main .sec-3 .online .input dt {
    width: 100%;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .input dd {
    flex: 1;
  }
  .content-wrap.main .sec-3 .online .input .inp-area {
    display: flex;
    align-items: center;
  }
  .content-wrap.main .sec-3 .online .input .inp-area .inp {
    width: 100% !important;
  }
  .content-wrap.main .sec-3 .online .input .inp-area .inp input {
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .input .inp-area .inp textarea {
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .input .inp-area .txt {
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .input .file-area {
    gap: 1rem;
  }
  .content-wrap.main .sec-3 .online .input .file-area .file-txt {
    width: 100%;
  }
  .content-wrap.main .sec-3 .online .input .file-area .file-txt span {
    font-size: 1.5rem;
  }
  .content-wrap.main .sec-3 .online .input .file-area .file-btn {
    flex: 0 0 auto;
  }
  .content-wrap.main .sec-3 .online .input .file-area .file-btn .btn {
    width: 8rem;
  }
  .content-wrap.main .sec-3 .online .caution {
    margin: 0 0 2rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .content-wrap.main .sec-3 .online .button {
    margin: 3rem 0 0 0;
  }
  .content-wrap.main .sec-3 .online .button button {
    padding: 0 2rem;
    height: 5.4rem;
    font-size: 1.6rem;
  }
  .content-wrap.main .sec-4 {
    padding: 6rem 2rem;
  }
  .content-wrap.main .sec-4 .inquiry .title {
    text-align: left;
    margin: 0 0 5rem;
  }
  .content-wrap.main .sec-4 .inquiry .title .txt {
    margin: 0 0 1rem;
    line-height: 1;
    font-size: 1.6rem;
  }
  .content-wrap.main .sec-4 .inquiry .title .tit {
    font-size: 3.2rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider {
    overflow: hidden;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list li {
    border-bottom: 1px solid #cdd4da;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .box {
    padding: 1rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .box:hover {
    background: #fff;
    border: 1px solid #FE7304;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .num {
    width: 2rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con {
    flex: 1;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .subject {
    line-height: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .date {
    font-size: 1.25rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 1rem;
    gap: 2rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .comment .subject {
    font-weight: 300;
  }
  .content-wrap.main .sec-4 .inquiry .slider .list .con .comment .subject:before {
    width: 1.5rem;
    height: 2rem;
  }
  .content-wrap.main .sec-4 .inquiry .slider .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 0 0;
  }
  .content-wrap.main .sec-4 .inquiry .slider .swiper-pagination .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    background: #d9d9d9;
    opacity: 1;
  }
  .content-wrap.main .sec-4 .inquiry .slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #FE7304;
  }
  .content-wrap.sub .subvisual-wrap {
    padding: 20rem 2rem 4rem;
  }
  .content-wrap.sub .subvisual-wrap .title {
    font-size: 4rem;
  }
  .content-wrap.sub .subvisual-wrap .navi {
    margin: 4rem 0 0;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .content-wrap.sub .subvisual-wrap .navi a {
    padding: 0 3rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  .content-wrap.sub .subvisual-wrap .navi a.on {
    background: #FE7304;
    border-color: #FE7304;
  }
  .content-wrap.sub .subvisual-wrap.none-bg {
    padding: 16rem 2rem 0;
    background: #ffffff;
  }
  .content-wrap.sub .subvisual-wrap.none-bg .navi a {
    border-color: rgba(0, 0, 0, 0.5);
    color: rgba(0, 0, 0, 0.5);
  }
  .content-wrap.sub .subvisual-wrap.none-bg .navi a.on {
    color: #fff;
  }
  .content-wrap.sub .title-box {
    margin: 0 0 4rem;
  }
  .content-wrap.sub .title-box .tit {
    margin: 0 0 2rem;
    font-size: 2.8rem;
  }
  .content-wrap.sub .title-box .tab {
    margin: 0 0 2rem;
    flex-direction: row;
    gap: 0 2rem;
  }
  .content-wrap.sub .title-box .tab button {
    font-size: 2.8rem;
  }
  .content-wrap.sub .title-box .txt {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
  .content-wrap.sub .title-box .sub {
    font-size: 1.4rem;
  }
  .content-wrap.sub .about-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .about-wrap .flex {
    flex-direction: column;
  }
  .content-wrap.sub .about-wrap .flex .title-box {
    width: 100%;
  }
  .content-wrap.sub .about-wrap .flex .title-box .tit {
    margin-bottom: 0;
  }
  .content-wrap.sub .about-wrap .content .tit {
    margin: 0 0 3rem;
    font-size: 2.2rem;
  }
  .content-wrap.sub .about-wrap .content .txt {
    margin: 0 0 4rem;
    font-size: 1.6rem;
  }
  .content-wrap.sub .about-wrap .content .txt p {
    margin: 0 0 1rem;
  }
  .content-wrap.sub .about-wrap .content .txt p:last-child {
    margin-bottom: 0;
  }
  .content-wrap.sub .about-wrap .content .txt ul {
    margin: 0 0 3rem;
  }
  .content-wrap.sub .about-wrap .content .txt ul:last-child {
    margin-bottom: 0;
  }
  .content-wrap.sub .about-wrap .content .txt ul li {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .content-wrap.sub .about-wrap .content .txt strong {
    font-weight: 700;
  }
  .content-wrap.sub .about-wrap .content .img {
    margin: 0 0 4rem;
  }
  .content-wrap.sub .about-wrap .content .img img {
    max-width: 100%;
    height: auto;
  }
  .content-wrap.sub .history-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .history-wrap .flex {
    flex-direction: column;
  }
  .content-wrap.sub .history-wrap .flex .title-box {
    margin: 0;
    width: 100%;
  }
  .content-wrap.sub .history-wrap .content {
    flex: 1;
    width: 100%;
  }
  .content-wrap.sub .history-wrap .content .item {
    gap: 3rem;
  }
  .content-wrap.sub .history-wrap .content .item .left {
    flex: 1;
    text-align: right;
    position: sticky;
    top: 7.5rem;
  }
  .content-wrap.sub .history-wrap .content .item .left .head {
    margin: 0 0 1rem;
    font-size: 1.6rem;
  }
  .content-wrap.sub .history-wrap .content .item .left .year {
    margin: 0 0 2rem;
    font-size: 2.8rem;
  }
  .content-wrap.sub .history-wrap .content .item .left .image {
    width: 100%;
  }
  .content-wrap.sub .history-wrap .content .item .left .image img {
    max-width: 100%;
    height: auto;
  }
  .content-wrap.sub .history-wrap .content .item .right {
    flex: 1;
    text-align: left;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist {
    position: relative;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist:after {
    left: -1.5rem;
    height: 100%;
    border-left: 1px solid rgba(255, 137, 59, 0.3);
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul {
    position: relative;
    --line-height: 0%;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul:before {
    left: -1.5rem;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul li {
    position: relative;
    padding: 0 0 6rem;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul li:before {
    left: -1.9rem;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    background: #FFDCC5;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul li.active:before {
    background: #ff893b;
  }
  .content-wrap.sub .history-wrap .content .item .right .hist ul li.active:after {
    content: "";
    position: absolute;
  }
  .content-wrap.sub .history-wrap .content .item .right .year {
    font-size: 2rem;
    margin: 0 0 1.6rem;
  }
  .content-wrap.sub .history-wrap .content .item .right .text {
    font-size: 1.4rem;
  }
  .content-wrap.sub .history-wrap .content .item:first-of-type .right .hist {
    margin: 5rem 0 0 0;
  }
  .content-wrap.sub .history-wrap .content .item:first-of-type .right .hist:before {
    left: -2.3rem;
    width: 1.6rem;
    height: 1.6rem;
    border: 0.4rem solid #FF893B;
  }
  .content-wrap.sub .history-wrap .content .item:first-of-type .right .hist ul {
    padding: 4rem 0 0 0;
  }
  .content-wrap.sub .history-wrap .content .item:last-of-type .right .hist ul li:last-of-type {
    padding-bottom: 0;
  }
  .content-wrap.sub .vision-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .vision-wrap .flex {
    flex-direction: column;
  }
  .content-wrap.sub .vision-wrap .flex .title-box {
    width: 100%;
  }
  .content-wrap.sub .vision-wrap .flex .title-box .tit {
    margin: 0;
  }
  .content-wrap.sub .vision-wrap .text {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    word-break: keep-all;
  }
  .content-wrap.sub .vision-wrap .text br {
    display: none;
  }
  .content-wrap.sub .vision-wrap .step {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 1.4rem;
  }
  .content-wrap.sub .vision-wrap .step dl {
    min-width: 24.8rem;
    max-width: 100%;
  }
  .content-wrap.sub .vision-wrap .step dl dt {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
  }
  .content-wrap.sub .vision-wrap .step dl dd {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .content-wrap.sub .vision-wrap .step dl dd img {
    max-width: 100%;
    height: auto;
  }
  .content-wrap.sub .vision-wrap .step ul {
    line-height: 1.4;
    font-size: 1.4rem;
  }
  .content-wrap.sub .vision-wrap .step li:before {
    top: 0.75rem;
    width: 0.2rem;
    height: 0.2rem;
  }
  .content-wrap.sub .vision-wrap .image {
    margin: 3.5rem 0 0 0;
  }
  .content-wrap.sub .product-wrap .inner {
    max-width: 100%;
  }
  .content-wrap.sub .product-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .product-wrap .flex {
    flex-direction: column;
  }
  .content-wrap.sub .product-wrap .flex .title-box {
    width: 100%;
  }
  .content-wrap.sub .product-wrap .flex .title-box .tab {
    margin: 0;
  }
  .content-wrap.sub .product-wrap .content {
    flex: 1;
    width: 100%;
  }
  .content-wrap.sub .product-wrap .item {
    margin: 0 0 4rem;
  }
  .content-wrap.sub .product-wrap .name {
    margin: 0 0 2rem;
    font-size: 2rem;
  }
  .content-wrap.sub .product-wrap .name small {
    font-size: 1.6rem;
  }
  .content-wrap.sub .product-wrap .image {
    margin: 0 0 2rem;
    gap: 1rem;
  }
  .content-wrap.sub .product-wrap .image .img {
    position: relative;
  }
  .content-wrap.sub .product-wrap .image .img:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #f6d3bd;
    pointer-events: none;
  }
  .content-wrap.sub .product-wrap .image .img img {
    width: 100%;
    height: auto;
  }
  .content-wrap.sub .product-wrap .image.grid {
    margin: 0 0 4rem;
    gap: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
  }
  .content-wrap.sub .product-wrap .image.grid .img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
  }
  .content-wrap.sub .product-wrap .image.grid .img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-wrap.sub .product-wrap .desc {
    display: flex;
    flex-direction: column;
  }
  .content-wrap.sub .product-wrap .desc p {
    font-size: 1.4rem;
  }
  .content-wrap.sub .product-wrap .desc span {
    font-size: 1.4rem;
  }
  .content-wrap.sub .product-wrap .table {
    overflow: hidden;
    overflow-x: auto;
  }
  .content-wrap.sub .product-wrap .table table {
    min-width: 100%;
  }
  .content-wrap.sub .product-wrap .table table tr {
    height: 5rem;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .content-wrap.sub .product-wrap .table table th {
    padding: 0 2rem;
  }
  .content-wrap.sub .product-wrap .table table td {
    padding: 0 2rem;
  }
  .content-wrap.sub .product-wrap .table table thead {
    border-top: 1px solid #000;
  }
  .content-wrap.sub .product-wrap .bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .content-wrap.sub .product-wrap .bg:before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
  }
  .content-wrap.sub .product-wrap .bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.2;
    transform: scaleX(-1);
  }
  .content-wrap.sub .product2-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .product2-wrap .inner {
    max-width: 100%;
  }
  .content-wrap.sub .product2-wrap .list ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .content-wrap.sub .product2-wrap .list ul li {
    padding: 1.5rem;
    width: calc(50% - 0.66em);
  }
  .content-wrap.sub .product2-wrap .list .img {
    width: 100%;
    aspect-ratio: 30/24;
  }
  .content-wrap.sub .product2-wrap .list .img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-wrap.sub .product2-wrap .list .ico {
    margin: -2rem 0 2rem 0;
    width: 8rem;
  }
  .content-wrap.sub .product2-wrap .list .ico img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-wrap.sub .product2-wrap .list .tit {
    font-size: 2rem;
  }
  .content-wrap.sub .product2-wrap .list .txt {
    font-size: 1.6rem;
  }
  .content-wrap.sub .product3-wrap {
    position: relative;
  }
  .content-wrap.sub .product3-wrap .sec-1 {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .product3-wrap .sec-2 {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .product3-wrap .sec-2 .title-box {
    width: 100%;
  }
  .content-wrap.sub .product3-wrap .flex {
    flex-direction: column;
  }
  .content-wrap.sub .product3-wrap .step {
    margin: 0 auto 6rem;
    max-width: 50rem;
  }
  .content-wrap.sub .product3-wrap .step ul {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .content-wrap.sub .product3-wrap .step ul li {
    flex: 0 0 auto;
    width: calc(50% - 1.66rem);
  }
  .content-wrap.sub .product3-wrap .step ul li:nth-child(1) {
    border-color: rgba(255, 137, 59, 0.2);
  }
  .content-wrap.sub .product3-wrap .step ul li:nth-child(2) {
    border-color: rgba(255, 137, 59, 0.4);
  }
  .content-wrap.sub .product3-wrap .step ul li:nth-child(3) {
    border-color: rgba(255, 137, 59, 0.6);
  }
  .content-wrap.sub .product3-wrap .step ul li:nth-child(4) {
    border-color: rgba(255, 137, 59, 0.8);
  }
  .content-wrap.sub .product3-wrap .step ul li:nth-child(5) {
    border-color: rgb(255, 137, 59);
  }
  .content-wrap.sub .product3-wrap .step ul li .num {
    padding: 0 1.2rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .content-wrap.sub .product3-wrap .step ul li .tit {
    line-height: 4rem;
    font-size: 2rem;
  }
  .content-wrap.sub .product3-wrap .step ul li .img {
    max-height: 50px;
  }
  .content-wrap.sub .product3-wrap .case {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
  }
  .content-wrap.sub .product3-wrap .case .img {
    mix-blend-mode: darken;
    pointer-events: none;
  }
  .content-wrap.sub .product3-wrap .case .label li {
    position: absolute;
  }
  .content-wrap.sub .product3-wrap .case .label li:before {
    width: 0.1rem !important;
    height: 1.2rem;
    top: -1.2rem;
    left: 50% !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(1) {
    top: 78%;
    left: 8%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(2) {
    top: 47%;
    left: 16%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(3) {
    top: 10%;
    left: 26%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(3):before {
    top: unset;
    bottom: -1.2rem;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(3) i {
    top: unset !important;
    transform: rotate(90deg);
    bottom: -2.7rem !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(4) {
    top: 77%;
    left: 27%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(4) i {
    transform: scaleX(-1);
    left: calc(50% - 1.4rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(5) {
    top: 74%;
    left: 56%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(5) i {
    transform: scaleX(-1);
    left: calc(50% - 1.4rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(6) {
    top: 37%;
    left: 44%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(6):before {
    top: unset;
    bottom: -1.2rem;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(6) i {
    top: unset !important;
    transform: rotate(180deg);
    bottom: -2.7rem !important;
    left: calc(50% - 1.4rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(7) {
    top: 57%;
    left: 67%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(7) i {
    width: auto;
    height: auto;
    top: -1.6rem !important;
    left: calc(50% + 0.31rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(8) {
    top: 21%;
    left: 76%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(8):before {
    top: unset;
    bottom: -1.2rem;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(8) i {
    top: unset !important;
    transform: rotate(180deg);
    bottom: -2.7rem !important;
    left: calc(50% - 1.4rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(9) {
    top: 0%;
    left: 85%;
    top: -5%;
    left: 77%;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(9):before {
    top: unset;
    bottom: -1.2rem;
  }
  .content-wrap.sub .product3-wrap .case .label li:nth-child(9) i {
    top: unset !important;
    transform: rotate(180deg);
    bottom: -2.7rem !important;
    left: calc(50% - 1.4rem) !important;
  }
  .content-wrap.sub .product3-wrap .case .label li i {
    position: absolute;
    top: -2.7rem !important;
    left: 50% !important;
    right: unset !important;
    width: 1.6rem;
    height: 1.6rem;
  }
  .content-wrap.sub .product3-wrap .case .label li i:before {
    left: 100%;
    top: 0 !important;
    left: calc(100% - 0.6rem) !important;
    width: 0.6rem !important;
    height: 0.6rem !important;
    border: 1px solid #fff !important;
  }
  .content-wrap.sub .product3-wrap .case .label li i:after {
    top: 0.8rem !important;
    left: -0.22rem !important;
    width: 2rem !important;
    height: 1px !important;
    transform: rotate(-45deg);
  }
  .content-wrap.sub .product3-wrap .case .label li span {
    padding: 0 1rem;
    min-width: 6.6rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .content-wrap.sub .product3-wrap .certify ul {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .content-wrap.sub .product3-wrap .certify ul li {
    width: calc(33.3333333333% - 0.5rem);
  }
  .content-wrap.sub .product3-wrap .certify .img {
    width: 100%;
    height: auto;
    aspect-ratio: 27/39;
  }
  .content-wrap.sub .product3-wrap .certify .img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .content-wrap.sub .product3-wrap .bg {
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .content-wrap.sub .product3-wrap .bg:before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(0deg, rgba(239, 239, 244, 0.75), rgb(239, 239, 244)), linear-gradient(0deg, rgba(50, 122, 255, 0.03), rgba(50, 122, 255, 0.03)), linear-gradient(180deg, rgba(0, 0, 0, 0) 69.48%, rgba(94, 114, 143, 0.2) 112.36%);
  }
  .content-wrap.sub .product3-wrap .bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.2;
    transform: scaleX(-1);
  }
  .content-wrap.sub .contact-wrap {
    padding: 6rem 2rem;
  }
  .content-wrap.sub .contact-wrap .title-box {
    margin: 0 0 4rem;
  }
  .content-wrap.sub .contact-wrap .required {
    font-size: 1.4rem;
  }
  .content-wrap.sub .contact-wrap .form {
    flex-direction: column;
    padding: 2rem 0;
  }
  .content-wrap.sub .contact-wrap .form .tit {
    width: 100%;
    margin: 0 0 2rem;
    font-size: 2rem;
  }
  .content-wrap.sub .contact-wrap .form .con {
    gap: 1rem 0;
  }
  .content-wrap.sub .contact-wrap .form .con dl {
    width: 100% !important;
  }
  .content-wrap.sub .contact-wrap .form .con dt {
    width: 10rem;
    font-size: 1.4rem;
  }
  .content-wrap.sub .contact-wrap .form .con dt.req:after {
    margin: 0 0 0 0.5rem;
  }
  .content-wrap.sub .contact-wrap .form .con dd {
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }
  .content-wrap.sub .contact-wrap .form .inp-area {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .img.mr20 {
    margin-right: 2rem;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .img imng {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp {
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp input {
    width: 100%;
    height: 4.4rem;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp textarea {
    width: 100%;
    height: 23rem;
    padding: 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .inp.w150 {
    width: 15rem;
    max-width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .inp-area .txt {
    margin: 0 0.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #000;
  }
  .content-wrap.sub .contact-wrap .form .chk-area {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 1rem;
    height: 3.3rem;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox input {
    display: none;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox input ~ i {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox input ~ span {
    font-size: 2rem;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox input:checked ~ i {
    background: #fe7304;
  }
  .content-wrap.sub .contact-wrap .form .chk-area .checkbox input:checked ~ i:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.4rem 0 0 -0.5rem;
    width: 1rem;
    height: 0.6rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }
  .content-wrap.sub .contact-wrap .form .file-area {
    display: flex;
    gap: 1rem;
    width: 100%;
  }
  .content-wrap.sub .contact-wrap .form .file-area .txt {
    width: 100%;
    height: 4.4rem;
    line-height: 2.4rem;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    color: #888;
  }
  .content-wrap.sub .contact-wrap .form .file-area .btn {
    flex: 0 0 auto;
    width: 16rem;
  }
  .content-wrap.sub .contact-wrap .form .file-area .btn label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.4rem;
    padding: 1rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    text-align: center;
    background: #9b9b9b;
  }
  .content-wrap.sub .contact-wrap .form .file-area .btn label input {
    display: none;
  }
  .content-wrap.sub .contact-wrap .form .agree-area {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .txt {
    width: 100%;
    height: 6rem;
    line-height: 2.4rem;
    padding: 1rem 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    color: #888;
    background: #f3f3f3;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk {
    flex: 0 0 auto;
    width: 16rem;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 1rem;
    height: 3.3rem;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input {
    display: none;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input ~ i {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 0.3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input ~ span {
    font-size: 1.4rem;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input:checked ~ i {
    background: #fe7304;
  }
  .content-wrap.sub .contact-wrap .form .agree-area .chk .checkbox input:checked ~ i:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.4rem 0 0 -0.5rem;
    width: 1rem;
    height: 0.6rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }
  .content-wrap.sub .contact-wrap .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 0 0;
    gap: 2rem;
  }
  .content-wrap.sub .contact-wrap .button .btn {
    height: 5rem;
    min-width: 12.5rem;
    font-size: 1.6rem;
  }
  .content-wrap.sub .modal-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 76rem;
    max-width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 100;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  .content-wrap.sub .modal-wrap .head {
    position: relative;
    margin: 0 0 4rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .content-wrap.sub .modal-wrap .head .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: url("/static/img/common/ic_close.svg") no-repeat center;
    cursor: pointer;
  }
  .content-wrap.sub .modal-wrap .title {
    text-align: center;
    margin: 4rem 0;
    line-height: 3.5rem;
    font-size: 2.5rem;
    font-weight: 500;
  }
  .content-wrap.sub .modal-wrap .button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .content-wrap.sub .modal-wrap .button button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 14rem;
    height: 5.4rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    font-weight: 500;
  }
  .content-wrap.sub .modal-wrap .button button:hover {
    background: #f1f1f1;
  }
  .content-wrap.sub .modal-wrap.active {
    opacity: 1;
    visibility: visible;
  }
}
.ref .section {
  padding: 12rem 0;
}
.ref .section .inner {
  max-width: 164rem;
  padding: 0 4rem;
}
.ref .list {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 4rem;
}
.ref .list li {
  width: calc(25% - 3rem);
}
.ref .list li .img {
  width: -moz-fit-content;
  width: fit-content;
}
.ref .list li .img img {
  display: block;
  width: 290px;
  aspect-ratio: 290/280;
}
.ref .list li:hover .img {
  outline: 0.1rem solid #000;
}
.ref .list dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 4rem 0 2.5rem;
}
.ref .list dd {
  color: #3B2013;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 23.4px */
}
.ref .list dt {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: calc(var(--fs-md) + 0.5rem);
  font-weight: 600;
  line-height: 1.12;
  color: #3B2013;
  font-family: Inter;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  /* 32.5px */
}
.ref .list dd {
  font-size: var(--fs-com);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
}
.ref .date {
  font-size: calc(var(--fs-sm) - 0.1rem);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}
.ref .viewmore {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
}
.ref .viewmore .icon,
.ref .viewmore img {
  display: block;
}
.ref .top-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
.ref .top-list h5 {
  color: #222;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.252;
}
.ref .top-list form {
  display: flex;
}
.ref .top-list form .select-box {
  width: 10rem;
}
.ref .top-list form .select-box .selected {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  background: url(/static/img/icon/bottom.svg) no-repeat center right 10px;
}
.ref .top-list form .select-box .selected span {
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
}
.ref .top-list form .select-box .option-list {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
}
.ref .top-list form .select-box .option-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  cursor: pointer;
}
.ref .top-list form .select-box .option-list li:hover {
  background: #f5f5f5;
}
.ref .top-list form .select-box.open .option-list {
  display: block;
}
.ref .top-list form .select-box.open .option-list span {
  color: #222;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.216;
}

@media (max-width: 1280px) {
  .ref .inner {
    max-width: 100%;
    padding: 0 2rem;
  }
}
@media all and (max-width: 64rem) {
  .ref .inner {
    max-width: 100%;
  }
  .ref .list {
    gap: 4rem 3rem;
  }
  .ref .list li {
    width: calc(25% - 4rem);
  }
  .ref .list dl {
    margin: 3rem 0 2rem;
    gap: 2rem;
  }
  .ref .viewmore {
    margin-top: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .ref .inner {
    max-width: 100%;
    width: 100%;
  }
  .ref .section {
    padding-bottom: 10rem;
  }
  .ref .list {
    gap: 4rem 2rem;
  }
  .ref .list li {
    width: calc(50% - 1rem);
  }
}
@media all and (max-width: 47.9375rem) {
  .footer .main .flex {
    flex-wrap: Wrap;
    gap: 2rem;
    margin: 0 0 2rem;
  }
  .footer .main .flex .box {
    flex: auto;
  }
  .footer .main .flex .tit {
    margin: 0 0 1rem;
    line-height: 3.3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fe7304;
  }
  .footer .main .flex .con dl {
    display: flex;
    gap: 1rem;
    line-height: 1.6;
    font-size: 1.5rem;
    color: #6c6c6c;
  }
  .footer .main .flex .con dt {
    min-width: 8rem !important;
    font-weight: 700;
    white-space: wrap;
    display: block;
  }
  .footer .main .flex .con dd {
    white-space: wrap;
  }
  .footer .main .flex .img {
    flex-wrap: wrap;
  }
  .footer .main .cite {
    line-height: 1.2;
    font-size: 1.6rem;
    font-weight: 400;
    color: #1e1e1e;
  }
  .ref .inner {
    max-width: 100%;
    width: 100%;
  }
  .ref .section {
    padding-bottom: 8rem;
  }
  .ref .list {
    display: block;
  }
  .ref .list li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .ref .inner {
    max-width: 100%;
    width: 100%;
  }
  .ref .section {
    padding: 6rem 0;
  }
  .ref .list {
    display: block;
  }
  .ref .list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .ref .list dt {
    font-size: 1.8rem;
  }
  .ref .list dd {
    font-size: 1.3rem;
  }
  .ref .viewmore {
    font-size: 1.1rem;
  }
}
.ref.product .section {
  padding: 12rem 0;
}
.ref.product .section .inner {
  max-width: 164rem;
  padding: 0 4rem;
}
.ref.product .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.ref.product .list li {
  width: calc(20% - 1.6rem);
}
.ref.product .list li .img img {
  width: 100%;
  height: 100%;
}
.ref.product .list li:hover .img {
  outline: 0.1rem solid #000;
}
.ref.product .list dl {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  margin: 4rem 0 2.5rem;
}
.ref.product .list dt {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3B2013;
  font-family: Inter;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.ref.product .list dd {
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: wrap;
  color: #3B2013;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 23.4px */
}
.ref.product .date {
  color: #555;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 24px */
  letter-spacing: -0.48px;
}
.ref.product .viewmore {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
}
.ref.product .viewmore .icon,
.ref.product .viewmore img {
  display: block;
}
.ref.product .top-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
.ref.product .top-list h5 {
  color: #222;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.252;
}
.ref.product .top-list form {
  display: flex;
}
.ref.product .top-list form .select-box {
  width: 10rem;
}
.ref.product .top-list form .select-box .selected {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  background: url(/static/img/icon/bottom.svg) no-repeat center right 10px;
}
.ref.product .top-list form .select-box .selected span {
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
}
.ref.product .top-list form .select-box .option-list {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
}
.ref.product .top-list form .select-box .option-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  cursor: pointer;
}
.ref.product .top-list form .select-box .option-list li:hover {
  background: #f5f5f5;
}
.ref.product .top-list form .select-box.open .option-list {
  display: block;
}
.ref.product .top-list form .select-box.open .option-list span {
  color: #222;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.216;
}

@media (max-width: 1280px) {
  .ref.product .list li {
    width: calc(25% - 1.5rem);
  }
}
@media (max-width: 1024px) {
  .ref.product .section {
    padding: 10rem 0;
  }
  .ref.product .section .inner {
    padding: 0 3rem;
  }
  .ref.product .list {
    gap: 2.4rem;
  }
  .ref.product .list li {
    width: calc(33.333% - 1.6rem);
  }
  .ref.product .list dt {
    font-size: 22px;
  }
  .ref.product .list dd {
    font-size: 16px;
  }
  .ref.product .top-list h5 {
    font-size: 1.6rem;
  }
  .ref.product .top-list form .select-box {
    width: 9rem;
  }
  .ref.product .top-list form .select-box .selected span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .ref.product .section {
    padding: 8rem 0;
  }
  .ref.product .section .inner {
    padding: 0 2rem;
  }
  .ref.product .top-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .ref.product .list {
    gap: 2rem;
  }
  .ref.product .list li {
    width: calc(50% - 1rem);
  }
  .ref.product .list dl {
    margin: 2.5rem 0 2rem;
  }
  .ref.product .list dt {
    font-size: 20px;
  }
  .ref.product .list dd {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
  .ref.product .viewmore {
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .ref.product .section {
    padding: 6rem 0;
  }
  .ref.product .list li {
    width: 100%;
  }
  .ref.product .list dt {
    font-size: 18px;
  }
  .ref.product .list dd {
    font-size: 14px;
  }
  .ref.product .date {
    font-size: 14px;
  }
  .ref.product .top-list h5 {
    font-size: 1.4rem;
  }
  .ref.product .top-list form {
    width: 100%;
  }
  .ref.product .top-list form .select-box {
    width: 100%;
  }
}
.ref .top-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.ref .top-list h5 {
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.252;
}

.ref .top-list form {
  display: flex;
}

.ref .top-list form .select-box {
  width: 12rem;
}

.ref .top-list form .select-box .selected {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  background: url(/static/img/icon/bottom.svg) no-repeat center right 10px;
  box-sizing: border-box;
}

.ref .top-list form .select-box .selected span {
  color: #222;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  position: relative;
  width: 100%;
  left: -5px;
}

.ref .top-list form .select-box .selected span img {
  padding-left: 20px;
  position: absolute;
  right: 0;
  top: 30%;
}

.ref .top-list form .select-box .option-list {
  display: none;
  position: absolute;
  top: 100%;
  width: 10rem;
  border: 1px solid #ddd;
  background: #fff;
}

.ref .top-list form .select-box .option-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  cursor: pointer;
}

.ref .top-list form .select-box .option-list li:hover {
  background-color: #f5f5f5;
}

.ref .top-list form .select-box.open .option-list {
  display: block;
}

.ref .top-list form .select-box.open .option-list span {
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.216;
}

.ref.acordian .faq-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.ref.acordian .faq-wrap .faq-item {
  border-bottom: 1px solid #CDD4DA;
  padding: 3rem 1rem;
}
.ref.acordian .faq-wrap .faq-item.active .arrow::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ref.acordian .faq-wrap .faq-item.active .arrow::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ref.acordian .faq-wrap .faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.ref.acordian .faq-wrap .faq-question .q {
  width: 8rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #000;
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  /* 175% */
}
.ref.acordian .faq-wrap .faq-question p {
  flex: 1;
  margin: 0;
  color: #000;
  font-family: Pretendard;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.59091;
  /* 159.091% */
}
.ref.acordian .faq-wrap .faq-question .arrow {
  width: 1.8rem;
  height: 1.8rem;
  border: 0;
  background: none;
  position: relative;
  cursor: pointer;
  right: 2rem;
}
.ref.acordian .faq-wrap .faq-question .arrow::before, .ref.acordian .faq-wrap .faq-question .arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: #666;
  transition: 0.3s;
}
.ref.acordian .faq-wrap .faq-question .arrow::before {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -0.3rem;
}
.ref.acordian .faq-wrap .faq-question .arrow::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: 0.3rem;
}
.ref.acordian .faq-wrap .faq-answer {
  display: none;
  padding: 1rem 2rem 0 9.5rem;
}
.ref.acordian .faq-wrap .faq-answer .answer-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ref.acordian .faq-wrap .faq-answer .answer-inner span {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.ref.acordian .faq-wrap .faq-answer .answer-inner span img {
  display: block;
  width: 100%;
}
.ref.acordian .faq-wrap .faq-answer .answer-inner p {
  flex: 1;
  margin: 0;
  color: #333;
  font-family: "Pretendard", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  word-break: keep-all;
}

@media all and (max-width: 85.375rem) {
  .ref.acordian .faq-wrap .faq-item {
    padding: 2.5rem 0;
  }
  .ref.acordian .faq-wrap .faq-question .q {
    width: 6rem;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .ref.acordian .faq-wrap .faq-question p {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-right: 2rem;
  }
  .ref.acordian .faq-wrap .faq-question .arrow {
    right: 0;
  }
  .ref.acordian .faq-wrap .faq-answer {
    padding: 1.5rem 0 0 6rem;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .ref.acordian .faq-wrap .faq-answer span {
    width: 1.8rem;
    height: 1.8rem;
  }
  .ref.acordian .faq-wrap .faq-answer span img {
    width: 100%;
  }
}
@media all and (max-width: 47.9375rem) {
  .ref.acordian .faq-wrap .faq-item {
    padding: 2rem 0;
  }
  .ref.acordian .faq-wrap .faq-question {
    align-items: flex-start;
    gap: 1rem;
  }
  .ref.acordian .faq-wrap .faq-question .q {
    width: 4rem;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 0.2rem;
  }
  .ref.acordian .faq-wrap .faq-question p {
    font-size: 1.5rem;
    line-height: 1.6;
    padding-right: 2rem;
    word-break: keep-all;
  }
  .ref.acordian .faq-wrap .faq-question .arrow {
    width: 1.4rem;
    height: 1.4rem;
    right: 0;
    flex-shrink: 0;
  }
  .ref.acordian .faq-wrap .faq-question .arrow::before, .ref.acordian .faq-wrap .faq-question .arrow::after {
    width: 0.8rem;
  }
  .ref.acordian .faq-wrap .faq-answer {
    padding: 1.5rem 0 0 5rem;
    font-size: 1.5rem;
    line-height: 1.8;
    gap: 0.8rem;
  }
  .ref.acordian .faq-wrap .faq-answer span {
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
  }
  .ref.acordian .faq-wrap .faq-answer span img {
    width: 100%;
    display: block;
  }
  .ref.acordian .faq-wrap .faq-answer .answer-inner p {
    font-size: 1.5rem;
  }
}
/* news */
.news {
  padding: 120px 0;
}

.inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 타이틀 */
.page-title {
  text-align: center;
  margin-bottom: 80px;
}

.page-title .path {
  font-size: 14px;
  color: #999;
}

.page-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 16px;
}

/* 상단 */
.list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.list-head .total b {
  font-weight: 600;
}

.sort {
  height: 32px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

/* 리스트 */
.news-list {
  border-top: 1px solid #000;
}

.news-list li {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-list .num {
  width: 80px;
  text-align: center;
  font-size: 22px;
  color: #555;
}

.news-list a {
  flex: 1;
  color: #222;
  font-size: 22px;
  text-decoration: none;
}

.news-list a:hover {
  text-decoration: underline;
}

.news-list .date {
  width: 120px;
  text-align: right;
  font-size: 18px;
  color: #777;
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.pagination a.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 1024px) {
  .news {
    padding: 80px 0;
  }
  .page-title h2 {
    font-size: 36px;
  }
  .news .inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  /* 타이틀 */
  .page-title {
    margin-bottom: 50px;
  }
  .page-title h2 {
    font-size: 28px;
  }
  /* 상단 정보 */
  .list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .sort {
    width: 100%;
  }
  /* 리스트 */
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }
  .news-list .num {
    display: none;
  }
  .news-list a {
    font-size: 15px;
    line-height: 1.5;
  }
  .news-list .date {
    width: auto;
    text-align: left;
    font-size: 13px;
    color: #999;
  }
  /* 페이지네이션 */
  .pagination {
    gap: 6px;
    margin-top: 32px;
  }
  .pagination a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .page-title h2 {
    font-size: 24px;
  }
  .news-list a {
    font-size: 14px;
  }
}
/* news-view */
.viewpage .section {
  padding: 12rem 0;
}

.viewpage .inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 40px;
}

.viewpage .view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem solid black;
  color: var(--bk, #1F1F21);
  padding: 1rem 0;
}

.viewpage .view-header .title-area {
  display: flex;
  font-size: calc(var(--fs-stit) + 0.3rem);
  font-weight: 400;
  line-height: 1.36364;
}

.viewpage .view-header .title-area .type {
  font-weight: 600;
}

.viewpage .view-header .title-area .title {
  font-weight: 400;
  color: #1F1F21;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 91.429% */
}

.viewpage .view-header .right {
  display: flex;
  align-items: center;
  min-width: 16rem;
  gap: 3.6rem;
}

.viewpage .view-header .right span {
  position: relative;
  line-height: 2.8125;
  color: #778288;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3333;
}

.viewpage .view-header .right span::before {
  content: "";
  width: 0.1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: -1.9rem;
  background: #778288;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.viewpage .view-header .right span:last-of-type::before {
  display: none;
}

.viewpage .view-body {
  padding: 4rem 0 10px;
  border-bottom: 0.1rem solid #000;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.viewpage .view-body .img-wrap {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0rem;
}

.viewpage .view-body p,
.viewpage .view-body div {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.66667;
}

.viewpage .view-body .desc {
  color: #1F1F21;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 28px */
}

.viewpage .view-body a {
  color: #778288;
  /* p-16-R */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.viewpage .view-body .file span img {
  margin-left: 1rem;
}

.viewpage .list-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  padding: 1.1rem 5.6rem;
  font-size: var(--fs-com);
  font-weight: 500;
  line-height: 1.66667;
  border: 0.1rem solid;
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.viewpage .list-btn:hover {
  border: transparent;
  background: #101C43;
  color: #fff;
}

@media (max-width: 1280px) {
  .viewpage .inner {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .viewpage .section {
    padding-bottom: 8rem;
  }
  .viewpage .inner {
    max-width: 100%;
    width: 100%;
  }
  .viewpage .view-header .title-area .title {
    font-size: 28px;
    line-height: 1.3;
  }
  .viewpage .view-header .right {
    gap: 2rem;
    min-width: auto;
    width: auto;
  }
  .viewpage .view-header .right span {
    font-size: 16px;
  }
  .viewpage .view-body .desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  /* 헤더 */
  .viewpage .view-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.6rem 0;
  }
  .viewpage .view-header .title-area {
    font-size: 20px;
  }
  .viewpage .view-header .title-area .title {
    font-size: 22px;
    line-height: 1.4;
    word-break: keep-all;
  }
  .viewpage .view-header .right {
    justify-content: flex-start;
    gap: 1.6rem;
  }
  .viewpage .view-header .right span {
    font-size: 14px;
  }
  .viewpage .view-header .right span::before {
    right: -0.8rem;
    height: 0.8rem;
  }
  /* 본문 */
  .viewpage .view-body {
    padding: 3rem 0;
    gap: 3rem;
  }
  .viewpage .view-body p,
  .viewpage .view-body div {
    font-size: 15px;
    line-height: 1.7;
  }
  .viewpage .view-body .desc {
    font-size: 16px;
  }
  .viewpage .view-body a {
    font-size: 14px;
  }
  /* 이미지 */
  .viewpage .view-body .img-wrap img {
    max-width: 100%;
    height: auto;
  }
  /* 목록 버튼 */
  .viewpage .list-btn {
    margin-top: 3rem;
    padding: 1.2rem 4rem;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .viewpage .view-header .title-area .title {
    font-size: 20px;
  }
  .viewpage .view-header .right span {
    font-size: 13px;
  }
  .viewpage .list-btn {
    width: 100%;
    text-align: center;
  }
}
/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  align-items: center;
}

.pagination ul {
  display: flex;
}

.pagination ul li {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.pagination ul li.active {
  background-color: #000;
  text-align: center;
}

.pagination ul li.active span {
  color: #Fff;
}

.pagination ul li span {
  color: #666;
  /* body/lg/regular */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  padding-left: 6px;
  /* 28px */
}

/* partners */
.partners {
  padding: 10rem 0 20rem;
  margin: 0 auto;
  text-align: center;
}

.partners .inner {
  max-width: 164rem;
  padding: 0 4rem;
}

.partners .inner .img-wrap {
  width: 100%;
}

@media all and (max-width: 85.375rem) {
  .partners .inner {
    max-width: 100%;
  }
}
@media all and (max-width: 47.9375rem) {
  .partners .inner {
    max-width: 100%;
  }
}
.category {
  display: flex;
  gap: 6rem;
  margin-bottom: 3rem;
  color: #D2D2D2;
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 142.857% */
}
.category a {
  position: relative;
}
.category a:after {
  content: "";
  position: absolute;
  top: 13px;
  right: -3rem;
  width: 1px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.2117647059);
}
.category a:last-child::after {
  display: none;
}
.category .active {
  color: #ff6a00;
  font-weight: 600;
}

.product-hero {
  padding: 10rem 0;
}
.product-hero .inner {
  max-width: 164rem;
  padding: 0 4rem;
  margin: 0 auto;
}
.product-hero .inner .category {
  display: flex;
  gap: 6rem;
  margin-bottom: 3rem;
  color: #D2D2D2;
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 142.857% */
}
.product-hero .inner .category a:last-child::after {
  display: none;
}
.product-hero .inner .category .active {
  color: #ff6a00;
  font-weight: 600;
}
.product-hero .distribution-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
.product-hero {
  /* LEFT */
}
.product-hero .txt-wrap {
  flex: 3;
  margin-bottom: 6rem;
}
.product-hero .txt-wrap .brand {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 36px */
}
.product-hero .txt-wrap .title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.product-hero .txt-wrap .desc {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 3rem;
}
.product-hero .txt-wrap .spec {
  margin-bottom: 4rem;
}
.product-hero .txt-wrap .spec h4 {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  /* 150% */
  margin: 1rem;
}
.product-hero .txt-wrap .spec li {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #333;
  position: relative;
  padding-left: 1.2rem;
  display: flex;
  gap: 1.5rem;
}
.product-hero .txt-wrap .spec li b {
  display: inline-block;
  width: 12rem;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5625;
  /* 156.25% */
}
.product-hero .txt-wrap .spec li span {
  color: #444;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
  /* 156.25% */
}
.product-hero .txt-wrap .spec li::before {
  content: "·";
  position: absolute;
  left: 0px;
}
.product-hero .txt-wrap .spec.c li b {
  width: 100%;
}
.product-hero .txt-wrap .spec.wid-100 b {
  display: block;
  padding-left: 1.2rem;
}
.product-hero .txt-wrap .btn-download {
  display: inline-block;
  padding: 1.4rem 3rem;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  margin-bottom: 4rem;
  font-weight: 500;
}
.product-hero .img-wrap img {
  margin-bottom: 3rem;
}
.product-hero .btn-group {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.product-hero .btn-group a {
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  border: 1px solid #000;
}
.product-hero .btn-group .btn-black {
  background: #000;
  color: #fff;
}
.product-hero {
  /* RIGHT */
}
.product-hero .img-wrap {
  flex: 1;
  text-align: right;
}
.product-hero .img-wrap img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1280px) {
  .product-hero {
    padding: 8rem 0;
  }
  .product-hero .inner {
    padding: 0 3rem;
  }
  .product-hero .distribution-detail {
    gap: 5rem;
  }
  .product-hero .txt-wrap .brand {
    font-size: 26px;
  }
  .product-hero .txt-wrap .title {
    font-size: 3.6rem;
  }
}
@media (max-width: 1024px) {
  .product-hero {
    padding: 7rem 0;
  }
  .product-hero .inner {
    max-width: 100%;
    width: 100%;
  }
  .product-hero .distribution-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
  }
  .product-hero .txt-wrap {
    flex: 1;
    margin-bottom: 0;
  }
  .product-hero .txt-wrap .title {
    font-size: 3.2rem;
  }
  .product-hero .txt-wrap .desc {
    font-size: 1.5rem;
  }
  .product-hero .txt-wrap .spec li b {
    width: 10rem;
    font-size: 15px;
  }
  .product-hero .txt-wrap .spec li span {
    font-size: 15px;
  }
  .product-hero .img-wrap {
    width: 100%;
    text-align: center;
  }
  .product-hero .img-wrap img {
    max-width: 60%;
    margin-bottom: 1rem;
  }
  .product-hero .btn-group {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .category {
    gap: 2rem;
    font-size: 16px;
    line-height: 1.4;
    flex-wrap: wrap;
  }
  .category a::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -1rem;
    width: 1px;
    height: 16px;
  }
  .product-hero {
    padding: 6rem 0;
  }
  .product-hero .inner {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .product-hero .category {
    gap: 2rem;
    font-size: 16px;
    line-height: 1.4;
    flex-wrap: wrap;
  }
  .product-hero .distribution-detail {
    gap: 4rem;
    display: block;
  }
  .product-hero .txt-wrap .brand {
    font-size: 22px;
  }
  .product-hero .txt-wrap .title {
    font-size: 2.6rem;
    line-height: 1.3;
  }
  .product-hero .txt-wrap .desc {
    font-size: 1.4rem;
  }
  .product-hero .txt-wrap .spec h4 {
    font-size: 1.8rem;
  }
  .product-hero .txt-wrap .spec li {
    flex-direction: column;
    gap: 0.4rem;
    padding-left: 1rem;
  }
  .product-hero .txt-wrap .spec li b {
    width: 100%;
    font-size: 14px;
  }
  .product-hero .txt-wrap .spec li span {
    font-size: 14px;
    line-height: 1.6;
  }
  .product-hero .txt-wrap .btn-download {
    width: 100%;
    text-align: center;
    padding: 1.4rem 0;
  }
  .product-hero .btn-group {
    flex-direction: column;
    gap: 1.2rem;
  }
  .product-hero .btn-group a {
    width: 100%;
    text-align: center;
  }
  .product-hero .img-wrap img {
    max-width: 100%;
  }
}/*# sourceMappingURL=layout.css.map */