#mainWrap {
	
}

/* 메인 비주얼 기본값 (PC 기준) */
.mainVisual {
  width: 100%;
  max-width: 1745px;
  height: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

/* 슬라이드 이미지 */
.mainVisual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 가득 채우되 비율 유지 */
  display: block;
}

/* 네비게이션 버튼 색상 및 위치 */
.mainVisual .swiper-button-prev,
.mainVisual .swiper-button-next {
  color: #fff;
}
.mainVisual .swiper-pagination-bullet {
  background: #fff;
}

/* ✅ 반응형 : 태블릿/모바일 */
@media screen and (max-width: 1745px) {
  .mainVisual {
    width: 100%;
    height: auto;          /* 세로는 자동 */
    aspect-ratio: 1745/700; /* PC와 동일한 비율 유지 */
  }
  .mainVisual .swiper-slide img {
    width: 100%;
    height: auto;
  }
}

/* ✅ Swiper wrapper/slide 스타일 */
.mainVisual .visual_img .swiper-wrapper {
	width: 100%;
	height: 100%;
}

.mainVisual .visual_img .swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainVisual .visual_img .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 반응형 꽉 채우기 */
	display: block;
}

.mainVisual .btn_arrow {
	position: absolute;
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
    justify-content: space-between;
}

@media screen and (max-width: 1750px){
	.mainVisual {
		display: flex;
		justify-content: center;
	}

	.mainVisual .visual_img {
		width: calc(100% - 40px);
	}
}

@media screen and (max-width: 1200px){
	.mainVisual .visual_img {
        width: 100%;
        border-radius: 0px;
    }

	.mainVisual .btn_arrow a {
		width: 80px;
	}

	.mainVisual .visual_img .text {
		left: 150px;
		transform: translateY(calc(-50% - 25px));
		width: 300px;
	}
}

@media screen and (max-width: 768px){
	.mainVisual .visual_img .text {
        left: 115px;
        transform: translateY(calc(-50% - 10px));
        width: 250px;
    }
}

@media screen and (max-width: 550px){
	.mainVisual .visual_img .text {
        left: 90px;
        width: 180px;
    }
}

#mainContents {
	position: relative;
    width: 100%;
	padding-top: 120px;
	padding-bottom: 150px;
}

#mainContents .inner_layout {
	display: flex;
	flex-flow: column;
	gap: 100px;
}

#mainContents .inner_layout .title {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}

#mainContents .inner_layout .title h2 {
	font-size: 45px;
	font-family: 'Roboto', 'KIMM',sans-serif;
}

#mainContents .inner_layout .title a {
	width: 32px;
}

#mainContents .inner_layout .title a img {
	display: block;
	width: 100%;
}

#mainContents .inner_layout .con_box02 {
	display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    gap: 90px;
	justify-content: space-between;
	width: 100%;
}

.notice_con {
	width: calc(50% - 45px);
}

.notice_con > .list {
	display: block;
    width: 100%;
	margin-top: 40px;
}

.notice_con > .list ul {
	display: flex;
    flex-flow: column;
}

.notice_con > .list ul li {
	display: flex;
    flex-flow: row nowrap;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #EBEBEB;
}

.notice_con > .list ul li::last-child {
	border-bottom: 0px;
}

.notice_con > .list ul li a {
	padding: 29px 0;	
	color: #222;
	font-size: 23px;
	line-height: 1.4;
	letter-spacing: -0.5px;
	width: calc(100% - 120px);
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice_con > .list ul li span {
	font-size: 20px;
	font-weight: 300;
	width: 110px;
    text-align: right;
}

.news_con {
	display: block;
    width: 100%;
}

.news_con > .list {
	display: block;
    width: 100%;
	margin-top: 50px;
}

.news_con > .list ul {
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.news_con > .list ul li {
	width: calc(25% - 42px);
}

.news_con > .list ul li a {
	display: flex;
	flex-flow: column;
	gap: 25px;
}

.news_con > .list ul li a > div {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	overflow: hidden;
}

.news_con > .list ul li a > div img {
	display: block;
	width: 100%;
}

.news_con > .list ul li a > h3 {
	display: block;
	width: 100%;
	padding: 0 16px;
	font-size: 21px;
	color: #222;
	letter-spacing: -0.5px;
	line-height: 1.4;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	font-weight: 600;
	word-break: keep_all;
}

.news_con > .list ul li a > p {
	width: 100%;
	padding: 0 16px;
	font-size: 18px;
	color: #666;
	letter-spacing: -0.5px;
	line-height: 1.5;
	font-family: 'Roboto', 'Pretendard',sans-serif;
	font-weight: 400;
	word-break: break-all;

	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical
}

.banner {
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

@media screen and (max-width: 1440px){
	#mainContents {
		padding: 80px 20px 120px;
	}

	#mainContents .inner_layout {
		gap: 80px;
	}

	.news_con > .list {
		margin-top: 30px;
	}

	#mainContents .inner_layout .con_box02 {
		gap: 60px;
	}
}

