@charset "UTF-8";
:root {
  --project-main-color-red: #ed1846;
  --project-main-color-blue: #023f88;
  --project-sub-color: #072f64;
  --project-white-50: #fff;
  --project-black-50: #f6f6f6;
  --project-black-100: #e7e7e7;
  --project-black-950: #252525;
}

/* common */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
} */
.mobile {
  display: none;
}

html {
  color: var(--project-black-950);
}

.inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
.title_box {
  position: relative;
  margin-bottom: 32px;
  font-size: 24px;
  text-align: left;
}
.section {
  overflow: hidden;
}
.section_title {
  padding-bottom: 16px;
  font-weight: 700;
  line-height: 140%;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: -0.8px;
  word-break: keep-all;
}
.section_desc {
  color: #454545;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.48px;
  word-break: keep-all;
  max-width: calc(100% - 150px);
}

/* full modal btn */
.custom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;

  border-radius: 8px;
  font-size: initial;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}
.custom-btn.pos-r {
  position: absolute;
  right: 0;
  bottom: 0;
}
.custom-btn.pos-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.custom-btn i {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.custom-btn.primary {
  color: var(--project-white-50);
  background-color: var(--project-main-color-blue);
  border: 1px solid var(--project-main-color-blue);
}
.custom-btn.primary:hover {
  background-color: var(--project-sub-color);
}
.custom-btn.white {
  color: var(--project-white-50);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.custom-btn.white:hover {
  color: var(--project-main-color-blue);
  background-color: var(--project-white-50);
}
.ic-open-window i {
  background: url(../../static/img/ic-wide.svg) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 8px;
}
.ic-open-popup i {
  background: url(../../static/img/ic-open-popup-arrow.svg) no-repeat center
    center;
  background-size: 100% 100%;
  margin-left: 8px;
}
.ic-open-window-factory i {
  background: url(../../static/img/ic-factory.svg) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 8px;
}
.custom-btn.white:hover i {
  background: url(../../static/img/ic-open-popup-arrow-hover.svg) no-repeat
    center center;
  background-size: 100% 100%;
}

.confirm_modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 400px;
  height: 200px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 30px 0 rgb(0 0 0 / 20%);
  transition: opacity 0.3s;
}
.confirm_modal iframe {
  width: 100%;
  height: 100%;
}
.confirm_modal.active {
  visibility: visible;
  opacity: 1;
}

/* layOut */

/* header */
.header {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100px;
  z-index: 100;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  transform: translateY(0);
  transition: transform 0.5s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.header .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 80px;
  height: 100%;
}

.logo {
  display: block;
  width: 122px;
  height: 44px;
  text-indent: -9999px;
  background: url("../../static/img/logo-brand.png") no-repeat left top / cover;
}
.hamburger_btn {
  width: 24px;
  height: 24px;
  background: url(../../static/img/ic-menu.svg) no-repeat center center;
  background-size: 100% 100%;
}

.hd_nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
}
.hd_nav li {
  height: 100%;
}
.hd_nav li + li {
  margin-left: 40px;
}
.hd_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 24px;
  font-weight: 500;
  padding: 0 8px;
  transition: color 0.35s;
}
.hd_nav li:hover a {
  color: var(--project-main-color-blue);
}

/* .skip_modal.active {
  opacity: 1;
  visibility: visible;
}
.skip_modal .modal_box {
  position: relative;
  top: 50%;
  left: 50%;
  padding: 30px 20px 20px 20px;
  width: 460px;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  transform: translate3d(-50%, -50%, 0);
}
.skip_modal .skip_modal_tit {
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
.skip_modal .skip_modal_desc {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}
.skip_modal .modal_box a {
  display: block;
  margin: 10px auto;
  padding: 10px 10px;
  width: 50%;
  border-radius: 10px;
  background: #321ec6;
  transition: background 0.2s;
}
.skip_modal .modal_box a:hover {
  background: #1a0d83;
}
.skip_modal .modal_box a span {
  color: #f9f954;
}
.skip_modal .skip_close_btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 100;
  width: 30px;
  height: 30px;
  font-size: 0;
  background: url(../../static/images/elypecsSummit/ico_btn_close.png) no-repeat;
  background-size: cover;
  cursor: pointer;
} */

/* right Nav */
#fp-nav.right {
  right: 70px;
}
#fp-nav ul li .fp-tooltip {
  top: -4px;
  font-family: "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.35px;
}
#fp-nav ul li a.active + .fp-tooltip {
  opacity: 1;
  width: auto;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: #fff;
}

