@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700|Nanum+Myeongjo');
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css);
@viewport { width: device-width; }
/* 기본 스타일 초기화 */
* {
	margin: 0;
	padding: 0;
	font-family: 'NanumSquareNeoLight', sans-serif;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

/* 전체 레이아웃 */
#wrap {
	width: 100%;
	min-height: 100vh; /* 최소 높이를 뷰포트 높이로 설정 */
	display: flex;
	flex-direction: column;
}

/* 상단 이미지 */
.top_img {
	height: 550px;
	background: url(../img/main3.jpg) no-repeat center/cover;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top_text {
	font-size: 4.5rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.top_nav {
	width: 100%;
	background-color: #f5f5f5;
	border-bottom: 2px solid #d7d1d1;
}

/* 콘텐츠 박스 */
.contents_box {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 오른쪽 콘텐츠 영역 */
.right_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}
.company_vision{
	margin-top: 50px;
}
.vision_text p{
	font-size: 25px;
	line-height: 1.9;
	color: #555;
	font-weight: 400;
	margin-bottom: 40px;
}
.vision_text span{
	font-size: 32px;
	font-weight: 800;
	color: #222;
	margin-bottom: 10px;
}
.vision_img{
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 1000 / 440;
	background: url(../img/business03.svg) no-repeat center/cover;
	padding: 20px;
	margin-bottom: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}


/* 반응형 구현 */
@media screen and (max-width: 1500px){
	.vision_img {
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 1300px){

	.vision_text p {
		font-size: 24px;
	}

	.vision_text span {
		font-size: 24px;
	}

	.vision_img	{
		width: 100%;
		height: auto;
	}

}

@media screen and (max-width: 1100px){
	.vision_text p {
		font-size: 20px;
	}

	.vision_text span {
		font-size: 20px;
	}

	.vision_img {
		width: 100%;
		height: auto;
	}

	.company_vision{
		margin-top: 24px;
	}

	#wrap {
		height: 1156px;
	}
}


/*모바일 css 적용*/
@media screen and (max-width: 768px){
	#wrap {
		min-height: 100vh;
	}
	.top_text {
	    font-size: 1.5rem;
	}
    .vision_text p {
        font-size: 10px;
    }
	.contents_box {
		flex-direction: column;
		overflow-x: scroll;
	}

	.right_box {
		margin: 0px auto;
	}
}


