@charset "utf-8";

/* 비주얼 영역 */
#visual {
	padding: 0;
}
.slider-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}
.slider-wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}
.slider-wrapper li {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}
/* picture와 img 태그 모두에 스타일 적용 */
.slider-wrapper picture,
.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* 이하 CSS는 기존과 동일합니다. */
.prev-button,
.next-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #aeaeae;
	border: none;
	cursor: pointer;
	font-size: 3.125rem;
	z-index: 10;
}
.prev-button {
	left: 10px;
}
.next-button {
	right: 10px;
}
.dots-container {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	z-index: 10;
}
.dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.dot.active {
	background-color: rgb(255, 255, 255);
}
@media (max-width: 1200px) {
	#visual {
		padding: 80px 0 0 0;
	}
}
@media (max-width: 768px) {
	.slider-container {
		height: auto;
	}
	.prev-button,
	.next-button {
		padding: 8px 12px;
		font-size: 1.25rem;
	}
	.dot {
		width: 10px;
		height: 10px;
	}
}
@media (max-width: 480px) {
	.slider-container {
		height: auto;
	}
}


/* 컨테이너 영역 */
#container {
	width: 1200px;
	margin: 0 auto;
}

/* 컨테이너 영역 미디어 쿼리 */
@media screen and (max-width: 1200px) {
	#container {
		width: 95%;
		margin: 0 auto;
		height: auto;
		overflow-y: initial;
	}
}


/* cont1 영역 */
.cont1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 70px 0 0 0;
}
.cont1_left {
	width: 48%;
}
.notice-section {
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #ccc;
	overflow: hidden;
}
.notice-header {
	padding: 0;
}
.notice-title {
	font-size: 1.4375rem;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}
