/* MAIN  */
.body-main {
  overflow-x: hidden;
}

.section {
  position: relative;
}

.sec-header {
  text-align: center;
}

.sec-tit {
  font-size: 4.5rem;
  font-weight: 700;
  color: #011226;
  letter-spacing: -.05em;
}

.sec-desc {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #374b5e;

}

.mo-only {
  display: none;
}

@media (max-width: 768px) {
  .sec-tit {
    font-size: 30px;
  }

  .mo-only {
    display: block;
  }

  .sec-desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4;
  }
}


/* VISUAL */
.visual {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: hidden;
  background-color: #001326;
}

.visual-swiper,
.visual-swiper .swiper-wrapper,
.visual-slide {
  width: 100%;
  height: 100%;
}

.visual-slide {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.visual-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.15);
  transition: transform 6s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.visual-slide.swiper-slide-active .visual-slide-img {
  transform: scale(1);
}

.visual-01 {
  background-image: url("../images/main/main_visual01.jpg");
}

.visual-02 {
  background-image: url("../images/main/main_visual02.jpg");
}

.visual-03 {
  background: url("../images/main/main_visual03.jpg") no-repeat center / cover;
}

.visual-video-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 영상 슬라이드는 이미지 줌 효과 제거 */
.visual-video-slide .visual-slide-img,
.visual-video-slide.swiper-slide-active .visual-slide-img {
  position: relative;
  transform: none;
  transition: none;
  will-change: auto;
}

/* 영상 */
.visual-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* OVERLAY */

.visual::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg,
      rgba(0, 13, 28, .03) 0%,
      rgba(0, 13, 28, .04) 48%,
      rgba(0, 13, 28, .58) 100%);
  content: "";
  pointer-events: none;
}

.visual-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  padding-top: 45vh;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.visual-txt .inner {
  width: 100%;
  margin: 0;
}

.visual-txt-wrap {
  display: grid;
  position: relative;
  width: 100%;
}

.visual-txt-slide {
  grid-area: 1 / 1;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.visual-txt-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.visual-eyebrow {
  margin-bottom: 5rem;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .42em;
  color: #fff;
}

.visual-eyebrow br {
  display: none;
}

.visual-tit {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 .3rem 1.6rem rgba(0, 0, 0, .25);
}

.visual-tit span {
  display: block;
}

.visual-eyebrow .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.visual-txt-slide.is-active .visual-eyebrow .char {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(150ms + (.04s * var(--char-index)));
}

.visual-tit .tit-1,
.visual-tit .tit-2 {
  display: block;
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 1000ms ease,
    transform 1200ms cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.visual-txt-slide.is-active .visual-tit .tit-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 900ms;


}

.visual-txt-slide.is-active .visual-tit .tit-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1250ms;

}

.visual-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 40;
  width: 100%;
  margin-top: 120px;
  gap: 1rem;
  pointer-events: auto;
}

.visual-pagination .swiper-pagination-bullet {
  display: block;
  opacity: 0;
  width: 4rem;
  height: 1.3rem;
  margin: 0 !important;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, .3);
  transform: translateY(1rem);
  animation: visual-dot-in 700ms ease forwards;
  transition:
    width .45s cubic-bezier(.22, .61, .36, 1),
    background-color .45s ease;
}

.visual-pagination .swiper-pagination-bullet:nth-child(1) {
  animation-delay: 1.65s;
}

.visual-pagination .swiper-pagination-bullet:nth-child(2) {
  animation-delay: 1.8s;
}

.visual-pagination .swiper-pagination-bullet:nth-child(3) {
  animation-delay: 1.95s;
}

.visual-pagination .swiper-pagination-bullet-active {
  width: 10rem;
  background-color: #fff;
}

@keyframes visual-dot-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1024px) {

  .visual-slide-img {
    transform: scale(1.12);
  }

  .visual-slide.swiper-slide-active .visual-slide-img {
    transform: scale(1);
  }

  /* 영상은 transform 제외 유지 */
  .visual-video-slide .visual-slide-img,
  .visual-video-slide.swiper-slide-active .visual-slide-img {
    transform: none;
  }

  .visual-eyebrow {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }

  .visual-tit {
    font-size: 40px;
  }
}

