@charset "utf-8";

/* ========================================
   LAYOUT
======================================== */
/* 공통 */
.thum,
.thumb {
  width: 100%;
  overflow: hidden;
  background-color: #EDEDED;
}
.thum {
  height: 100%;
}

.thum img,
.thumb img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s;
}

.dark .thum,
.dark .thumb {
  background-color: #000;
}

.tag {
  position: absolute; 
  top: 20px; 
  left: 20px; 
  padding: 8px 10px; 
  font-size: 12px; 
  font-weight: 600; 
  color: #fff; 
  line-height: 1.2;  
  background-color: rgba(52, 55, 65, 0.41); 
  border-radius: 20px; 
  z-index: 1;
}

/* heading */
.head-desc {
  margin-top: 16px;
  font-size: 20px;
}

.head-desc:last-child {
  color: #828282;
}

.head-title {
  font-size: 15px;
  font-weight: 700;
}

.head-title + .head-desc {
  color: #222;
}

/* text-title */
.text-group {
  margin-bottom: 32px;
  text-align: left;
}

.text-title {
  font-size: 32px;
  font-weight: 600;
}

.sub-title {
  font-size: 20px;
  font-weight: 600;
}

.text-desc {
  font-size: 18px;
}

.sub-title + .text-desc {
  margin-top: 20px;
}

/* hr */
.hr-line {
  display: block; 
  height: 1px; 
  margin: 0; 
  border: 0; 
  background: #D9D9D9;
}

/* ========================================
   LAYOUT - PC
======================================== */
@media screen and (min-width: 1024px){
  .thum img:hover,
  .thumb img:hover {
    height: 100%; 
    object-fit: cover; 
    transform: scale(1.12); 
    transition: transform 0.5s;
  }
}

/* ========================================
   LAYOUT - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .desc-cont-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: auto;
    background-color: #F3F3F3;
    box-sizing: border-box;
  }
  
  .desc-cont-txt .heading-title:last-child {
    font-size: 18px;
  }
}

/* ========================================
   스와이프
======================================== */
.btn-prev,
.btn-next {
  position: absolute;
}

.btn-prev {
  left: 0;
}

.btn-next {
  right: 0;
}

.btn-control-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.btn-control {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.3;
}

/* ========================================
   스와이프 - PC
======================================== */
@media screen and (min-width: 1024px){
  .btn-control:hover {
    background-color: rgba(0, 0, 0, 0.4); 
    opacity: 1;
  }
}

/* ========================================
   스와이프 - MOBILE
======================================== */
@media all and (max-width: 1023px){
  /* thum */
  .swiper .thum, 
  .swiper-basic .thum,
  .swiper .img-info {
    position: relative; 
    width: 100%; 
    height: auto;
  }
  .img-cont .swiper .img-info + .img-info {
    margin-top: 0;
  }
  
  /* swiper-button */
  .btn-prev {margin-left: 30px;}
  .btn-next {margin-right: 30px;}
}

/* ========================================
   IMAGE CONTAINER
======================================== */
.img-info {
  margin-right: 16px;
  text-align: left;
}

.img-info:last-child {
  margin-right: 0;
}

.img-desc > strong {
  display: inline-block;
}

.img-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.img-cont.col-2 .img-info {
  width: 50%;
}

.img-cont.col-2 .img-info > img {
  max-width: 632px;
  max-height: 312px;
}

/* ========================================
   IMAGE CONTAINER - MOBILE
======================================== */
@media all and (max-width: 1023px) {
  .img-info {
    margin-right: 0;
  }  

  .img-cont {
    flex-direction: column;
  }

  .img-cont .img-info + .img-info {
    margin-top: 50px;
  }

  .img-cont.col-2 {
    width: 100%;
  }

  .img-cont.col-2 .img-info {
    width: 100%;
    margin-right: 0;
  } 
}

/* =====================================================================
   PRODUCT
===================================================================== */

/* ========================================
   PRODUCT LIST
======================================== */
.products-group .img-info {
  position: relative;
  font-size: 15px;
  margin-right: 0;
}

.products-group .img-info > p {
  margin-bottom: 0;
}

.products-group .img-info .tag {
  min-width: 117px;
}

.products-group .thum {
  margin-bottom: 16px;
}

.grid .img-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 140px;
}

