/**
 * pytha-config
 */
 @charset "UTF-8";

@font-face {
	font-family: "Apple SD Gothic Neo";
	font-style: normal;
	font-weight: 500;
	src: local("Apple SD Gothic Neo Regular"),
		url(../../fonts/AppleSDGothicNeoR.otf) format("opentype"),
		url(../../fonts/AppleSDGothicNeoR.eot?#iefix) format("embedded-opentype"),
		url(../../fonts/AppleSDGothicNeoR.woff2) format("woff2"),
		url(../../fonts/AppleSDGothicNeoR.woff) format("woff"),
		url(../../fonts/AppleSDGothicNeoR.ttf) format("trueytpe"),
		url(../../fonts/AppleSDGothicNeoR.svg) format("svg")
}

/**
 * Global
 */
/*-- * {
	font-family: "Apple SD Gothic Neo";
} */

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	font-weight: 400;
	font-family: "Apple SD Gothic Neo";
	line-height: 1.4;
}

/* [2026-04-17] 모바일 viewport 정상화 — 데스크톱/태블릿(≥769px) 한정 잠금.
 * 기존 무조건적인 `html, body { min-width: 1200px }` 가 모바일(≤768px)에서
 * 가로 스크롤만 발생시키고 viewport 압축 레이아웃을 무력화시키던 문제를 해결.
 * `min-width` 한 속성만 미디어쿼리로 분리 — 위 블록의 margin/padding/font-* 는
 * 모바일에서도 필수이므로 원래 위치 유지.
 * 데스크톱 영역에서는 기존과 동일(회귀 0).
 * [2026-04-17 후속] 데스크톱 최소 폭 정책 통일: 1200 → 1280
 *   pytha-red_2.0/css/cmmn/layout.css(1250) 와 pytha-config_3.0/css/cmmn/
 *   layout.css(1200) 의 분리된 잠금 값을 1280 으로 통일.
 * [2026-04-17 8차] 1280 → 1264 미세조정.
 *   1280px 정확 viewport 에서 세로 스크롤바(15~17px)에 의해 가용 폭이
 *   1263~1265px 로 줄어 가로 오버플로우 발생. 1264 = 1280 - 16.
 * [2026-05-10 48차] 8차 정책 폐기 (B안 채택) — viewport 잠금 자체 무력화.
 *   배경: 8차 가정 "1264 = 1280 - 스크롤바 16" 이 실제 Edge/Chrome
 *        스크롤바 17px 와 1px 어긋나 1264~1280 viewport 에서 가로 스크롤
 *        1~17px 회귀 발생. 46차(임계 1263) → 47차(임계 1280) 가드 임계
 *        확장은 template1 한정 처방으로 다른 페이지 회귀 차단 미보장.
 *   조치: viewport 폭 잠금 자체 폐기 — 모든 페이지에 동일 적용되는 정공법.
 *        DPI/zoom/OS별 스크롤바 폭 가변성 고려 시 viewport 폭 잠금 자체가
 *        부적절. min-width 0 으로 명시적 폐기 (블록 보존 — 회귀 차단 시
 *        역추적 용이). 자식 .ptg-w1200 / .header-wrapper / .footer-wrapper
 *        등 모두 max-width:1200 이라 회귀 0. */
@media (min-width: 769px) {
	html, body {
		min-width: 0;
	}
}

table, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	/* font-family: inherit; */
}

h1, h2, h3, h4, h6, p, span {
	margin: 0;
	padding: 0;
	border: 0;
	/* font-family: inherit; */
}

ol, ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
	/* font-family: inherit; */
}

button {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-size: 12px;
	font-family: inherit;
	vertical-align: middle;
	cursor: pointer;
}

select {
	-webkit-appearance: none; /* 크롬 화살표 없애기 */
	-moz-appearance: none; /* 파이어폭스 화살표 없애기 */
	appearance: none; /* 화살표 없애기 */
	font-family: inherit;
}

a {
	text-decoration: none;
	color: #000;
}

input, textarea {
	margin: 0;
	padding: 0;
	font-family: inherit;
	/* font-size: inherit; */
	/* line-height: inherit; */
	box-sizing: border-box;
}

/**
 * 공통
 */
.none {
	display: none;
}

.nowrap {
	white-space: nowrap;
}

.clear {
	clear: both;
}

.readonly {
	background: #f3f3f3;
}

.round {
	border-radius: 4px;
}

.mgt_16 {
	margin-top: 16px;
}

.mgt_30 {
	margin-top: 30px;
}

.mgt_60 {
	margin-top: 60px;
}

.pdtb_20 {
	padding: 20px 0px;
}

.w80 {
	width: 80px;
}

.w100 {
	width: 100px;
}

.w40p {
	width: 40%;
}

.w100p {
	width: 100%;
}

/**
 * 로고 ==> layout.css 로 이동
 */
/*-- .logo img {
	width: 176px;
	max-width: 176px;
} */

/**
 * 버튼
 */
.btn_blue {
	height: 26px;
	background-color: #1399D4;
	color: #FFF;
	padding: 2px 14px 0px 14px;
	border: 0px;
	min-width: 50px;
	margin-right: 5px;
	border-radius: 4px;
}