@media (max-width: 768px) {

  .visual {
    height: 85rem;
    min-height: 0;
  }

  .visual-slide-img {
    background-position: center;
    transform: scale(1.1);
  }

  .visual-slide.swiper-slide-active .visual-slide-img {
    transform: scale(1);
  }

  /* 영상은 transform 제외 유지 */
  .visual-video-slide .visual-slide-img,
  .visual-video-slide.swiper-slide-active .visual-slide-img {
    transform: none;
  }

  .visual-txt {
    padding: 35vh 2rem 0;
  }

  .visual-eyebrow {
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: .32em;
  }

  .visual-eyebrow br {
    display: block;
  }

  .visual-tit {
    font-size: 25px;
    line-height: 1.3;
  }

  .visual-pagination {
    margin-top: 60px;
    gap: 1rem;
  }

  .visual-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 6px;
  }

  .visual-pagination .swiper-pagination-bullet-active {
    width: 50px;
  }

  /* VISUAL */
  .visual {}

  .visual-slide-img {
    background-position: center top;
  }


  .visual-dot button {
    width: 2.5rem;
    height: .6rem;
  }

  .visual-dot .slick-active button {
    width: 5rem;
  }
}


/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

  .visual-slide-img {
    transform: none;
    transition: none;
  }

  .visual-eyebrow .char,
  .visual-tit .tit-1,
  .visual-tit .tit-2 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}






/* SECTION 2 : SOLUTIONS & R&D  */

.solution_sect {
  position: relative;
  display: flex;
  width: 100%;
  padding: 8rem 0 10rem;
  box-sizing: border-box;
  flex-direction: column;
  overflow: hidden;
}

.solution_sect .main_tit_box {
  text-align: center;
}

.solution_sect .cont {
  display: flex;
  position: relative;
  width: 120rem;
  margin: 5rem auto 0;
  padding: 0 3.5rem;
  box-sizing: border-box;
  flex-direction: column;
}

.solution_sect .solution_tab_wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  scrollbar-width: none;
}

.solution_sect .solution_tab_wrap::-webkit-scrollbar {
  display: none;
}

.solution_sect .solution_tab_box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.solution_sect .solution_tab_box .tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  padding: 2rem 0;
  border: 0;
  border-bottom: 3px solid #d2dbe3;
  background: none;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #8fa5ba;
  white-space: nowrap;
  transition: color .3s ease;
}

.solution_sect .solution_tab_box .tab::before {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 3px;
  border-radius: 2rem;
  background-color: #011226;
  content: "";
  transform: translateX(-50%);
  transition: width .5s ease;
}

.solution_sect .solution_tab_box .tab.active {
  color: #011226;
}

.solution_sect .solution_tab_box .tab.active::before {
  width: 100%;
}


.solution_sect .tab_cont {
  position: relative;
  margin-top: 6rem;
}

.solution_sect .tab_cont .swiper-container {
  width: 100%;
  overflow: visible;
}

.solution_sect .tab_cont .swiper-wrapper {
  align-items: center;
}

.solution_sect .mo-tit {
  display: none;
  text-align: center;
  color: #374b5e;
}

/* 브레인올 방식 */
.solution_sect .tab_cont .item {
  position: relative;
  z-index: 2;
  width: 110rem;
  text-align: center;
  opacity: .4;
  transform: scale(.8);
  transition:
    opacity .45s ease,
    transform .45s ease;
}

.solution_sect .tab_cont .item.swiper-slide-active,
.solution_sect .tab_cont .item.swiper-slide-duplicate-active {
  z-index: 3;
  opacity: 1;
  transform: scale(1);
}


.solution-pagination {
  display: none;
}

.solution_sect .tab_cont .slide_card {
  display: inline-block;

}

.solution_sect .tab_cont .img_box {
  position: relative;
  width: 100%;
  border-radius: .5rem;

  overflow: hidden;
  text-align: center;
}

.solution_sect .img_box picture {
  display: block;
  width: 100%;
  height: 100%;
}

.solution_sect .img_box picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.solution_sect .tab_cont .img_box img {
  display: inline-block;
}

.solution_sect .tab_cont .item {
  opacity: .45;
  transform: scale(.8);
}

