#mainWrap {
	
}

.mainVisual {
  position: relative;
  max-width: 1745px;
  display: block;
  width: 100%;
  max-width: 100%;  /* 기존 1745px → 100% */
  margin: 0 auto;
  padding: 0 20px;  /* 모바일 여백용 */
  box-sizing: border-box;
}

.mainVisual .visual_img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 모바일에서도 적용 가능한 비율 */
  border-radius: 20px;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 100%;
  box-sizing: border-box;
}

.mainVisual .visual_img .text {
	position: absolute;
    top: 50%;
    left: 320px;
    transform: translateY(calc(-50% - 20px));
}

.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: 185px;
}

#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;
    align-self: self-start;
}

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

.stories_con .title {
	align-items: end;
}

.stories_con .title > h2 {

}

.stories_con .title > h2 > .small_txt {
	font-size: 25px;
	font-weight: 300;
	letter-spacing: 3px;
	font-family: 'Roboto', sans-serif;
	color: #666666;
	margin-bottom: 18px;
}

.stories_con .title > h2 > .small_txt > span {
	color: #760004;
	font-weight: 700;
}

.stories_con .title > h2 > .big_txt {
	display: flex;
	flex-flow: column;
}

.stories_con .title > .tab_story {
	display: flex;
    flex-flow: row nowrap;
	margin-bottom: 7px;
}

.stories_con .title > .tab_story > span {
	width: 270px !important;
	font-size: 30px;
	letter-spacing: -0.5px;
	font-weight: 400;
	line-height: 36px;
	color: #606060;	
	padding-bottom: 20px;
	border-bottom: 4px solid #D8D8D8;
	text-align: center;
    cursor: pointer;
}

.stories_con .title > .tab_story > span.active {
	font-weight: 600;
	color: #222222;
	border-bottom: 4px solid #760004;
}

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

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

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

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

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

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

.stories_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;
}

.stories_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
}

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

	#mainContents .inner_layout {
		gap: 80px;
	}

	.stories_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%;
    }

}

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

	.stories_con .title > h2 > .small_txt {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.stories_con .title > .tab_story {
		margin-bottom: 3px;
	}

	.stories_con .title > .tab_story > span {
		width: 220px !important;
		font-size: 25px;
		padding-bottom: 15px;
	}

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

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

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

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

	#mainContents .inner_layout {
        gap: 60px;
    }

}

@media screen and (max-width: 960px){
	

}

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

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

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

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

	#mainContents .inner_layout .title h2 {
        font-size: 27px;
		
		display: flex;
        flex-flow: column;
        align-items: center;
    }

	.stories_con .title > h2 > .big_txt {
		flex-flow: row wrap;
        gap: 0px 5px;
        justify-content: center;
	}

	.stories_con .title > h2 > .small_txt {
        font-size: 18px;
        margin-bottom: 7px;
    }

	.stories_con .title > .tab_story {
        margin-bottom: 0px;
        width: 100%;
    }

	.stories_con .title > .tab_story > span {
        width: 50% !important;
        font-size: 20px;
        padding-bottom: 8px;
    }

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

	#mainContents .inner_layout .title {
		flex-flow: column;
		align-items: center;
		gap: 20px;
	}
}

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

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

	.stories_con .title > .tab_story > span {
		line-height: 30px;
	}

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

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

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

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

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

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

}

@media screen and (max-width: 440px){
	
}

/* 최상위 swiper 설정 */
.swiper-container {
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
}

/* 슬라이드 래퍼 */
.swiper-wrapper {
  display: flex;
}

/* 각 슬라이드 */
.swiper-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 16 / 9;
}

/* 이미지 채우기 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}