/* 메인 비주얼 이미지 */
#visual .bg01 {
  background: url("/img/main/visual01.jpg") no-repeat center right 10% / cover;
}
#visual .bg02 {
  background: url("/img/main/visual02.jpg") no-repeat center right 20% / cover;
}
#visual .visual .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* common */
:root {
  --secP: 160px;
  --btnH: 70px;
}

html,
body {
  background: #000;
}

#footer .info {
  background: #fff;
}
#footer address dl dt {
  font-weight: 600;
  color: #111;
}
#footer address dl dd {
  font-weight: 400;
  color: #555;
}
#footer address dl dd.eng {
  font-weight: 300;
  color: inherit;
}

#footer .bottom .copyright {
  font-weight: 400;
  color: #999;
}
#footer .bottom a {
  font-weight: 600;
  color: #333;
}

#top {
  color: #fff;
}
#top i {
  background: #fff;
}
#top i::before {
  filter: invert(1);
  -webkit-filter: invert(1);
}

#secT {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: calc(var(--stickyT) * -1);
  left: 0;
}
#secB {
  background: #000;
  clip-path: inset(0 0 0 0 round 20px 20px 0 0);
  -webkit-clip-path: inset(0 0 0 0 round 20px 20px 0 0);
  position: relative;
  z-index: 100;
}

/* title-box */
.title-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.title-box h3 {
  font-family: var(--engFont);
  font-size: 8rem;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.02em;
}
.title-box.white h3 {
  color: #fff;
}

/* viewmore */
.viewmore {
  max-width: max-content;
  height: var(--btnH);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(17, 17, 17, 0.05);
  border-radius: 999px;
  font-family: var(--engFont);
  font-size: 19px;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.02em;
  padding: 0 45px;
  transition:
    background 0.3s,
    color 0.3s;
}
.viewmore span {
  color: #111;
  transition: color 0.3s;
}
.viewmore i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/img/main/viewmore_icon.svg") no-repeat center center /
    contain;
  margin-left: 10px;
  transform: rotate(0);
  transition:
    filter 0.3s,
    transform 0.3s;
}

.viewmore.white {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 400;
  color: #fff;
  backdrop-filter: blur(5px);
}
.viewmore.white span {
  color: #fff;
}
.viewmore.white i {
  filter: invert(1);
  -webkit-filter: invert(1);
}

/* btns */
.btns {
  display: flex;
}
.btns > *:not(:last-child) {
  margin-right: 15px;
}
.btns button {
  width: var(--btnH);
  height: var(--btnH);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}
.btns button i {
  display: block;
  height: 30px;
  transition: filter 0.3s;
}
.btns button.prev i {
  background: url("/img/main/icon_prev.svg") no-repeat center center / contain;
}
.btns button.next i {
  background: url("/img/main/icon_next.svg") no-repeat center center / contain;
}

/* slide-bar */
.slide-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin-top: 85px;
}
.slide-bar div {
  width: 0;
  height: 6px;
  background: #fff;
  border-radius: inherit;
  transform: translateY(-1px);
}

@media screen and (hover: hover) and (pointer: fine) {
  /* top */
  #top:hover i {
    background: rgba(255, 255, 255, 0.15);
  }
  #top:hover i::before {
    filter: unset;
    -webkit-filter: unset;
  }

  /* viewmore */
  .viewmore:hover {
    background: #333;
    font-weight: 400;
    color: #fff;
  }
  .viewmore:hover span {
    color: #fff;
  }
  .viewmore:hover i {
    filter: invert(1);
    -webkit-filter: invert(1);
    transform: rotate(90deg);
  }

  .viewmore.white:hover {
    background: #fff;
    font-weight: 500;
    color: #333;
  }
  .viewmore.white:hover span {
    color: #333;
  }
  .viewmore.white:hover i {
    filter: unset;
    -webkit-filter: unset;
  }

  /* btns */
  .btns button:hover {
    background: #fff;
  }
  .btns button:hover i {
    filter: invert(1);
    -webkit-filter: invert(1);
  }
}

@media screen and (max-width: 1700px) {
  /* common */
  :root {
    --secP: 120px;
    --btnH: 60px;
  }

  /* viewmore */
  .viewmore {
    font-size: 18px;
    padding: 0 30px;
  }
}