/* ========================================
   PRODUCT LIST - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  .products-group .img-cont {
    display: flex;
    flex-direction: column;
    width: calc(100% + 40px);
    margin: 0 -20px;
    row-gap: 50px;
  }

  .products-group .img-info {
    width: 100%;
    margin-right: 0;
  }

  .products-group .img-desc {
    margin: 0 20px;
  }
}

/* =====================================================================
   PRODUCT DETAIL
===================================================================== */

/* ========================================
   PRODUCT HISTORY
======================================== */
.history-group .img-cont {
  flex: 1;
  margin-top: 168px;
  gap: 16px;
  align-items: unset;
  justify-content: unset;
}

.history-group .swiper {
  width: 50%;
}

.history-group .thum {
  position: relative;
  width: 50%;
  height: unset;
}

.history-group .thum .btn-open-pop {
  width: 100%;
  height: 100%;
}

.history-group .btn-prev {
  margin-left: 30px;
}

.history-group .btn-next {
  margin-right: 30px;
}

.history-group .desc-cont-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: auto;
  padding: 20px;
  background-color: #F3F3F3;
  box-sizing: border-box;
}

.history-group .desc-wrap-txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.history-group .desc-cont-txt .heading-title {
  font-size: 18px;
  font-weight: 400;
}

.history-group .logo-txt {
  height: 100%;
  max-height: 30px;
}

.history-group .logo-txt::after {
  content: '';
  display: inline-block;
  width: 171px;
  height: 31px;
  mask: url(../images/mask/logo.svg) no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: #FF5000;
}

/* ========================================
   PRODUCT HISTORY - MOBILE
======================================== */
@media all and (max-width: 1023px){
  .history-group .swiper {
    width: 100%;
  }

  .history-group .img-cont {
    width: calc(100% + 40px);
    margin: 140px -20px auto -20px;
    gap: 0;
  }

  .history-group .thum {
    width: 100%;
  }

  .history-group .heading-title:first-child {
    margin-bottom: 41px;
  }

  .history-group .head-desc br {
    display: none;
  }

  .history-group .desc-cont-txt {
    width: 100%;
    height: 307px;
  }

  .history-group .desc-wrap-txt {
    flex-direction: column;
  }  
}

/* ========================================
   PRODUCT SENSOR
======================================== */
.sensor-group .img-info {
  width: 100%;
  height: 764px;
}

.sensor-group .desc-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 484px;
  padding: 0 20px;
  background-image: url(../images/components/smart-sensor/bg.png);
  border-bottom: 2px solid #FF5000;
}

.sensor-group .desc-cont strong {
  margin-bottom: 31px;
}

.sensor-group .heading-title {
  font-weight: 600;
}

.sensor-group .heading-desc {
  max-width: 553px;
  margin-top: 31px;
}

/* ========================================
   PRODUCT SENSOR - PC
======================================== */
@media screen and (min-width: 1024px){
  .system-group .thum img:hover {
    transform: scale(1);
  }
  .sensor-group.sensor-belt .heading-desc {
    max-width: none;
  }
}

/* ========================================
   PRODUCT SENSOR - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .sensor-group .img-info {
    height: 492px;
  }
  .sensor-group .heading-title {
    font-weight: 600;
    font-size: 28px; 
  }
  .sensor-group .heading-desc {
    font-size: 20px;
  }
}

/* ========================================
   PRODUCT FUNCTION
======================================== */
.grid-group {
  display: flex;
  text-align: left;
  padding: 60px 0;
}

.grid-group .text-title {
  width: 30.39%;
}

.grid-group .sub-title {
  display: flex;
  align-items: center;
}

.grid-group .desc-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
  max-width: 862px;
  width: 100%;
  text-align: left;
}

.grid-group .desc-info {
  max-width: 268px;
}

.grid-group .text-desc {
  color: #888888;
}

/* ========================================
   PRODUCT FUNCTION - MOBILE
======================================== */
@media all and (max-width: 1023px){
  .grid-group {
    flex-wrap: wrap;
  }

  .grid-group .desc-cont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .grid-group .text-title {
    margin-bottom: 50px;
  }
}

/* ========================================
   PRODUCT SPECIFICATION
======================================== */
.specific-group .text-group {
  text-align: left;
}

.specific-group .img-cont {
  align-items: unset;
  justify-content: unset;
  margin-top: 32px;
}

.specific-group .img-info + .specific-group .desc-cont-txt {
  margin-right: 16px;
}