body.fp-viewing-anchor1 #fp-nav ul li .fp-tooltip {
  color: #333;
}
body.fp-viewing-anchor1 #fp-nav ul li a span,
body.fp-viewing-anchor1 .fp-slidesNav ul li a span {
  background: #333;
}
/* section */

/* section0 -------------------------------------------------------------------------------------------------- */

/* swiper slide */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  text-align: center;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dim {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(37, 37, 37, 0.8) 100%
  );
}
.slide-txt-box {
  position: absolute;
  left: 80px;
  bottom: 204px;
  overflow: hidden;
}
.slide-txt-box p {
  transform: translateY(155px);
  font-size: 56px;
  font-weight: 700;
  color: var(--project-white-50);
  letter-spacing: -1.12px;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 140%;
  transition: transform 1s;
}
.swiper-slide-active .slide-txt-box p {
  transform: translateY(0);
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}
.swiper-pagination {
  position: initial;
}
.custom-pagination {
  height: 100%;
}

/* ----------------- slide btns box ----------------- */
.slide-btns-box {
  position: absolute;
  bottom: 56px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 1000;
}
/* custom bullets */
.custom-bullets {
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-bullets .swiper-pagination-bullet {
  display: inline-block !important;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  opacity: initial;
  /* transition은 공통에 몰아주기 */
  transition: width 0.5s ease, border-radius 0.5s ease,
    background 0.5s ease-in-out;
}

.custom-bullets .swiper-pagination-bullet-active {
  background: var(--project-main-color-red);
  width: 40px;
  height: 12px;
  border-radius: 400px;
}

.custom-fraction {
  color: var(--project-white-50);
  overflow: hidden;
}
.custom-fraction > span {
  display: inline-block;
  margin: 0 4px;
}
.custom-fraction .cur_slide {
  font-size: 32px;
}
.slide-btns-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
/* prev, next button */
.custom-arrow-btns {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
  margin-left: 24px;
  z-index: 1001;
}
.swiper-button-next,
.swiper-button-prev {
  position: initial;
  width: 40px;
  height: 40px;
  margin-top: initial;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  font-family: inherit;
}
.swiper-button-prev:after {
  background: url(../../static/img/ic-prev-play.svg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0.5;
}
.swiper-button-next:after {
  background: url(../../static/img/ic-next-play.svg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0.5;
}
.swiper-button-prev:hover:after {
  background: url(../../static/img/ic-prev-play-hover.svg) no-repeat center
    center;
  background-size: 100% 100%;
  opacity: 1;
}
.swiper-button-next:hover:after {
  background: url(../../static/img/ic-next-play-hover.svg) no-repeat center
    center;
  background-size: 100% 100%;
  opacity: 1;
}
/* .section.main-slide:after {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 85px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background: #fff;
} */
.pos_relative {
  position: relative;
}
/* .slide .inner {
  z-index: 10;
  width: 57.625rem;
} */
.main_title {
  color: #000;
  font-size: 3rem;
  line-height: 4.375rem;
}
.main_txt_box.top {
  position: relative;
  padding-top: 7.5rem;
  width: 100%;
  height: 36.125rem;
  background: url("../../static/images/elypecsSummitAug/bg_main_txt_box.svg")
    no-repeat top right / contain;
}
.main_txt_box.top .main_title_img {
  width: 86%;
}
.main_txt_box.top .main_title_img img {
  width: 100%;
}
.main-slide .swiper-wrapper {
  height: 100vh;
}
.main-slide .txt {
  color: #333;
}
.main_txt {
  margin: 2.188rem 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.75px;
}
.main-slide .main_sub_txt {
  position: absolute;
  bottom: 6px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.45px;
  line-height: normal;
}
.date_txt {
  margin-top: 3.75rem;
  width: 100%;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}
.date_txt b {
  display: block;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.95px;
}
.only_mobile {
  display: none;
}
.sign_btn {
  display: none;
}
.conf_outlink.btn_outlink {
  display: none;
  color: #fff;
  background: #ff3232;
}
/* --------------------------------------------------------------------------------------------------------------------- */

.responsive-thumb {
  display: none;
  width: 100%;
  height: 100%;
}
.responsive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* program */
.tour_box {
  width: 100%;
}
.tour_box .content_box {
  position: relative;
}
.tour_box .content_box .tour-dim {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.tour_box .content_box .tour-dim > img {
  width: 80px;
}
.tour_box .content_box .tour-dim > p {
  color: var(--project-white-50);
  font-size: 32px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -2px;
  line-height: 140%;
  text-align: center;
}
.content-box-desc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.36px;
  margin-top: 16px;
}
.content-box-desc > i {
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  background: url(../../static/img/ic-location.svg) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 8px;
}
.content-box-desc > span {
  display: inline-block;
  word-break: keep-all;
  /* width: calc(100% - 34px); */
}

.auto-slide-box {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  animation: autoScrolling 300s linear infinite;
  width: calc(240px * 20);
  margin-top: 40px;
}
.auto-slide-box .slide-img {
  width: 240px;
  /* height: 94px; */
  aspect-ratio: square;
}
.auto-slide-box .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes autoScrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* business-field */
.business-field {
  color: var(--project-white-50);
  background: url(../../static/img/img-business-field.webp) no-repeat center
    center;
  background-size: cover;
}
.business-field .section_desc {
  color: var(--project-white-50);
}
.business-field .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.field_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.field_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  height: 400px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(37, 37, 37, 0.4);
  backdrop-filter: blur(5px);
}
.business-field .field_item {
  cursor: pointer;
}
.scale-frame {
  text-align: center;
  width: 240px;
  transition: transform 0.3s;
}
.scale-frame > img {
  width: 120px;
  height: 120px;
}
.scale-frame .field_txt {
  margin-top: 32px;
}
.scale-frame .field_txt b {
  display: block;
  font-size: 24px;
  line-height: 140%;
}
.scale-frame .field_txt span::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--project-white-50);
  margin: 16px 0;
}
.scale-frame .field_txt span {
  font-size: 18px;
}
.business-field .custom-btn {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
}