@media screen and (max-width: 1280px) {
  /* common */
  :root {
    --secP: 100px;
    --btnH: 50px;
  }

  /* viewmore */
  .viewmore {
    font-size: 17px;
    padding: 0 20px;
  }
  .viewmore i {
    width: 20px;
    transition: translateY(-1px);
  }

  /* btns */
  .btns > *:not(:last-child) {
    margin-right: 10px;
  }

  /* slide-bar */
  .slide-bar {
    height: 3px;
  }
  .slide-bar div {
    height: 5px;
  }
}

/* visual */
#visual {
  --arrow: 90px;
}
#visual {
  position: relative;
}
#visual .left {
  max-width: 1400px;
  width: calc(100% - var(--arrow));
}

#visual .text {
  position: absolute;
  bottom: 105px;
  left: 0;
  right: 0;
  z-index: 100;
}
#visual .text * {
  color: #fff;
}
#visual .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

#visual .visual {
  max-height: 100svh;
  height: var(--vh);
  overflow: hidden;
}
#visual .visual .bg {
  height: 100%;
  transform: scale(1.2);
}

#visual .dots {
  margin-bottom: 30px;
}
#visual .dots .slick-dots {
  display: flex !important;
}
#visual .dots .slick-dots li {
  opacity: 0.3;
  transition: opacity 0.3s;
  cursor: pointer;
}
#visual .dots .slick-dots li:not(:last-of-type) {
  margin-right: 8px;
}
#visual .dots svg {
  width: auto;
  height: auto;
  transform: rotate(-90deg);
}
#visual .dots svg circle {
  stroke-dasharray: 94;
  stroke-dashoffset: 95;
}
#visual .dots .slick-dots li.slick-active {
  opacity: 1;
}
#visual .dots .slick-dots li.slick-active svg circle {
  animation-name: circleProgress;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

#visual .txt-wrap .slick-track {
  display: flex;
  align-items: flex-end;
}
#visual .txt {
  float: unset;
}
#visual .txt h2 {
  font-family: var(--engFont);
  font-size: 10rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 35px;
}
#visual .txt h2 span {
  display: inline-block;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
#visual .txt p {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.02em;
  line-height: 1.7;
  transform: translateY(100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

#visual .visual.animated .bg {
  animation: bgScale 4s linear both;
}
#visual .txt.slick-active h2 span {
  animation: textClip 1s both;
}
#visual .txt.slick-active p {
  animation: textClip 1s both;
}

#visual .scrolldown {
  width: var(--arrow);
  height: var(--arrow);
  overflow: hidden;
}
#visual .scrolldown i {
  display: inline-block;
  width: var(--arrow);
  height: var(--arrow);
  background: url("/img/main/scrolldown.svg") no-repeat center center / contain;
  transform: translateY(-100%);
  animation: scrolldown 3s infinite;
}

@media screen and (max-width: 1700px) {
  #visual {
    --arrow: 75px;
  }
  #visual .text {
    bottom: 80px;
  }
  #visual .txt p {
    font-size: 20px;
  }

  #visual .dots {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1280px) {
  #visual {
    --arrow: 60px;
  }
  #visual .text {
    bottom: 60px;
  }
  #visual .txt p {
    font-size: 18px;
  }

  #visual .dots {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 800px) {
  #visual .left {
    width: 100%;
  }

  #visual .dots svg {
    width: 25px;
  }

  #visual .txt h2 {
    font-size: 7.2rem;
    line-height: 1.4;
    margin-bottom: 50px;
  }
  #visual .txt p {
    padding-right: calc(var(--arrow) + 20px);
  }

  #visual .scrolldown {
    position: absolute;
    bottom: 0;
    right: 20px;
  }
}

/* company */
#company {
  height: 180vh;
  background: #050505;
  position: relative;
}
#company .sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}

#company .top {
  background: #050505;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  text-align: center;
  opacity: 1;
  transition: opacity var(--aosT);
}
#company .top > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#company .top h2 {
  font-family: var(--engFont);
  font-size: 9rem;
  font-weight: 400;
  color: transparent;
  transition: font-size var(--aosT) calc(2s + var(--aosT));
}
#company .top h2 em {
  background-image: linear-gradient(
    to right,
    #fff 0 50%,
    rgba(255, 255, 255, 0.15) 50% 100%
  );
  background-size: 200% 100%;
  background-position: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: background-position 2s var(--aosT);
}
#company .top .aos-animate h2 {
  font-size: 9.9rem;
}
#company .top .aos-animate h2 em {
  background-position: 0;
}