.specific-group .img-info {
  display: flex;
  width: 83.125%;
  align-items: center;
  justify-content: center;
  gap: 126px;
  padding-top: 58px;
  padding-bottom: 58px;
  /* text-align: unset; */
  background-color: #EDEDED;
}

.specific-group .thum {
  width: auto;
  height: auto;
  background-color: none;
}

.specific-group img {
  width: auto;
}

.specific-group .desc-cont-txt {
  padding: 20px 0 140px;
}

.specific-group ol {
  width: 100%;
  text-align: left;
  counter-reset: number 0;
}

.specific-group li {
  position: relative;
  padding-left: 37px;
  line-height: 1.4;
  font-size: 18px;
  counter-increment: number 1;
}

.specific-group li + li {
  margin-top: 9px;
}

.specific-group li::before {
  content: counter(number);
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  margin-right: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #FFF;
  background-color: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* page-type */
.hook-group .desc-cont-txt li,
.helmet-group .desc-cont-txt li,
.beacon-group .desc-cont-txt li,
.guardian-group .desc-cont-txt li {
  display: flex;
  align-items: center;
}

.belt-group .desc-cont-txt li {
  min-height: 25px;
}

.hook-group .desc-cont-txt li,
.helmet-group .desc-cont-txt li {
  min-height: 35.25px;
}

.beacon-group .desc-cont-txt li {
  min-height: 50px;
}

.belt-group .desc-cont-txt {
  padding: 15.5px 0;
}

.guardian-group .desc-cont-txt {
  padding: 20px 0;
}

.guardian-group .desc-cont-txt li {
  min-height: 40.5px;
}

/* ========================================
   PRODUCT FUNCTION, SPECIFICATION - PC
======================================== */
@media screen and (min-width: 1024px){
  .specific-group .thum img:hover {
    transform: scale(1);
  }
}

/* ========================================
   PRODUCT FUNCTION, SPECIFICATION - TABLET
======================================== */
@media all and (min-width: 1024px) and (max-width: 1320px) {   
  .specific-wrap {
    padding-top: 90px; 
    padding-bottom: 140px;
  }
  .specific-group .img-info {
    padding-top: 3.0208vw; 
    padding-bottom: 3.0208vw; 
    gap: 6.56225vw;
  }
}

/* ========================================
   PRODUCT SPECIFICATION - MOBILE
======================================== */
@media all and (max-width: 1023px){
  .specific-group .thum + .thum {
    padding-top: 126px;
  }
  
  .specific-group .img-cont {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .specific-group .img-info {
    flex-direction: column;
    width: 100%;
    padding: 100px 0;
    margin-right: 0;
  }
  
  .specific-group .img-info .thum {
    padding-top: 0;
  }
  
  .specific-group .desc-cont-txt {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    padding: 0 0 0 20px;
    background-color: none;
  }

  /* page-type */
  .hook-group .desc-cont-txt li,
  .helmet-group .desc-cont-txt li {
    min-height: 75.25px;
  }
  
  .beacon-group .desc-cont-txt li {
    min-height: 83.33px;
  }
  
  .beacon-group .desc-cont-txt li + li {
    margin-top: 0;
  }
  
  .guardian-group .desc-cont-txt ol {
    margin: 20px 0;
  }
}

/* ========================================
   가디언 기능 안내
======================================== */
.system-group .img-cont {
  gap: 90px;
}

.system-group .thum {
  margin-bottom: 32px;
}

.system-group .img-info {
  width: 100%;
  margin-right: 0;
}

.system-group .sub-title {
  display: flex;
  align-items: center;
}

.system-group .bullet {
  padding-left: unset;
}

.system-group .text-desc {
  font-size: 20px;
}

/* ========================================
   가디언 기능 안내 - MOBILE
======================================== */
@media all and (max-width: 1023px){
  .system-group .img-cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .system-group .img-info + .img-info {
    margin-left: 0;
  }
  
  .system-group .img-info:nth-child(-1n + 2) {
    margin-top: 0;
  }
}

/* ========================================
   스와이프 비활성 상태
======================================== */
.full-width {
  max-height: 403px;
  margin: 0 !important;
}

.full-width .swiper-wrapper {
  justify-content: center;
}

.full-width .thum {
  max-width: 420px;
  max-width: calc((100% - 20px) / 3);
  margin-right: 10px;
}

.full-width .thum:last-child {
  margin-right: 0;
}

/* ========================================
   스와이프 비활성 상태 - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .full-width {
    max-height: none;
  }
  
  .full-width .swiper-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  
  .full-width .thum {
    max-width: none;
    width: 100%;
    margin-right: 0;
  }
  
  .full-width .img-info {
    max-width: none !important;
    width: 100% !important;
    margin-right: 0 !important;
  }

  .full-width .img-info + .img-info {
    margin-top: 0;
  }
}

/* ========================================
   착용방법 및 제품 사양
======================================== */
/* 아이템 4개 미만 이미지 정렬 */
.goods-wrap {
  padding-top: 130px;
  padding-bottom: 130px;
}

.goods-group .btn-area {
  margin-top: 25px;
}

.goods-group .heading-desc {
  color: #222222;
}

.goods-group .img-cont {
  position: relative;
  margin-bottom: 50px;
  gap: 10px;
}

/* 아이템 스와이프 */
.goods-swiper .swiper {
  width: 100%; 
  margin: 0 53px;
}

/* ========================================
   착용방법 및 제품 사양 - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  /* 아이템 4개 미만일 때의 레이아웃 */
  .goods-group .img-cont.gap-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .goods-group .heading-title {
    font-size: 28px;
  }
  
  .goods-group .heading-title + .heading-desc {
    margin-top: 20px;
  }
  
  .goods-group .heading-desc {
    font-size: 16px;
  }
  
  .goods-group .btn-area {
    flex-direction: column;
    margin-top: 50px;
    gap: 8px;
  }
  
  .goods-group .btn-area .btn {
    max-width: none;
  }

  /* 아이템 스와이프 */
  .goods-swiper .img-cont {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .goods-swiper .swiper {
    width: 100%;
    margin: 0;
  }
}

/* ========================================
   제품 상세 내 PRODUCT LIST
======================================== */
.prdt-list-wrap {
  padding-bottom: 100px;
}

.prdt-list-group {
  margin-top: 44px;
}

.prdt-list-group .img-cont {
  position: relative;
  margin-bottom: 50px;
}

.prdt-list-group .img-desc {
  margin-top: 16px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}

.prdt-list-group .swiper {
  width: 100%;
  margin: 0 42px;
}

.prdt-list-group .full-width .swiper-wrapper {
  justify-content: start;
}

.prdt-list-group .full-width .img-info {
  max-width: calc((100% - 48px) / 4);
  margin-right: 16px;
}

.prdt-list-group .full-width .img-info:last-child {
  margin-right: 0;
}

.page-helmet .prdt-list-group .helmet,
.page-hook .prdt-list-group .hook,
.page-belt .prdt-list-group .belt,
.page-beacon .prdt-list-group .beacon,
.page-guardian .prdt-list-group .guardian {
  display: none;
}

/* ========================================
   제품 상세 내 PRODUCT LIST - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  /* 아이템 5개 미만일 때의 레이아웃 */
  .prdt-list-group .img-cont.gap-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* 스와이프 시 이미지 컨테이너 레이아웃 */
  .prdt-list-group .img-cont {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .prdt-list-group .swiper {
    width: 100%;
    margin: 0;
  }
  .prdt-list-group .swiper .img-desc {
    padding: 0 20px;
  }
}

/* =====================================================================
   THINGS 
===================================================================== */

/* ========================================
   THINGS TECHNIQUE 부정체결 실시간 감지
======================================== */
.technique-group .heading-title {
  margin: 29px 0 32px;
  font-weight: 600;
  font-size: 32px;
}

.technique-group .heading-title + .heading-desc {
  margin-top: 0;
}

.dark .technique-group .heading-desc {
  color: #888888;
  word-break: break-all;
}

/* ========================================
   THINGS TECHNIQUE - TABLET
======================================== */
@media all and (min-width: 1024px) and (max-width: 1320px) {   
  .technique-group .img-info {
    width: 50%;
  }
}

/* ========================================
   THINGS TECHNIQUE - MOBILE
======================================== */
@media screen and (max-width: 1023px) { 
  .technique-group .img-info + .img-info {
    margin-top: 66px;
  }
  .technique-group .img-info {
    margin-right: 0;
  }
  .technique-group img {
    min-width: auto;
    min-height: auto;
  }
  .technique-group .img-desc .heading-title {
    font-size: 24px;
  }
  .technique-group .img-desc .heading-desc {
    font-size: 18px;
  }
}

/* =====================================================================
   WORKS
===================================================================== */

/* ========================================
   WORKS WHY
======================================== */
.why-group {
  text-align: left;
}

.why-box-wrap {
  display: flex;
  flex: 1;
  gap: 16px;
  margin-top: 64px;
}

.why-box-cont {
  width: 100%;
  border-top: 1px solid #999999;
}

.why-box-cont h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 48px 0;
}

.why-box-cont .heading-desc {
  font-size: 18px;
  color: #666666;
}

/* ========================================
   WORKS WHY - MOBILE
======================================== */
@media screen and (max-width: 1023px) {
  .why-group .heading-title {
    font-size: 28px;
  }

  .why-box-wrap {
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
  }

  .why-box-cont h2 {
    margin: 48px 0 69px;
    font-size: 20px;
  }
}

/* ========================================
   WORKS SERVICE
======================================== */
.reverce {
  flex-direction: row-reverse;
}

.reverce .service-desc {
  align-items: flex-end;
  text-align: right;
}

.works-service .data-inner {
  padding-top: 240px;
}

.works-service .service-heading-group .tag-box,
.works-service .service-cont2 .tag-box {
  padding: 10px 16px;
  text-align: center;
  line-height: 1.2;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 321px;
}

.service-wrap {
  margin-top: 240px;
}

.service-item {
  display: flex;
  justify-content: space-between;
}

.service-cont1 .service-item {
  align-items: start;
}

.service-cont1 .service-item + .service-item {
  margin-top: 360px;
}

.service-cont3 {
  margin-bottom: 240px;
}

.service-cont3 .service-item {
  align-items: center;
}

.service-cont3 .service-item + .service-item {
  margin-top: 230px;
}

.service-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 416px;
  max-height: 448px;
  width: 100%;
  text-align: left;
}

