.main_visual .swiper-slide{
	width:100% !important;
	height:820px;
	position:relative;
}
.main_visual .swiper-slide .item {
	position:relative;
	width:100%;
	height:100%;
	overflow:hidden;
	background-size:cover !important;
}
.main_visual .swiper-slide .item > .txt_box {
	position:absolute;
	left:50%;
	top:40%;
	width:100%;
	transform:translateX(-50%);
	text-align:left;
	color:#fff;
	z-index:10;
	opacity:0;
	transition:all 2s ease;
}
.main_visual .swiper-slide.swiper-slide-active > .item > .txt_box {
	opacity:1;
	top:37%;
}
.main_visual .swiper-slide .item > .txt_box h3 {
	font-size:clamp(3rem, 5vw, 4.8rem);
	font-weight:700;
	line-height:1.4;
}
.main_visual .swiper-slide .item > .txt_box p {
	font-size:clamp(1.6rem, 1.8vw, 2rem);
	font-weight:300;
	line-height:1.6;
	margin-top:clamp(1.5rem, 2vw, 3rem);
}
.main_visual .swiper-slide .item > .txt_box .control {
	position:relative;
	margin-top:clamp(2rem, 3vw, 4rem);
	display:flex;
	align-items: center;
	gap:2rem;
}
.main_visual .swiper-slide .item > .txt_box .control .visual-pagination {
	position:relative;
	gap:3px;
	display:flex;
	align-items: center;
}
.main_visual .swiper-slide .item > .txt_box .control .swiper-pagination-bullet {
	width:5.5rem;
	height:3px;
	background: rgba(217, 217, 217, 0.40);
	border-radius:0;
	opacity: 1;
}
.main_visual .swiper-slide .item > .txt_box .control .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background:#fff;
}
.main_visual .swiper-slide .item > .visual_bg {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	transition:all 5s ease-in-out;
	transform:scale(1,1);
}
.main_visual .swiper-slide.swiper-slide-active .item > .visual_bg {
	transform:scale(1.05,1.05);
}
.main_visual .swiper-container .visual-button-next,
.main_visual .swiper-container .visual-button-prev {
	position:relative;
	color:#fff;
	font-size:clamp(16px, 1.6vw, 18px);
	z-index:10;
}
@media (max-width: 991.98px) {
	.main_visual .swiper-slide{
		height:680px;
	}
	.main_visual .swiper-slide .item > .visual_bg:before {
		content:"";
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background:rgba(0,0,0,0.2);
		z-index:5;
	}
}
@media (max-width: 767.98px) {
	.main_visual .swiper-slide .item > .txt_box {
		top:auto;
		bottom:6rem;
	}
	.main_visual .swiper-slide.swiper-slide-active > .item > .txt_box {
		top:auto;
		bottom:6rem;
	}
}
@media (max-width: 575.98px) {
	.main_visual .swiper-slide{
		height:480px;
	}
}

/* sec01 */
.sec01 {
	padding: 12rem 1.5rem 14rem;
}
.sec01__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 6rem;
	align-items: flex-end;
}
.sec01__title h2 {
	font-size: clamp(2.4rem, 3vw, 3.6rem);
	font-weight: 700;
	line-height: 1.35;
	color: #1a1a1a;
}
.sec01__desc p {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	line-height: 1.6;
	color: #000;
	word-break: keep-all;
}
.sec01__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.sec01__card {
	position: relative;
}
.sec01__card:nth-child(even) {
	padding-top:4rem;
}
.sec01__card-img {
	width: 100%;
	padding-bottom: 140%;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	border-radius: 1.6rem;
}
.sec01__card-img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(1, 77, 54, 0.9);
	opacity: 0;
	transition: all 0.3s ease;
}
.sec01__card-label {
	position: absolute;
	width:100%;
	top: 50%;
	left:50%;
	transform:translate(-50%, -50%);
	font-size: clamp(1.6rem, 2vw, 2.4rem);
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	opacity: 0;
	transition: all 0.3s ease;
}
.sec01__card-img:hover:before {
	opacity: 1;
}
.sec01__card-img:hover .sec01__card-label {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.sec01 {
		padding: 8rem 15px;
	}
	.sec01__header {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 5rem;
	}
	.sec01__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.8rem;
	}
	.sec01__card:nth-child(even) {
		padding-top:4rem;
	}
	.sec01__card-img:before {
		background: rgba(0,0,0, 0.2);
		opacity: 1;
	}
	.sec01__card-img:hover:before {
		opacity: 1;
	}
	.sec01__card-label {
		top: auto;
		bottom:3rem;
		transform:translate(-50%,0);
		opacity: 1;
	}
}