.solution_sect .tab_cont .item .img_box img {
  filter: blur(3px);
}

.solution_sect .tab_cont .item.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.solution_sect .tab_cont .item.swiper-slide-active .img_box img {
  filter: blur(0);
}

.solution_sect .tab_cont .txt_wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.solution_sect .tab_cont .item.swiper-slide-active .txt_wrap {
  opacity: 1;
}

.solution_sect .tab_cont .txt_box {
  flex: 0 0 auto;
}

.solution_sect .tab_cont .txt_box .tit {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #011226;
  white-space: nowrap;
}



.solution_sect .tab_cont .tag_box {
  display: flex;
  align-items: center;
  margin-left: 3rem;
  flex-wrap: wrap;
  gap: .8rem;
}

.solution_sect .tab_cont .tag_box .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 2rem;
  border-radius: 10rem;
  background-color: #f2f5f7;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #011226;
  white-space: nowrap;
}


.solution_sect .swiper_btn {
  position: absolute;
  top: 34%;
  z-index: 10;
  width: 5rem;
  height: 10rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-image: url("../images/main/solution-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  /* 기본 : 시안 왼쪽 화살표 색상 */
  filter: brightness(0) saturate(100%) invert(69%) sepia(14%) saturate(704%) hue-rotate(165deg) brightness(91%) contrast(86%);
  cursor: pointer;
  transition:
    filter .3s ease,
    transform .3s ease;
}

.solution_sect .swiper_btn::after {
  display: none;
}

.solution_sect .swiper_btn.prev {
  left: 0;
  transform: rotate(180deg);
}

.solution_sect .swiper_btn.next {
  right: 0;
}

.solution_sect .swiper_btn:hover {
  filter: brightness(0) saturate(100%) invert(17%) sepia(25%) saturate(1229%) hue-rotate(166deg) brightness(91%) contrast(89%);
}

.solution_sect .swiper_btn.prev:hover {
  transform: rotate(180deg) translateX(.5rem);
}

.solution_sect .swiper_btn.next:hover {
  transform: translateX(.5rem);
}

@media (max-width: 1024px) {
  .solution_sect {
    padding: 7rem 0;
  }

  .solution_sect .cont {
    margin-top: 4rem;
    padding: 0 2rem;
  }

  .solution_sect .solution_tab_box .tab {
    padding: 1.7rem 0;
    font-size: 2rem;
  }

  .solution_sect .tab_cont {
    margin-top: 5rem;
  }

  .solution_sect .tab_cont .item {
    width: 82rem;
    max-width: 78vw;
    transform: scale(.84);
  }

  .solution_sect .tab_cont .item.swiper-slide-active {
    transform: scale(1);
  }

  .solution_sect .tab_cont .slide_card {
    width: 82rem;
  }

  .solution_sect .tab_cont .txt_box .tit {
    font-size: 2.2rem;
  }

  .solution_sect .tab_cont .tag_box .tag {
    padding: .7rem 1.5rem;
    font-size: 1.4rem;
  }

  .solution_sect .swiper_btn {
    width: 5rem;
    height: 5rem;
    background-size: 1.8rem auto;
  }

  .solution_sect .swiper_btn.prev {
    left: 2rem;
  }

  .solution_sect .swiper_btn.next {
    right: 2rem;
  }
}


@media (max-width: 768px) {

  .solution_sect .inner {
    width: auto;
    padding: 0;
  }

  .solution_sect .mo-tit {
    display: block;
    font-weight: 600;
    font-size: 17px;
    margin: 2.5rem 0 2.2rem;
  }

  .solution_sect .main_tit_box {
    margin-bottom: 4rem;
    text-align: center;
  }

  .solution_sect .main_tit_box .sec-tit {
    font-size: 27px;
  }

  .solution_sect .cont {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .solution-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    gap: 1rem;
  }

  .solution-pagination .swiper-pagination-bullet {
    width: 23px;
    height: 6px;
    margin: 0 !important;
    border-radius: 5px;
    background-color: #dde4ea;
    opacity: 1;
    transition:
      width .3s ease,
      background-color .3s ease;
  }

  .solution-pagination .swiper-pagination-bullet-active {
    width: 50px;
    background-color: #011226;
  }


  /* TAB : 활성 탭만 표시 */

  .solution_sect .solution_tab_wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .solution_sect .solution_tab_box {
    display: block;
    width: 100%;
  }

  .solution_sect .solution_tab_box .tab {
    display: none;
  }

  .solution_sect .solution_tab_box .tab.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 1.2rem 0;
    border: 0;
    border-bottom: 1px solid #d2dbe3;
    font-size: 22px;
    font-weight: 600;
    color: #011226;
  }

  .solution_sect .solution_tab_box span {
    display: inline-block;
    position: relative;
    padding: 0 2rem;
  }

  .solution_sect .solution_tab_box span::before {
    display: inline-block;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #011226;
    position: absolute;
    left: 0;
    bottom: -11px;
  }

  .solution_sect .solution_tab_box .tab.active::before {
    display: none;
  }

  .solution_sect .tab_cont {
    margin-top: 1.2rem;
  }

  .solution_sect .tab_cont .swiper-container {
    overflow: hidden;
  }

  .solution_sect .tab_cont .swiper-wrapper {
    align-items: stretch;
  }

  .solution_sect .tab_cont .item,
  .solution_sect .tab_cont .item.swiper-slide-active,
  .solution_sect .tab_cont .item.swiper-slide-duplicate-active {
    width: 100%;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .solution_sect .tab_cont .slide_card {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: column;
  }



  .solution_sect .tab_cont .txt_wrap {
    display: none;
  }

  .solution_sect .tab_cont .txt_box {
    display: block;
  }

  .solution_sect .tab_cont .txt_box .tit {
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    color: #374b5e;
    white-space: normal;
  }

  .solution_sect .tab_cont .tag_box {
    display: none;
  }

  .solution_sect .tab_cont .img_box {
    order: 2;
    width: 100%;

    border-radius: .3rem;
  }

  .solution_sect .tab_cont .img_box img {
    width: 100%;
    height: 100%;
    filter: none;
  }

  .solution_sect .swiper_btn {
    display: none;
  }
}



/* SECTION 3 : PARTNERS */
.main-partners {
  padding: 7rem 0 10rem;
  background-color: #f1f4f7;
  overflow: hidden;
}

.main-partners .sec-header {
  margin-bottom: 8rem;
}

.main-partners .sec-header p br {
  display: none
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
}

.partner-row {
  width: 100%;
  overflow: hidden;
}

.partner-row+.partner-row {
  margin-top: 3.2rem;
}

/* 전체 움직이는 영역 */
.partner-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* 실제 한 세트 */
.partner-group {
  display: flex;
  flex-shrink: 0;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

/* 로고 */
.partner-logo {
  position: relative;
  flex-shrink: 0;
  width: 20rem;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo a {
  position: relative;
  width: 100%;
  padding-top: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.partner-row:hover .partner-track {
  animation-play-state: paused;
}


@media (max-width: 1024px) {
  .main-partners .sec-header {
    margin-bottom: 6rem;
  }
}





@media (max-width: 768px) {
  .main-partners {
    padding-bottom: 8rem;
  }

  .partner-logo {
    width: 140px;
  }

  .main-partners .sec-header p br {
    display: block;
  }

}





@media (max-width: 1024px) {

  .solution-slick {
    width: calc(100% + 20rem);
    margin-left: -10rem;
  }

  .solution-slide {
    padding: 0 3rem;
  }

  .solution-img img {
    height: 34rem;
  }

  .solution-arrow.prev {
    left: 4%;
  }

  .solution-arrow.next {
    right: 4%;
  }

}

@media (max-width: 768px) {

  .main-solution {
    padding: 5rem 0 6rem;
  }

  .solution-tabs {
    justify-content: center;
    width: calc(100% - 4rem);
    margin: 3.5rem auto 2rem;
  }

  .solution-tab {
    display: none;
    flex: none;
    width: auto;
    padding: 0 1rem 1rem;
    font-size: 1.7rem;
  }

  .solution-tab.is-active {
    display: block;
  }

  .solution-tab.is-active::after {
    right: -1.5rem;
    left: -1.5rem;
  }

  .solution-slider-wrap {
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .solution-slick {
    width: 100%;
    margin-left: 0;
  }

  .solution-slide {
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .solution-img img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .solution-info {
    display: block;
    margin-top: 1.8rem;
    text-align: center;
  }

  .solution-info>strong {
    font-size: 1.45rem;
  }

  .solution-tags {
    display: none;
  }

  .solution-arrow {
    display: none;
  }

  .solution-dot {
    display: flex;
    margin-top: 2.5rem;
  }

  .solution-dot button {
    width: 2.2rem;
    height: .6rem;
    background-color: #d8e0e7;
  }

  .solution-dot .slick-active button {
    width: 5rem;
    background-color: #011f3b;
  }

  .partner-row+.partner-row {
    margin-top: 3rem;
  }
}


/* SECTION 4 : NOW */
.main-now {
  padding: 8rem 0 10rem;
}

.now-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-bottom: 5rem;
}

.now-more {
  display: flex;
  align-items: center;
  position: absolute;
  top: .5rem;
  right: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #011226;
  gap: 1rem;
}

.now-more::before,
.now-more::after {
  position: absolute;
  left: -2.2rem;
  top: 50%;
  width: 1.8rem;
  height: 2px;
  background-color: #011226;
  content: "";
}

.now-more::after {
  transform: rotate(90deg);
}

.now-more span {
  display: inline-block;
  margin-left: .8rem;
}

.now-list {
  border-top: 1px solid #d2dbe3;
}

.now-list li {
  border-bottom: 1px solid #d2dbe3;
}

.now-list a {
  display: flex;
  align-items: center;
  min-height: 8.5rem;
  padding: 0 2rem;
  color: inherit;
}

.now-category {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 10rem;
  min-height: 3.5rem;
  border-radius: 3rem;
  background-color: #f6f8f9;
  font-size: 1.6rem;
  font-weight: 500;
  color: #011226;

}

.now-list strong {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  padding: 0 2.5rem 0 6rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #011226;
  text-overflow: ellipsis;
}

.now-list li a:hover strong {
  color: #004699;
  text-decoration: underline;
  text-underline-offset: .4rem;
}

.now-list .time,
.now-card .time {
  flex: 0 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  color: #999;
}


.now-cards {
  display: flex;
  margin-top: 4rem;
  gap: 6rem;
}

.now-card {
  flex: 0 0 calc((100% - 18rem) / 4);
  width: calc((100% - 18rem) / 4);
  min-width: 0;
}

.now-card a {
  display: block;
  color: inherit;
}

.now-thumb {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 5px;
  background-color: #eef3f6;
}

.now-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);

}

.now-card:hover .now-thumb img {
  transform: scale(1.06);
}


.now-card .tit {
  display: -webkit-box;
  overflow: hidden;
  min-height: 5.2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.6rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 600;
  color: #011226;
  word-break: keep-all;
  text-overflow: ellipsis;
}






@media (max-width: 1024px) {


  /* NOW */
  .main-now {
    padding: 7rem 0 7rem;
  }

  .now-header {
    margin-bottom: 3rem;
  }

  .now-more {
    display: none;
  }

  .now-list {
    margin-top: 5rem;
  }

  .now-list a {
    display: block;
    min-height: 0;
    padding: 15px 0;
  }

  .now-category {
    display: none;
  }

  .now-list strong {
    display: block;
    padding: 0;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.2;
    max-height: 40px;
    word-break: keep-all;
    width: 100%;
    text-overflow: ellipsis;


  }

  .now-card .tit {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .now-list time {
    display: block;
    margin-top: .8rem;

  }

  .now-cards {
    display: flex;
    flex-wrap: nowrap;
    width: calc((100% + 4rem));
    margin-top: 35px;
    padding-right: 4rem;
    gap: 5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .now-cards::-webkit-scrollbar {
    display: none;
  }


  .now-card {
    flex: 0 0 55%;
    width: 55%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .now-thumb {
    margin-bottom: 15px;
  }

  .now-card strong {
    display: -webkit-box;
    min-height: 0;
    margin-bottom: .8rem;
    overflow: hidden;
    font-size: 1.2rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;

  }

  .now-list .time,
  .now-card .time {
    font-size: 13px;
  }

}






@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }

  .visual-slide-img,
  .now-thumb img {
    transition: none;
  }
}