/* company-history */
.company-history {
  background-color: var(--project-black-950);
  color: var(--project-white-50);
  overflow: hidden;
}
.company-history .inner {
  position: relative;
  z-index: 100;
}
.company-history::before {
  content: "";
  position: absolute;
  width: 940px;
  height: 940px;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  background: url(../../static/img/img-left-deco.webp) no-repeat center center;
  background-size: 100% 100%;
  z-index: 1;
}
.company-history::after {
  content: "";
  position: absolute;
  width: 940px;
  height: 940px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  background: url(../../static/img/img-right-deco.webp) no-repeat center center;
  background-size: 100% 100%;
  z-index: 1;
}
.company-history .section_desc {
  color: var(--project-white-50);
}
.company-history .btn-box {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* product */
.product .section_desc {
  max-width: 100%;
}
.tab-box {
  display: inline-block;
  padding: 4px;
  box-shadow: 2px 2px 4px 0px #fff, -1px -1px 2px 0px rgba(0, 0, 0, 0.1) inset,
    1px 1px 2px 0px rgba(0, 0, 0, 0.1) inset;
  border-radius: 9999px;
  margin-bottom: 24px;
}
.tab-item {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.32px;
  padding: 8px 40px;
  border-radius: 9999px;
}
.tab-item.active {
  color: var(--project-white-50);
  background-color: var(--project-main-color-blue);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.product .tour_box .content_box {
  background-color: #e7e7e7;
}
.product .tour_box .product-img {
  width: 100%;
  height: 100%;
}
.product-01 .product-img {
  background: url(../../static/img/product-01.webp) no-repeat center center;
  background-size: contain;
}
.product-02 .product-img {
  background: url(../../static/img/product-02.webp) no-repeat center center;
  background-size: contain;
}
.product-03 .product-img {
  background: url(../../static/img/product-03.webp) no-repeat center center;
  background-size: contain;
}
.product-04 .product-img {
  background: url(../../static/img/product-04.webp) no-repeat center center;
  background-size: contain;
}

/* introduce-product */
.introduce-product {
  background-color: #f6f6f6;
}
.introduce-product .section_desc {
  width: calc(100% - 240px);
}
.landing-slide .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 32px;
  bottom: 32px;
}
.landing-slide .swiper-pagination .swiper-button-next:after,
.landing-slide .swiper-pagination .swiper-button-prev:after {
  background: url(../../static/img/ic-popup-prev.svg) no-repeat center center;
  background-size: 100% 100%;
}
.landing-slide .swiper-pagination .swiper-button-next:after {
  transform: rotate(180deg);
}

/* factory */
.factory .content_box {
  background-color: #000;
}
.factory .content_box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.factory .tour_box .content_box .tour-dim {
  display: block;
}
.factory .tour_box .content_box .tour-dim p {
  font-size: 56px;
  text-align: left;
  padding: 80px 0 0 80px;
}

/* more-info */
.more-info {
  color: var(--project-white-50);
}
.more-info .top-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 70%;
  background: url(../../static/img/img-more-info.webp) no-repeat top center;
  background-size: cover;
}
.more-info .bottom-box {
  width: 100%;
  height: 30%;
  color: #000;
  padding-top: 56px;
}
.more-info .section_title {
  padding-bottom: 0;
}
.more-info .box {
  width: 100%;
}
.more-info .field_item {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  min-height: 240px;
  padding: 40px;
}
.more-info .field_item img {
  width: 48px;
  height: 48px;
}
.more-info .field_txt {
  margin-top: 16px;
}
.more-info .field_txt b {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}
.more-info .content-box-desc {
  margin-top: 0;
}
.more-info-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
}
.copy-right {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: var(--project-black-950);
  font-weight: 500;
  letter-spacing: -0.32px;
  line-height: 150%;
  text-align: center;
}