.service-cont .tag-box {
  padding: 10px 16px;
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  border-radius: 321px;
}

.service-desc strong {
  margin: 24px 0 128px;
}

.service-desc p {
  font-size: 18px;
  color: #666666;
}

.sevice-img {
  max-width: 762px;
  width: 100%;
  height: 100%;
}

.sevice-img img {
  width: 100%;
}

.service-line {
  padding: 128px 0;
  margin-top: 240px;
  max-width: unset;
  width: 100%;
  line-height: 1.4;
  background-color: #F4F6F8;
}

.service-line .data-inner {
  padding-top: 0;
}

/* ========================================
   WORKS SERVICE - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  .works-service .data-inner {
    padding-top: 120px;
  }

  .service-cont1 .data-inner {
    padding-top: 100px;
  }

  .service-item {
    flex-direction: column;
    gap: 48px;
  }

  .service-cont .service-item + .service-item {
    margin-top: 100px;
  }

  .service-cont3 {
    margin-bottom: 120px;
  }

  .service-cont3 .service-item {
    align-items: flex-start;
  }

  .service-heading-group .heading-title {
    font-size: 28px;
  }

  .reverce .service-desc {
    align-items: flex-start;
    text-align: left;
  }

  .service-desc .tag-box {
    font-size: 15px;
  }

  .service-desc strong {
    margin: 16px 0;
  }

  .sevice-img img {
    max-width: 100%;
  }

  .service-line {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .service-line .data-inner {
    padding: 120px 20px;
    margin-top: 120px;
  }

  .service-line .heading-title {
    line-height: 1.4;
    font-size: 26px;
    font-weight: 600;
  }
}

/* ========================================
   WORKS SOLUTION
======================================== */
.works-solution {
  color: #FFFFFF;
}

