/**
 * pytha-red
 */
@charset "UTF-8";

html, body {
	height: 100%;
	min-width: 1250px;
}

body {
	display: flex;
	flex-direction: column;
}

header {
	position: relative;
	/*-- margin: 0 auto;
	padding: 16px 0 10px 0;
	width: 1200px; */
}

section {
	width: 100%;
	height: 100%;
	/* z-index: 0; */
	/* margin: 0 auto; */
	margin-bottom: 80px;
}

footer {
	width: 100%;
	/* margin-top: 40px; */
	background-color: #282828;
}

select {
	-webkit-appearance: none; /* 크롬 화살표 없애기 */
	-moz-appearance: none; /* 파이어폭스 화살표 없애기 */
	appearance: none; /* 화살표 없애기 */
}

input::-ms-clear {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 0 !important;
	height: 0 !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

/* 로고 */
.logo img {
	/* width: 176px; */
	max-width: 176px;
}

/* 헤더 */
.header-wrapper {
	width: 1200px;
	margin: 0 auto;
	padding: 16px 0 10px 0;
	display: flex;
	justify-content: space-between;
}

/* 컨텐츠 */
.contents-wrapper {
	width: 1200px;
	margin: 0 auto;
	min-height: 730px
}

/* 푸터 */
.footer-wrapper {
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 20px 30px 30px 60px;
	color: rgba(255, 255, 255, 0.377);
	word-break: keep-all;
	max-width: 1200px;
	font-size: 0.9em;
	font-style: normal;
	line-height: 1.6;
}

.footer-logo {
	width: 25%;
}

.footer-logo img {
	width: 197px;
}

.footer-address {
	width: 75%;
}

.footer-a {
	text-decoration: underline;
	color: rgba(255, 255, 255, 0.377);
}

/* 전체 레이아웃 */
.ptg-w1200 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}