#company .bottom {
  position: relative;
}
#company .bottom .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  clip-path: inset(50% 50% 50% 50% round 999px);
  -webkit-clip-path: inset(50% 50% 50% 50% round 999px);
  transition: clip-path 2s var(--aosT);
}
#company .bottom .bg + div {
  position: relative;
  z-index: 10;
}
#company .bottom .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#company .bottom .bg .filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity var(--aosT) 2s;
}
#company .bottom .bg .filter::before {
  content: "";
  display: block;
  height: 100%;
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.5));
  opacity: 0.8;
}

#company .bottom {
  overflow: hidden;
}
#company .bottom .inner {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#company .bottom .tit {
  margin-bottom: 110px;
  transform: translateX(var(--aosP));
  opacity: 0;
  transition:
    opacity var(--aosT) 2s,
    transform var(--aosT) 2s;
}
#company .bottom .tit span {
  display: block;
  font-family: var(--engFont);
  font-size: 24px;
  font-weight: 600;
  color: var(--mainColor);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
#company .bottom .tit h3 {
  font-size: 8.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
#company .bottom .content {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  transform: translateX(var(--aosM));
  opacity: 0;
  transition:
    opacity var(--aosT) 2s,
    transform var(--aosT) 2s;
}
#company .bottom .content p {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
  line-height: 1.7;
}
#company .bottom .content a {
  margin-top: 50px;
}

/* company - end */
#company.end .top {
  opacity: 0;
  pointer-events: none;
}
#company.end .bottom .bg {
  clip-path: inset(-999px -999px -999px -999px round 999px);
  -webkit-clip-path: inset(-999px -999px -999px -999px round 999px);
}
#company.end .bottom .bg .filter {
  opacity: 1;
}
#company.end .bottom .tit,
#company.end .bottom .content {
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 1700px) {
  #company .bottom .tit {
    margin-bottom: 80px;
  }
  #company .bottom .tit span {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #company .bottom .content p {
    font-size: 18px;
  }
  #company .bottom .content a {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1280px) {
  #company .bottom .tit {
    margin-bottom: 50px;
  }
  #company .bottom .tit span {
    font-size: 17px;
    margin-bottom: 20px;
  }
  #company .bottom .content p {
    font-size: 17px;
  }
  #company .bottom .content a {
    margin-top: 30px;
  }
}

@media screen and (max-width: 900px) {
  #company .top h2 {
    font-size: 7.5rem;
  }
  #company .top .aos-animate h2 {
    font-size: 8rem;
  }

  #company .bottom .tit h3 {
    font-size: 7rem;
  }
}

@media screen and (max-width: 550px) {
  #company .content br {
    display: none;
  }
}

/* feelaware */
#feelaware {
  --strongB: 9rem;
  --strongA: 10rem;
  --supB: 30px;
  --supA: 40px;
}
#feelaware {
  background: #fff;
  padding: var(--secP) 0 calc(var(--secP) + 20px);
  margin-bottom: -20px;
}
#feelaware .title-box {
  margin-bottom: 130px;
}
#feelaware .sec {
  margin: -20px 0;
}
#feelaware .grid-box {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  margin: 0 -20px;
}
#feelaware .grid-box > * {
  border-radius: 40px;
  margin: 20px;
  position: relative;
}
#feelaware dl {
  height: 100%;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.02em;
  padding: 50px;
}
#feelaware dl {
  font-weight: 500;
}
#feelaware dl dt {
  font-size: 22px;
  color: #333;
  transition: color 0.4s;
}
#feelaware dl dd {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  font-family: var(--engFont);
  font-size: var(--supB);
  color: #111;
  transition: color 0.4s;
}
#feelaware dl dd strong,
#feelaware dl dd sup {
  transition: font-size 0.4s;
  will-change: font-size;
}
#feelaware dl dd strong {
  font-size: var(--strongB);
  font-weight: 500;
  vertical-align: middle;
}
#feelaware dl dd strong.base {
  --strongB: 6rem;
  --strongA: 6.4rem;
  font-family: var(--baseFont);
  font-weight: 600;
}
#feelaware dl dd sup {
  font-size: var(--supB);
  margin-left: 13px;
  vertical-align: super;
}
#feelaware dl dd p {
  font-size: 24px;
}

#feelaware .item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#feelaware .item dl {
  background: #f5f5f5;
  border: 3px solid #f5f5f5;
  border-radius: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition:
    background 0.4s,
    border 0.4s;
}
#feelaware .item.border dl {
  background: #fff;
  border: 3px dashed #ddd;
}
#feelaware .item dl dd {
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