@media screen and (max-width: 1340px){
	#mainContents {
		padding: 50px 20px 90px;
	}

	#mainContents .inner_layout .title {
		padding: 0 10px;
	}

	#mainContents .inner_layout .title h2 {
		font-size: 38px;
	}

	#mainContents .inner_layout .title a {
		width: 28px;
	}

	#mainContents .inner_layout .con_box02 {
        justify-content: space-between;
        width: 100%;
    }

	.notice_con > .list ul li a {
		padding: 25px 0;
		font-size: 20px;
		width: calc(100% - 110px);
	}

	.notice_con > .list ul li span {
		font-size: 18px;
		width: 100px;
	}

}

@media screen and (max-width: 1200px){
	#mainContents .inner_layout .title h2 {
        font-size: 30px;
    }

	#mainContents .inner_layout .title a {
        width: 22px;
    }

	.news_con > .list ul li {
		width: calc(25% - 18px);
	}

	.news_con > .list ul li a {
		gap: 18px;
	}

	.news_con > .list ul li a > h3 {
		padding: 0 14px;
		font-size: 18px;
		line-height: 1.3;
	}

	.news_con > .list ul li a > p {
		padding: 0 14px;
		font-size: 16px;
		line-height: 1.4;
	}


	#mainContents .inner_layout {
        gap: 60px;
    }

	.notice_con {
		width: calc(50% - 30px);
	}

}

@media screen and (max-width: 960px){
	#mainContents .inner_layout .con_box02 {
		flex-flow: column;
		gap: 40px;
	}

	.notice_con {
		width: 100%;
	}

}

@media screen and (max-width: 768px){
	#mainContents {
        padding: 30px 20px 60px;
    }

	#mainContents .inner_layout .title {
        padding: 0 5px;
    }

	.news_con > .list ul {
		flex-flow: row wrap;
		gap: 30px 0;
	}

	.news_con > .list ul li {
        width: calc(50% - 10px);
    }

	#mainContents .inner_layout .title h2 {
        font-size: 27px;
    }

	.news_con > .list {
        margin-top: 20px;
    }

	.notice_con > .list {
		margin-top: 15px;
	}

	.notice_con > .list ul li {
		flex-flow: column;
		align-items: start;
		padding: 15px 5px;
		gap: 5px;
	}

	.notice_con > .list ul li a {
        padding: 0px;
        font-size: 18px;
		width: 100%;
    }

	.notice_con > .list ul li span {
        font-size: 16px;
        width: 100%;
        text-align: left;
		color: #a6a6a6;
    }


}

@media screen and (max-width: 550px){
	#mainContents {
        padding: 30px 15px 50px;
    }

	#mainContents .inner_layout .title h2 {
        font-size: 24px;
    }

	.news_con .title > .tab_story > a {
		line-height: 30px;
	}

	.news_con .s_txt p {
        flex-flow: column;
    }
	
	.news_con .title > .tab_story > a {
        padding-bottom: 5px;
		font-size: 18px;
    }

	.news_con > .list {
        margin-top: 25px;
    }

	.news_con > .list ul li {
        width: 100%;
    }

	.news_con > .list ul li a {
        gap: 11px;
    }

	.news_con > .list ul li a > h3 {
        padding: 0 7px;
        font-size: 17px;
    }

	.news_con > .list ul li a > p {
        padding: 0px 7px;
    }

	.banner img {
		content: url('/ilsimwork/assets/images/main/shop_banner_550.svg');
	}

}

@media screen and (max-width: 440px){
	.support_con .s_img {
        display: none;
    }

}