/* 기본 스타일 초기화 및 폰트 설정 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
}

/* 레이아웃 컨테이너 설정 */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* 상단 연락처 바 스타일 */
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999; /* navbar보다 아래 */
	background: rgba(0, 91, 171, 0.8); /* 반투명 파란색 */
	backdrop-filter: blur(8px);
	color: #ccc;
	font-size: 0.9em;
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
}
.top-bar a {
	color: #ccc;
	text-decoration: none;
}
.top-bar a:hover {
	text-decoration: underline;
}

main {
	margin-top: 35px;
}

/* 스크롤 등장 시 (숨김) */
.scroll-fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 스크롤 등장 시 (보임) */
.scroll-fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 내비게이션 바 스타일 */
.navbar {
	position: fixed;
	top: -80px; /* 처음엔 위로 숨겨둠 */
	left: 0;
	width: 100%;
	z-index: 998;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(12px);
	color: #000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: top 0.3s ease-in-out;
	font-family: 'Pretendard Variable', sans-serif;
}

.navbar.show-navbar {
	top: 33px; /* 원래 위치 */
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
}

.logo {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: clamp(1em, 2vw, 1.1em); /* 뷰포트 기반으로 유동 */
	white-space: nowrap;
}

.logo-label {
	background: #002147;
	color: #fff;
	padding: 0.4em 0.8em;
	border-radius: 0 5px 5px 0;
	font-size: clamp(0.85em, 1.8vw, 1em);
	margin-left: 2px;
}

.logo-brand {
	color: #002147;
	padding: 0.4em 0.5em;
	border-radius: 5px 0 0 5px;
	font-size: clamp(1em, 2vw, 1.25em);
}

.menu {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	font-family: 'Pretendard Variable', sans-serif;
}
.menu li {
	margin-left: 20px;
}
.menu li:first-child {
	margin-left: 0;
}
.menu li a {
	color: #002147;
	text-decoration: none;
	padding: 5px 0;
}
.menu li a:hover {
	text-decoration: underline;
	color: #222;
}
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #002147;
	font-size: 1.5em;
	cursor: pointer;
}
.menu-admin {
	width: 20px;
	height: 20px;
}

/* 메인 슬라이더 영역 스타일 */
.slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 49.25%; /* 16:9 비율 (1080/1920*100) */
}
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 0;
}
.slider video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.slide.active {
	opacity: 1;
	z-index: 1;
}
.slider img {
	width: 100%;
	vertical-align: middle;
}
/* 슬라이더 컨트롤 화살표 스타일 */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}
.slider-controls .prev,
.slider-controls .next {
	pointer-events: auto;
	position: absolute;
	font-size: 2em;
	color: #fff;
	cursor: pointer;
	padding: 0 15px;
	user-select: none;
}
.slider-controls .prev {
	left: 0;
}
.slider-controls .next {
	right: 0;
}

/* 슬라이더 오버레이 텍스트 스타일 */
.slider-text-overlay {
	position: absolute;
	top: 12%;
	left: 5%;
	color: white;
	text-align: left;
	z-index: 5;
	width: 90%;
	max-width: 600px;
	line-height: 1.4;
	font-family: 'Noto Sans KR', sans-serif;
}

.slider-text-overlay-subtitle {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	padding-bottom: 4px;
	margin-bottom: 12px;
}

.slider-text-overlay-peak {
	font-family: 'Dancing Script', cursive;
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.slider-text-overlay-main-title {
	font-size: 54px;
	font-weight: 600;
	margin-bottom: 16px;
	line-height: 1;
}

.slider-text-overlay-num {
	font-size: 60px;
	margin-right: 4px;
}

.slider-text-overlay-unit {
	font-size: 22px; /* 숫자 대비 적절한 크기 */
	margin-left: 2px;
	margin-right: 18px;
	position: relative;
	top: -2px; /* 기존 -8px 에서 조정 */
	vertical-align: baseline; /* 더 자연스럽게 정렬 */
	font-weight: 400;
}


.slider-text-overlay-highlight-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 18px;
}

.slider-text-overlay-description {
	font-size: 14px;
	font-weight: 300;
	opacity: 0.9;
	line-height: 1.5;
}



/* 서비스 소개 섹션 스타일 */
/* 섹션 제목 스타일 */
.section-title {
	text-align: center;
	font-size: 2.2em;
	margin-bottom: 10px;
	font-family: 'Noto Sans KR', sans-serif;
}
.section-title .highlight {
	color: #005bab;
	font-weight: 800;
}