#feelaware .block {
  grid-column: auto / span 2;
  z-index: 10;
}
#feelaware .block .bg {
  border-radius: inherit;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#feelaware .block .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1);
  transition: transform 0.4s;
}
#feelaware .block dl {
  font-weight: 400;
}
#feelaware .block dl dt {
  color: rgba(255, 255, 255, 0.8);
}
#feelaware .block dl dd {
  justify-content: flex-end;
  color: #fff;
  padding-top: 20px;
}

@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .item:hover dl {
    background: #111;
    border: 3px solid #111;
  }
  #feelaware .grid-box > *:hover dl dt {
    color: var(--mainColor) !important;
  }
  #feelaware .grid-box > *:hover dl dd {
    color: #fff !important;
  }
  #feelaware .grid-box > *:hover dl dd strong {
    font-size: var(--strongA);
  }
  #feelaware .grid-box > *:hover dl dd sup {
    font-size: var(--supA);
  }

  #feelaware .block:hover .bg img {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 1700px) {
  #feelaware {
    --supB: 26px;
    --supA: 30px;
  }
  #feelaware .title-box {
    margin-bottom: 80px;
  }
  #feelaware .sec {
    margin: -10px 0;
  }
  #feelaware .grid-box {
    margin: 0 -10px;
  }
  #feelaware .grid-box > * {
    margin: 10px;
  }

  #feelaware dl {
    padding: 40px;
  }
  #feelaware dl dt {
    font-size: 20px;
  }
  #feelaware dl dd p {
    font-size: 22px;
  }
}

@media screen and (max-width: 1280px) {
  #feelaware {
    --strongB: 9rem;
    --strongA: 9.5rem;
    --supB: 22px;
    --supA: 25px;
  }
  #feelaware .title-box {
    margin-bottom: 40px;
  }

  #feelaware .grid-box > * {
    border-radius: 30px;
  }
  #feelaware dl {
    padding: 25px;
  }
  #feelaware dl dt {
    font-size: 18px;
  }
  #feelaware dl dd p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1000px) {
  #feelaware .grid-box {
    grid-template-columns: repeat(2, 50%);
  }
  #feelaware .item {
    order: 2;
  }
  #feelaware .block {
    order: 1;
  }

  #feelaware .block {
    padding-bottom: 50%;
  }
  #feelaware .block dl {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media screen and (max-width: 900px) {
  #feelaware {
    --supB: 19px;
    --supA: 22px;
  }
  #feelaware {
    position: relative;
    padding: 50px 0 calc(var(--secP) + var(--btnH) + 40px);
  }
  #feelaware .title-box {
    margin-bottom: 25px;
  }
  #feelaware .title-box div {
    position: absolute;
    bottom: var(--secP);
    left: 0;
    right: 0;
  }
  #feelaware .title-box a {
    margin: 0 auto;
  }
}

/* customer */
#customer {
  --left: 510px;
  --arrow: 24px;
}
#customer {
  background: url("/img/main/customer_bg.png") no-repeat top center / cover;
  border-radius: 20px 20px 0 0;
  padding: var(--secP) 0;
}
#customer .title-box {
  margin-bottom: 95px;
}
#customer .grid-box {
  display: grid;
  grid-template-columns: var(--left) calc(100% - var(--left));
  align-items: flex-end;
}
#customer .btns {
  --btnH: 100px;
}
#customer .btns button i {
  height: 36px;
}

#customer .customer-wrap {
  width: calc(100% + ((100vw - 1720px) / 2));
}
#customer .customer-wrap .slick-list {
  padding-top: 40px;
  margin-right: -19px;
}
#customer .customer-wrap .slick-track {
  display: flex;
}
#customer .customer,
#customer .customer::before,
#customer .customer::after {
  border-radius: 20px;
  background-origin: border-box;
  -webkit-background-origin: border-box;
  background-clip: content-box, border-box;
  -webkit-background-clip: content-box, border-box;
}
#customer .customer::before,
#customer .customer::after {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 3px solid transparent;
  position: absolute;
  top: -1px;
  left: -1px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s;
}
#customer .customer {
  width: 560px;
  height: auto !important;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#000, #000), linear-gradient(146deg, #bbb, #151515, #bbb);
  position: relative;
  margin-top: 0;
  margin-right: 19px;
  float: unset !important;
  opacity: 0.6;
  transition:
    transform 0.4s,
    opacity 0.4s;
}
#customer .customer::before {
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(146deg, var(--mainColor), #151515, var(--mainColor));
}
#customer .customer::after {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(146deg, var(--mainColor), #f5f5f5, var(--mainColor));
}