@media (max-width: 767.98px) {
	.sec01 {
		padding: 6rem 0;
	}
	.sec01__header {
		gap: 1.5rem;
		margin-bottom: 3rem;
	}
	.sec01__title h2 {
		font-size: 2.6rem;
	}
	.sec01__desc p {
		font-size: 1.6rem;
	}
}

@media (max-width: 575.98px) {
	.sec01 {
		padding: 6rem 1.5rem;
	}
	.sec01__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.sec01__card-img {
		padding-bottom: 120%;
	}
	.sec01__title h2 {
		font-size: 2.2rem;
	}
	.sec01__desc p {
		font-size: 1.6rem;
	}
	.sec01__card-label {
		font-size: 1.5rem;
		bottom:2rem;
	}
	.sec01__card:nth-child(even) {
		padding-top:0;
	}
}

/* sec02 */
.sec02 {
	padding: 14rem 0;
	position: relative;
}
.sec02:before {
	content: "";
	display:block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50%;
	background:url('/html/_img/main/sec02_bg.jpg') no-repeat center center / cover;
}
.sec02__swiper {
	width:100%;
	margin: 0 auto;
	overflow: hidden;
}
.sec02__wrapper {
	position: relative;
	z-index: 10;
	padding-bottom:2rem;
}
.sec02__card {
	background: #fff;
	border-radius: 2.4rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	min-height: 570px;
	padding:4rem;
}
.sec02__img {
	position: relative;
}
.sec02__img-inner {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display:flex;
	align-items: center;
	justify-content: center;
	text-align:center;
}
.sec02__img-inner img {
	width: 100%;
	object-fit: cover;
	max-width:67rem;
}
.sec02__content {
	padding: 6rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sec02__subtitle {
	font-size: clamp(2.4rem, 2.8vw, 3.2rem);
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.3;
}
.sec02__title {
	font-size: clamp(2.8em, 3.2vw, 3.6rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--primary);
	margin-bottom: 2.5rem;
}
.sec02__text {
	font-size: 1.8rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 3.5rem;
	word-break: keep-all;
}
.sec02__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 1.2rem 3.2rem;
	background: #014D36;
	color: #fff;
	border-radius: 5rem;
	font-size: 1.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
	min-width:22rem;
}
.sec02__btn:hover {
	background: #000;
	color: #fff;
}
.sec02__btn-icon {
	width: 1.6rem;
	height: 1.6rem;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: block;
}
.sec02__nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 4rem;
}
.sec02__nav-prev,
.sec02__nav-next {
	width: 4rem;
	height: 4rem;
	border: none;
	background:none;
	font-size:2rem;
	outline: none;
}
.sec02__nav-pagination {
	font-size: 2.4rem;
	color: #000;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.sec02__nav-current {
	font-size: 2.6rem;
}
.sec02__nav-total {
	color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199.98px) {
	.sec02__card {
		padding:4rem;
	}
}
@media (max-width: 991.98px) {
	.sec02 {
		padding: 8rem 0;
	}
	.sec02__card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding:3rem;
	}
	.sec02__img {
		min-height: 400px;
	}
	.sec02__content {
		padding: 4rem 3rem;
	}
	.sec02__title {
		font-size: 3rem;
		margin-bottom: 2rem;
	}
	.sec02__text {
		font-size: 1.6rem;
		margin-bottom: 3rem;
	}
	.sec02__btn {
		font-size: 1.6rem;
		padding: 1.4rem 2.8rem;
	}
}