/* 소제목 설명 */
.subtitle {
	text-align: center;
	font-size: 1em;
	color: #888;
	margin-bottom: 5px;
}

/* ===== 특장점 영역 ===== */
#services {
	padding: 60px 0px;
}

.services-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* PC에서 2x2 */
	gap: 30px;
	margin-top: 30px;
}

.service-item {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 상단 영어 소제목 */
.item-sub {
	font-size: 0.75em;
	color: #caa268;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Noto Sans KR', sans-serif;
}
.service-item-title {
	font-family: 'Dancing Script', cursive;
}

/* 제목 */
.service-item h3 {
	font-size: 1.2em;
	color: #222;
	margin-bottom: 10px;
}
.service-item h3 strong {
	color: #b69481;
	font-weight: 700;
}

/* 설명 텍스트 */
.service-item-content {
	font-size: 0.95em;
	color: #555;
	line-height: 1.5;
	margin-bottom: 15px;
	font-family: 'Pretendard Variable', sans-serif;
}

/* 이미지 */
.service-item img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

/* ===== 평형안내 탭 버튼 영역 ===== */
#unit-guide {
	padding: 0 0 60px 0;
}

.tab-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 20px 0;
	padding: 0 10px;
}

.tab-btn {
	padding: 10px 20px;
	background-color: #f8f9fb;
	color: #444;
	border: 1px solid #d0d7de;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 80px;
	text-align: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.tab-btn:hover {
	background-color: #e6ebf1;
}
.tab-btn.active {
	background-color: #002147;
    color: white;
    border-color: #e7eeff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
	font-weight: bold;
}

/* ===== 평형 콘텐츠 영역 ===== */
.tab-contents {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 0 0 5px 5px;
	padding: 20px;
	position: relative;
}

/* 각 평형 콘텐츠 */
.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.tab-content.active-content {
	display: block;
	opacity: 1;
}

/* 이미지 및 텍스트 스타일 */
.tab-content h3 {
	margin-top: 0;
	font-size: 20px;
}
.tab-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 16px auto 0;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* ===== 위치안내 탭 버튼 영역 ===== */
.map_contact_wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 16px;
	box-sizing: border-box;
	gap: 40px; /* ← 중간 여백 */
}

.map_card {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 30px;
	max-width: 1200px;
	width: 100%;
	box-sizing: border-box;
}

/* 왼쪽 영역 */
.contact_info {
	flex: 1 1 380px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact_info .logo {
	max-width: 100%;
	margin-bottom: 20px;
	border-radius: 12px;
}

.contact_list {
	list-style: none;
	padding: 0;
	margin-left: 1.6em;
}
.contact_list li {
	display: flex;
	align-items: center;
	font-size: 15px;
	margin-bottom: 10px;
	color: #333;
}
.contact_list .icon {
	display: inline-block;
	width: 20px;
	text-align: center;
	margin-right: 10px;
	font-size: 16px;
	color: #007bff;
}

/* 지도 영역 */
.map_content {
	flex: 1 1 500px;
	position: relative;
	min-width: 300px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #f2f2f3;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

#map {
	width: 100%;
	height: 400px;
	display: block;
	border-radius: 12px;
}

.map_address {
    font-weight: bold;
    margin-bottom: 17px;
    text-indent: 10px;
}

.map_address .icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.map_address .road_address {
    font-size: 12px;
    margin-left: 5px;
    color: #838383;
}

.custom-infowindow {
    position: relative;
    bottom: 40px; /* 마커와 겹치지 않도록 조정 */
    width: 280px;
    text-align: center;
    border-radius: 10px; /* 둥근 테두리 적용 */
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    padding: 10px;
    font-size: 14px;
    color: #333;
	font-family: 'Pretendard Variable', sans-serif;
}
.custom-infowindow .icon {
    width: 13px;
    height: 13px;
    margin-right: 3px;
}
.custom-infowindow .title {
    font-weight: bold;
    margin-bottom: 5px;
}

.map_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
}

.map_hint {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s;
}

#map.inactive_map {
    pointer-events: none;
}

/* ===== 상담/문의 영역 ===== */
#middle-banner {
	position: relative;
	color: #fff;
	padding: 60px 20px;
	overflow: hidden;
}

.middle-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: brightness(50%);
}

.banner-inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.banner-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.banner-text {
	flex: 0 0 45%;
	margin-bottom: 0;
}

