#table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	margin: 0 !important;
	width: 100% !important;
}

.form-control[readonly],
textarea[readonly] {
	background-color: #f8f9fa;
	cursor: not-allowed;
}

#table thead th {
	background-color: #D6EDEE;
	padding: 12px 10px;
	font-weight: 700;
	text-align: center;
	color: #222;
}

#table tbody td {
	padding: 14px 10px;
	color: #333;
	text-align: center;
}

#table tbody td:nth-child(2) {
	text-align: left;
}

#table tbody tr:hover {
	background-color: #eef5ff;
}

#table a {
	color: #1d3557;
	/* 네이비 계열 */
	text-decoration: none;
	font-weight: 500;
}

#table a:hover {
	text-decoration: underline;
}

.main {
	min-height: 800px;
}

.img-fluid {
	border-radius: 30px;
}

.lan-btn {
	background-color: white;
	width: 100px;
	border: none;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 0;
	transition: all 0.3s ease-in-out;
}

.img-fluid {
	width: 100%;
}

.lan-btn:hover {
	background: black;
	color: white;
}

.header-top {
	gap: 10px;
}

.pd-0 {
	padding: 0;
}

.icon-box span {
	font-size: 5rem;
}

.left-menu {
	background: #f5f5f5;
	padding: 35px 15px 35px 15px;
	border-radius: 10px;
}

.left-menu .menu-title {
	color: #64adb1;
}

.left-menu ul {
	list-style-type: none;
	padding: 0;
	/* 기본 들여쓰기 제거도 같이 하면 좋음 */
	margin: 0;
}

.left-menu ul li {
	padding-bottom: 20px;
}

.left-menu ul li a {
	color: black;
	font-weight: 700;
}

.left-menu ul li a.active {
	font-weight: 700;
	border-bottom: 2px solid #64adb1;
	/* 원하는 색상과 두께 */
	padding-bottom: 2px;
	/* 텍스트와 밑줄 간격 조절 */
}

.inner-title {
	font-weight: 900;
}

.center {
	display: flex;
	vertical-align: middle;
	align-items: center;
}

.rule-content {
	height: 60vh;
	overflow: auto;
}

.drive-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	width: 100%;
}

.drive-box {
	display: flex;
	align-items: center;
	background-color: #1cb8c9;
	color: white;
	border-radius: 16px;
	padding: 20px 30px;
	text-decoration: none;
	transition: background-color 0.3s;
	max-width: 30rem;
	width: 100%;
	box-sizing: border-box;
	min-height: 10rem;
	transition: all 0.3s ease-in-out;
}

.drive-box:hover {
	color: black;
}

.drive-box .material-symbols-outlined {
	font-size: 6rem;
	margin-right: 1rem;
}

.drive-text {
	font-size: 1.7rem;
	line-height: 1.4;
}

.drive-text strong {
	font-weight: 700;
}

/* 모바일 반응형 */
@media (max-width: 600px) {
	.drive-box {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
	}

	.drive-box .material-symbols-outlined {
		margin: 0 0 10px 0;
	}
}

.fc-scrollgrid-sync-table a {
	color: black !important;
}

.fc-col-header a {
	color: black !important;
}

.fc-col-header tr {
	background: #f5f5f5;
}

.fc .fc-toolbar-title {
	font-size: 1.2em !important;
	font-weight: 700;
}

.fc-daygrid-event {
	white-space: normal !important;
}

.km-event-card {
	background-color: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 20px;
	max-width: 800px;
	margin: 20px auto;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

.km-event-card img {
	width: 100%;
}

.km-event-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 10px 0 20px;
	color: #003366;
}

.km-event-info p {
	margin: 4px 0;
	font-size: 0.95rem;
	color: #333;
}

.km-event-info strong {
	display: inline-block;
	width: 120px;
	color: #555;
}