.notice-title::after {
	content: '+';
	font-size: 1.5rem;
	color: #555;
	cursor: pointer;
	border-radius: 50%;
	font-weight: 300;
}
.notice-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.notice-item {
	display: flex;
	align-items: center;
	padding: 22px;
	border-bottom: 1px solid #eee;
	color: #555;
	font-size: 1rem;
	line-height: 1.5;
}
.notice-item:last-child {
	border-bottom: none;
}
.notice-item:hover {
	background-color: #f9f9f9;
}
.notice-date {
	font-size: 1.125rem;
	font-weight: 900;
	color: #999;
	margin-right: 15px;
	white-space: nowrap;
}
.notice-text {
	font-size: 1.125rem;
	flex-grow: 1;
	color: #000;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.notice-badge {
	margin-left: 10px;
	background-color: #007bff;
	color: #fff;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: bold;
	white-space: nowrap;
}
.notice-badge.new {
	background-color: #007bff;
}
.cont1_right {
	width: 48%;
}
.statement-section {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.statement-title {
	font-size: 1.4375rem;
	color: #000;
	margin: 0 0 20px 0;
	font-weight: 700;
}
.statement-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #f2f5fc;
	border-radius: 5px;
	padding: 30px;
	box-sizing: border-box;
	border: 1px solid #ebecf5;
}
.statement-content {
	flex-grow: 1;
	padding-right: 20px;
}
.statement-text {
	font-size: 1.125rem;
	color: #000;
	line-height: 1.6;
	margin-bottom: 23px;
}
.statement-text span {
	color: #323993;
	font-weight: 600;
}
.mobile-break {
	display: none;
}
.statement-button {
	width: 35%;
	background-color: #3f51b5;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 12px 25px;
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	transition: background-color 0.3s ease;
}
.statement-button:hover {
	background-color: #303f9f;
}
.statement-button .arrow {
	font-size: 1.125rem;
	line-height: 1;
}
.statement-image {
	flex-shrink: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.statement-image img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* cont1영역 미디어 쿼리 */
@media (max-width: 1200px) {
	.cont1 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.cont1_left {
		width: 100%;
	}
	.cont1_right {
		width: 100%;
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.cont1 {
		padding: 30px 0 0 0;
	}
	.notice-header {
		padding: 0;
	}
	.notice-more-btn {
		font-size: 1.375rem;
		width: 28px;
		height: 28px;
	}
	.notice-item {
		padding: 12px 15px;
		font-size: 0.9375rem;
	}
	.notice-date {
		margin-right: 12px;
	}
	.notice-badge {
		font-size: 0.6875rem;
		padding: 2px 6px;
	}
	.notice-title {
		margin-bottom: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 700;
	}
	.statement-card {
		padding: 15px;
	}
	.statement-section {
		padding: 0;
	}
	.statement-text {
		width: 100%;
		margin-bottom: 0;
	}
	.statement-title {
		margin: 0 0 10px 0;
	}
	.statement-button {
		width: 50%;
	}
	.mobile-break {
		display: block;
	}
}


/* cont2영역 */
.cont2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 70px 0 0 0;
}
.cont2_left {
	width: 840px;
}
.gall_container {
	width: 100%;
	max-width: 840px;
	position: relative;
}
.gall_title {
	font-size: 1.4375rem;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}
.gall_title::after {
	content: '+';
	font-size: 1.5rem;
	color: #555;
	cursor: pointer;
	border-radius: 50%;
	font-weight: 300;
}
.gall_wrapper {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 10px;
}
.gall_wrapper::-webkit-scrollbar {
	display: none;
}
.gall_item {
	flex: 0 0 calc((100% - 40px) / 3);
	min-width: 260px;
	box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	scroll-snap-align: start;
	border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
}
.gall_item img {
	width: 100%;
	height: 170px;
	display: block;
	object-fit: cover;
	border-bottom: 1px solid #ccc;
}
.gall_desc {
	display: flex;
	padding: 15px;
	text-align: left;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}
.gall_person {
	margin: 0;
	font-size: 1.125rem;
	color: #000;
	line-height: 1.4;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gall_date {
	margin-top: 10px;
	font-size: 0.9375rem;
	color: #888;
	line-height: 1.6;
}
.gall_pagination {
	display: none;
	justify-content: center;
	margin-top: 20px;
}
.gall_dot {
	width: 8px;
	height: 8px;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.gall_dot.active {
	background-color: #555;
	border: 1px solid #555;
}
.cont2_right {
	width: 300px;
}
.vod_container {
	width: 100%;
	max-width: calc(300px + 40px);
	background-color: #fff;
	border-radius: 5px;
	position: relative;
	box-sizing: border-box;
}
.vod_title {
	font-size: 1.4375rem;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}
.vod_title::after {
	content: '+';
	font-size: 1.5rem;
	color: #555;
	cursor: pointer;
	border-radius: 50%;
	font-weight: 300;
}
.vod_wrapper {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 10px;
}
.vod_wrapper::-webkit-scrollbar {
	display: none;
}
.vod_item {
	flex-shrink: 0;
	flex-grow: 0;
	width: 300px;
	box-sizing: border-box;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	border: 1px solid #ccc;
}
.vod_item img {
	width: 100%;
	height: 170px;
	display: block;
	object-fit: cover;
	border-bottom: 1px solid #ccc;
}
.vod_desc {
	padding: 15px;
	text-align: center;
	flex-grow: 1;
}
.vod_person {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: #000;
	line-height: 1.4;
}
.vod_quote {
	margin-top: 10px;
	font-size: 0.9375rem;
	color: #888;
	line-height: 1.6;
}
.vod_pagination {
	display: none;
	justify-content: center;
	margin-top: 20px;
	min-height: 10px;
	gap: 10px;
	align-items: center;
}
.vod_pagination_dot {
	width: 8px;
	height: 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.vod_pagination_dot.active {
	background-color: #555;
	border: 1px solid #555;
}

/* cont2영역 미디어 쿼리 */
@media (max-width: 1200px) {
	.cont2 {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cont2_left {
		width: 100%;
	}

	.cont2_right {
		width: 100%;
	}

	.vod_container {
		max-width: 100%;
		padding: 0;
	}

	.vod_item {
		width: calc((100% - 20px) / 2);
	}

	.vod_pagination {
		display: flex;
		justify-content: center;
		margin-top: 20px;
		min-height: 10px;
		gap: 10px;
		align-items: center;
	}

	.vod_item img {
		height: 300px;
		display: block;
		object-fit: cover;
		border-bottom: 1px solid #ccc;
	}
	.gall_container {
		max-width: 100%;
		padding: 0;
	}
	.gall_item {
		flex: 0 0 calc((100% - 20px) / 2);
		min-width: 45%;
	}
	.gall_item img {
		height: 300px;
	}
	.gall_pagination {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}
}

@media (max-width: 768px) {
	.cont2 {
		padding: 30px 0 0 0;
	}
	.cont2_right {
		margin-top: 30px;
	}
	.vod_container {
		padding: 0;
	}
	.vod_item {
		width: 100%;
	}
	.vod_item img {
		height: 200px;
		display: block;
		object-fit: cover;
		border-bottom: 1px solid #ccc;
	}
	.gall_container {
		padding: 0;
	}
	.gall_wrapper {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
	.gall_title {
		margin-bottom: 10px;
	}
	.gall_item {
		flex: 0 0 100%;
		min-width: auto;
	}
	.gall_item img {
		height: 200px;
	}
}


/* 이벤트존 영역*/
.event-section {
	margin-top: 50px;
	padding: 50px 0 70px 0;
	background: #f5f6fa url("/images/main/event_bg.gif") no-repeat top center;
	background-size: 100% auto;
}
.event-section_bg {
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
}
.event-title {
	font-size: 1.6875rem;
	margin-bottom: 20px;
	display: flex;
	font-weight: 700;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.event ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.event li {
	width: 30%;
}
.event_box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #FFF;
	border-radius: 5px;
	padding: 30px;
	box-sizing: border-box;
	border: 1px solid #ebecf5;
}
.ev_bg1 {
	background: #f5f6fa url("/images/main/event_ic01.png") no-repeat bottom 25px right 10px;
}
.ev_bg2 {
	background: #f5f6fa url("/images/main/event_ic02.png") no-repeat bottom 25px right 10px;
}
.ev_bg3 {
	background: #f5f6fa url("/images/main/event_ic03.png") no-repeat bottom 25px right 10px;
}
.event-content{
	flex-grow: 1;
	padding: 0 0 20px 0;
}
.event-text {
	font-size: 1.125rem;
	color: #000;
	line-height: 1.6;
	margin-bottom: 0;
}
.event-text span {
	color: #323993;
	font-weight: 600;
}
.event-image {
	flex-shrink: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.event-image img {
	display: flex;
}
.event-button_A {
	width: 60%;
	background-color: #3f51b5;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 12px 25px;
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	transition: background-color 0.3s ease;
}
.event-button_B {
	width: 60%;
	background-color: #009ce8;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 12px 25px;
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	transition: background-color 0.3s ease;
}

/* 이벤트존 영역 미디어 쿼리*/
@media (max-width: 1200px) {
	.event-section {
		margin-top: 50px;
		padding: 50px 0 70px 0;
		background: #f5f6fa url("/images/main/event_bg.gif") no-repeat top center;
		background-size: auto 100%;
	}
	.event-section_bg {
		width: 95%;
		margin: 0 auto;
		height: auto;
	}
	.event ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.event li {
		width: 100%;
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.event-section {
		margin-top: 30px;
		padding: 30px 0 30px 0;
		background: #f5f6fa url("/images/main/event_bg.gif") no-repeat top center;
	}
	.ev_bg1 {
		background: #f5f6fa url("/images/main/event_ic01.png") no-repeat bottom 15px right 10px;
	}
	.ev_bg2 {
		background: #f5f6fa url("/images/main/event_ic02.png") no-repeat bottom 15px right 10px;
	}
	.ev_bg3 {
		background: #f5f6fa url("/images/main/event_ic03.png") no-repeat bottom 15px right 10px;
	}
	.event_box {
		padding: 15px;
	}
	.event li:first-child {
		margin-top: 0;
	}
}


/* 배너존 영역*/
.banner-section {
    padding: 30px 0;
    background: #d5d8e9;
}
.banner-section_bg {
    display: flex;
    max-width: 1200px;
	margin: 0 auto;
	gap: 50px; 
}
.banner_left {
	width: 25%;
    display: flex;
    align-items: center;
}
.banner-title {
	display: flex;
    font-size: 1.4375rem;
    font-weight: 700;
}
.banner_right {
	width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 30px; 
}
.banner_item {
	display: flex;
	align-items: center;
    justify-content: center;
	background: #FFF;
	width: 100%;
	border-radius: 5px;
}
.banner_item a {
	padding: 15px 60px;
	box-sizing:border-box;
}
.banner_item img {
	width: 100%;
}

/* 배너존 영역 미디어 쿼리*/
@media (max-width: 768px) {
	.banner-section {
		padding: 20px 0;
	}
	.banner-section_bg {
        display: flex;
        width: 95%;
        margin: 0 auto;
        height: auto;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
	}
	.banner_left {
		width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
	}
	.banner-title {
		text-align:center;
	}
	.banner_right {
		width: 100%;
		gap: 10px; 
	}
	.banner_item {
		height: 60px;
		border-radius: 5px;
	}
	.banner_item a {
		padding: 5px 10px;
		box-sizing:border-box;
	}
}


/* 준비중입니다-얼럿 */
.alert_link-container {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.alert_link-container a {
	display: inline-block;
	margin: 10px;
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.alert_link-container a:hover {
	background-color: #0056b3;
}

/* 커스텀 모달 스타일 */
.alert_custom-alert-overlay {
	display: none; /* 기본적으로 숨김 */
	position: fixed; /* 뷰포트에 고정 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6); /* 반투명 검은색 배경 */
	z-index: 10000; /* 다른 콘텐츠 위에 표시 */
	justify-content: center; /* 가로 중앙 정렬 */
	align-items: center; /* 세로 중앙 정렬 */
	animation: fadeInOverlay 0.3s ease-out; /* 오버레이 등장 애니메이션 */
}

.alert_custom-alert-box {
	background-color: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	text-align: center;
	max-width: 350px;
	width: 90%; /* 반응형 너비 */
	animation: fadeInScale 0.3s ease-out; /* 박스 등장 애니메이션 */
}

.alert_custom-alert-message {
	font-size: 1.25rem; /* 20px */
	color: #333;
	margin-bottom: 0;
	font-weight: 500;
}

/* 애니메이션 키프레임 */
@keyframes fadeInOverlay {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}