.works-solution .heading-group {
  margin-bottom: 82px;
}

.works-solution .heading-title + .heading-desc {
  margin-top: 24px;
}

.heading-opacity-solution {
  opacity: .5;
}

.heading-primary-solution {
  background-image: linear-gradient(to left, #EDFF00, #FAFFB8);
  background-clip: text;
  color: transparent;
}

.works-solution .heading-desc {
  font-size: 18px;
}

.solution-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.solution-box-item + .solution-box-item {
  margin-top: 16px;
}

.solution-box-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  text-align: left;
  border-radius: 26px;
  background-color: rgba(255, 255, 255, 0.1);
}

.solution-box-item:last-child {
  display: inline-block;
}

.solution-box-item:last-child .tag-box + .tag-box {
  margin-left: 8px;
}

.solution-box-item strong {
  display: block;
  margin: 12px 0;
  font-size: 20px;
  font-weight: 600;
}

.solution-box-item p {
  opacity: 0.7;
}

.solution-box-item .tag-box {
  display: inline-block;
  width: 49px;
  height: 24px;
  padding: 0 10px;
  line-height: 1.6;
  color: #222222;
  font-weight: 700;
  border-radius: 12px;
}

.tag-black {
  background-color: #000000;
}

.tag-yellow {
  background-color: #EDFF00;
}