#customer .customer a {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px;
  position: relative;
  z-index: 100;
}
#customer .customer .figure {
  margin-bottom: 55px;
  position: relative;
}
#customer .customer .figure::after {
  content: "";
  width: var(--arrow);
  height: var(--arrow);
  background: url("/img/main/customer_arrow.svg") no-repeat center center /
    contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  filter: invert(1);
  -webkit-filter: invert(1);
  transition: filter 0.4s;
}
#customer .customer .figure figure {
  height: 50px;
  display: flex;
  align-items: center;
  padding-right: calc(var(--arrow) + 20px);
  opacity: 0;
  transition: opacity 0.4s;
}
#customer .customer .figure figure:first-of-type {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
#customer .customer .figure figure:first-of-type img {
  filter: grayscale(1) brightness(10);
  -webkit-filter: grayscale(1) brightness(10);
}
#customer .customer figure img {
  max-height: 100%;
}

#customer .customer .content {
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}
#customer .customer .relative {
  opacity: 0;
}
#customer .customer .absolute {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#customer .customer .absolute > h6 {
  opacity: 0;
}
#customer .customer .absolute div {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition:
    top 0.4s,
    transform 0.4s;
  will-change: top, transform;
}

#customer .customer h6 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.4s;
}
#customer .customer h6 span {
  display: block;
  font-family: var(--engFont);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  transition: color 0.4s;
}
#customer .customer ul {
  margin-top: 30px;
}
#customer .customer ul li {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
  transition: color 0.4s;
}
#customer .customer ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
#customer .customer ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  top: calc(1.6em / 2);
  left: 0;
  transform: translateY(-50%);
  transition: background 0.4s;
}

#customer .customer.slick-active,
#customer .customer.slick-now {
  opacity: 1;
  transform: translateY(-40px);
}
#customer .customer.slick-active::before,
#customer .customer.slick-now::before {
  opacity: 1;
}
#customer .customer.slick-active .absolute div,
#customer .customer.slick-now .absolute div {
  top: 100%;
  transform: translateY(-100%);
}

#customer .slide-bar {
  margin-top: 85px;
}

@media screen and (hover: hover) and (pointer: fine) {
  #customer .customer:hover {
    opacity: 1;
  }
  #customer .customer:hover::before {
    opacity: 0 !important;
  }
  #customer .customer:hover::after {
    opacity: 1 !important;
  }
  #customer .customer:hover .figure::after {
    filter: unset;
    -webkit-filter: unset;
  }
  #customer .customer:hover .figure figure {
    opacity: 1;
  }
  #customer .customer:hover .figure figure:first-of-type {
    opacity: 0;
  }

  #customer .customer:hover .absolute div {
    top: 100%;
    transform: translateY(-100%);
  }
  #customer .customer:hover h6 {
    color: #111;
  }
  #customer .customer:hover h6 span {
    color: #777;
  }
  #customer .customer:hover ul li {
    color: #333;
  }
  #customer .customer:hover ul li::before {
    background: #333;
  }
}

@media screen and (max-width: 1760px) {
  #customer .customer-wrap {
    width: calc(100% + 20px);
  }
}

@media screen and (max-width: 1700px) {
  #customer {
    --left: 400px;
    --arrow: 20px;
  }
  #customer .title-box {
    margin-bottom: 70px;
  }

  #customer .btns {
    --btnH: 85px;
  }
  #customer .btns button i {
    height: 32px;
  }

  #customer .customer {
    width: 520px;
  }
  #customer .customer a {
    padding: 40px;
  }
  #customer .customer .figure {
    margin-bottom: 40px;
  }
  #customer .customer .figure figure {
    height: 40px;
  }
  #customer .customer h6 {
    font-size: 22px;
  }
  #customer .customer h6 span {
    font-size: 18px;
  }

  #customer .slide-bar {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1280px) {
  #customer {
    --left: 300px;
    --arrow: 17px;
  }
  #customer .title-box {
    margin-bottom: 40px;
  }

  #customer .btns {
    --btnH: 70px;
  }
  #customer .btns button i {
    height: 28px;
  }

  #customer .customer {
    width: 450px;
  }
  #customer .customer a {
    padding: 30px;
  }
  #customer .customer .figure {
    margin-bottom: 25px;
  }
  #customer .customer .figure figure {
    height: 35px;
  }
  #customer .customer h6 {
    font-size: 20px;
  }
  #customer .customer h6 span {
    font-size: 17px;
  }
  #customer .customer ul {
    margin-top: 20px;
  }
  #customer .customer ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }

  #customer .slide-bar {
    margin-top: 35px;
  }
}