@media (max-width: 767.98px) {
	.sec02 {
		padding: 5rem 0;
	}	
	.sec02__card {
		padding:2rem;
	}
	.sec02__img {
		min-height: 300px;
	}
	.sec02__content {
		padding: 3rem 2.5rem;
	}	
	.sec02__title {
		font-size: 2.6rem;
		margin-bottom: 1.8rem;
	}
	.sec02__text {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}
	.sec02__nav {
		gap: 1.5rem;
		margin-top: 2rem;
	}
	.sec02__nav-prev,
	.sec02__nav-next {
		width: 3.5rem;
		height: 3.5rem;
	}
}

@media (max-width: 575.98px) {
	.sec02__swiper {
		padding: 0 1.5rem;
	}
	.sec02__card {
		border-radius: 1.6rem;
	}
	.sec02__img {
		min-height: 250px;
	}
	.sec02__content {
		padding: 0 1rem;
	}
	.sec02__title {
		font-size: 2.4rem;
	}
	.sec02__btn {
		font-size: 1.5rem;
		padding: 1.3rem 2.5rem;
	}
	.sec02__nav-pagination {
		font-size: 1.6rem;
	}
	.sec02__nav-current {
		font-size: 2rem;
	}
}

/* sec03 */
.sec03 {
	padding: 0 0 12rem;
	background: #fff url('/html/_img/main/sec03_bg.jpg') no-repeat left calc(50% + 500px) bottom;
}
.sec03__title {
	font-size: clamp(2.4rem, 3vw, 3.6rem);
	font-weight: 700;
	text-align: center;
	color: #1a1a1a;
	margin-bottom: 6rem;
	letter-spacing: -0.02em;
}
.sec03__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
}
.sec03__item {
	display: block;
	text-decoration: none;
	transition: transform 0.3s ease;
	cursor:unset;
}
.sec03__item:hover {
	transform: translateY(-0.8rem);
}
.sec03__img {
	position: relative;
	width: 100%;
	padding-bottom: 90%;
	border-radius: 2rem;
	overflow: hidden;
	background: #f8f8f8;
	margin-bottom: 2rem;
}
.sec03__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec03__info {
	text-align: center;
	padding: 0 1rem;
}
.sec03__name {
	font-size: clamp(1.8rem, 2vw, 2.0rem);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}
.sec03__desc {
	font-size: clamp(1.4rem, 1.6vw, 1.8rem);
	color: #777;
	line-height: 1.5;
	word-break: keep-all;
}

@media (max-width: 1199.98px) {
	.sec03 {
		background-position: right bottom;
		background-size: 50%;
	}
	.sec03__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem 2rem;
	}
}

@media (max-width: 991.98px) {
	.sec03 {
		padding: 0 0 8rem;
	}
	.sec03__title {
		margin-bottom: 5rem;
	}
	.sec03__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 2rem;
	}
	.sec03__img {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 767.98px) {
	.sec03 {
		padding: 0 0 6rem;
	}
	.sec03__title {
		margin-bottom: 4rem;
	}
	.sec03__list {
		gap: 2rem 1.5rem;
	}
}

@media (max-width: 575.98px) {
	.sec03__title {
		margin-bottom: 2rem;
	}
	.sec03__list {
		gap: 2rem 1rem;
	}
	.sec03__img {
		border-radius: 1.6rem;
	}
}

