@charset "UTF-8";
ol, ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #000;
}
@font-face {
  font-family: "Apple SD Gothic Neo";
  src: url("../../fonts/AppleSDGothicNeoR.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Apple SD Gothic Neo";
  src: url("../../fonts/AppleSDGothicNeoB.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Apple SD Gothic Neo";
  src: url("../../fonts/AppleSDGothicNeoEB.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
/**
 * Global
 */
/*-- * {
	font-family: 'Noto Sans KR';
} */
body, html {
  margin: 0;
  padding: 0;
  border: 0;
  /* font: inherit; */
  font-family: 'Apple SD Gothic Neo';
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}
section {
  flex: 1;
}
h1, h2, h3, h4, h5, h6, p, span {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}
h1 {
  line-height: 1.15;
  font-size: 2.5rem;
}
h2 {
  line-height: 1.2;
  font-size: 2.25rem;
}
h3 {
  line-height: 1.2;
  font-size: 2rem;
}
h4 {
  line-height: 1.25;
  font-size: 1.75em;
}
h5 {
  line-height: 1.3;
  font-size: 1.5rem;
}
h6 {
  line-height: 1.6;
  font-size: 1.25rem;
}
input {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
}
/* input::-ms-clear, input::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration {
	display: none;
} */
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  cursor: pointer;
}
/* select {
	-webkit-appearance: none; 크롬 화살표 없애기
	-moz-appearance: none; 파이어폭스 화살표 없애기
	appearance: none; 화살표 없애기
	font-family: inherit;
} */
.ptg-input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 16px;
  color: #2b2b2b;
  box-sizing: border-box;
}
.ptg-input::placeholder {
  font-size: 16px;
  color: #999;
}
.ptg-input:focus {
  outline: 0;
  border: 1px solid #0e4194;
}
.ptg-input-disabled {
  background-color: #e2e2e2;
}
.ptg-textarea {
  resize: none;
  height: 100px;
}
.ptg-input-color:focus {
  outline: 0;
  border: 1px solid #0e4194;
  box-shadow: 0 0 3px 0 #0e4194;
}
.ptg-input-error {
  border-color: #f44336;
}
.ptg-input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.ptg-input-checkbox {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.ptg-input-checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ptg-input-checkbox .ptg-input-checkbox-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../../images/common/check_off.svg);
  background-size: cover;
}
.ptg-input-checkbox input[type=checkbox]:checked + .ptg-input-checkbox-img {
  background-image: url(../../images/common/check_on.svg);
}
.ptg-input-radio {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.ptg-input-radio input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ptg-input-radio .ptg-input-radio-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../../images/common/radio_off.svg);
  background-size: cover;
}
.ptg-input-radio input[type=radio]:checked + .ptg-input-radio-img {
  background-image: url(../../images/common/radio_on.svg);
}
.ptg-form {
  width: 100%;
}
.ptg-form-text {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
.ptg-form-label {
  width: 100%;
}
.ptg-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.ptg-select-result {
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #6d6c6c;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  background-image: url(../../images/cmmn/arrow_down.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  appearance: none;
}
.ptg-select-result:hover {
  outline: 0;
  color: #2b2b2b;
  background-image: url(../../images/cmmn/arrow_down_focus.svg);
  border: 1px solid #0e4194;
}
.ptg-select-result:focus {
  outline: 0;
}
.ptg-select-result.active {
  color: #2b2b2b;
  background-image: url(../../images/cmmn/arrow_up.svg);
  border-radius: 0.25rem 0.25rem 0px 0px;
  border: 1px solid #0e4194;
}
.ptg-select-result .ptg-select-input {
  visibility: hidden;
  display: contents;
}
.ptg-select-option-list {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #0e4194;
  border-top: 0;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 10;
}
.ptg-select-option-list .ptg-select-option {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #2b2b2b;
  box-sizing: border-box;
}
.ptg-select-option-list .ptg-select-option:hover {
  background-color: #f5f5f5;
}
.ptg-select-option-list.open {
  display: block;
}
/* default (round) */
.ptg-button__darkblue {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #0e4194;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 2rem;
  border: 0;
}
.ptg-button__blue {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #206ae2;
  border-radius: 2rem!important;
  border: 0;
  height: auto!important;
}
.ptg-button__darkgray {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #455267;
  border-radius: 2rem;
  border: 0;
}
.ptg-button-cancel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  background-color: #f44336;
  border-radius: 2rem;
  border: 0;
}
/* round square */
.ptg-button-round-square__blue {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #206ae2;
  border-radius: 0.7rem;
  border: 0;
}
/* outline */
.ptg-button-outline__gray {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #cdcdcd;
  border-radius: 2rem;
  color: #333;
  font-size: 18px;
  padding: 10px 20px;
}
.ptg-button-outline__gray:hover {
  border-color: #206ae2;
  color: #206ae2;
}
.ptg-button-outline__darkblue {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #0e4194;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 2rem;
  background-color: #fff;
  border: 1px solid #0e4194;
}
.ptg-button-outline__darkblue:hover {
  border-color: #206ae2;
  background-color: #e1ebfb;
  color: #206ae2;
}
.ptg-button-outline-cancel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #f44336;
  font-size: 18px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #f44336;
  border-radius: 2rem;
}
/* icon */
.ptg-button-icon-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  background-color: #0e4194;
  border: 0;
  border-radius: 2rem;
}
.ptg-button-icon-label > * {
  margin: 0px 5px;
}
.ptg-button-outline-icon-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  border-radius: 2rem;
}
.ptg-button-outline-icon-label > * {
  margin: 0px 5px;
}
.ptg-button-outline-icon-label:hover {
  border-color: #206ae2;
  color: #206ae2;
}
/* icon circle */
.ptg-button-icon-circle__blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
  background-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
}
.ptg-button-icon-circle__darkblue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
  background-color: #2e70dc;
  border-radius: 50%;
  box-sizing: border-box;
}
.ptg-button-icon-circle__darkgray {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border: 0;
  background-color: #455267;
  border-radius: 50%;
  box-sizing: border-box;
}
.ptg-button-icon-circle-outline__gray {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  box-sizing: border-box;
}
table, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.ptg-table {
  width: 100%;
  max-width: 100%;
  border-top: 2px solid #6d6c6c;
  background-color: #fff;
}
.ptg-table th {
  padding: 20px;
  color: #2b2b2b;
  border: 1px solid #dfdfdf;
}
.ptg-table td {
  padding: 20px;
  color: #6d6c6c;
  border: 1px solid #dfdfdf;
}
.ptg-table-noborder {
  width: 100%;
  max-width: 100%;
  border-top: 2px solid #6d6c6c;
  background-color: #fff;
}
.ptg-table-noborder tr {
  border-bottom: 1px solid #dfdfdf;
}
.ptg-table-noborder th {
  padding: 20px;
  color: #333333;
}
.ptg-table-noborder td {
  padding: 20px;
  color: #6d6c6c;
  word-break: break-all;
}
.ptg-thumbnail {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 180px;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.ptg-thumbnail > a {
  display: inline-block;
  width: 100%;
}
.ptg-thumbnail img {
  width: 100%;
  vertical-align: top;
}
.ptg-thumbnail .ptg-thumbnail-label {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent\9;
  background: rgba(0, 0, 0, 0.45);
  zoom: 1;
  color: #fff;
}
.ptg-thumbnail .ptg-thumbnail-caption {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #2b2b2b;
  padding: 5px;
  box-sizing: border-box;
}
.category-label-market {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  font-size: 15px;
  background-color: #19afe7;
}
.category-label-security {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #7b6bf4;
}
.category-label-economy {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #3377f3;
}
.category-label-soctyScnce {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #b055da;
}
.category-label-industry {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #dc4682;
}
.category-label-housCnstrc {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #e86914;
}
.category-label-medical {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #2955a5;
}
.category-label-education {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #edc900;
}
.category-label-traffic {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #7b6bf4;
}
.category-label-energy {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #95d323;
}
.category-label-culture {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #4254c7;
}
.category-label-tour {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #c75d5d;
}
.category-label-sports {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #1f9289;
}
.category-label-etc {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 2rem;
  background-color: #905d2b;
}
/* 데이터 스토리(리스트 타입 충돌 수정) */
.note-editor .note-editing-area .note-editable {
  outline: none
}
.note-editor .note-editing-area .note-editable li {
  list-style: disc;
  border: 0px;
  padding: 0px;
  background: none;
  margin: 0px;
  margin-left: 20px;
}
.note-editor .note-editing-area .note-editable ol li {
  list-style-type: decimal;
}
/* red.css 재정의 */
.red-wrapper .data-regist {
  /*-- padding: 24px; */
  padding: 0 24px 24px 24px;
}