.tag-blue {
  background-color: #00EEFF;
}

.tag-orange {
  background-color: #FF6600;
}

/* ========================================
   WORKS SOLUTION - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  .solution-wrap {
    flex-direction: column;
  }
  
  .solution-box-cont {
    width: 100%;
  }
  
  .solution-wrap .solution-box-cont .solution-box-item {
    width: 100%;
    max-height: unset;
  }
  
  .solution-part-cont {
    width: 61.82%;
  }
}

/* ========================================
   WORKS RECOMMEND
======================================== */
.works-recommend .data-inner {
  text-align: left;
}

.works-recommend .recommend-group .heading-group {
  margin-bottom: 48px;
}

.works-recommend .recommend-group .heading-tag {
  display: inline-block;
  height: 24px;
  line-height: 24px;
}

.works-recommend .recommend-group .heading-logo {
  width: 87px;
  height: 16px;
  margin-right: 8px;
}

.works-recommend .recommend-group .heading-logo::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask: url(../images/mask/logo.svg) no-repeat 50%;
  mask-size: contain;
  transition: all 0.4s;
  background-color: var(--color-works-primary-sub4);
}

.works-recommend .head-text {
  display: inline;
  width: 69px;
  height: 24px;
  font-size: 22px;
}

.works-recommend .recommend-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
}

.works-recommend .recommend-item {
  width: calc((100% - 32px) / 3);
}

.works-recommend .recommend-img img {
  vertical-align: top;
}

.works-recommend .recommend-text {
  padding-top: 24px;
}

.works-recommend .recommend-text h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: 222;
}

.works-recommend .recommend-text p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.4;
  color: #666666;
}

/* ========================================
   WORKS RECOMMEND - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  .works-recommend .recommend-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  
  .works-recommend .recommend-item {
    width: 100%;
    max-width: unset;
    max-height: unset;
  }
  
  .works-recommend .recommend-img img {
    max-width: unset;
    width: 100%;
    height: 100%;
  }
}

/* ========================================
   WORKS NEWS VER2
======================================== */
.works-news-ver2 {
  padding-top: 60px;
  background-color: #F7F7F7;
}

.works-news-ver2 .news-group {
  text-align: left;
}

.works-news-ver2 .news-group .heading-group {
  margin-bottom: 30px;
}

.works-news-ver2 .news-group .news-inner {
  padding: 0 0 80px;
}

.works-news-ver2 .news-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-height: 282px;
  height: 100%;
  box-sizing: border-box !important;
}

.works-news-ver2 .news-item {
  display: inline-block;
  width: calc((100% - 60px) / 4);
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 16px 16px 34px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.works-news-ver2 .news-img img {
  vertical-align: top;
}

.works-news-ver2 .news-text {
  width: 100%;
  height: 102px;
  padding: 16px 20px;
}

.works-news-ver2 .news-text h4 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
}

.works-news-ver2 .news-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  font-size: 14px;
  color: #666666;
}

/* ========================================
   WORKS NEWS VER2 - PC
======================================== */
@media screen and (min-width: 1321px){
  .works-news-ver2 .news-img img {
    height: 180px;
  }
}

/* ========================================
   WORKS NEWS VER2 - MOBILE
======================================== */
@media screen and (max-width: 1023px){
  .works-news-ver2 .news-group .heading-group {
    margin-bottom: 48px;
  }
  
  .works-news-ver2 .news-group .heading-title-medium {
    font-size: 28px;
  }
  
  .works-news-ver2 .news-group .news-inner {
    padding: 0 0 60px;
  }
  
  .works-news-ver2 .news-wrap {
    flex-direction: column;
    align-items: center;
    height: auto;
    max-height: unset;
    gap: 48px;
  }
  
  .works-news-ver2 .news-item {
    max-width: unset;
    width: 100%;
    height: 100%;
  }
  
  .works-news-ver2 .news-img img {
    width: 100%;
    max-width: unset;
  }
}