/* sec04 */
.sec04 {
	padding: 12rem 0;
	background: #fafafa;
}
.sec04__title {
	font-size: clamp(2.4rem, 3vw, 3.6rem);
	font-weight: 700;
	text-align: center;
	color: #1a1a1a;
	margin-bottom: 3rem;
	letter-spacing: -0.02em;
}
.sec04__tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: clamp(2rem, 4vw, 6rem);
}
.sec04__tab {
	padding: 1.4rem 3.5rem;
	border-radius: 5rem;
	font-size: clamp(1.6rem, 1.8vw, 2rem);
	font-weight: 600;
	background: none;
	color: var(--primary);
	cursor: pointer;
	transition: all 0.3s ease;
	border:1px solid var(--primary);
	outline: none;
}
.sec04__tab:hover {
	outline:none;
}
.sec04__tab:nth-child(1).sec04__tab--active {
	border-color: var(--red);
	color: #fff;
	background:var(--red);
}
.sec04__tab:nth-child(2) {
	color:var(--primary);
	border-color: var(--primary);
}
.sec04__tab:nth-child(2).sec04__tab--active {
	border:1px solid var(--primary);
	color: #fff;
	background:var(--primary);
}
.sec04__tab,
.sec04__tab:focus,
.sec04__tab:active {
  outline: none;
  box-shadow: none;
}
.sec04 .tabBox {
	background:#fff;
	border-radius: 2.4rem;
	padding:8rem 4rem 4rem;
	display:none;
}
.sec04 .tabBox.on {
	display:block;
}
.sec04__brand {
	display: grid;
	grid-template-columns: 0.6fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-bottom: 8rem;
}
.sec04__brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec04__logo-img img {
	display: block;
	width: 100%;
	object-fit: cover;
}
.sec04__brand-title {
	font-size: clamp(2.4rem, 2.8vw, 3.2rem);
	font-weight: 700;
	color: #000;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.sec04__brand-subtitle {
	display: block;
	color: var(--primary);
}
.sec04__brand-text {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	line-height: 1.6;
	color: #000;
	word-break: keep-all;
}
.sec04__brand-text strong {
	font-weight: 700;
}
.sec04__system {
	margin-bottom: 8rem;
}
.sec04__system-header {
	text-align: center;
	margin-bottom: 2rem;
}
.sec04__system-label {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	color: #bbb;
	margin-bottom: 0.5rem;
}
.sec04__system-title {
	font-size: clamp(2rem, 2.6vw, 2.8rem);
	font-weight: 500;
	color: #000;
	line-height: 1.4;
}
.sec04__system-title strong {
	font-weight: 700;
}
.sec04__system-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.sec04__system-card {
	background: #f6f6f6;
	border-radius: 1.8rem;
	padding: 4rem 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.sec04__system-card--active {
	background: var(--primary);
}

.sec04__system-card--active .sec04__system-name,
.sec04__system-card--active .sec04__system-desc {
	color: #fff;
}

.sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) {
	background: #f6f6f6;
}

.sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) 
.sec04__system-name,
.sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) 
.sec04__system-desc {
	color: #1a1a1a;
}
.sec04__system-card:hover {
	background: var(--primary);
}

.sec04__system-card:hover .sec04__system-name,
.sec04__system-card:hover .sec04__system-desc {
	color: #fff;
}


.sec04__system-icon {
	width: 100px;
	height: 100px;
	background: #fff;
	border-radius: 50%;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sec04__system-icon img {
	display: block;
	max-width:40%;
	width:100%;
}
.sec04__system-name {
	font-size: clamp(1.8rem, 1.8vw, 2rem);
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1.2rem;
	line-height: 1.3;
}
.sec04__system-desc {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	line-height: 1.4;
	color: #666;
	word-break: keep-all;
}
.sec04__recommend-header {
	text-align: center;
	margin-bottom: 2rem;
}
.sec04__recommend-label {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	color: #bbb;
	margin-bottom: 0.5rem;
}
.sec04__recommend-title {
	font-size: clamp(2.2rem, 2.6vw, 2.8rem);
	font-weight: 500;
	color: #000;
	line-height: 1.4;
}
.sec04__recommend-title strong {
	font-weight: 700;
}
.sec04__recommend-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.sec04__recommend-card {
	border-radius: 1.8rem;
	padding: 4rem 3.5rem;
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	gap: 1.5rem;
}
.sec04__recommend-card--light {
	background: #eee;
}
.sec04__recommend-card--dark {
	background: var(--primary);
}

.sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) {
	background: var(--primary);
}

.sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) 
.sec04__recommend-num,
.sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) 
.sec04__recommend-text {
	color: #fff;
}


.sec04__recommend-card:hover {
	background: #eee;
}

.sec04__recommend-card:hover .sec04__recommend-num {
	color: #000;
}

.sec04__recommend-card:hover .sec04__recommend-text {
	color: #333;
}
.sec04__recommend-card {
	transition: background 0.3s ease, color 0.3s ease;
}








.sec04__recommend-num {
	font-size: clamp(2.4rem, 2.4vw, 2.8rem);
	font-weight: 700;
	color: #000;
}
.tabBox02 .sec04__recommend-card--dark {
	background: var(--red);
}
.tabBox02 .sec04__system-card--active {
	background: var(--red);
}
.tabBox02 .sec04__brand-subtitle {
	color: var(--red);
}
.sec04__recommend-card--dark .sec04__recommend-num {
	color: #fff;
}
.sec04__recommend-text {
	font-size: clamp(1.6rem, 1.6vw, 1.8rem);
	line-height: 1.4;
	color: #333;
	word-break: keep-all;
}
.sec04__recommend-card--dark .sec04__recommend-text {
	color: #fff;
}


.tabBox02 .sec04__system-card--active {
	background: var(--red);
}

.tabBox02 .sec04__system-card--active 
.sec04__system-name,
.tabBox02 .sec04__system-card--active 
.sec04__system-desc {
	color: #fff;
}



.tabBox02 .sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) {
	background: #f6f6f6;
}

.tabBox02 .sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) 
.sec04__system-name,
.tabBox02 .sec04__system-cards:hover 
.sec04__system-card--active:not(:hover) 
.sec04__system-desc {
	color: #333;
}


.tabBox02 .sec04__system-card:hover {
	background: var(--red);
}

.tabBox02 .sec04__system-card:hover 
.sec04__system-name,
.tabBox02 .sec04__system-card:hover 
.sec04__system-desc {
	color: #fff;
}
.sec04__system-card {
	transition: background 0.3s ease, color 0.3s ease;
}

/* 기본 상태 */
.tabBox02 .sec04__recommend-card--light {
	background: #eee;
}

.tabBox02 .sec04__recommend-card--dark {
	background: var(--red);
}

/* dark 기본 텍스트 */
.tabBox02 .sec04__recommend-card--dark 
.sec04__recommend-num,
.tabBox02 .sec04__recommend-card--dark 
.sec04__recommend-text {
	color: #fff;
}


/* 카드 영역에 hover 발생 시 */
/* hover되지 않은 light 카드 → red */
.tabBox02 .sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) {
	background: var(--red);
}

.tabBox02 .sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) 
.sec04__recommend-num,
.tabBox02 .sec04__recommend-cards:hover 
.sec04__recommend-card--light:not(:hover) 
.sec04__recommend-text {
	color: #fff;
}


/* hover된 카드 → 회색 */
.tabBox02 .sec04__recommend-card:hover {
	background: #eee;
}

.tabBox02 .sec04__recommend-card:hover 
.sec04__recommend-num {
	color: #000;
}

.tabBox02 .sec04__recommend-card:hover 
.sec04__recommend-text {
	color: #333;
}


/* 부드러운 전환 */
.tabBox02 .sec04__recommend-card {
	transition: background 0.3s ease, color 0.3s ease;
}




.sec04__recommend-text strong {
	font-weight: 600;
}