@media screen and (max-width: 1200px) {
  #customer {
    position: relative;
    padding-bottom: calc(var(--secP) + var(--btnH));
  }
  #customer .title-box {
    margin-bottom: 25px;
  }
  #customer .title-box div {
    position: absolute;
    bottom: var(--secP);
    left: 0;
    right: 0;
  }
  #customer .title-box a {
    margin: 0 auto;
  }

  #customer .grid-box {
    display: block;
    position: relative;
  }
  #customer .slide-bar {
    width: calc(100% - ((var(--btnH) * 2) + 50px));
    margin: var(--btnH) 0;
  }

  #customer .customer {
    width: 400px;
  }

  #customer .btns {
    position: absolute;
    bottom: 1px;
    right: 0;
    transform: translateY(50%);
  }
  #customer .btns {
    --btnH: 60px;
  }
  #customer .btns button i {
    height: 24px;
  }
}

@media screen and (max-width: 900px) {
  #customer {
    padding-top: 50px;
  }
}

/* news */
#news {
  background: url("/img/main/news_bg.png") no-repeat bottom center / cover;
  padding-bottom: 190px;
}
#news .title-box {
  margin-bottom: 95px;
}
#news .slick-list {
  margin-right: -30px;
}

#news .news {
  margin-right: 30px;
}
#news .news figure {
  display: block;
  position: relative;
  padding-bottom: 58.825%;
  border-radius: 20px;
  overflow: hidden;
}
#news .news figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.4s;
}
#news .news .text {
  margin-top: 30px;
}
#news .news .text span {
  font-size: 18px;
  font-weight: 500;
  color: var(--mainColor);
  letter-spacing: -0.02em;
}
#news .news .text h6 {
  height: 3.2em;
  display: -webkit-box;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.6;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 15px 0 30px;
}
#news .news .text p {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  letter-spacing: -0.02em;
}

#news .slide-bar {
  margin-top: 100px;
}

@media screen and (hover: hover) and (pointer: fine) {
  #news .news:hover figure img {
    transform: translate(-50%, -50%) scale(1.07);
  }
}

@media screen and (max-width: 1700px) {
  #news {
    padding-bottom: 140px;
  }
  #news .title-box {
    margin-bottom: 70px;
  }

  #news .news .text {
    margin-top: 20px;
  }
  #news .news .text span {
    font-size: 16px;
  }
  #news .news .text h6 {
    font-size: 20px;
    margin: 10px 0 20px;
  }

  #news .slide-bar {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1280px) {
  #news {
    padding-bottom: 100px;
  }
  #news .title-box {
    margin-bottom: 40px;
  }

  #news .news .text {
    margin-top: 15px;
  }
  #news .news .text span {
    font-size: 15px;
  }
  #news .news .text h6 {
    font-size: 18px;
  }
  #news .news .text p {
    font-size: 15px;
  }

  #news .slide-bar {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1200px) {
  #news {
    padding-bottom: calc(var(--btnH) + 140px);
    position: relative;
  }
  #news .title-box {
    margin-bottom: 25px;
  }
  #news .btns {
    justify-content: center;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 650px) {
  #news .news-wrap {
    width: calc(100% + 20px);
  }
  #news .news {
    width: 350px;
  }
}

/* feelaware - customership */
#feelaware .block.customership {
  background: #080a0e;
}
#feelaware .block.customership .bg img {
  object-position: center center;
}
#feelaware .block.customership dl {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#feelaware .block.customership dl dt {
  font-family: var(--engFont);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
#feelaware .block.customership dl dd {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 0;
  justify-content: center;
}

#feelaware .logo-rows {
  width: 100%;
}
#feelaware .logo-row {
  overflow: hidden;
}
#feelaware .logo-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeLeft 35s linear infinite;
}
#feelaware .logo-row:hover .logo-inner {
  animation-play-state: paused;
}
#feelaware .logo-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 90px;
  flex-shrink: 0;
}
#feelaware .logo-inner span img {
  max-width: 160px;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .logo-inner span:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1700px) {
  #feelaware .block.customership dl dt {
    font-size: 20px;
  }
  #feelaware .logo-inner span {
    width: 180px;
    height: 74px;
  }
  #feelaware .logo-inner span img {
    max-width: 130px;
    max-height: 44px;
  }
}

@media screen and (max-width: 1280px) {
  #feelaware .block.customership dl dt {
    font-size: 18px;
  }
  #feelaware .logo-inner span {
    width: 150px;
    height: 60px;
  }
  #feelaware .logo-inner span img {
    max-width: 110px;
    max-height: 38px;
  }
}

