/* ================= 공통 ================= */
body {
	font-family: 'NanumSquare', 'MalgunGothic', 'Dotum', 'Gulim', 'Arial', sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "NanumSquare", sans-serif;
	color: #222;
}

.modal__tab {
	display: inline-block;
	position: relative;
	line-height: 58px;
	padding-left: 24px;
	background: #0B4FA1;
	width: 100%;
	color: #fff;
	font-family: NanumSquare;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	top: 120px;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 19px;
  width: 16px;
  height: 27px;
  background: url('/static/images/common/closed.png') no-repeat center center; /* X 아이콘 이미지 */
  background-size: contain; /* 이미지 크기 맞춤 */
  border: none;
  cursor: pointer;
}

.custom-select__wrap {
	justify-content:flex-end; 
	margin-bottom: 10px;
}

.custom-select {
	position: relative;
	width: 150px;
	border: 1px solid #ccc;
	padding: 8px;
	cursor: pointer;
	display: flex;                  /* 한 줄 배치 */
	justify-content: space-between; /* 좌측 텍스트, 우측 화살표 */
	align-items: center;
	color: #222;
	font-family: "Noto Sans";
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 16px */            /* 세로 중앙 정렬 */
}

.custom-select__selected {
	flex: 1;
}

.custom-select__arrow {
	width: 12px;
	height: 12px;
	background: url('/static/images/common/down.png') no-repeat center center; /* 화살표 이미지 */
	background-size: contain;
	transition: transform 0.3s ease;
	transform: rotate(180deg);
}

/* 열렸을 때 회전 */
.custom-select.active .custom-select__arrow {
	transform: rotate(0deg);
}

.custom-select.active .custom-select__options {
	display: block;
}

.custom-select__options {
	position: absolute;
	top: 100%;
	left: -1px;
	right: 0;
	border: 1px solid #ccc;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	z-index: 10;
	width: 150px;
}
.custom-select__options li { 
	padding: 10px;
}

/* ================= 타이틀 ================= */

.page-subtitle {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	background: #F2F2F2;
	padding: 10px 10px;
	margin-bottom: 10px;
}

.rivacy__nav {
	border: 1px solid #DDD;
	margin-bottom: 20px;
	padding: 10px;
}

.rivacy__nav .rivacy__nav__flex {
	display: flex;
	flex-wrap: wrap; 
	row-gap: 18px;   
	justify-content: space-between;
}

.rivacy__nav .rivacy__nav__flex > li {
	flex: 0 0 calc(50% - 50px);
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	white-space: nowrap;
}

/* ================= MAIN ================= */

.privacy {
	padding: 20px 0px;
  position: relative;
  top: 120px;
  left: 50%;
  height: 550px;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  z-index: 2;
  overflow-y: auto;
}

.privacy__inner {
	margin:0px;
	padding:0px;
	width:1000px;
	overflow-y:scroll;
	padding: 0px 20px 0px 20px;
}

.privacy__section {
	margin-bottom: 20px;
}

.privacy__section-title {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px; 
	margin-bottom: 10px;
	display:flex;
	align-items:center;
}

.privacy__section-desc {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 10px;
}

.privacy__section-small {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 17px;
	padding-left: 60px;
	display: block;
	margin: 0;
	padding-left: 30px;
}

.privacy__section-numtitle {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
}

.privacy__box {
	background: #fff;
	padding: 20px 0;
}

.privacy__table {
	table-layout: fixed;   /* 고정 레이아웃 */
	width: 100%;
	border-collapse: collapse;
	border-left: none;  
	border-right: none; 
}

.privacy__table th,
.privacy__table td {
	border: 1px solid #E8E8E8;
	padding: 6px 6px 6px 6px;
}

/* 첫 번째 열: 왼쪽 선 제거 */
.privacy__table th:first-child,
.privacy__table td:first-child {
	border-left: none;
}

/* 마지막 열: 오른쪽 선 제거 */
.privacy__table th:last-child,
.privacy__table td:last-child {
	border-right: none;
}

.privacy__table td {
	color: #222;
	font-family: NanumSquare;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}

.privacy__table th {
 	background: #F8F8F8;
 	border-top: 1px solid #222;
 	font-weight: 600;
 	color: #222;
 	font-family: NanumSquare;
	font-size: 12px;
 	font-style: normal;
 	font-weight: 700;
 	line-height: 17px;
 	height: 24px;
}

/* 테이블너비 */
.privacy__table th:nth-child(1),
.privacy__table td:nth-child(1) {
	width: 300px;
}
.privacy__table th:nth-child(2),
.privacy__table td:nth-child(2) {
	width: 300px;
}

.privacy__table th:nth-child(3),
.privacy__table td:nth-child(3) {
	width: 300px;
}

.privacy__table.privacy__third {
	width: 100%;
	border-collapse: collapse;
}

.privacy__table.privacy__third th,
.privacy__table.privacy__third td {
	padding: 6px 6px 6px 6px;
	box-sizing: border-box;
	width: 25%;          /* 100% / 4 */
	max-width: 25%;
	vertical-align: middle;
}

.privacy__table.privacy__third th {
	font-weight: 600;
}

.privacy__table li {
	
}

.privacy__section-title .privacy__title-wrap {
	margin-left: 20px;
}

.privacy__title-icon{
	display: inline-block;
	width:40px;
	height:46px;
	flex:0 0 40px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:contain;
}

.text_bl {
	color: #0B4FA1;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	display: block;
	margin: 0;
	padding-left: 10px;
}

/* 표 안에 단어가 잘리는 것을 방지 */
td {
	word-break: keep-all;
	vertical-align: middle;
	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
	height: 24px;
}

/* 점 기호 + 텍스트 정렬 */
.list_item {
	list-style: none;
	padding: 0;
}

.list_item::before {
	content: "";
  width: 6px;
  display: inline-block;
  height: 6px;
  background-color: black;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* padding-left : 10/30/45 */
.padding_left_10 {
	padding-left: 10px;	
}

.padding_left_30 {
	padding-left: 30px;
}

.padding_left_45 {
	padding-left: 45px;
}

/* ================= 작은 화면 (스케일만) ================= */

@media (max-width: 768px) {
	.header__inner {
		height: 60px;
	}
	
	.header__menu {
		gap: 20px;
	}
	
	.footer {
		padding: 40px 16px;
	}
}

/* reset */
/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: middle;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-left: none;  
	border-right: none;
	border-spacing: 0;
}

caption{
   overflow:hidden;
   width:1px;
   height:1px;
   clip:rect(0 0 0 0);
   margin:-1px;
}