.banner-text h2 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.banner-text .subtitle {
	font-size: 1.25rem;
	color: #cccccc;
}

.banner-form {
	flex: 0 0 55%;
	background: #fff;
	color: #000;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	font-family: 'Noto Sans KR', sans-serif;
}

.banner-form h3 {
	margin-top: 0;
	margin-bottom: 1em;
	font-size: 1.5rem;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
}

.form-group .required {
	color: #e74c3c;
}

.banner-form input,
.banner-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 1rem;
}

.banner-form textarea {
	min-height: 100px;
}

.agree-group {
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0 8px 0;
}

.custom-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	line-height: 1.4;
}

.custom-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	vertical-align: middle;
	accent-color: #000; /* 스타일 강조색 (지원되는 브라우저에서 체크박스 컬러 지정) */
	cursor: pointer;
}

.agree-text {
	font-size: 14px;
	color: #333;
    margin-left: 7px;
}

.agree-text .required {
	color: #e74c3c;
	font-weight: bold;
	margin-left: 5px;
}

.submit-group {    
	text-align: center;
}

.submit-group input {    
	background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    min-width: 200px;
}

.submit-group input:hover {
	background: #333;
}

/* ===== 문의 리모콘 영역 ===== */
.inquiry-remote {
	position: fixed;
	background-color: #004aad;
	color: #fff;
	border-radius: 40px;
	padding: 12px 24px 12px 18px;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
	cursor: pointer;
	z-index: 9999;

	/* 초기 상태 */
	opacity: 0;
	transform: translateX(100%);
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.inquiry-remote .inquiry-remote-icon {
	width: 30px;
	height: 30px;
	margin-right: 5px;
	filter: brightness(0) invert(1);
	animation: phoneRingInterval 1.4s infinite ease-in-out;
}

@keyframes phoneRingInterval {
	0% {
		transform: scale(1) rotate(0deg);
	}
	7.5% {
		transform: scale(1.05) rotate(-5deg);
	}
	15% {
		transform: scale(1.05) rotate(5deg);
	}
	22.5% {
		transform: scale(1.09) rotate(-10deg);
	}
	30% {
		transform: scale(1.09) rotate(10deg);
	}
	37.5% {
		transform: scale(1.05) rotate(-5deg);
	}
	45% {
		transform: scale(1.05) rotate(5deg);
	}
	50% {
		transform: scale(1) rotate(0deg);
	}
	100% {
		transform: scale(1) rotate(0deg); /* 나머지 절반은 가만히 */
	}
}



.inquiry-remote span {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.inquiry-remote span::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
}

/* 등장 애니메이션 - forwards 제거! */
.inquiry-remote.appear {
	animation: slideInRightFade 0.8s ease-out;
}

@keyframes slideInRightFade {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.inquiry-remote.show {
	transform: translateX(0);
	opacity: 1;
}

.inquiry-remote.hide {
	transform: translateX(120%);
	opacity: 0;
}

/* ===== 푸터 영역 ===== */
footer {
	background: #222;
	color: #ccc;
	padding-top: 80px;  /* ← 이거 추가 */
}
.footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 0;
	border-bottom: 1px solid #444;
}
.footer-col {
	flex: 1 1 300px;
	margin-bottom: 20px;
}
.footer-col h3 {
	color: #fff;
	font-size: 1.1em;
	margin-bottom: 10px;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col ul li {
	margin-bottom: 5px;
}
.footer-col ul li a {
	color: #ccc;
	text-decoration: none;
}
.footer-col ul li a:hover {
	text-decoration: underline;
}
.footer-bottom {
	text-align: center;
	padding: 10px 0;
	font-size: 0.9em;
}
.footer-bottom p {
	margin: 0;
}
.privacy-link {
	cursor: pointer;
}


/* ===== 개인 정보 처리 방침 영역 ===== */
.privacy-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
	padding: 60px 20px 20px 20px;
	box-sizing: border-box;
	overflow-y: auto;
}
.privacy-overlay.visible {
	opacity: 1;
	pointer-events: auto;
}
.privacy-container {
	max-width: 700px;
	width: 100%;
	background: transparent;
	padding: 30px;
	border-radius: 12px;
	box-sizing: border-box;
}
.privacy-title {
	font-size: 1.8em;
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
}
.privacy-content {
	line-height: 1.8;
	font-size: 1em;
	word-break: keep-all;
	color: #f1f1f1;
}
.privacy-back {
	background: none;
	border: none;
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2001;
	padding: 8px 16px;
	border: 1px solid #fff;
	border-radius: 6px;
	transition: background 0.3s;
}
.privacy-back:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 769px) {
	.inquiry-remote {
		bottom: 50%;
		right: 40px;
	}
}

