/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 03 2026 | 09:04:14 */
#main01{
    background-image: url(/wp-content/uploads/2026/06/main01_bg.png);
}
@media all and (max-width: 1024px) {
    #main01{
        background-position: right;
    }
}


/* -- main01 -- */
#main01 .txt-wrap{
	padding: var(--one-space-s) 0;
}


 /* ── main02 레이아웃 ── */
#main02 {
  padding: 0;
}

.main02-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  border-spacing: 0;
}

.main02-item {
  display: table-cell;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  width: 25%;
  height: 676px;
  cursor: pointer;
  text-align: center;
}
	.main02-item:first-child{
		width: 24.9%;
	}

.main02-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform .55s ease, opacity .55s ease;
  will-change: transform, opacity;
}

.main02-bg-bw {
  z-index: 0;
}

.main02-bg-clr {
  z-index: 1;
  opacity: 0;
}

.main02-item:hover .main02-bg {
  transform: scale(1.05);
}

.main02-item:hover .main02-bg-clr {
  opacity: 1;
}

.main02-body {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--one-gap-lg);
  padding: var(--one-gap-xl);
  width: 100%;
}

.main02-icon {
  width: 56px !important;
  height: auto !important;
  flex-shrink: 0;
  transition: transform .4s ease;
}

.main02-item:hover .main02-icon {
  transform: translateY(-6px);
}

.main02-item .hd3 {
  padding-bottom: var(--one-gap-sm);
  color: var(--white-color);
}

.main02-item .ft-body {
  color: rgba(242, 242, 242, 0.85);
}

@media all and (max-width: 1024px) {
  .main02-list {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .main02-item {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 400px;
  }

  .main02-body {
    display: flex;
    height: 100%;
    min-height: inherit;
    gap: var(--one-gap-r);
    padding: var(--one-gap-lg);
  }

  .main02-icon {
    width: 44px !important;
  }
}

@media all and (max-width: 639px) {
  .main02-list {
    flex-wrap: wrap;
  }

  .main02-item {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 220px;
  }

  .main02-body {
    gap: var(--one-gap-sm);
    padding: var(--one-gap-r);
  }

  .main02-icon {
    width: 36px !important;
  }

  .main02-item .hd3 {
    padding-bottom: var(--one-gap-xs);
  }
}

@media all and (max-width: 1024px) {
    #main02{
        padding: 0;
    }
  .main02-item {
    min-height: 400px;
  }

  .main02-logo-img {
    width: 48px !important;
  }
}

@media all and (max-width: 639px) {
  .main02-list.f-row {
	  flex-wrap: wrap;
	  flex-direction: row;
  }

  .main02-item {
    width     : 50%;
    min-height: 280px;
	  padding: 0 var(--one-gap-r);
  }

  .main02-logo-img {
    width: 40px !important;
  }
}

/* main03 — 슬라이더 */
.sec-sl {
    position: relative;
    overflow: hidden;
	padding: var(--one-space-s) 0;
}
.sec-sl-con {
    align-items: center;
    gap: var(--one-space-r);
	width: 88%;
	margin: 0 auto;
}

/* 이미지 영역 */
.sec-sl-lf {
    width: 45%;
    max-width: 471px;
    flex-shrink: 0;
    overflow: hidden;
}
.sec-sl-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 471 / 278;
}
.sec-sl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 텍스트 영역 */
.sec-sl-rg {
    flex: 1;
    display: flex;
    align-items: center;
}

/* 텍스트 슬라이드 전환 */
.slide-texts .slide-text {
    display: none;
}
.slide-texts .slide-text.is-active {
    display: block;
}

.slide-texts .hd2{
    padding-bottom: var(--one-gap-sm);
	color: var(--sub-color01);
}
.slide-texts .desc{
    padding-bottom: var(--one-gap-xl);
}

/* 화살표 버튼 */
.sec-sl-arrow {
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 50px;
    color: var(--one-txt-color);
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.2s;
    z-index: 10;
}
.sec-sl-arrow:hover {
    opacity: 1;
}
.sec-sl-prev { left: 0; }
.sec-sl-next { right: 0; }

.readmore {
    display: inline-block;
    padding: 13px 24px 15px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 999px;
    font-size: var(--one-caption);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s;
	border: none;
}
.readmore:hover {
    background-color: #c8651a;
}

@media all and (max-width: 1024px) {
    .sec-sl-lf {
        max-width: 360px;
    }
}

@media all and (max-width: 639px) {
    .sec-sl-con {
        flex-direction: column;
        gap: var(--one-gap-lg);
		width: 100%;
    }
    .sec-sl-lf {
        width: 100%;
        max-width: 100%;
    }
    .sec-sl-rg {
        width: 100%;
        justify-content: center;
    }
    .slide-texts {
        text-align: center;
    }
	.slide-texts .desc{
		min-height: 92px;
	}
    .sec-sl-arrow {
        top: 28%; /* 세로 2단 구조에서 이미지 영역 중앙 기준 */
    }
}