/* landing popup */
.landing-popup-box {
  position: absolute;
  top: 100px;
  left: 80px;
  width: 440px;
  height: 485px;
  z-index: 100;
  color: #fff;
}
.landing-popup-box .ratio_wrap {
  width: 100%;
  height: 100%;
}
.popup-btn-box {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  right: 24px;
}
/* .landing-popup-box .swiper-button-next,
.landing-popup-box .swiper-button-prev {
  position: absolute;
  bottom: 0;
  right: 0;
} */
.landing-popup-box .swiper-button-next {
  transform: rotate(180deg);
}
.landing-popup-box .swiper-button-next::after,
.landing-popup-box .swiper-button-prev::after {
  background: url(../../static/img/ic-popup-prev.svg) no-repeat center center;
  background-size: 100% 100%;
}
.landing-popup-box .inp_chk_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 0px 0px 16px 16px;
  background: #252525;
  backdrop-filter: blur(8px);
  font-size: 13px;
  line-height: 150%;
}
.landing-popup-box .inp_chk_wrap button {
  color: inherit;
  font-size: inherit;
}

/* input 요소 */
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input {
  border: 0;
  outline: 0;
}
::placeholder {
  color: #e0e0e0;
  font-weight: 500;
}

.inp_chk + label {
  display: inline-block;
  position: relative;
  outline: 0;
  margin-right: 5px;
  cursor: pointer;
  vertical-align: middle;
  font-size: inherit;
  line-height: normal;
  padding-left: 24px;
}
.inp_chk + label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("../../static/img/ic-check-box.svg") no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.inp_chk:checked + label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../../static/img/ic-check.svg") no-repeat;
  background-size: cover;
}

.input_search {
  overflow: hidden;
  margin-left: 12px;
  width: calc(100% - 50px);
  height: 25px;
  color: #6c6c6c;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.4px;
  background: transparent;
}

.show-pc {
  display: block;
}
.show-ta {
  display: none !important;
}
.show-mo {
  display: none !important;
}
.pbr {
  display: block;
}
.fbr {
  display: none;
}

.top-btn {
  visibility: visible;
  position: fixed;
  bottom: 56px;
  right: 56px;
  width: 80px;
  height: 80px;
}
.top-btn.hide {
  visibility: hidden;
}

/* Media Query */
/* pc */

@media screen and (min-width: 1280px) {
  .field_item:hover .scale-frame {
    transform: scale(1.2);
  }
}

