html {
  overflow-x: hidden;
}

.MAIN_sw_status_HS {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 20rem;
}

.MAIN_sw_status_HS .wrap-sticky {
  position: sticky;
  top: calc(50% - 36.2rem);
}

.MAIN_sw_status_HS .group-title {
  width: 100%;
  margin-bottom: 6rem;
}

.MAIN_sw_status_HS .group-title h2 {
  margin-bottom: 0.8rem;
}

.MAIN_sw_status_HS .slide-area {
  display: flex;
  gap: 2rem;
  width: max-content;
}

.MAIN_sw_status_HS .slide-item {
  display: flex;
  gap: 2.4rem;
  position: relative;
  width: 46.7rem;
  perspective: 3000px;
}

.MAIN_sw_status_HS .slide-item:nth-child(odd) {
  height: 56rem;
}

.MAIN_sw_status_HS .slide-item:nth-child(even) {
  height: 50rem;
}

.MAIN_sw_status_HS .slide-item .front,
.MAIN_sw_status_HS .slide-item .back {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  backface-visibility: hidden;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.MAIN_sw_status_HS .slide-item .back {
  transform: rotateY(180deg);
  background: var(--primary);
  pointer-events: none;
}

.MAIN_sw_status_HS .slide-item .front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--black-rgb), 0.4);
  pointer-events: none;
}

.MAIN_sw_status_HS .thumb {
  width: 100%;
  height: 100%;
}
.MAIN_sw_status_HS .thumb .wg_img1{
  width: 100%;
  height: 100%;
}
.MAIN_sw_status_HS .thumb .wg_img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.MAIN_sw_status_HS .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

.MAIN_sw_status_HS .desc {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 4rem;
  height: 100%;
  pointer-events: none;
}

.MAIN_sw_status_HS .desc h3,
.MAIN_sw_status_HS .desc strong,
.MAIN_sw_status_HS .desc p {
  color: var(--white);
  pointer-events: auto;
}

.MAIN_sw_status_HS .desc h3 {
  margin-bottom: 4rem;
}

.MAIN_sw_status_HS .desc strong {
  font-weight: var(--fw-bold);
}

.MAIN_sw_status_HS .desc p {
  flex: 1;
  margin-top: 1.2rem;
}

.MAIN_sw_status_HS .desc i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 6rem;
aspect-ratio:1 / 1;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 2rem;
  pointer-events: auto;
}

@media (min-width: 993px) {
  @keyframes MAIN_sw_status_HS-fadeInAll {
    from {
      opacity: 0;
      visibility: hidden;
    }

    to {
      opacity: 1;
      visibility: visible;
    }
  }

  @keyframes MAIN_sw_status_HS-fadeInHead {
    from {
      opacity: 0;
      visibility: hidden;
    }

    to {
      opacity: 1;
      visibility: visible;
    }
  }

  .MAIN_sw_status_HS .desc>* {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .MAIN_sw_status_HS .slide-item .desc h3,
  .MAIN_sw_status_HS .slide-item .desc strong {
    opacity: 1;
    visibility: visible;
  }

  .MAIN_sw_status_HS .slide-item:hover .front {
    transform: rotateY(-180deg);
  }

  .MAIN_sw_status_HS .slide-item:hover .back {
    transform: rotateY(0);
  }

  .MAIN_sw_status_HS .slide-item:hover .desc h3,
  .MAIN_sw_status_HS .slide-item:hover .desc strong {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .MAIN_sw_status_HS .slide-item:hover .desc>* {
    animation: MAIN_sw_status_HS-fadeInAll 0.3s ease 0.8s forwards !important;
  }

  .MAIN_sw_status_HS .slide-item:not(:hover) .front {
    transform: rotateY(0);
  }

  .MAIN_sw_status_HS .slide-item:not(:hover) .back {
    transform: rotateY(180deg);
  }

  .MAIN_sw_status_HS .slide-item:not(:hover) .desc>* {
    opacity: 0;
    visibility: hidden;
    animation: none;
  }

  .MAIN_sw_status_HS .slide-item:not(:hover) .desc h3,
  .MAIN_sw_status_HS .slide-item:not(:hover) .desc strong {
    animation: MAIN_sw_status_HS-fadeInHead 0.3s ease 0.8s forwards;
  }
}

@media (max-width: 992px) {
  .MAIN_sw_status_HS {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }

  .MAIN_sw_status_HS .wrap-sticky {
    overflow: hidden;
    top: calc(50% - 23.6rem);
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem);
  }

  .MAIN_sw_status_HS .group-title {
    margin-bottom: 4rem;
    padding: 0 1.6rem;
  }

  .MAIN_sw_status_HS .group-title h2 {
    margin-bottom: 0.4rem;
  }

  .MAIN_sw_status_HS .slide-area {
    gap: 1.6rem;
    padding: 0 3.2rem 0 1.6rem;
  }

  .MAIN_sw_status_HS .slide-item {
    width: 28rem;
  }

  .MAIN_sw_status_HS .slide-item:nth-child(odd) {
    height: 40rem;
  }

  .MAIN_sw_status_HS .slide-item:nth-child(even) {
    height: 30rem;
  }

  .MAIN_sw_status_HS .slide-item .front,
  .MAIN_sw_status_HS .slide-item .back {
    border-radius: 1rem;
  }

  .MAIN_sw_status_HS .desc {
    padding: 2rem;
  }

  .MAIN_sw_status_HS .desc h3,
  .MAIN_sw_status_HS .desc strong,
  .MAIN_sw_status_HS .desc p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }

  .MAIN_sw_status_HS .desc h3 {
    -webkit-line-clamp: 1;
    margin-bottom: 2rem;
  }

  .MAIN_sw_status_HS .slide-item .desc p {
    opacity: 1;
    visibility: visible;
    margin-top: 0.8rem;
  }

  .MAIN_sw_status_HS .slide-item:nth-child(odd) .desc p {
    -webkit-line-clamp: 10;
  }

  .MAIN_sw_status_HS .desc strong,
  .MAIN_sw_status_HS .slide-item:nth-child(even) .desc p {
    -webkit-line-clamp: 2;
  }

  .MAIN_sw_status_HS .slide-item .desc i {
    display: none;
  }
}






