* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	overflow-x: hidden;
}

/* Çì´õ ½ºÅ¸ÀÏ */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: white;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #000;
}

.right-section {
	display: flex;
	align-items: center;
	gap: 30px;
}

/* ¾ð¾î ¼±ÅÃ */
.lang-selector {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.lang-btn {
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	padding: 5px 10px;
	transition: 0.3s;
	color: #999;
}

.lang-btn.active {
	color: #000;
}

.lang-btn:hover {
	color: #000;
}

.lang-divider {
	width: 1px;
	height: 14px;
	background: #ddd;
}

.menu-btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.menu-btn span {
	width: 100%;
	height: 3px;
	background: #000;
	border-radius: 2px;
	transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* ÀüÃ¼ ¸Þ´º */
.full-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: white;
	z-index: 999;
	display: none;
	overflow-y: auto;
	padding-top: 80px;
}

.full-menu.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.menu-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 60px;
}

.menu-section {
	border-bottom: 2px solid #000;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.menu-section-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.menu-items {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.menu-item {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: 0.3s;
	padding: 5px 0;
}

.menu-item:hover {
	color: #000;
	font-weight: 600;
	padding-left: 10px;
}

/* ½½¶óÀÌ´õ ÄÁÅ×ÀÌ³Ê */
/*
		.slider-container {
	margin-top: 80px;
	position: relative;
	width: 100%;
	height: calc(100vh - 80px);
	overflow: hidden;
	background: #1a1a1a;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
		*/
		.slider-container {
			margin-top: 80px;
			position: relative;
			width: 100%;
			height: 500px; /* °íÁ¤ ³ôÀÌ·Î º¯°æ */
			overflow: hidden;
			background: #1a1a1a;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}

.slider-header {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
}

.slider-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	color: white;
	margin-left:-20px;
}

.slider-link {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

.slider-link:hover {
	color: white;
}

@media (max-width: 1024px) {
	.slider-container {
		height: 60vh;
	}
}

@media (max-width: 768px) {
	.slider-container {
		height: 50vh;
		margin-top: 60px;
	}
}

@media (max-width: 480px) {
	.slider-container {
		height: 40vh;
	}
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
	align-items: center;
	gap: 40px;
	padding: 0 100px;
}

.slide {
	min-width: 400px;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.5s ease;
	opacity: 0.4;
	transform: scale(0.85);
}

.slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.slide-title {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	color: white;
	background: rgba(0,0,0,0.6);
	padding: 8px 16px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.slider {
		gap: 20px;
		padding: 0 50px;
	}

	.slide {
		min-width: 250px;
		height: 60%;
	}

	.slide-title {
		font-size: 12px;
		top: 15px;
		right: 15px;
		padding: 6px 12px;
	}
}

/* ÀÎµðÄÉÀÌÅÍ */
.indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: 0.3s;
}

.indicator.active {
	background: #000;
	width: 30px;
	border-radius: 5px;
}

/* ³×ºñ°ÔÀÌ¼Ç ¹öÆ° */
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.8);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	z-index: 10;
}