@media (max-width: 1199.98px) {
	.sec04__brand {
		grid-template-columns: 300px 1fr;
		gap: 4rem;
	}
	.sec04__system-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991.98px) {
	.sec04 {
		padding: 8rem 0;
	}
	.sec04__tabs {
		gap: 1rem;
		margin-bottom: 4rem;
	}
	.sec04__tab {
		width: 100%;
		max-width: 400px;
		padding: 1.3rem 2.5rem;
		font-size: 1.6rem;
	}
	
	.sec04 .tabBox {
		padding:4rem 3rem 3rem;
	}
	.sec04__brand {
		display:block;
		gap: 3rem;
		margin-bottom: 4rem;
	}
	.sec04__logo-img {
		width: 200px;
		margin-bottom:6rem;
	}
	.sec04__brand-text {
		font-size: 1.6rem;
	}
	.sec04__system {
		margin-bottom: 6rem;
	}
	.sec04__system-header {
		margin-bottom: 3rem;
	}
	.sec04__system-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	.sec04__system-card {
		padding: 3rem 2rem;
	}
	.sec04__recommend-cards {
		gap: 1.5rem;
	}
	.sec04__recommend-card {
		padding: 3rem 2.5rem;
		min-height: 140px;
	}
}

@media (max-width: 767.98px) {
	.sec04 {
		padding: 6rem 0;
	}
	.sec04__title {
		margin-bottom: 2.5rem;
	}
	.sec04__tabs {
		margin-bottom: 3rem;
	}
	.sec04__brand {
		margin-bottom: 5rem;
	}
	.sec04__brand-title {
		font-size: 2.2rem;
	}
	.sec04__brand-text {
		font-size: 1.5rem;
	}
	.sec04__system {
		margin-bottom: 5rem;
	}
	.sec04__system-header,
	.sec04__recommend-header {
		margin-bottom: 2rem;
	}
	.sec04__system-cards {
		gap: 1.8rem;
	}
	.sec04__system-card {
		padding: 2.5rem 1.8rem;
	}
	.sec04__system-name {
		font-size: 1.8rem;
		margin-bottom: 0.5rem;
	}
	.sec04__system-desc {
		font-size: 1.5rem;
	}
	.sec04__recommend-cards {
		gap: 1.8rem;
	}
	.sec04__recommend-card {
		padding: 2.5rem 2rem;
	}
	.sec04__recommend-text {
		font-size: 1.6rem;
	}
}

@media (max-width: 575.98px) {
	.sec04__tabs {
		gap: 0.5rem;
		flex-direction: column;
	}
	.sec04__tab {
		font-size: 1.5rem;
		padding: 1.2rem 2rem;
	}
	.sec04 .tabBox {
		padding:3rem 2rem 2rem;
	}
	.sec04__brand {
		margin-bottom: 4rem;
	}
	.sec04__logo-img {
		width: 180px;
		margin-bottom:4rem;
	}
	.sec04__brand-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	.sec04__system {
		margin-bottom: 4rem;
	}
	.sec04__system-cards {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	.sec04__system-card {
		padding: 2.5rem 2rem;
	}
	.sec04__system-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1rem;
	}
	.sec04__recommend-cards {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
	.sec04__recommend-card {
		padding: 2.5rem 2rem;
		min-height: auto;
	}
	.sec04__recommend-num {
		font-size: 2.4rem;
	}
	.sec04__recommend-text {
		font-size: 1.5rem;
	}
}

/* sec05 */
.sec05 {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('/html/_img/main/sec05_bg.jpg') no-repeat center center;
	background-size: cover;
	background-repeat: no-repeat;
  	background-attachment: fixed;
	padding: 10rem 2rem;
}
.sec05__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}
.sec05__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}
.sec05__title {
	font-size: clamp(2.4rem, 3.2vw, 3.6rem);
	font-weight: 400;
	color: #fff;
	line-height: 1.5;
	margin-bottom: 3rem;
	word-break: keep-all;
}
.sec05__title strong {
	font-weight: 700;
}
.sec05__text {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	font-weight:300;
	color: #fff;
	line-height: 1.7;
	word-break: keep-all;
}