.MAIN_sw_status_HS .group-title {
  width: 100%; float: left;
  margin-bottom: clamp(20px, calc(2.632vw + 29.474px), 80px);   position: relative
}
.MAIN_sw_status_HS .group-title .more_btn{
width: auto; font-size: calc(var(--tit-mds-size) * 0.7); color: #000;  font-weight: 800; position: relative; line-height: 130%; position: absolute; right: 0px;bottom:10px;
}
.MAIN_sw_status_HS .group-title .more_btn:before{ width: 37px; height: 37px; position: absolute; left: -50px; 

top:50%;transform: translateY(-50%);content: "";  font-family: unicons-line; background: url("../images/more_icon.png") no-repeat center center;  background-size:37px }


.MAIN_sw_status_HS .group-title .tx_box{
  width: 100%; float: left;
}

.MAIN_sw_status_HS .group-title .tx_box .tt { font-size: calc(var(--tit-mds-size) * 0.7)!important; color: #000; width: 100%; float: left; font-weight: 700; 
 
}
.MAIN_sw_status_HS .group-title .tx_box .tt2 {font-size: calc(var(--tit-md-size) * 1.4)!important; color: #000; width: 100%; float: left; font-weight: 800; 
margin-top: clamp(10px, calc(0.658vw + 7.368px), 20px); line-height: 130%
}


.MAIN_sw_status_HS .group-title h2 {
  margin-bottom: 0.8rem;
}




.MAIN_sw_status_HS .desc .tx,
.MAIN_sw_status_HS .desc .tx2,
.MAIN_sw_status_HS .desc .tx3 {
  color: var(--white);
  pointer-events: auto;
}

.MAIN_sw_status_HS .desc:hover .tx,
.MAIN_sw_status_HS .desc:hover .tx2,
.MAIN_sw_status_HS .desc:hover .tx3 {
  color: #333;
  pointer-events: auto;
}






.MAIN_sw_status_HS .desc .tx{
  margin-bottom: 2rem; font-size: calc(var(--tit-mds-size) * 1)!important; color: #fff!important; width: 100%; float: left; font-weight: 500; 
}

.MAIN_sw_status_HS .desc .tx2 {
 font-size:calc(var(--tit-md-size) * 1);!important; color: #fff; width: 100%; float: left; font-weight: 600;  margin-bottom: 2.5rem; 
}

.MAIN_sw_status_HS .desc .tx3 {width: 100%; float: left; 
  flex: 1;
  margin-top: 1.2rem; 
}

.MAIN_sw_status_HS .desc .tx4{width: 100%; float: left; 
font-size:calc(var(--tx-sm-size) * 1);color: #fff;  line-height: 130%!important; margin-top: 20px!important; margin-bottom: 10px
}

.MAIN_sw_status_HS .desc .tx3 ul li{ list-style-type: none!important;
font-size:calc(var(--tx-sm-size) * 1);color: #fff; width: 100%; float: left; font-weight: 400!important; line-height: 130%; padding-left: 10px; position: relative; margin-bottom: 5px
}
.MAIN_sw_status_HS .desc .tx3 ul li:before{position: absolute; left: 0px; top:0px; content: "-";  color:#E7C7C8;   font-family: unicons-line; font-size: calc(var(--tit-mds-size) * 0.65)!important; }