@media screen and (max-width: 1279px) {
  /* header */
  .header .inner {
    padding: 0 24px;
  }
  /* title box */
  .section_title {
    font-size: 32px;
    padding-bottom: 8px;
  }
  .section_desc {
    font-size: 20px;
    max-width: 100%;
  }

  .hd_nav {
    position: initial;
    transform: initial;
    width: auto;
  }
  .hd_nav li + li {
    margin-left: 24px;
  }
  .hd_nav li a {
    font-size: 20px;
  }

  /* swiper slide */
  .slide-txt-box {
    left: 40px;
    bottom: 248px;
  }
  .slide-txt-box p {
    font-size: 40px;
  }

  /* section 01 */

  .company-outline .inner {
    width: 100%;
    /* padding: 0 24px; */
  }
  .company-outline .custom-btn {
    display: inline-block;
    position: initial;
    margin-top: 16px;
  }
  .responsive-thumb {
    display: block;
  }

  /* business-field */
  .field_list {
    flex-direction: column;
    gap: 16px;
  }
  .field_item {
    width: 100%;
    height: auto;
    padding: 1.56vw 0;
  }
  .scale-frame {
    display: flex;
    align-items: center;
    width: auto;
    gap: 32px;
  }
  .scale-frame .field_txt {
    margin-top: 0;
    width: 240px;
  }
  .business-field .custom-btn {
    bottom: 3.59vw;
  }

  /* company-history */
  .company-history .btn-box {
    position: initial;
    margin-top: 24px;
  }

  /* introduce-product  */
  .introduce-product .custom-btn {
    display: inline-block;
    position: initial;
    margin-top: 16px;
  }
  .introduce-product .section_desc {
    width: 100%;
  }

  /* factory */
  .factory .custom-btn {
    display: inline-block;
    position: initial;
    margin-top: 16px;
  }
  .factory .custom-btn > div {
    justify-content: center;
  }
  .factory .tour_box .content_box .tour-dim p {
    font-size: 40px;
    padding: 56px 0 0 56px;
  }

  /* more-info */
  .more-info .title_box {
    margin-bottom: 24px;
  }
  .more-info .field_item {
    flex-direction: row;
    min-height: 0;
    padding: 36px 40px;
  }
  .more-info .field_txt {
    margin-top: 0;
    margin-left: 24px;
  }
  .more-info-btns {
    flex-wrap: wrap;
  }
  .more-info .bottom-box {
    padding-top: 24px;
  }
  .copy-right {
    font-size: 14px;
    bottom: 24px;
  }

  .pbr {
    display: none;
  }
  .fbr {
    display: block;
  }

  .landing-popup-box {
    left: 40px;
  }
  .top-btn {
    bottom: 40px;
    right: 40px;
  }
  .show-pc {
    display: none !important;
  }
  .show-ta {
    display: block !important;
  }
}
@media screen and (max-width: 1279px) and (orientation: landscape) {
  .content_box {
    height: 38vw;
  }
  .auto-slide-box {
    margin-top: 3.13vw;
  }
  .more-info .top-box {
    height: 78%;
  }
  .more-info .bottom-box {
    height: 22%;
  }
  .copy-right {
    bottom: 10px;
  }
}

@media screen and (max-width: 1024px) and (orientation: landscape) {
  .content_box {
    height: 48vw;
  }
}

@media screen and (max-width: 860px) {
  .tour_box .content_box {
    height: 500px;
  }
}
@media screen and (max-width: 860px) and (orientation: landscape) {
  .tour_box .content_box {
    height: 55vw;
  }
}