.km-event-actions {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.km-event-btn {
	flex: 1 0 calc((100% - 16px) / 3);
	/* 3개 버튼 기준, gap 8px * 2 = 16px */
	box-sizing: border-box;

	padding: 6px 12px;
	font-size: 0.9rem;
	border: 1px solid #ccc;
	background-color: white;
	color: #333;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	text-align: center;
}

.km-event-btn:hover {
	background-color: #f0f0f0;
}

.km-event-primary {
	background-color: #007bff;
	color: white;
	border-color: #007bff;
}

.km-event-primary:hover {
	background-color: #0069d9;
}

@media (max-width: 600px) {
	.km-event-card {
		padding: 15px;
	}

	.km-event-title {
		font-size: 1.1rem;
	}

	.km-event-info strong {
		display: block;
		width: auto;
		margin-bottom: 2px;
	}

	.km-event-actions {
		flex-direction: column;
	}

	.km-event-btn {
		width: 100%;
		font-size: 1rem;
	}
}

.km-conf-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 16px;
	background-color: #fff;
	box-sizing: border-box;
	margin: 20px auto;
}

.km-conf-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.km-conf-title {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.km-conf-date {
	color: #666;
	font-size: 0.95rem;
}

.km-conf-status-btn {
	border: 1px solid #007bff;
	background-color: transparent;
	color: #007bff;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	cursor: pointer;
	transition: 0.2s;
}

.km-conf-status-btn:hover {
	background-color: #007bff;
	color: white;
}

.km-conf-divider {
	margin: 16px 0;
	border: none;
	border-top: 1px solid #eee;
}

.km-conf-info {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
}

.km-conf-info .bold {
	font-weight: bold;
	color: #555;
}

.km-conf-link {
	color: #007bff;
	font-weight: 500;
	cursor: pointer;
}

.km-conf-actions {
	margin-top: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.km-conf-btn {
	padding: 6px 16px;
	font-size: 0.9rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	color: white;
	min-width: 80px;
	text-align: center;
}

.km-conf-btn.green {
	background-color: #009688;
}

.km-conf-btn.blue {
	background-color: #1976d2;
}

.km-conf-btn:hover {
	opacity: 0.9;
}

/* 반응형 */
@media (max-width: 480px) {
	.km-conf-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.km-conf-actions {
		flex-direction: column;
	}

	.km-conf-btn {
		width: 100%;
	}
}

.rule-content .article {
	margin-bottom: 30px;
	padding: 0 10px;
}

.rule-content .article h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.rule-content .article p {
	margin: 0;
	text-align: justify;
}

.rule-content .article ol {
	margin-top: 10px;
	padding-left: 20px;
}

.rule-content .article ol li {
	margin-bottom: 5px;
}

.rule-content .chapter-title {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 30px;
	background-color: #fff;
}

.table.com-tb th {
	width: 33.33%;
}

/* 공통 배경 및 색상 */
.footer.accent-background {
	background-color: #222;
	color: #ccc;
	padding: 40px 20px 0px;
	font-size: 14px;
	line-height: 1.6;
}

/* 콘텐츠 레이아웃 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 상단 링크 */
.footer-top {
	text-align: center;
	margin-bottom: 20px;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	margin: 0 5px;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-links span {
	color: #666;
	margin: 0 5px;
}

/* 정보 텍스트 */
.footer-info {
	font-size: 13.5px;
}

/* 저작권 하단 */
.copyright {
	font-size: 13px;
	color: #aaa;
}

.copyright .sitename {
	font-weight: bold;
	color: #fff;
}

.credits {
	margin-top: 5px;
	font-size: 12.5px;
	color: rgba(136, 136, 136, 0.2);
	/* #888 + 투명도 60% */
}

.credits a {
	color: rgba(170, 170, 170, 0.2);
	/* #aaa + 투명도 80% */
	text-decoration: none;
}

/* 개인정보처리방침 스타일 */
.privacy-policy {
	padding: 30px 20px;
	background-color: #fff;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

.privacy-policy h2 {
	font-size: 20px;
	margin-top: 40px;
	margin-bottom: 15px;
	color: #2c3e50;
	border-left: 4px solid #63acb0;
	padding-left: 10px;
}

.privacy-policy ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.privacy-policy ul ul {
	list-style: circle;
	margin-top: 5px;
	margin-bottom: 10px;
}

.privacy-policy p {
	margin-bottom: 15px;
}

.privacy-policy a {
	color: #0d6efd;
	text-decoration: underline;
}

.privacy-policy a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.privacy-policy {
		font-size: 15px;
		padding: 20px 10px;
	}

	.privacy-policy h2 {
		font-size: 18px;
	}
}

.terms-of-service {
	padding: 30px 20px;
	background-color: #fff;
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

.terms-of-service h2 {
	font-size: 20px;
	margin-top: 40px;
	margin-bottom: 15px;
	color: #2c3e50;
	border-left: 4px solid #63acb0;
	padding-left: 10px;
}

.terms-of-service ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.terms-of-service ul ul {
	list-style: circle;
	margin-top: 5px;
	margin-bottom: 10px;
}

.terms-of-service p {
	margin-bottom: 15px;
}

.km-event-details {
	display: none;
	padding: 10px;
	background-color: #f9f9f9;
	border-top: 1px solid #ddd;
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/* 반응형 디자인 */
@media (max-width: 768px) {
	.footer {
		font-size: 13px;
		padding: 30px 10px 15px;
		text-align: center;
	}

	.footer-top,
	.footer-info,
	.copyright,
	.credits {
		text-align: center;
	}

	.footer-links {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.footer-links span {
		display: inline;
		/* 구분자 | 보이게 유지 */
	}
}

.error {
	position: relative;
	max-width: 710px;
	width: 100%;
	text-align: center;
	padding: 0 15px;
	margin: 0 auto;
	line-height: 1.4;
	height: 60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.error .error-code {
	height: 200px;
	line-height: 200px;
}

.error .error-code h1 {
	font-size: 168px;
	color: #63acb0;
	font-weight: 900;
	margin: 0;
}

.error h2 {
	font-size: 22px;
	text-transform: uppercase;
	color: #999999;
	margin: 0;
	font-weight: 600;
}

.error .small {
	font-size: 15px;
	color: #cccccc !important;
	font-weight: 100 !important;
	margin-top: 10px;
}

.home-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background-color: #63acb0;
	color: white;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}

.home-button:hover {
	background-color: #519ba0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.akme-mission-wrapper {
	margin: 0 auto;
}

.akme-mission-title {
	background: linear-gradient(to right, #a3d6cc, #d4f2ea);
	padding: 12px 24px;
	font-size: 24px;
	font-weight: bold;
	border-radius: 8px;
	color: #003366;
	margin-bottom: 30px;
}

.akme-card {
	display: flex;
	margin-bottom: 20px;
}

.akme-card-label {
	min-width: 100px;
	background-color: #0c5488;
	color: white;
	padding: 12px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.akme-card-content {
	background-color: white;
	padding: 16px;
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 0 5px 5px 0;
	flex: 1;
	line-height: 1.6;
}

.akme-values {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.akme-value-box {
	background-color: #0c5488;
	color: white;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: bold;
	flex: 1 1 120px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	text-align: center;
}


.akme-arrow {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 16px solid #0c5488;
	margin: 8px auto 20px;
	/* 위아래 여백 조절 */
}

.member-tier-wrapper {
	display: flex;
	justify-content: center;
	gap: 24px;
	max-width: 1000px;
	margin: auto;
	flex-wrap: wrap;
}

.member-tier-card {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 24px;
	width: 22%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.member-tier-card:hover {
	border-color: #63acb0;
	box-shadow: 0 6px 16px rgba(0, 123, 255, 0.1);
}

.member-tier-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 16px;
}

.member-tier-price {
	font-size: 18px;
	margin-bottom: 12px;
	color: #555;
}

.member-tier-description {
	font-size: 14px;
	color: #666;
	min-height: 80px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	text-align: left;
}

.select-btn {
	margin-top: 20px;
	background-color: #63acb0;
	color: #fff;
	border: none;
	padding: 10px 16px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.select-btn:hover {
	background-color: #0056b3;
}

.membership-announcement {
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 50px;
	border-radius: 8px;
}

.membership-title {
	font-size: 1.8rem;
	color: #007B8A;
	margin-bottom: 15px;
}

.membership-text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 20px;
}

.membership-text.strong {
	font-weight: bold;
}

.membership-box {
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 15px 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.membership-box-title {
	font-size: 1.2rem;
	color: #444;
	margin-bottom: 10px;
}

.membership-list {
	padding-left: 20px;
	line-height: 1.6;
	margin: 0;
}

.membership-account {
	margin-top: 10px;
}

.membership-link {
	color: #007B8A;
	text-decoration: underline;
}

.membership-note {
	margin-top: 10px;
	color: #666;
}

.membership-thanks {
	margin-top: 20px;
}


/* ✅ 반응형 스타일 */
@media (max-width: 768px) {
	.member-tier-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.member-tier-card {
		width: 90%;
	}
}

@media only screen and (max-width: 767px) {
	.error .error-code {
		height: 122px;
		line-height: 122px;
	}

	.error .error-code h1 {
		font-size: 80px;
	}
}

.color-palette {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.color-item {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	color: white;
	font-size: 11px;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	padding: 5px;
	text-align: center;
}

.frames-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.frame {
	background: white;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.frame h3 {
	color: #0033A0;
	margin-bottom: 20px;
	font-size: 1.4rem;
	border-bottom: 2px solid #1BC6B5;
	padding-bottom: 8px;
}

.flow-diagram {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	flex-wrap: wrap;
	gap: 10px;
}

.flow-step {
	background: linear-gradient(135deg, #1BC6B5, #6CD9C5);
	color: white;
	padding: 15px;
	border-radius: 8px;
	flex: 1;
	min-width: 160px;
	text-align: center;
	font-weight: bold;
	font-size: 0.9rem;
	position: relative;
}

.flow-step::after {
	content: '→';
	position: absolute;
	right: -20px;
	font-size: 1.5rem;
	color: #0033A0;
}

.flow-step:last-child::after {
	display: none;
}

.stepper {
	display: flex;
	justify-content: space-between;
	margin: 25px 0;
	align-items: center;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #91D9CC;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1;
	position: relative;
}

.step-circle {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.step.inactive .step-circle {
	background-color: #cccccc;
}

.step.active .step-circle {
	background-color: #0033A0;
	box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.2);
	transform: scale(1.1);
}

.step.completed .step-circle {
	background-color: #1BC6B5;
}

.step.completed .step-circle::after {
	content: '✓';
	font-size: 1.3rem;
}

.step-line {
	position: absolute;
	top: 22px;
	left: 50%;
	width: 100%;
	height: 3px;
	background-color: #cccccc;
	z-index: -1;
	border-radius: 2px;
}

.step.completed .step-line {
	background-color: #1BC6B5;
}

.step.active .step-line {
	background: linear-gradient(90deg, #1BC6B5 50%, #cccccc 50%);
}

.step:last-child .step-line {
	display: none;
}

.step-label {
	font-size: 0.85rem;
	color: #032059;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.step.active .step-label {
	font-weight: bold;
	color: #0033A0;
}

.form-field {
	margin-bottom: 20px;
}

.form-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #032059;
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: 12px;
	border: 2px solid #91D9CC;
	border-radius: 6px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	outline: none;
	border-color: #1BC6B5;
}

.radio-group {
	display: flex;
	gap: 15px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f8f9fa;
	padding: 12px 18px;
	border-radius: 8px;
	border: 2px solid #91D9CC;
	transition: all 0.3s ease;
	cursor: pointer;
}

.radio-item:hover {
	background: #e9ecef;
	border-color: #1BC6B5;
}

.radio-item input[type="radio"] {
	width: auto;
	margin: 0;
}

.auto-fill-section {
	background: linear-gradient(135deg, #91D9CC, #6CD9C5);
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	color: white;
}

.auto-fill-section h4 {
	margin-bottom: 15px;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.auto-fill-button {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
}

.auto-fill-button:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.summary-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-table th,
.summary-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #e9ecef;
}

.summary-table th {
	background: #f8f9fa;
	font-weight: bold;
	color: #032059;
}

.summary-table tr:last-child td {
	border-bottom: none;
}

.refund-policy {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border: 1px solid #91D9CC;
	border-radius: 10px;
	padding: 20px;
	margin: 25px 0;
}

.refund-policy h4 {
	color: #0033A0;
	margin-bottom: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.refund-policy h4::before {
	content: '▼';
	font-size: 0.8rem;
}

.refund-content {
	border-left: 3px solid #1BC6B5;
	padding-left: 15px;
	margin-top: 10px;
	line-height: 1.6;
}

.payment-summary {
	background: linear-gradient(135deg, #032059, #0033A0);
	color: white;
	padding: 25px;
	border-radius: 12px;
	margin: 25px 0;
	text-align: center;
}

.payment-amount {
	font-size: 2.5rem;
	font-weight: bold;
	margin: 15px 0;
}

.payment-button {
	background: linear-gradient(135deg, #1BC6B5, #6CD9C5);
	color: white;
	padding: 18px 40px;
	border: none;
	border-radius: 25px;
	font-size: 1.3rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: 20px;
}

.payment-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(27, 198, 181, 0.4);
}

.payment-methods {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.payment-method {
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 15px;
	border-radius: 6px;
	font-size: 0.9rem;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #91D9CC;
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin: 0;
	margin-top: 2px;
}

.checkbox-group label {
	margin: 0;
	font-weight: normal;
	line-height: 1.4;
}

.alert-box {
	background: rgba(27, 198, 181, 0.1);
	border: 1px solid #1BC6B5;
	border-radius: 8px;
	padding: 15px;
	margin: 15px 0;
	color: #032059;
}

.alert-box strong {
	color: #0033A0;
}

.navigation-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.nav-button {
	padding: 12px 24px;
	border: 2px solid #91D9CC;
	border-radius: 6px;
	background: white;
	color: #032059;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nav-button:hover {
	background: #91D9CC;
	color: white;
}

.nav-button.primary {
	background: #1BC6B5;
	color: white;
	border-color: #1BC6B5;
}

.nav-button.primary:hover {
	background: #0033A0;
	border-color: #0033A0;
}

.nav-button:disabled {
	background: #e9ecef;
	color: #6c757d;
	border-color: #e9ecef;
	cursor: not-allowed;
}

.highlight {
	background: linear-gradient(135deg, rgba(27, 198, 181, 0.1), rgba(145, 217, 204, 0.1));
	padding: 15px;
	border-radius: 8px;
	border-left: 4px solid #1BC6B5;
	margin: 15px 0;
}

.price-guide {
	background: rgba(27, 198, 181, 0.1);
	color: #032059;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	border: 1px solid #1BC6B5;
}

.payment-methods {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.payment-method {
	flex: 1 1 calc(33.33% - 16px);
	min-width: 120px;
	position: relative;
}

.payment-method input[type="radio"] {
	display: none;
}

.payment-method label {
	display: block;
	border: 2px solid #ccc;
	border-radius: 8px;
	padding: 12px;
	text-align: center;
	cursor: pointer;
	font-weight: 500;
	transition: border-color 0.3s, background-color 0.3s;
	user-select: none;
	background-color: #fff;
}

.payment-method input[type="radio"]:checked+label {
	border-color: #007bff;
	background-color: #f0f8ff;
	color: #007bff;
}

.payment-method label span {
	display: block;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.payment-method {
		flex: 1 1 calc(50% - 16px);
		/* 2열로 줄임 */
	}
}

@media (max-width: 480px) {
	.payment-method {
		flex: 1 1 100%;
		/* 1열 */
	}
}

@media (max-width: 768px) {
	.frames-container {
		grid-template-columns: 1fr;
	}

	.flow-diagram {
		flex-direction: column;
		gap: 15px;
	}

	.flow-step::after {
		content: '↓';
		right: 50%;
		transform: translateX(50%);
		bottom: -25px;
		top: auto;
	}

	.stepper {
		flex-direction: column;
		gap: 20px;
	}

	.step {
		width: 100%;
	}

	.step-line {
		display: none;
	}

	.payment-methods {
		flex-direction: column;
		gap: 10px;
	}

	.radio-group {
		flex-direction: column;
		gap: 10px;
	}

	.navigation-buttons {
		flex-direction: column;
		gap: 15px;
	}
}