@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
  overflow: hidden;
}
html h2,
html ul,
html p,
body h2,
body ul,
body p {
  padding: 0;
  margin: 0;
}
html li,
body li {
  outline: none;
  list-style: none;
}
html a,
body a {
  text-decoration: none;
}

.cont {
  display: none;
}

main {
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  box-sizing: border-box;
  background-color: black;
  overflow-x: hidden;
  /* 스크롤바 스타일 설정 */
}
main::-webkit-scrollbar {
  width: 8px;
}
main::-webkit-scrollbar-thumb {
  background-color: #333;
  /* 스크롤바 색상 */
  border-radius: 4px;
}
main::-webkit-scrollbar-track {
  background-color: #000;
  /* 트랙 배경색 */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

button,
a,
label {
  padding: unset;
  box-sizing: border-box;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  background-color: unset;
  color: black;
  text-decoration: none;
}
button:focus,
a:focus,
label:focus {
  outline: none;
}
button:hover,
a:hover,
label:hover {
  opacity: 0.7;
  transition: 0.2s ease-in-out;
}

@keyframes scroll-spin {
  0% {
    transform: translateY(-100px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}
.main-page .section1 {
  width: 100%;
  height: calc(100vh - 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
}
.main-page .section1 .section1-video {
  position: absolute;
  transform: translate(-50%, 0);
  top: 0;
  left: 0;
  width: 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  /* 흐릿함 추가하고 싶다면 blur도 */
  transform: scale(1.01);
}
.main-page .section1 .mouse-scroll {
  position: absolute;
  width: 53px;
  height: 78px;
  border-radius: 42px;
  display: flex;
  flex-direction: column;
  z-index: 50;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  background-color: #1d1f22;
  bottom: 14vh;
  left: 50%;
  transform: translate(-50%);
  color: white;
}
.main-page .section1 .mouse-scroll .mouse-scroll-img-box {
  overflow: hidden;
}
.main-page .section1 .mouse-scroll .mouse-scroll-img-box .mouse-scroll-img {
  animation: scroll-spin 1.5s ease-in-out infinite;
}
.main-page .section1 .mouse-scroll .scroll-text {
  font-size: 10px;
  color: #F5F6F8;
  font-family: "Montserrat", sans-serif;
}
.main-page .section1 .fade-out {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.main-page .section1 .fade-in {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.main-page .section1 .hidden {
  display: none;
}
.main-page .section1 .section1-title-box {
  width: 100%;
  z-index: 1;
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
  padding-top: 20vh;
  display: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-page .section1 .section1-title-box .section1-logo {
  width: 100%;
  bottom: 0;
  position: absolute;
}
.main-page .section1 .section1-title-box .fade-wrapper {
  width: 1300px;
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-extra {
  width: 796px;
  transform: translateY(-220px);
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-extra img {
  width: 100%;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-extra2 {
  transform: translateY(-250px);
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title {
  color: white;
  flex-direction: column;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-main-text {
  font-weight: 700;
  font-size: 45px;
  line-height: 140%;
  padding-bottom: 16px;
  white-space: nowrap;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-sub-text {
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 150%;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .banner1-text {
  max-width: 100vw;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .banner1-text > img {
  width: 100%;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .about-company {
  width: 181px;
  height: 52px;
  display: flex;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  color: white;
  font-size: 18px;
  font-weight: 700;
}
.main-page .section1 .section1-title-box .fade-wrapper .section1-title .ubuntu-text {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 120%;
}
.main-page .section1 .section1-title-box .fade1-wrapper {
  width: 1000px;
  margin: 0 auto;
  justify-content: unset;
  align-items: center;
}
.main-page .section1 .section1-title-box-2 {
  background-image: -webkit-image-set(url("../../../images/dxworks/main/section1/section1-title2.png") 1x, url("../../../images/dxworks/main/section1/section1-title2@2x.png") 2x, url("../../../images/dxworks/main/section1/section1-title2@3x.png") 3x);
  background-image: image-set(url("../../../images/dxworks/main/section1/section1-title2.png") 1x, url("../../../images/dxworks/main/section1/section1-title2@2x.png") 2x, url("../../../images/dxworks/main/section1/section1-title2@3x.png") 3x);
}
.main-page .section1 .active {
  display: block;
}
.main-page .section1 .pagination-btn-wrapper {
  z-index: 1;
  position: absolute;
  bottom: 25vh;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translate(-50%, 0%);
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.main-page .section1 .pagination-btn-wrapper .pagination-indicator {
  display: flex;
  color: white;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.main-page .section1 .pagination-btn-wrapper .pagination-indicator .pagination-line {
  width: 286px;
  height: 1px;
  background-color: #949494;
  position: relative;
  overflow: hidden;
}
.main-page .section1 .pagination-btn-wrapper .pagination-indicator .pagination-line .pagination-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 146px;
  height: 1px;
  background-color: white;
  transition: transform 0.4s ease;
}
.main-page .section2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.main-page .section2 .section2-title-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 138px;
       column-gap: 138px;
  position: absolute;
  top: 100px;
}
.main-page .section2 .section2-title-box .left-title-wrapper {
  position: relative;
}
.main-page .section2 .section2-title-box .left-title-wrapper .left-title {
  display: inline-block;
}
.main-page .section2 .section2-title-box .left-title-wrapper .left-title > div {
  display: inline-block;
  font-weight: 700;
  font-size: 34px;
  white-space: pre-line;
  line-height: 140%;
  color: white;
  opacity: 0.3;
  letter-spacing: -0.08em;
}
.main-page .section2 .section2-title-box .right-title {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  color: white;
}
.main-page .section2 .section2-title-box .right-title .title-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.main-page .section2 .section2-title-box .right-title .width-dx-box {
  width: 181px;
  height: 52px;
  border: 1px solid white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-page .section3 {
  display: flex;
  justify-content: center;
  -moz-column-gap: 28px;
       column-gap: 28px;
  padding-bottom: 113px;
  box-sizing: border-box;
}
.main-page .section3 .section3-left-box {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  color: white;
}
.main-page .section3 .section3-left-box .tb {
  display: none;
}
.main-page .section3 .section3-left-box .mb {
  display: none;
}
.main-page .section3 .section3-left-box .top-text {
  font-size: 34px;
  font-weight: 700;
  line-height: 140%;
}
.main-page .section3 .section3-left-box .top-text span {
  color: #0095FF;
}
.main-page .section3 .section3-left-box .center-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.main-page .section3 .section3-left-box .works-box {
  width: 181px;
  height: 52px;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.main-page .section3 .section3-right-box {
  display: flex;
  -moz-column-gap: 17px;
       column-gap: 17px;
}
.main-page .section3 .section3-right-box .box {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
}
.main-page .section3 .section3-right-box .section3-card {
  width: 319px;
  height: 358px;
  border: 1px solid #5C6770;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(41, 91, 255, 0.6);
  display: flex;
  flex-direction: column;
  padding: 24px 24px;
  box-sizing: border-box;
  justify-content: space-between;
}
.main-page .section3 .section3-right-box .section3-card .card-title {
  font-size: 34px;
  color: white;
  font-weight: 700;
}
.main-page .section3 .section3-right-box .section3-card .card-bottom-box {
  display: flex;
  justify-content: space-between;
}
.main-page .section3 .section3-right-box .section3-card .card-bottom-box .arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
}
.main-page .section3 .section3-right-box .blockchain-card {
  position: relative;
  top: 84px;
}
.main-page .section4 {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  padding: 94px 0px;
  box-sizing: border-box;
  background: linear-gradient(to top, #1A1B23 0%, #000000 100%);
  transition: background 0.3s ease;
  overflow: hidden;
  position: relative;
}
.main-page .section4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 149, 255, 0.2) 0%, #000 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 0;
}
.main-page .section4 .section4-title {
  color: white;
  font-size: 34px;
  line-height: 140%;
  text-align: center;
  font-weight: 700;
}
.main-page .section4 .section4-title span {
  color: #0095FF;
}
.main-page .section4 .btn-box {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}
.main-page .section4 .btn-box .btn {
  width: 181px;
  height: 52px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.main-page .section4 .btn-box .white {
  color: black;
  background-color: white;
}
.main-page .section4 * {
  position: relative;
  z-index: 1;
}
.main-page .section4:hover::before {
  transform: translateY(0%);
  opacity: 1;
}
.main-page .section5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 110px;
  padding-top: 167px;
  box-sizing: border-box;
  position: relative;
}
.main-page .section5 .section5-title-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 16px;
}
.main-page .section5 .section5-title-box .color-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #0095FF;
  text-align: center;
}
.main-page .section5 .section5-title-box .sectoin5-title {
  color: white;
  line-height: 140%;
  font-size: 34px;
  text-align: center;
  font-weight: 700;
}
.main-page .section5 .section5-title-box .sectoin5-title .mb {
  display: none;
}
.main-page .section5 .section5-title-box .blockchain-x {
  font-size: 18px;
  font-weight: 700;
  width: 181px;
  height: 52px;
  border: 1px solid white;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-page .section5 .section5-img-list {
  display: grid;
  position: absolute;
  grid-template-columns: repeat(4, 436px);
  bottom: 141px;
  justify-content: center;
}
.main-page .section5 .section5-img-list > img {
  width: 100%;
  position: relative;
}
.main-page .section5 .section5-img-list > img:nth-child(1) {
  left: 300px;
}
.main-page .section5 .section5-img-list > img:nth-child(2) {
  left: 100px;
}
.main-page .section5 .section5-img-list > img:nth-child(3) {
  left: -100px;
}
.main-page .section5 .section5-img-list > img:nth-child(4) {
  left: -300px;
}
.main-page .section6 {
  width: 100%;
  height: 507px;
  background-image: url("../../../images/dxworks/main/section6/bg-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.main-page .section6 .text-box {
  width: 1126px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.main-page .section6 .text-box .top-text {
  color: #0095FF;
  font-size: 24px;
  font-weight: 700;
}
.main-page .section6 .text-box .middle-text {
  font-size: 34px;
  font-weight: 700;
  white-space: pre-line;
  line-height: 140%;
  color: white;
}
.main-page .section6 .text-box .middle-text br {
  display: none;
}
.main-page .section6 .text-box .middle-text span {
  color: #0095FF;
}
.main-page .section6 .text-box .careers {
  width: 181px;
  height: 52px;
  color: white;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-section {
  width: 100%;
  background-color: #1A1B23;
  padding: 56px;
  box-sizing: border-box;
  color: #ABB3BA;
}
.footer-section .footer-nav-list {
  margin: 27px 0 12px;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  -moz-column-gap: 25px;
       column-gap: 25px;
  border-bottom: solid 1px #44464F;
}
.footer-section .footer-nav-list .footer-nav-list-item {
  font-size: 14px;
  font-weight: 400;
  color: #ABB3BA;
}
.footer-section .footer-content-container {
  margin-bottom: 40px;
}
.footer-section .footer-content-container .footer-content-list {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.footer-section .footer-content-container .footer-content-list .footer-content-list-col {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  font-size: 13px;
}
.footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item .footer-content-list-item-title {
  width: 80px;
  font-weight: 700;
}
.footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item .footer-content-list-item-desc {
  font-weight: 400;
}
.footer-section .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-section .footer-bottom-wrapper .footer-bottom-text {
  font-size: 13px;
  font-weight: 400;
}
.footer-section .footer-bottom-wrapper .footer-bottom-sns-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

@media screen and (max-width: 1440px) {
  .main-page .pc-br {
    display: none;
  }
  .main-page .section1 {
    height: calc(100vh - 80px);
    box-sizing: border-box;
    max-height: 960px;
    min-height: 500px;
  }
  .main-page .section1 .section1-video {
    top: 20vh;
    left: 0;
  }
  .main-page .section1 .section1-title-box {
    flex-direction: column;
    padding-top: unset;
    height: 100%;
  }
  .main-page .section1 .section1-title-box .fade-wrapper {
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 0px;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 50vh;
    box-sizing: border-box;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title {
    display: flex;
    text-align: center;
    z-index: 1;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .about-company {
    margin: 0 auto;
    margin-top: 16px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-main-text {
    font-size: 30px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-sub-text {
    font-size: 16px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-extra1 {
    width: 600px;
    position: absolute;
    bottom: 0;
    z-index: 10;
    transform: unset;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title1 {
    padding-top: 0px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-extra2 {
    z-index: 0;
    transform: unset;
    position: absolute;
    width: 55vh;
    bottom: 0;
  }
  .main-page .section1 .pagination-btn-wrapper {
    bottom: 18%;
    z-index: 1;
  }
  .main-page .section1 .section1-logo {
    bottom: 0;
  }
  .main-page .section1 .mouse-scroll {
    bottom: 0;
  }
  .main-page .section2 {
    padding-top: 79px;
    padding-bottom: 142px;
    box-sizing: border-box;
  }
  .main-page .section2 .section2-title-box {
    flex-direction: column;
    text-align: center;
    row-gap: 16px;
    position: unset;
  }
  .main-page .section2 .section2-title-box .width-dx-box {
    margin: 0 auto;
  }
  .main-page .section2 picture img {
    height: 480px;
  }
  .main-page .section3 {
    flex-direction: column;
    row-gap: 72px;
    padding: 0px 20px;
    box-sizing: border-box;
  }
  .main-page .section3 .section3-left-box {
    text-align: center;
  }
  .main-page .section3 .section3-left-box .tb {
    display: block;
  }
  .main-page .section3 .section3-left-box .pc {
    display: none;
  }
  .main-page .section3 .section3-left-box .works-box {
    margin: 0 auto;
  }
  .main-page .section3 .section3-right-box {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .main-page .section3 .section3-right-box::-webkit-scrollbar {
    display: none;
  }
  .main-page .section3 .section3-right-box .box {
    flex-direction: unset;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .main-page .section3 .section3-right-box .section3-card {
    flex: 0 0 auto;
  }
  .main-page .section3 .section3-right-box .blockchain-card {
    position: unset;
    top: 0;
  }
  .main-page .section4 {
    margin-top: 197px;
  }
  .main-page .section5 .section5-title-box .color-title-text {
    font-size: 24px;
  }
  .main-page .section5 .section5-img-list {
    grid-template-columns: repeat(4, 238px);
    bottom: 100px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(1) {
    left: 150px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(2) {
    left: 50px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(3) {
    left: -50px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(4) {
    left: -150px;
  }
  .main-page .section6 .text-box {
    width: auto;
    align-items: center;
  }
  .main-page .section6 .text-box .middle-text {
    text-align: center;
  }
  .footer-section {
    padding: 38px;
  }
  .footer-section .footer-nav-list {
    margin: 24px 0 12px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .footer-section .footer-content-container {
    margin-bottom: 28px;
  }
  .footer-section .footer-content-container .footer-content-list {
    flex-direction: column;
  }
  .footer-section .footer-content-container .footer-content-list .footer-content-list-col {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
  }
  .footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item {
    font-size: 12px;
  }
  .footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item .footer-content-list-item-title {
    width: 78px;
    white-space: nowrap;
  }
  .footer-section .footer-content-container .footer-content-list .footer-content-list-col .footer-content-list-item .footer-content-list-item-desc {
    font-weight: 400;
    flex: 1;
  }
  .footer-section .footer-bottom-wrapper {
    align-items: flex-start;
    flex-direction: column-reverse;
    row-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .no-mb-br {
    display: none;
  }
  .main-page .section1 {
    height: calc(100vh - 80px);
    max-height: 960px;
    min-height: 500px;
    padding-top: 5vh;
  }
  .main-page .section1 .section1-video {
    top: 40vh;
  }
  .main-page .section1 .section1-title-box .fade-wrapper {
    row-gap: 42px;
    padding-bottom: 45vh;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title {
    row-gap: 24px;
    align-items: center;
    row-gap: unset;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-main-text {
    font-size: 30px;
    padding-bottom: 8px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .section1-sub-text {
    font-size: 16px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-title .banner1-btn {
    margin: 0 auto;
    margin-top: 16px;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-extra1 {
    display: flex;
    justify-content: center;
    text-align: center;
    display: unset;
    width: 50vh;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-extra1 picture {
    margin: 0 auto;
    text-align: center;
  }
  .main-page .section1 .section1-title-box .fade-wrapper .section1-extra2 {
    z-index: 0;
    width: 45vh;
    display: unset;
  }
  .main-page .section1 .section1-title-box .section1-logo {
    bottom: 80px;
  }
  .main-page .section1 .mouse-scroll {
    bottom: -100px;
  }
  .main-page .section1 .pagination-btn-wrapper {
    bottom: 5vh;
  }
  .main-page .section1 .pagination-btn-wrapper .pagination-indicator .pagination-line {
    width: 167px;
  }
  .main-page .section1 .pagination-btn-wrapper .pagination-indicator .pagination-line .pagination-highlight {
    width: 90px;
  }
  .main-page .section2 {
    padding-top: 250px;
  }
  .main-page .section2 .section2-title-box .left-title-wrapper .left-title {
    white-space: unset;
    width: 250px;
  }
  .main-page .section2 .section2-title-box .left-title-wrapper .left-title > div {
    font-size: 26px;
  }
  .main-page .section2 .section2-title-box .right-title .title-text {
    font-size: 16px;
    white-space: unset;
  }
  .main-page .section2 .section2-title-box .right-title .title-text br {
    display: block;
  }
  .main-page .section2 picture img {
    height: auto;
  }
  .main-page .section3 .section3-left-box .top-text {
    font-size: 26px;
  }
  .main-page .section3 .section3-left-box .top-text .pc {
    display: none;
  }
  .main-page .section3 .section3-left-box .top-text .tb {
    display: none;
  }
  .main-page .section3 .section3-left-box .top-text .mb {
    display: block;
  }
  .main-page .section3 .section3-left-box .center-text {
    font-size: 16px;
  }
  .main-page .section3 .section3-right-box {
    flex-direction: column;
    overflow: unset;
    row-gap: 40px;
    align-items: center;
  }
  .main-page .section3 .section3-right-box .section3-card {
    width: 320px;
    height: 358px;
  }
  .main-page .section3 .section3-right-box .box {
    row-gap: 40px;
    flex-direction: column;
  }
  .main-page .section4 {
    padding: 84px 0px;
  }
  .main-page .section4 .section4-title {
    font-size: 26px;
  }
  .main-page .section4 .btn-box {
    flex-direction: column;
    row-gap: 16px;
  }
  .main-page .section5 .section5-title-box .color-title-text {
    font-size: 18px;
  }
  .main-page .section5 .section5-title-box .sectoin5-title {
    font-size: 26px;
  }
  .main-page .section5 .section5-title-box .sectoin5-title .pc {
    display: none;
  }
  .main-page .section5 .section5-title-box .sectoin5-title .mb {
    display: block;
  }
  .main-page .section5 .section5-img-list {
    grid-template-columns: repeat(4, 105px);
    bottom: 100px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(1) {
    left: 75px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(2) {
    left: 25px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(3) {
    left: -25px;
  }
  .main-page .section5 .section5-img-list > img:nth-child(4) {
    left: -75px;
  }
  .main-page .section6 .text-box {
    width: auto;
    align-items: center;
    row-gap: 24px;
  }
  .main-page .section6 .text-box .top-text {
    font-size: 18px;
  }
  .main-page .section6 .text-box .middle-text {
    text-align: center;
    font-size: 26px;
    white-space: unset;
  }
  .main-page .section6 .text-box .middle-text br {
    display: block;
  }
  .main-page .section6 .text-box .careers {
    width: 181px;
    height: 51px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1441px) {
  .main-page .pc-br {
    display: block;
  }
}
@media screen and (min-width: 1441px) {
  .main-page .no-mb-br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header-section .header-nav .header-nav-list .header-nav-item:hover {
    overflow: visible;
  }
  .mb-menu,
  .mb-br,
  .mb {
    display: none !important;
  }
}/*# sourceMappingURL=index.css.map */