.nav-btn:hover {
	background: white;
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

/* ÄÁÅÙÃ÷ ¼½¼Ç */
.content-section {
	padding: 25px 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.fade-in {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}


.fade-out {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-out.animate {
	opacity: 1;
	transform: translateY(0);
}

.content-section.fade-out {
	opacity: 0;
	transform: translateY(-50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.fade-out.animate {
	opacity: 1;
	transform: translateY(0);
}

.content-section.fade-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.fade-left.animate {
	opacity: 1;
	transform: translateX(0);
}

.content-section.fade-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.fade-right.animate {
	opacity: 1;
	transform: translateX(0);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.section-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

		.more-link {
				color: #999;
				text-decoration: none;
				font-size: 14px;
				transition: 0.3s;
				padding: 8px 16px;
				border: 1px solid #ddd;
				border-radius: 20px;
		}

		.more-link:hover {
				color: #000;
				border-color: #000;
		}

/* ¸ÖÆ¼¹Ìµð¾î ±×¸®µå */
.media-grid-container {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.media-grid {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	padding-bottom: 10px;
}

.media-item {
	min-width: calc(50% - 15px);
	cursor: pointer;
	transition: 0.3s;
}

.media-item.fade-in {
	opacity: 0;
	transform: translateX(-30px);
}

.media-item.fade-in.animate {
	opacity: 1;
	transform: translateX(0);
}

.media-item.fade-in:nth-child(1).animate {
	transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.media-item.fade-in:nth-child(2).animate {
	transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.media-item.fade-in:nth-child(3).animate {
	transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.media-item.fade-in:nth-child(4).animate {
	transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.media-item:hover {
	transform: translateY(-5px);
}

.media-thumbnail {
	width: 100%;
	aspect-ratio: 16/10;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
	background: #000;
}

.media-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-logo {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: white;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 2px;
}

.media-info {
	margin-top: 15px;
}

.media-title {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 5px;
	color: #000;
}

.media-date {
	font-size: 13px;
	color: #999;
}

/* ¹Ìµð¾î ½½¶óÀÌ´õ ÄÁÆ®·Ñ */
.media-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.9);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
	z-index: 5;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.media-nav:hover {
	background: white;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.media-nav.prev {
	left: -15px;
}

.media-nav.next {
	right: -15px;
}

.media-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* °øÁö»çÇ× Å×ÀÌºí */
.notice-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}

.notice-table thead {
	border-bottom: 2px solid #000;
}

.notice-table th {
	padding: 15px 10px;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
}

.notice-table th:first-child {
	width: 80px;
	text-align: center;
}

.notice-table tbody tr {
	border-bottom: 1px solid #e0e0e0;
	transition: 0.3s;
	cursor: pointer;
}

.notice-table tbody tr:hover {
	background: #f9f9f9;
}

.notice-table td {
	padding: 18px 10px;
	font-size: 14px;
}

.notice-table td:first-child {
	text-align: center;
	color: #999;
	font-weight: 500;
}

.notice-table td:last-child {
	color: #333;
}

/* ÇªÅÍ */
footer {
	background: #f5f5f5;
	padding: 60px 40px;
	text-align: center;
}

.footer-logo {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 3px;
	margin-bottom: 30px;
}

.footer-info {
	color: #666;
	font-size: 13px;
	line-height: 1.8;
}

.footer-info p {
	margin: 5px 0;
}

/* ¹ÝÀÀÇü */
@media (max-width: 768px) {
	header {
		padding: 15px 20px;
	}

	.logo {
		font-size: 20px;
	}

	.right-section {
		gap: 15px;
	}

	.lang-btn {
		font-size: 12px;
		padding: 3px 6px;
	}

	.slide-title {
		top: 20px;
		right: 30px;
		font-size: 14px;
	}

	.nav-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.prev {
		left: 10px;
	}

	.next {
		right: 10px;
	}

	.content-section {
		padding: 10px 20px;
	}

	.section-title {
		font-size: 18px;
	}

	.media-item {
		min-width: calc(50% - 15px);
	}

	.media-nav {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.media-nav.prev {
		left: -10px;
	}

	.media-nav.next {
		right: -10px;
	}

	.media-thumbnail {
		border-radius: 6px;
	}

	.media-logo {
		font-size: 12px;
		bottom: 10px;
		left: 10px;
	}

	.media-title {
		font-size: 13px;
	}

	.media-date {
		font-size: 12px;
	}

	.notice-table {
		font-size: 13px;
	}

	.notice-table th,
	.notice-table td {
		padding: 12px 8px;
	}

	.notice-table th:first-child,
	.notice-table td:first-child {
		width: 60px;
	}

	footer {
		padding: 40px 20px;
	}

	.footer-logo {
		font-size: 24px;
	}

	.menu-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.menu-container {
		padding: 20px;
	}
}

:root{
--bg: #f6fbf6;
--primary: #d4af37; /* ±Ý»ö °è¿­ */
--primary-2: #b48c28;
--accent: #ffd166; /* Æ÷ÀÎÆ® »ö */
--muted: #7b8a83;
--radius: 14px;
--shadow: 0 6px 18px rgba(12, 40, 20, 0.12);
--btn-height: 54px; /* ÅÍÄ¡ Ä£È­Àû ³ôÀÌ */
}

.card{
width:100%;
max-width:520px;
background: #fff;
border-radius:18px;
box-shadow: 0 8px 30px rgba(10,20,15,0.06);
padding:18px;
box-sizing: border-box;
}

h1{font-size:16px;margin:0 0 12px 0;color:#0f2b1f}
p{margin:0 0 18px 0;color:var(--muted);font-size:13px}

.btn-row{
display:flex;
gap:12px;
align-items:center;
justify-content:space-between;
/* flex-wrap:nowrap; */
flex-wrap:wrap;
}

.btn{
-webkit-tap-highlight-color: transparent;
position:relative;
display:inline-flex;
align-items:center;
gap:10px;
justify-content:center;
height:var(--btn-height);
padding:0 18px;
border-radius:12px;
border:none;
cursor:pointer;
font-weight:600;
font-size:15px;
transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
user-select:none;
touch-action:manipulation;
box-shadow: var(--shadow);
flex:1 1 48%;
box-sizing:border-box;
}

.btn:active{transform:translateY(1px) scale(.998)}
.btn:focus{outline:3px solid rgba(30,120,60,0.12);outline-offset:3px}

.btn--primary{
background: linear-gradient(180deg,var(--primary), var(--primary-2));
color:white;
}

.btn--primary .icon{
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.btn--ghost{
background: linear-gradient(180deg, rgba(255,209,102,0.14), rgba(255,209,102,0.06));
color: #6b4a12;
border:1px solid rgba(27, 138, 58, 0.08);
}

.icon{
width:20px;height:20px;display:inline-block;flex:0 0 20px;
}

.btn .label{white-space:nowrap}

.hint{font-size:12px;color:var(--muted);margin-top:12px}

.btn::after{
content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;transition:opacity .28s, transform .28s;opacity:0;transform:scale(0.98);
}
.btn:hover::after{opacity:1;transform:scale(1.02)}

@media (hover:none){
.btn{box-shadow:none}
}


.swiper-container {
	width: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
}
.swiper-container2 { 
 width: 100%; 
 height: 46px; 
 z-index:1;
} 
.swiper-slide {
	background-position: top;
	background-size: cover;
	width: 100px;
	height: 130px;
	margin-right:5px;
	margin-top:90px;
}



.button-container {
	display: flex;
	gap: 14px;
	width: 100%;
	max-width: 400px;
	justify-content: center;
}

.button {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
	white-space: nowrap;
	position: relative;
	box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}

/* ÇÁ·ÎÇÊµî·Ï - ±Ý»ö ¹öÆ° */
.button-profile {
	background: linear-gradient(180deg, #f5d76e, #d4af37);
	color: #5a4600;
}

/* ½ºÅ¸ÀÀ¿ø¿µ»ó - Àº»ö ¹öÆ° */
.button-star {
	background: linear-gradient(180deg, #f1f1f1, #cfcfcf);
	color: #333;
}

/* hover ½Ã ºû³ª´Â È¿°ú */
.button:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}

/* Å¬¸¯ ½Ã »ìÂ¦ ´­¸®´Â È¿°ú */
.button:active {
	transform: translateY(2px);
	box-shadow: 0 1px 0 rgba(0,0,0,0.15);
	filter: brightness(0.95);
}

/* ¸ð¹ÙÀÏ ´ëÀÀ */
@media (max-width: 480px) {
	.button-container {
		flex-direction: row;
		gap: 10px;
	}
	.button {
		font-size: 15px;
		padding: 12px 10px;
	}
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.image-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
		margin-bottom:10px;
}

.image-item a {
    display: block;
    width: 100%;
}

.image-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.counter-container {
	padding: 40px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.counter-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.laurel {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100px;
	height: 120px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 2;
}

.laurel-left {
	left: -20px;
	background-image: url('../images/deco1.png');
}

.laurel-right {
	right: -20px;
	background-image: url('../images/deco2.png');
}

.title {
	font-size: 24px;
	color: #666;
	margin-bottom: 20px;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
}

.counter-wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0 140px;
}

.counter {
	font-size: 80px;
	font-weight: bold;
	background: linear-gradient(135deg, #d4af37 0%, #f9d835 50%, #d4af37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 3px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	margin-bottom: 10px;
	flex-shrink: 0;
}

.subtitle {
	font-size: 18px;
	color: #999;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

.sparkle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #d4af37;
	border-radius: 50%;
	animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
	0%, 100% {
		opacity: 0;
		transform: scale(0);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
}

.sparkle:nth-child(1) {
	top: 20%;
	left: 15%;
	animation-delay: 0s;
}

.sparkle:nth-child(2) {
	top: 40%;
	right: 20%;
	animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
	bottom: 30%;
	left: 25%;
	animation-delay: 1s;
}

.sparkle:nth-child(4) {
	bottom: 20%;
	right: 15%;
	animation-delay: 1.5s;
}

@media (max-width: 768px) {
	.counter-container {
		padding-bottom:65px;
		padding-top:40px;
		padding-left:30px;
		padding-right:30px;
	}

	.title {
		font-size: 18px;
	}

	.counter-wrapper {
		padding: 0 80px;
	}

	.counter {
		font-size: 50px;
	}

	.subtitle {
		font-size: 14px;
	}

	.laurel {
		width: 60px;
		height: 80px;
	}

	.laurel::before {
		font-size: 50px;
	}

	.laurel-left {
		left: -10px;
	}

	.laurel-right {
		right: -10px;
	}
}