/* fold */
@media screen and (max-width: 780px) {
  .section:not(.main-slide) {
    padding: 40px 0 42px 0;
  }
  .inner {
    padding: 0 16px;
  }
  .main-slide .swiper-wrapper {
    height: 100%;
  }
  .title_box {
    margin-bottom: 24px;
  }
  .content_box .vr-iframe {
    display: none;
  }
  .content-box-desc > i {
    min-width: 18px;
    min-height: 18px;
  }
  .content-box-desc > span {
    letter-spacing: 0;
  }
  .section_title {
    font-size: 20px;
  }
  .section_desc {
    font-size: 14px;
  }
  .custom-btn {
    font-size: 14px;
  }

  /* header */
  .header {
    height: 40px;
    backdrop-filter: none;
  }
  .header .inner {
    padding: 0 16px;
  }
  .logo {
    width: 59px;
    height: 21px;
  }
  .hd_nav {
    display: none;
    position: absolute;
    top: 56px;
    flex-direction: column;
    width: calc(100% - 32px);
    height: 100vh;
    max-height: calc(100vh - 120px);
    transform: translate(-50%, 0);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px) !important;
  }
  .hd_nav li {
    width: 100%;
    height: auto;
  }
  .hd_nav li + li {
    margin-left: 0;
    margin-top: 14px;
  }
  .hd_nav li a {
    width: 100%;
    padding: 20px 8px;
  }
  /* mobile nav on/off */
  .header.open .hamburger_btn {
    background: url(../../static/img/ic-close.svg) no-repeat center center;
    background-size: 100% 100%;
  }
  .header.open .hd_nav {
    display: flex;
  }

  /* swiper slide */
  .slide-txt-box {
    left: 16px;
    bottom: 40px;
  }
  .slide-txt-box p {
    font-size: 20px;
  }
  .slide-btns-box {
    bottom: initial;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .slide-btns-bottom {
    margin-top: 0;
    width: 100%;
  }
  .custom-arrow-btns {
    width: 100%;
    justify-content: space-between;
    padding: 0 16px;
    margin-left: 0;
  }

  .company-outline {
    padding: 40px 0;
  }
  .custom-btn {
    width: 100%;
  }
  .custom-btn .mobile {
    width: 100%;
    text-align: center;
  }
  .content-box-desc {
    align-items: flex-start;
    margin-top: 8px;
    font-size: 14px;
  }
  .tour_box .content_box {
    height: 64.37vw;
  }
  .tour_box .content_box > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .auto-slide-box {
    width: calc(240px * 20);
  }

  /* business-field */
  .field_list {
    gap: 8px;
  }
  .field_item {
    padding: 24px;
  }
  .scale-frame > img {
    width: 80px;
    height: 80px;
  }
  .scale-frame .field_txt span::before {
    margin: 8px 0;
  }

  .business-field .custom-btn {
    position: initial;
    margin-top: 40px;
    transform: none;
  }
  .business-field .custom-btn > div {
    justify-content: center;
  }

  /* company-history */
  .company-history::before {
    width: 400px;
    height: 400px;
    left: -70%;
  }
  .company-history::after {
    width: 400px;
    height: 400px;
    right: -70%;
  }
  .company-history .btn-box {
    flex-direction: column;
  }

  /* product */
  .tab-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 16px;
    column-gap: 8px;
    width: 100%;
    border-radius: 16px;
    padding: 16px 8px;
  }
  .tab-item {
    width: 48%;
    padding: 8px 30px;
    font-size: 14px;
  }

  /* factory */
  .factory .tour_box .content_box .tour-dim p {
    font-size: 20px;
    padding: 24px 0 0 24px;
  }

  /* more-info */
  /* .more-info {
    background-size: auto 55%;
  } */
  .more-info .top-box {
    height: auto;
    padding: 40px 0;
  }
  .more-info .field_item {
    padding: 26px;
  }
  .more-info .field_item img {
    width: 24px;
    height: 24px;
  }
  .more-info .field_txt {
    margin-left: 16px;
  }
  .more-info .field_txt b {
    font-size: initial;
    margin-bottom: 4px;
  }
  .more-info .field_txt span {
    font-size: 14px;
  }
  .more-info .bottom-box {
    height: auto;
  }
  .more-info-btns {
    gap: 8px;
  }
  .copy-right {
    position: initial;
    transform: initial;
    padding: 32px 0 0 0;
  }

  .mobile {
    display: block;
  }
  .mobile-none {
    display: none !important;
  }
  .fbr {
    display: none;
  }
  /* .fp-tableCell {
    display: block !important;
  }
  .fp-section.fp-table,
  .fp-slide.fp-table {
    width: 100%;
    display: block !important;
    height: auto !important;
  } */
  /* .fp-tableCell {
    display: block;
    height: auto !important;
  } */
  .landing-popup-box {
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 320px;
    height: 340px;
  }
  .top-btn {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
  }

  .show-ta {
    display: none !important;
  }
  .show-mo {
    display: block !important;
  }
  .fp-tableCell {
    height: 100vh !important;
  }
  .mySwiper {
    height: 100vh !important;
  }
}

@media screen and (max-width: 690px) {
  /* .content-box-desc > span {
    width: calc(100% - 24px);
  } */

  /* business-field */
  /* .field_item {
    padding: 4.34vw 3.47vw;
  } */
  .scale-frame {
    gap: 16px;
  }
  .scale-frame > img {
    width: 40px;
    height: 40px;
  }
  .scale-frame .field_txt {
    text-align: left;
  }
  .scale-frame .field_txt span::before {
    margin: 8px 0;
  }
  .scale-frame .field_txt b {
    font-size: 16px;
  }
  .scale-frame .field_txt span {
    font-size: 14px;
  }
}
/* mobile */
@media screen and (max-width: 480px) {
  .content-box-desc {
    font-size: 12px;
  }
  .scale-frame {
    width: 100%;
  }
  .scale-frame > img {
    width: 40px;
    height: 40px;
  }
  .scale-frame .field_txt {
    width: 100%;
    max-width: calc(100% - 40px);
  }
}
@media screen and (max-width: 375px) {
  .tab-box {
    padding: 4.26vw 2.13vw;
  }
  .tab-item {
    padding: 2.13vw 0;
    font-size: 3.73vw;
  }
}