@media (max-width: 991.98px) {
	.sec05 {
		min-height: 320px;
		padding: 6rem 2rem;
	}
	.sec05__title {
		margin-bottom: 2.5rem;
	}
}

@media (max-width: 767.98px) {
	.sec05 {
		min-height: 280px;
		padding: 4rem 1.5rem;
		background-attachment: scroll;
	}
	.sec05__title {
		margin-bottom: 2rem;
	}
}

@media (max-width: 575.98px) {
	.sec05 {
		min-height: 200px;
		padding: 2rem 1.5rem;
	}
	.sec05__title {
		font-size: 2.2rem;
		margin-bottom: 1.8rem;
	}
	.sec05__text {
		font-size: 1.5rem;
	}
}

/* sec06 */
.sec06 {
	padding: 12rem 0;
	background: #fff;
}
.sec06__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}
.sec06__card {
	background: #fbfbfb;
	border: 1px solid #ddd;
	border-radius: 2rem;
	padding: 5rem 4rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.5s ease;
}
.sec06__card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	background: var(--primary);
	border-color: var(--primary);
}
.sec06__card:hover .sec06__title,
.sec06__card:hover .sec06__desc,
.sec06__card:hover .sec06__link {
	color: #fff;
}
.sec06__card .top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom:2rem;
}
.sec06__icon {
	color: var(--primary);
}
.sec06__card:hover .sec06__icon {
	filter: brightness(0) invert(1);
}
.sec06__title {
	font-size: clamp(1.8rem, 2vw, 2.6rem);
	font-weight: 700;
	color: #1a1a1a;
}
.sec06__desc {
	font-size: clamp(1.5rem, 1.6vw, 1.8rem);
	line-height: 1.4;
	color: #555;
	margin-bottom: 5rem;
	flex: 1;
	word-break: keep-all;
}
.sec06__link {
	font-size: 1.6rem;
	font-weight: 600;
	color: #1a1a1a;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

@media (max-width: 1199.98px) {
	.sec06__card {
		padding: 4rem 3rem;
	}
	.sec06__cards {
		gap: 1.5rem;
	}
}
@media (max-width: 991.98px) {
	.sec06 {
		padding: 8rem 0;
	}
	.sec06__cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.sec06__card {
		padding: 4rem 3rem;
		min-height: auto;
	}
	.sec06__desc {
		margin-bottom: 3rem;
	}
	.sec06__card:hover {
		transform:none;
		box-shadow: none;
		background: #fbfbfb;
		border-color: #ddd;
	}
	.sec06__card:hover .sec06__title,
	.sec06__card:hover .sec06__desc,
	.sec06__card:hover .sec06__link {
		color: #000;
	}
	.sec06__card:hover .sec06__icon {
		filter: none;
	}
}

@media (max-width: 767.98px) {
	.sec06 {
		padding: 6rem 0;
	}
	.sec06__card {
		padding: 3.5rem 2.5rem;
	}
	.sec06__title {
		font-size: 2.2rem;
	}
	.sec06__desc {
		font-size: 1.5rem;
		margin-bottom: 2.5rem;
	}
	.sec06__link {
		font-size: 1.5rem;
	}
}

@media (max-width: 575.98px) {
	.sec06 {
		padding: 5rem 0;
	}
	.sec06__cards {
		gap: 1rem;
	}
	.sec06__card {
		padding: 3rem 2rem;
	}
	.sec06__title {
		font-size: 2rem;
	}
	.sec06__desc {
		font-size: 1.4rem;
	}
	.sec06__card .top {
		gap: 1rem;
	}
	.sec06__icon img {
		width: 16px;
	}
}