@media screen and (max-width: 900px) {
  #feelaware .logo-inner span {
    width: 130px;
    height: 52px;
  }
  #feelaware .logo-inner span img {
    max-width: 96px;
    max-height: 32px;
  }
}

/* feelaware - growth */
#feelaware .item.growth .bg {
  border-radius: inherit;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
#feelaware .item.growth .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#feelaware .item.growth .bg .bg-hover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s;
}
#feelaware .item.growth .bg .bg-default {
  transition: opacity 0.4s;
}
#feelaware .item.growth dl {
  background: transparent !important;
  border: none !important;
  z-index: 1;
}
#feelaware .item.growth dl dt {
  color: #fff;
  font-family: var(--engFont);
  font-size: 22px;
  font-weight: 300;
}
#feelaware .item.growth dl dd {
  justify-content: flex-end;
  color: #fff;
}
#feelaware .item.growth .year {
  display: block;
  font-size: 24px;
  font-weight: 200;
  color: transparent;
  font-family: var(--baseFont);
  line-height: 1.3;
  transition: color 0.4s;
  text-align: left;
  margin-bottom: 7px;
}
#feelaware .item.growth strong {
  display: block;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--baseFont);
  color: #fff;
  line-height: 1.3;
  transition: font-size 0.4s;
  text-align: left;
}

@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .item.growth:hover dl {
    background: transparent !important;
    border: none !important;
  }
  #feelaware .item.growth:hover dl dt {
    color: #ff3287 !important;
  }
  #feelaware .item.growth:hover dl dd {
    color: #fff !important;
  }
  #feelaware .item.growth:hover dl dd strong {
    font-size: 40px;
  }
  #feelaware .item.growth:hover .year {
    color: #fff;
  }
  #feelaware .item.growth:hover .bg-default {
    opacity: 0;
  }
  #feelaware .item.growth:hover .bg-hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1700px) {
  #feelaware .item.growth dl dt {
    font-size: 20px;
  }
  #feelaware .item.growth .year {
    font-size: 22px;
  }
  #feelaware .item.growth strong {
    font-size: 32px;
  }
  @media screen and (hover: hover) and (pointer: fine) {
    #feelaware .item.growth:hover dl dd strong {
      font-size: 36px;
    }
  }
}

@media screen and (max-width: 1280px) {
  #feelaware .item.growth dl dt {
    font-size: 18px;
  }
  #feelaware .item.growth .year {
    font-size: 20px;
  }
  #feelaware .item.growth strong {
    font-size: 28px;
  }
  @media screen and (hover: hover) and (pointer: fine) {
    #feelaware .item.growth:hover dl dd strong {
      font-size: 32px;
    }
  }
}

@media screen and (max-width: 900px) {
  #feelaware .item.growth .year {
    font-size: 18px;
  }
  #feelaware .item.growth strong {
    font-size: 24px;
  }
}

/* feelaware - business */
#feelaware .item.business dl {
  background: #fff !important;
  border: 3px dashed #ddd !important;
}
#feelaware .item.business dl dt {
  color: #333;
  font-family: var(--engFont);
  font-size: 22px;
  font-weight: 300;
}
#feelaware .item.business dl dd {
  justify-content: center;
  padding: 0;
}

#feelaware .biz-circles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  transition: transform 0.4s;
}
#feelaware .biz-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}
#feelaware .biz-circle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  overflow: hidden;
  transition:
    border-color 0.4s,
    background 0.4s;
}
#feelaware .biz-circle figure {
  width: 32px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#feelaware .biz-circle figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.4s;
  -webkit-transition: -webkit-filter 0.4s;
}
#feelaware .biz-circle span {
  font-family: var(--engFont);
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.2;
  transition: color 0.4s;
}

@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .item.business:hover dl {
    background: #111 !important;
    border-color: #111 !important;
    border-style: solid !important;
  }
  #feelaware .item.business:hover dl dt {
    color: #ff3287 !important;
  }
  #feelaware .item.business:hover .biz-circles {
    transform: scale(1.09);
  }
  #feelaware .item.business:hover .biz-circle {
    border-color: #666;
  }
  #feelaware .item.business:hover .biz-circle figure img {
    filter: invert(1);
    -webkit-filter: invert(1);
  }
  #feelaware .item.business:hover .biz-circle span {
    color: #fff;
  }
}