/* ===== 반응형 ===== */
@media (max-width: 480px) {
	.tab-btn {
		flex: 1 1 calc(50% - 10px);
	}
}
@media (max-width: 768px) {

	/* 모바일 용 alert */
    .swal2-popup {
        width: 90% !important;
        max-width: 90% !important;
        font-size: 14px !important;
        padding: 1.2em !important;
    }

    .swal2-html-container {
        font-size: 15px !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .swal2-title {
        font-size: 16px !important;
    }

    .swal2-actions {
        flex-direction: column !important;
        gap: 10px;
    }

    .swal2-confirm, .swal2-cancel {
        width: 100% !important;
        font-size: 14px !important;
    }

	/* 상단바, 내비게이션 대응 */
	.top-bar .container {
		flex-direction: column;
		align-items: flex-start;
	}
	.top-bar-left {
		margin-bottom: 5px;
	}
	.top-bar-left-hide {
		display: none;
	}
	.menu-toggle {
		display: inline-block;
	}
	.menu {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 10px;
	}
	.menu.open {
		display: flex;
	}
	.menu li {
		margin: 10px 0;
	}
	.menu li a {
		padding: 10px 0;
	}
	.navbar .container {
		flex-wrap: wrap;
	}
	.slider {
		position: relative;
		overflow: hidden;
		width: 100%;
		min-height: 331px;
		padding-top: 68.25%; /* 16:9 비율 (1080/1920*100) */
	}
	.slider-text-overlay {
		top: 10%;
		left: 10%;
	}

	.slider-text-overlay-peak {
		font-size: 32px;
	}

	.slider-text-overlay-main-title {
		font-size: 36px;
	}

	.slider-text-overlay-num {
		font-size: 40px;
	}

	.slider-text-overlay-unit {
		font-size: 14px;
		top: -5px;
	}

	.slider-text-overlay-highlight-title {
		font-size: 16px;
	}

	.slider-text-overlay-description {
		font-size: 13px;
	}

	.section-title {
		text-align: center;
		font-size: 1.5em;
		margin-bottom: 10px;
	}
	.services-container {
		grid-template-columns: 1fr;
	}
	.service-item p {
		font-size: 0.85em;
	}
	.tab-buttons {
		gap: 10px;
		justify-content: center;
		padding: 0 12px;
	}
	.tab-btn {
		width: calc(25% - 8px); /* gap 감안한 계산 */
		border-radius: 6px !important;
		margin: 0;
		border: 1px solid #d0d7de;
		background-color: #f8f9fb;
		color: #444;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
		font-size: 13px;
		padding: 10px 0;
		transition: all 0.2s ease;
	}
	.tab-btn.active {
		background-color: #002147;
		color: #fff;
		border-color: #002147;
		box-shadow: 0 2px 6px rgba(0, 33, 71, 0.25);
	}
	.tab-content h3 {
		font-size: 18px;
	}
	.map_contact_wrapper {
		flex-direction: column !important;
		gap: 0px;
	}
	.map_card {
		flex-direction: column;
		padding: 20px;
	}
	.map_content {
		flex: 1 1 300px;
		order: 1;
		width: 100%;
		margin-bottom: 20px;
	}
	#map {
		height: 300px !important;  /* 원하는 높이로 */
	}
	.contact_info {
		order: 2;
		text-align: center;
		width: 100%;
	}

	.contact_info .logo {
		margin: 0 auto 16px;
	}

	.contact_list {
		margin-left:0px;
	}

	.contact_list li {
		justify-content: center;
		font-size: 14px;
		word-break: keep-all;
		white-space: normal;
		line-height: 1.6;
	}
	.banner-inner {
		flex-direction: column;
	}

	.banner-text,
	.banner-form {
		width: 100%;
	}

	.banner-text {
		text-align: center;
		margin-bottom: 30px;
	}
	.inquiry-remote {
		bottom: 40px;
		right: 20px;
	}
	footer {
		padding-top: 10px;  /* ← 이거 추가 */
	}

	.privacy-title {
		font-size: 1.4em;
	}
	.privacy-content {
		font-size: 0.95em;
	}
	.privacy-back {
		font-size: 0.9rem;
		padding: 6px 12px;
	}
}