.btn_blue:last-child {
	margin-right: 0px;
}

.btn_blue:hover {
	background-color: #1179A7;
}

.btn_red {
	height: 26px;
	background-color: #E71C72;
	color: #FFF;
	padding: 2px 14px 0px 14px;
	border: 0px;
	border-radius: 4px;
}

.btn_red:hover {
	background-color: #B51B5C;
}

.btn_yellow {
	height: 26px;
	background-color: #E99413;
	color: #FFF;
	padding: 2px 14px 0px 14px;
	border: 0px;
	border-radius: 4px;
}

.btn_yellow:hover {
	background-color: #B7730D;
}

.btn_gray {
	height: 26px;
	background-color: #b1b1b1;
	color: #FFF;
	padding: 2px 14px 0px 14px;
	border: 0px;
	border-radius: 4px;
}

.btn_gray:hover {
	background-color: #979797;
}

.btn_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: center;
}

.btn_flex .btn_blue {
	white-space: nowrap;
}

.btn_nomal {
	padding: 0px 20px 0px 20px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-left: -6px;
	min-width: 67px;
}

.btn_nomal:hover {
	background-color: #f3f3f3;
}

.btn_nomal:active {
	position: relative;
	padding: 0px 20px 0px 20px;
	background-color: #009DE3;
	border: 1px solid #009DE3;
	color: #FFF;
	margin-left: -6px;
}

.btn_nomal.active {
	position: relative;
	padding: 0px 20px 0px 20px;
	background-color: #009DE3;
	border: 1px solid #009DE3;
	color: #FFF;
	margin-left: -6px;
}

.btn_blue_pop {
	height: 30px;
	background-color: #1399D4;
	color: #FFF;
	padding: 1px 24px 0px 24px;
	border: 0px;
}

.btn_blue_pop:hover {
	background-color: #1179A7;
}

.btn_gray_pop {
	height: 30px;
	background-color: #b1b1b1;
	color: #FFF;
	padding: 1px 24px 0px 24px;
	border: 0px;
	margin-right: 16px;
}

.btn_gray_pop:hover {
	background-color: #979797;
}

/**
 * 버튼 그룹
 */
.button-group {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.button-group button {
	font-size: 16px;
	font-weight: 400;
	margin: 0 4px;
	padding: 15px 20px;
	color: #fff;
	background-color: #206ae2;
	border-radius: 2rem;
	border: 0;
	width: 200px;
}

.button-group button.outline {
	color: #206ae2;
	background-color: transparent;
	border: 1px solid #206ae2;
}

.button-group button.outline-red {
	color: #d9001b;
	background-color: transparent;
	border: 1px solid #d9001b;
}

/**
 * 페이징
 */
.box_num {
	width: 400px;
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.btn_num {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-right: 6px;
}

.btn_num:hover {
	background-color: #f3f3f3;
}

.btn_num:active {
	background-color: #009DE3;
	color: #FFF;
	border: 0px;
}

.btn_start {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/start_end.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 6px;
}

.btn_start:hover {
	background-color: #f3f3f3;
}

.btn_prev {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/perv_next.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 20px;
}

.btn_prev:hover {
	background-color: #f3f3f3;
}

.btn_next {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	margin-right: 6px;
	background-image: url("../../images/cmmn/perv_next.svg");
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 20px;
	transform: rotate(90deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

.btn_next:hover {
	background-color: #f3f3f3;
}

.btn_end {
	width: 26px;
	height: 26px;
	border: 1px solid #B1B1B1;
	background-color: #fff;
	font-size: 12px;
	background-image: url("../../images/cmmn/start_end.svg");
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(90deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}

.btn_end:hover {
	background-color: #f3f3f3;
}

.pagination {
	width: auto;
	margin-top: 20px;
}

.pagination .btn_num {
	width: auto;
	padding: 0 9px;
}

.pagination .btn_prev {
	margin-right: 6px;
}

.pagination .btn_next {
	margin-left: 0;
}

.pagination-number-selected {
	background-color: #1179A7;
	border-color: #206ae2;
	color: #fff;
	border-color: transparent;
}

.pagination-number-selected:hover {
	cursor: default;
	background-color: #1179A7;
	border-color: #206ae2;
	color: #fff;
	border-color: transparent;
}

/**
 * Loading ==> pytha.loading.css 로 이관
 */
/* .bgLoading .img .tx {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
}

.bgLoading {
	display: none;
	position: fixed;
	position: absolute;
	top: 0;
	left: 0;
	margin: 74px 0 0 254px;
	background-color: rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.bgLoading .img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -37px;
	margin-left: -127px;
	background-color: #2d2d2d;
	box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	margin: -40px 0 0 95px;
	padding: 6px 0 0;
	text-align: center;
	width: 80px;
	height: 74px;
} */

/**
 *
 */
.red-style {
	font-size: 13.4px;
	font-family: "Apple SD Gothic Neo", "Noto Sans KR", sans-serif, Dotum, 돋움, Gulim, 굴림, Helvetica;
	color: #000000;
	background-color: #ffffff;
}

.red-style * {
	margin: 0;
	padding: 0;
}

.red-style li {
	list-style: none;
}

.red-style button {
	font: 400 13.3333px Arial;
}