@media screen and (max-width: 1700px) {
  #feelaware .biz-circle {
    width: 110px;
    height: 110px;
    gap: 6px;
  }
  #feelaware .biz-circles {
    gap: 12px;
  }
  #feelaware .biz-row {
    gap: 12px;
  }
  #feelaware .biz-circle figure {
    width: 28px;
    height: 32px;
  }
  #feelaware .biz-circle span {
    font-size: 14px;
  }
}

@media screen and (max-width: 1280px) {
  #feelaware .biz-circle {
    width: 72px;
    height: 72px;
  }
  #feelaware .biz-circles {
    gap: 0;
  }
  #feelaware .biz-row {
    gap: 10px;
  }
  #feelaware .biz-circle figure {
    width: 20px;
    height: 21px;
  }
  #feelaware .biz-circle span {
    font-size: 11px;
  }
}

/* @media screen and (max-width: 900px){
	#feelaware .biz-circle{ width: 72px; height: 72px; }
	#feelaware .biz-circle span{ font-size: 11px; }
} */

/* customer - white default */
#customer .customer {
  background-image:
    linear-gradient(#fff, #fff), linear-gradient(146deg, #ddd, #eee, #ddd);
  opacity: 1;
}
#customer .customer.slick-active::before,
#customer .customer.slick-now::before {
  opacity: 0;
}
#customer .customer.slick-active::after,
#customer .customer.slick-now::after {
  opacity: 0;
}
#customer .customer .figure::after {
  filter: unset;
  -webkit-filter: unset;
}
#customer .customer .figure figure:first-of-type img {
  filter: unset;
  -webkit-filter: unset;
}
#customer .customer .absolute > h6 {
  opacity: 1;
  transition: opacity 0.3s;
}
#customer .customer.slick-active .absolute > h6,
#customer .customer.slick-now .absolute > h6 {
  opacity: 0;
}
#customer .customer h6 {
  color: #111;
}
#customer .customer h6 span {
  color: #777;
}
#customer .customer ul li {
  color: #333;
}
#customer .customer ul li::before {
  background: #333;
}
@media screen and (hover: hover) and (pointer: fine) {
  #customer .customer:hover .absolute > h6 {
    opacity: 0;
  }
}

/* feelaware - hover color fix */
@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .item:hover dl dt {
    color: #b10049 !important;
  }
  #feelaware .item:hover dl dd strong {
    color: #fff;
  }
  #feelaware .block:hover dl dt {
    color: #b10049 !important;
  }
  #feelaware .block.customership:hover dl dt {
    color: #ff3287 !important;
  }
}

/* feelaware - partnership */
#feelaware .item.partnership dl {
  background: #f5f5f5 !important;
  border: 3px solid #f5f5f5 !important;
}
#feelaware .item.partnership dl dt {
  color: #333;
  font-family: var(--engFont);
  font-size: 22px;
  font-weight: 300;
}
#feelaware .item.partnership dl dd {
  justify-content: center;
  padding: 0;
}

#feelaware .partner-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
#feelaware .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s;
}
#feelaware .partner-logo img {
  display: block;
  max-width: 200px;
  max-height: 40px;
  object-fit: contain;
  transition: opacity 0.4s;
}
#feelaware .partner-logo .logo-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.new_customer_txt {
  color: #fff;
  font-family: "S-Core Dream";
  font-size: clamp(18px, 2.6vw, 24px);
  font-style: normal;
  font-weight: 200;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.48px;
}

.title-box.column {
  flex-direction: column;
  gap: 20px;

  align-items: flex-start;
}

@media screen and (hover: hover) and (pointer: fine) {
  #feelaware .item.partnership:hover dl {
    background: #111 !important;
    border-color: #111 !important;
  }
  #feelaware .item.partnership:hover dl dt {
    color: #ff3287 !important;
  }
  #feelaware .item.partnership:hover dl dd {
    color: #fff !important;
  }
  #feelaware .item.partnership:hover .logo-default {
    opacity: 0;
  }
  #feelaware .item.partnership:hover .logo-hover {
    opacity: 1;
  }
  #feelaware .item.partnership:hover .partner-logo {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 1700px) {
  #feelaware .partner-logos {
    gap: 15px;
  }
  #feelaware .partner-logo img {
    max-width: 170px;
    max-height: 34px;
  }
}

@media screen and (max-width: 1280px) {
  #feelaware .partner-logos {
    gap: 12px;
  }
  #feelaware .partner-logo img {
    max-width: 140px;
    max-height: 28px;
  }
}

@media screen and (max-width: 900px) {
  #feelaware .partner-logo img {
    max-width: 120px;
    max-height: 24px;
  }
}
