@charset "UTF-8";

/*공통*/
html, body {
	overflow-x:hidden;
}
:root {
	--main-color:#F9217B;
	--second-color:#fff5fb;
	--point-color:#03a9f4;
	--point-color02:#33af77;
	--color-gray:#f5f5f5;
	--line-color:#ccc;
	--sitemap-top:200px;
	--footer-height:200px;
}
* {
	font-family:'NotosansKr', sans-serif;
}
.scrollLock {
	overflow:hidden;
}
.hidden {
	position:absolute;
	left:-9999px;
	opacity:0;
	font-size:0;
}
.flexBox {
	display:flex;
	align-items:center;
}
.flexBetween {
	display:flex;
	justify-content:space-between;
}
.flexStart {
	display:flex;
	justify-content:flex-start;
}
.flexEnd {
	display:flex;
	justify-content:flex-end;
}
button {
	cursor:pointer;
}
section[class^=sct] {
	position:relative;
	max-width:1440px;
	width:100%;
	margin:0 auto; 
	padding:40px 16px;
}
section .sctSbjt {
	font-size:32px;
	font-weight:bold;
}

/*헤더*/
#header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:11;
}
#header:before {
	content:"";
	position:absolute;
	width:100vw;
	height:100%;
	max-height:80px;
	background:#fff;
	border-bottom:1px solid #ededed;
}
#header .gnb {
	position:relative;
	max-width:1440px;
	width:100%;
	height:80px;
	margin:0 auto;
	padding:35px 0 20px 0;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
	display:flex;
	align-items:flex-start;
	-webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -ms-flex-pack: justify;
	justify-content:space-between;
	transition:.3s; 
}
#header .gnb:before {
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:100vw;
	height:0;
	background:url(/images/sp/stats/decoLogo.svg) no-repeat 0% bottom / 25%, #fff;
	transform:translateX(-50%);
	box-shadow:3px 0 15px 0 rgba(0,0,0,.5);
	transition:.3s;
	opacity:0;
	filter:grayscale(1) brightness(1.51); 
	z-index:-1;
	transition:.5s;
}
#header .gnb.on {
	height:calc(81px + 36px *13);
}
#header .gnb.on:before {
	content:"";
	position:absolute;
	top:0;
	left:50%;
	width:100vw;
	height:calc(81px + 36px *12); 
	background:url(/images/sp/stats/decoLogo.svg) no-repeat 0% bottom / 25%, #fff;
	transform:translateX(-50%);
	box-shadow:3px 0 15px 0 rgba(0,0,0,.15);
	opacity:1;
	filter:grayscale(1) brightness(1.51); 
	z-index:-1;
}
#header .gnb h1.logo a {
	display:block; 
	margin-top:-10px;
	width:225px;
	height:50px;
	background:url(/images/sp/stats/logoColor.svg) no-repeat center center / contain;
	color:transparent;
	font-size:0;
}
#header .gnb .utilTop {
	position:absolute;
	top:3px;
	right:0;
	display:flex;
	align-items:center;
}
#header .gnb .utilTop > li {
	margin-left:16px;
}
#header .gnb .utilTop > li a {
	font-size:14px;
	color:#464646;
}
#header .gnb .utilTop > li:hover a {
	text-decoration:underline; 
}
#header .gnb .searchBar {
	display:none;	
}
#header .gnb > .depth1 {
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	display:flex;
	justify-content:center;
	max-width:850px;
	width:100%;
}
#header .gnb > .depth1:last-child {
	margin-right:0;
}
#header .gnb > .depth1 > li {
	width:20%;
	text-align:center;
}
#header .gnb > .depth1 > li > a {
	position:relative;
	padding:20px 0;
	font-size:20px;
	white-space:nowrap;
	overflow:hidden;
}
#header .gnb > .depth1 > li > a:after {
	content:"";
	position:absolute;
	bottom:2px; 
	right:-3px;
	width:0;
	height:3px;
	background:#F9217B;
	transition:.3s;
}
#header .gnb > .depth1 > li:hover > a:after {
	width:100%;
	left:0;
	right:auto;
}
#header .gnb > .depth1 .depth2 {
	padding-top:40px;
	display:none;
}
#header .gnb.on > .depth1 .depth2 {
	display:block;
}
#header .gnb > .depth1 .depth2 > li {
	animation:moveUp .3s linear forwards;
}
@keyframes moveUp {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
#header .gnb > .depth1 .depth2 > li > a {
	padding:6px 0;
	display:block;
	color:#767676;
	white-space:nowrap;
}
#header .gnb > .depth1 .depth2 > li:hover > a {
	color:#262626;
}
#header .gnb .btnSitemap {
	position:relative;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	align-items:flex-end;
	z-index:12;
	width:24px;
	height:18px; 
}
#header .gnb .btnSitemap > span {
	width:16px;
	height:2px;
	background:#262626;
	display:block;
	transition:.5s;
}
#header .gnb .btnSitemap > span:nth-child(2) {
	width:24px;
}
#header .gnb .btnSitemap:hover > span {
	width:24px;
}
#header .gnb .btnSitemap:hover > span:nth-child(2) {
	width:16px;
}
#header .gnb .btnSitemap.active > span:first-child {
	width:24px;
	transform:translateY(10px) rotate(225deg);
}
#header .gnb .btnSitemap.active > span:nth-child(2) {
	transform:translateX(-40px);
	opacity:0;
}
#header .gnb .btnSitemap.active > span:last-child {
	width:24px;
	transform:translateY(-4px) rotate(-225deg);
	transform-origin:center center;
	margin-top:-8px;
}
#header .gnb > .right {
	display:flex;
	align-items:center;
}
#header .gnb > .right .topSearchBox {
	position:relative;
	margin-right:1rem;
	overflow:hidden;
}
#header .gnb > .right .topSearchBox form {
	display:flex;
	align-items:center;
}
#header .gnb > .right .topSearchBox:before {
	content:"";
	position:absolute;
	bottom:0;
	right:-200px;
	width:100%;
	height:1px;
	background:#464646;
	transition:.6s;
}
#header .gnb > .right .topSearchBox.active:before {
	right:0;
	left:auto;
}
#header .gnb > .right .topSearchBox input[type=text] {
	width:0;
	height:30px;
	padding:0 2.25rem 0 0;
	background:#fff;
	border:none;
	overflow:hidden;
	transition:.3s;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}
#header .gnb > .right .topSearchBox.active input[type=text] {
	width:200px;
}
#header .gnb > .right .topSearchBox .btnSearchLine {
	width:24px;
	height:24px;
	background:url(/images/sp/stats/iconSearch.svg) no-repeat center center / contain;
	display:block;
	margin-right:-24px;
	transition:.3s;
}
#header .gnb > .right .topSearchBox .btnSearchLine.real {
	display:none;
}
#header .gnb > .right .topSearchBox.active .btnSearchLine.real {
	display:block;
	margin-left:-2rem;
	animation:moveLeft .15s .15s linear forwards;
}
@keyframes moveLeft {
	0% {
		margin-right:-24px;
	}
	100% {
		margin-right:0;
	}
}
#header .gnb > .right .topSearchBox.active .btnSearchLine.fake {
	display:none;
}
#header .gnb > .right .topSearchBox .btnClose {
	width:24px;
	height:24px;
	font-size:1.3rem;
	color:#464646;
	line-height:20px;
	transform:scale(0);
	transition:.6s;
}
#header .gnb > .right .topSearchBox.active .btnClose {
	margin-left:-0.25rem;
	transform:scale(1);
}
.siteMap {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(/images/sp/stats/bgSiteMap.jpg) no-repeat center center / cover;
	z-index:11;	
	display:none;
} 
.siteMap .depth1 {
	max-width:1200px;
	width:100%; 
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	display:flex;
	align-items:flex-start;
	justify-content:center;
}
.siteMap:before {
	content:"SITE MAP";
	position:fixed;
	top:var(--sitemap-top);
	left:calc(((100% - 1200px) / 2) + 15px);
	font-size:40px;
	font-weight:bold;
	color:#262626;
	z-index:12;
}
.siteMap .depth1 > li {
	position:relative;
	width:20%;
	height:500px;
	padding-left:1rem;
}
.siteMap .depth1 > li:first-child:before {
	content:"";
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	width:1px;
	height:100vh;
	background:#ccc;
	animation:line 1s linear forwards;
}
.siteMap .depth1 > li:after {
	content:"";
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
	width:1px;
	height:0;
	background:#ccc;
	animation:line 1s linear forwards;
}
@keyframes line {
	0% {
		height:0;
	}
	100% {
		height:100vh;
	}
}
.siteMap .depth1 > li > a {
	font-size:24px;
	font-weight:bold;
	margin-bottom:1.5rem;
	display:block;
	width:100%;
	overflow:hidden;
}
.siteMap .depth1 > li > a > span {
	position:relative;
	margin-left:-6rem;
	opacity:0;
	animation:toRight .55s .55s linear forwards;
}
.siteMap .depth1 > li > a > span:after {
	content:"";
	position:absolute;
	bottom:6px;
	right:-8px;
	width:6px;
	height:6px;
	background:#F9217B;
	border-radius:50%;
}
.siteMap .depth2 {
	width:100%;
	overflow:hidden;
}
.siteMap .depth2 > li {
	margin-left:-6rem;
	opacity:0;
	animation:toRight .55s .75s linear forwards;
}
.siteMap .depth2 > li:not(:last-child) {
	margin-bottom:0.5rem;
}
.siteMap .depth2 > li > a {
	position:relative;
}
.siteMap .depth2 > li:hover > a {
	color:#F9217B;
}
.siteMap .depth2 > li > a:after {
	content:"";
	position:absolute;
	bottom:0px;
	right:-4px;
	width:0;
	height:1px;
	background:#F9217B;
	transition:.6s;
}
.siteMap .depth2 > li:hover > a:after {
	content:"";
	position:absolute;
	width:100%;
	left:0;
	bottom:0;
	right:auto;
}
@keyframes toRight {
	0% {
		margin-left:-6rem;
		opacity:0;
	}
	100% {
		margin-left:0;
		opacity:1;
	}
}

/*섹션1*/
.sct1 {
	padding-top:18vh !important;
} 
.sct1 .bgTxt {
	position:absolute;
	width:100%;
	top:calc(55% - 200px);
	left:-100px;
	font-size:12.5rem;
	font-weight:bold;
	color:#f5f6f8;
	line-height:1;
	z-index:-3;	
	opacity:.7;
}
.sct1 .bgTxt + .flexBetween {
	height:445px;
}
.sct1 .flexBetween div.left {
	position:relative;
	width:50%;
}
.sct1 .flexBetween div.left > div {
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
.sct1 .flexBetween div.left p {
	font-size:32px;
	font-weight:bold;
}
.sct1 .flexBetween div.left h2 {
	font-size:80px;
	font-weight:bold;
	line-height:1;
}
.sct1 .flexBetween div.left .mainSearchBox {
	position:relative;
	margin-top:2.5rem;
}
.sct1 .flexBetween div.left .mainSearchBox input[type=text] {
	width:100%;
	height:50px;
	font-size:16px; 
	border:3px solid #F9217B;
	padding:0 40px 0 8px; 
	border-radius:5px;
}
.sct1 .flexBetween div.left .mainSearchBox input[type=text]::placeholder {
	font-size:16px;
}
.sct1 .flexBetween div.left .mainSearchBox .btnSearch {
	position:absolute;
	top:0;
	right:0;
	width:50px;
	height:50px;
	background:url(/images/sp/iconSearch.png) no-repeat center center / 20px ,#F9217B;
	border-radius:0 5px 5px 0;
}
.sct1 .flexBetween div.right {
	position:relative;
	width:50%;
	display:flex;
	border-radius:5px 30px;
	overflow:hidden;
	box-shadow:0 0 15px 0 rgba(0,0,0,.15);
}
.sct1 .flexBetween div.right:before {
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	background:rgba(255,255,255,.25);
	-webkit-backdrop-filter:blur(12px);
	backdrop-filter:blur(12px);
	z-index:-1;
}
.sct1 .flexBetween div.right ul.list {
	position:relative;
	width:80%;
	max-height:450px;
	overflow-y:auto;
}
.sct1 .flexBetween div.right ul.list:before {
	content:"충남 100대 통계";
	position:sticky;
	display:block;
	top:0;  
	left:0;
	max-width:563px;
	width:100%;
	background:linear-gradient(to right, #fff , #f1f1f1, #fff);
	color:#464646; 
	padding:0.5rem 0;
	text-align:center;
	font-size:18px;
	font-weight:bold;
	border-radius:5px 0 0 0;
	z-index:3;
} 
.sct1 .flexBetween div.right ul.list::-webkit-scrollbar {
	width:5px; 
}
.sct1 .flexBetween div.right ul.list li {
	display:flex;
	align-items:center; 
	padding:29px 20px;
	border-bottom:1px dashed #ccc;
}
.sct1 .flexBetween div.right ul.list li.noData {
	display:block;
	text-align:center;
	font-size:1.25rem;
	font-weight:bold;
}
.sct1 .flexBetween div.right ul.list li > p.statTitle {
	width:35%;
	font-size:20px; 
	font-weight:bold;
}
.sct1 .flexBetween div.right ul.list li > p.statTitle span {
	font-size:14px;
	font-weight:normal;
}
.sct1 .flexBetween div.right ul.list li > p.statValue {
	width:40%;
	font-size:24px;
	font-weight:bold;
	text-align:right;
}
.sct1 .flexBetween div.right ul.list li > p.statUnit {
	width:25%;
	text-align:right;
}
.sct1 > .flexBetween div.right .lineUp {
	flex-direction:column; 
}
.sct1 .flexBetween div.right .swiper,
.sct1 .flexBetween div.right ul.lineUp {
	width:20%;
	height:calc(450px - 450px / 4);
	background:#323540;
}
.sct1 .flexBetween div.right ul.lineUp {
	width:100%;
}
.sct1 .flexBetween div.right ul.lineUp li {
	height:calc(450px / 4);
	background:#323540; 
	color:rgba(255,255,255,.7);
	font-size:18px;
	font-weight:bold;
	line-height:calc(450px / 4);
	text-align:center;
	cursor:pointer;
}
.sct1 .flexBetween div.right ul.lineUp li.swiper-slide-active {
	background:#F9217B !important;
	color:#fff !important;
}
.sct1 .flexBetween div.right .slideBtnBox {
	position:absolute;
	bottom:0;
	right:0;
	width:20%;
	height:calc(450px / 4);
	background:#262626;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.sct1 .flexBetween div.right .slideBtnBox .btnUp {
	width:16px;
	height:16px;
	background:url(/images/sp/stats/btnSlideUp.svg) no-repeat center center / contain;
}
.sct1 .flexBetween div.right .slideBtnBox .btnPause {
	width:16px;
	height:16px;
	margin:2px 0;
	background:url(/images/sp/stats/btnSlidepause.svg) no-repeat center center / contain;
	transform:rotate(90deg); 
	opacity:.8;
	display:none;
}
.sct1 .flexBetween div.right .slideBtnBox .btnPlay {
	width:16px;
	height:16px;
	margin:2px 0;
	background:url(/images/sp/iconPlay.svg) no-repeat center center / contain;
	opacity:.8;
	display:none;
}
.sct1 .flexBetween div.right .slideBtnBox .btnPause.active {
	display:block;
}
.sct1 .flexBetween div.right .slideBtnBox .btnPlay.active {
	display:block; 
}
.sct1 .flexBetween div.right .slideBtnBox .btnDown {
	width:16px;
	height:16px;
	background:url(/images/sp/stats/btnSlideDown.svg) no-repeat center center / contain;
}
.sct1 .flexBetween div.right .slideBtnBox button {
	position:static;
	margin-top:0;
}
.sct1 .flexBetween div.right .slideBtnBox button:after {
	display:none;
}
.sct1 .bottom {
	margin-top:12vh;
}
.sct1 .bottom > ul {
	position:relative;
	display:flex;
	border-radius:5px 30px;
	box-shadow:0 0 15px 0 rgba(0,0,0,.15);
}
.sct1 .bottom > ul > li {
	position:relative;
	width:calc((100% - 180px) / 4);
	padding:32px 24px;
}
.sct1 .bottom > ul > li:not(:first-child, :last-child):after {
	content:"";
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%);
	width:1px;
	height:80%;
	background:#ccc;
	opacity:.5;
}
.sct1 .bottom > ul:before {
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	background:rgba(255,255,255,.25);
	backdrop-filter:blur(8px);
	z-index:-1;
}
.sct1 .bottom > ul > li span {
	display:block;
}
.sct1 .bottom > ul > li span.title {
	font-size:20px;
	font-weight:bold;
}
.sct1 .bottom > ul > li span.value {
	font-size:24px;
	font-weight:bold;
	text-align:right;
}
.sct1 .bottom > ul > li span.unit {
	font-size:16px;
	text-align:right;
}
.sct1 .bottom > ul > li:first-child {
	position:relative;
	width:180px; 
	background:#F9217B;
	padding-top:0;
	padding-bottom:0;
	line-height:153px;
	border-radius:5px 0 0 30px;
}
.sct1 .bottom > ul > li:first-child a {
	position:relative;
	color:#fff;
	font-size:26px;
	font-weight:bold;
	display:block;
	height:100%;
}
.sct1 .bottom > ul > li:first-child a:after {
	content:"";
	position:absolute;
	top:50%;
	right:-10px;
	transform:translateY(-50%);
	width:16px;
	height:16px;
	background:url(/images/sp/iconSelectWh.svg) no-repeat 100% center, 16px;
}
.sct1 .bottom > ul > li:first-child.active a + ul {
	position:absolute;
	bottom:60%;
	right:30px;
	display:flex;
	flex-wrap:wrap;
	width:280px;
	padding:0 8px;
	border-radius:10px;
	border:1px solid #f5f5f5;
	box-shadow:0 0 15px 0 rgba(0,0,0,.15);
	z-index:2; 
}
.sct1 .bottom > ul > li:first-child.active a + ul:before {
	position:absolute;
	top:0;
	left:0;
	content:"";
	width:100%;
	height:100%;
	background:rgba(255,255,255,.35);
	backdrop-filter:blur(4px);
	border-radius:10px;
	z-index:-1;
}
.sct1 .bottom > ul > li:first-child a + ul {
	border:none;
}
.sct1 .bottom > ul > li:first-child a + ul > li {
	padding:12px 8px;
	width:47%;
	font-size:14px;
	text-align:center;
	line-height:1;
	cursor:pointer;
	display:none;
}
.sct1 .bottom > ul > li:first-child.active a + ul > li {
	padding:12px 0;
	width:calc(100% / 4);
	font-size:16px;
	text-align:center;
	line-height:1;
	cursor:pointer;
	display:block;
}
.sct1 .bottom > ul > li:first-child.active a + ul > li:nth-child(15),
.sct1 .bottom > ul > li:first-child.active a + ul > li:last-child {
	border-bottom:0;
}
.sct1 .bottom > ul > li:first-child a + ul > li:hover {
	color:#F9217B;
}
.sct2 .upper {
	margin-top:7rem;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.sct2 .upper .contBox {
	position:relative;
	width:49%;
	min-height:340px;
	padding:2rem 1.75rem;
	background:#f6f6f8;
	transition:all .5s linear;
	cursor:pointer;
}
.sct2 .upper .contBox:first-child {
	border-radius:50px 0 0 0; 
}
.sct2 .upper .contBox h2 {
	font-size:28px;
	font-weight:bold;
	margin-bottom:0.5rem;
}
.sct2 .upper .contBox h2 + p.desc {
	margin-bottom:2rem;
	font-size:18px;
}
.sct2 .upper .contBox .tagBox {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.sct2 .upper .contBox .tagBox li {
	background:#fff;
	margin:0 0.5rem 0.5rem 0;
	border-radius:30px;
}
.sct2 .upper .contBox .tagBox li a {
	width:100%;
	height:100%;
	display:block;
	padding:0.25rem 0.5rem; 
}
.sct2 .below {
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-top:1.5rem;
}
.sct2 .below .contBox {
	position:relative;
	width:32%;
	min-height:340px;
	padding:2rem 1.75rem;
	background:#f6f6f8;
	transition:all .5s linear;
	cursor:pointer;
}
.sct2 .below .contBox:last-child {
	border-radius:0 0 50px 0; 
}
.sct2 .below .contBox h2 {
	font-size:28px;
	font-weight:bold;
	margin-bottom:0.5rem;
}
.sct2 .below .contBox h2 + p.desc {
	margin-bottom:2rem;
	font-size:18px;
}
.sct2 .below .contBox .tagBox {
	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.sct2 .below .contBox .tagBox li {
	background:#fff;
	margin:0 0.5rem 0.5rem 0;
	border-radius:30px;
}
.sct2 .below .contBox .tagBox li a {
	width:100%;
	height:100%;
	display:block;
	padding:0.25rem 0.75rem 0.75rem 0.75rem; 
}
.sct2 .contBox.active {
	background:#F9217B;
}
.sct2 .contBox img {
	position:absolute;
	bottom:2rem;
	right:2rem; 
}
.sct2 .contBox.active h2 {
	color:#fff;
}
.sct2 .contBox.active p.desc {
	color:#fff;
}
.sct2 .contBox.active .tagBox li {
	background:#CB125F;
}
.sct2 .contBox.active .tagBox li a {
	color:#fff;
}
.sct2 .contBox img:last-of-type {
	display:none;
}
.sct2 .contBox.active img:first-of-type {
	display:none;
}
.sct2 .contBox.active img:last-of-type {
	display:block;
}
.sct3 .flexBetween > div {
	width:48%;
	margin-top:4rem;
	padding-bottom:3rem;
}
.sct3 .titleBox {
	display:flex; 
	justify-content:space-between;
	align-items:center;
	margin-bottom:1.5rem;
}
.sct3 .titleBox a {
	color:#F9217B;
}
.sct3 .newsWrap {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.sct3 .newsCont {
	width:49%;
	margin-bottom:1rem;
	padding:24px;
	background:#fff; 
	border:1px solid #ccc;
	border-radius:10px;
}
.sct3 .newsCont:hover {
	box-shadow:0 0 15px 0 rgba(249, 44, 123, .3);
}
.sct3 .newsCont h3.title {
	font-size:18px;
	font-weight:bold;
	margin-bottom:8px;
    overflow: hidden; 
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.sct3 .newsCont:hover h3.title,
.sct3 .newsCont:hover a.viewMore {
	color:#F9217B;
}
.sct3 .newsCont p.content {
	color:#464646;
	overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    height:48px;
}
.sct3 .newsCont .descBox {
	position:absolute;
	bottom:15px;
	right:15px;
}
.sct3 .newsCont p.date { 
	color:#464646;
	margin:1rem 0;
	text-align:right;
}
.sct3 .newsCont a.viewMore {
	display:block;
	text-align:right;
}
.sct3 .slideBtnBox {
	display:flex;
	justify-content:flex-end;
	margin-bottom:8px;
}
.sct3 .reportWrap {
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
.sct3 .reportWrap > .report {
	position:relative;
	padding:18px 0;
	display:flex;
	cursor:pointer;
}
.sct3 .reportWrap > .report p.date {
	width:72px;
	height:72px;
	padding:10px;
	font-size:18px;
	font-weight:bold;
	border:1px solid #ccc;
	text-align:center;
	line-height:1.2;
}
.sct3 .reportWrap > .report p.date span {
	font-size:14px;
}
.sct3 .reportWrap > .report dl {
	width:calc(100% - 112px);
	padding:10px 24px;
}
.sct3 .reportWrap > .report dl dt {
	font-size:18px;
	font-weight:bold;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.sct3 .reportWrap > .report:hover dl dt {
	color:#F9217B;
}
.sct3 .reportWrap > .report dl dd {
	color:#676767;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.sct3 .reportWrap > .report .btnReportMore {
	position:absolute;
	top:calc(50% - 16px);
	right:0;
	width:32px;
	height:32px;
	font-size:24px;
	color:#676767;
	border:1px solid #ccc;
	border-radius:50%; 
	line-height:27px;
}
.sct3 .reportWrap > .report:hover .btnReportMore,
.sct4 .below .reportWrap > .report .btnReportMore:hover {
	background:#f5f5f5;
}
.sct3 .reportWrap > .report:not(:last-child) {
	border-bottom:1px solid #ccc;
}
.sct5 {
	position:relative;
	max-height:200px;
}
.sct5:before {
	content:"";
	position:absolute;
	top:0;
	left:50%;
	transform:translateX(-50%);
	width:100vw;
	height:60px;
	background:#262626;
	z-index:-1;
}
.sct5 .rollingBanner {
	position:relative;
	max-width:1440px;
	width:100%;
	margin:0 auto;
	display:flex;
	max-height:60px;
	padding:20px 0;
	overflow:hidden;
	background:#262626;
}
.sct5 .rollingBanner .controlBox {
	position:relative;
	width:200px;
	height:60px;
	margin-top:-20px;
	line-height:60px;
	background:#262626;
	padding:0 0.5rem;
	display:flex;
	align-items:center;
	z-index:2;
}
.sct5 .rollingBanner .controlBox:after {
	content:"";
	position:absolute;
	width:1px;
	height:65%;
	background:rgba(255,255,255,.3);
	top:50%;
	right:0;
	transform:translateY(-50%);
}
.sct5 .rollingBanner .controlBox > * {
	margin-right:0.5rem;
}
.sct5 .rollingBanner .controlBox .btnRollingPause {
	width:20px;
	height:20px;
	background:url(/images/sp/stats/btnSlidepause.svg) no-repeat center center / 5px, #464646;
	z-index:2;
	border-radius:50%;
	display:none;
}
.sct5 .rollingBanner .controlBox .btnRollingPlay {
	width:20px;
	height:20px;
	background:url(/images/sp/iconPlay.svg) no-repeat center center / 9px, #464646;
	z-index:2;
	border-radius:50%;
	display:none;
}
.sct5 .rollingBanner .controlBox .btnRollingPause.active {
	display:block;
}
.sct5 .rollingBanner .controlBox .btnRollingPlay.active {
	display:block;
}
.sct5 .rollingBanner .controlBox a.btnPlus {
	width:20px;
	height:20px;
	background:#464646;
	border-radius:50%;
	line-height:20px;
	font-size:18px;
	color:#fff;
	text-align:center;
	vertical-align:middle;
}
.sct5 .rollingBanner .controlBox p {
	color:#fff;
	line-height:1;
}
.sct5 .rollingBanner > .bannerWrap {
	position:relative;
	width:calc(100% - 250px);
	padding:0 45px;
	z-index:1;
}
.sct5 .rollingBanner > .bannerWrap > div a {
	color:#fff;
	display:block;
	text-align:center;
	line-height:1;
}
/*메인페이징*/
#fp-nav {
	position:fixed;
	top:50%;
	transform:translateY(-50%);
	right:1.75rem;
}
#fp-nav li:not(:last-child) {
	margin-bottom:0.5rem;
}
#fp-nav li a {
	width:10px;
	height:10px;
	background:#ccc;
	display:block;
	margin:0 auto;
	border-radius:50%;
	transition:.8s;
}
#fp-nav li a.active {
	width:13px;
	height:13px; 
	background:#F9217B;
	box-shadow:0 0 15px 0 rgba(249, 33, 123, .35);
}

/*푸터*/
#footer footer {
	max-width:1440px;
	width:100%;
	margin:0 auto;
	padding:40px 0;
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
}
#footer footer h2.logoBottom {
	margin-top:-10px;
	width:130px;
	height:50px;
	background:url(/images/sp/stats/logoColor.svg) no-repeat center center / contain;
	color:transparent;
	font-size:0;
	filter:grayscale(1);
	opacity:.7;
}
#footer footer ul {
	width:calc(100% - 360px);
}
#footer footer li {
	color:#676767;
	font-size:14px;
	font-weight:normal;
}
#footer footer li address {
	font-size:14px;
	font-style:normal;
	font-weight:normal;
}
#footer footer a.privateLaw:hover {
	text-decoration:underline;
}

/*스크롤시 fade in 효과*/
@media all and (min-width:1201px) {
	.fade-class {
    opacity:0;
	}
	.fade-in {
	    animation:fadeIn linear 1s forwards;
	} 
	.fade-in2 {
	    animation:fadeIn linear 1.1s forwards;
	}  
	.fade-in3 {
	    animation:fadeIn linear 1.2s forwards;
	} 
	@keyframes fadeIn {
	    0% {
	        opacity:0;
	        transform:translateY(150px);
	    }
	    100% {
	        opacity:1;
	        transform:translateY(0);
	    }
	}
}


@media all and (min-width:1921px) {
    .sct3 .sticky p:not(:last-child) {
        font-size:5.5vw;
    }
}


/*미디어쿼리*/
@media all and (min-width:1921px) {
	.sct1:before {
		top:50%;
		left:-400px;
	}
	.sct1 .flexBetween div.right ul.list {
		max-height:560px;	
	}
	.sct1 .flexBetween div.right ul.list > li {
		padding:40px 20px;
	}
	.sct1 .flexBetween div.right .swiper, .sct1 > .flexBetween div.right ul.lineUp {
		height:calc(445px - 455px / 4);
	}
	.sct1 .flexBetween div.right .slideBtnBox {
		height:calc(560px / 4);
	}
	.sct1 .bottom > ul > li:first-child {
		width:210px;
		line-height:174px;
	}
	.sct1 .bottom > ul > li {
		width:calc((100% - 210px) / 4);
		padding:32px 24px;
	}
	.sct1 .bottom > ul > li p.title {
		font-size:24px;
	}
	.sct1 .bottom > ul > li p.value {
		font-size:32px;
	}
	.sct2 .upper .contBox {
		min-height:460px;
	}
	@keyframes slide {
	  0% {
	    transform:translate3d(0,0,0);
	  }
	  100% {
	    transform:translate3d(-70%,0,0);
	  }
	}
	.sct4 .below .reportWrap > .report {
		padding:40px 0;
	}
}
@media all and (max-width:1368px) {
	section[class^=sct] {
		display:inline-block;
	}
	.sct4 .upper {
		display:inline;
	}
	.sct4 .below .sctSbjt + a {
		margin-bottom:0;
	}
}
@media all and (max-width:1024px) {
	html, body {
		overflow-x:hidden !important;
	}
	body::-webkit-scrollbar {
		display:none;   
	}
	#header .gnb.on {
		height:auto;
		background:#fff;
	}
	#fp-nav {
		display:none;
	}
	#header .gnb {
		padding:35px 16px 20px 16px;
	}
	#header .gnb > .depth1, #header .gnb .utilTop {
		display:none;
	}
	#header > .gnb.on:before {
		display:none;
	}
	#header .gnb > .right .topSearchBox {
		display:none;
	}
	#header .gnb .searchBar {
		position:relative;
		display:flex;
		align-items:center;
		padding:0.5rem;
	}
	#header .gnb .searchBar input[type=text] {
		width:100%;
		height:50px;
		padding:1rem;
		border:3px solid #F9217B;
		padding:0 55px 0 8px;
		border-radius:5px;
	}
	#header .gnb .searchBar .btnSearch {
		position:absolute;
		top:0.5rem;
		right:0.5rem;
		width:50px;
		height:50px;
		border-radius:0 5px 5px 0;
	}
	.siteMap {
		max-width:1440px;
		top:81px;
		background:#fff;
	}
	.siteMap:before {
		display:none;
	}
	.siteMap .depth1 {
		position:static;
		transform:translate(0,0);
		display:block;
	}
	.siteMap .depth1 > li {
		width:100%;
		height:auto;
		border-bottom:1px solid #dbdbdb;
		padding-left:0;
	}
	.siteMap .depth1 > li:first-child:before {
		display:none;
	}
	.siteMap .depth1 > li:after {
		display:none;
	}
	.siteMap .depth1 > li:nth-child(4) .depth2 {
		display:flex;
		flex-wrap:wrap;
	}
	.siteMap .depth1 > li:nth-child(4) .depth2 > li {
		width:50%;
	}
	.siteMap .depth1 > li > a {
		position:relative;
		margin:0;
		padding:1rem;
		font-size:18px; 
	}
	.siteMap .depth1 > li > a:after {
		content:"";
		position:absolute;
		top:50%;
		transform:translateY(-50%);
		right:30px;
		width:12px;
		height:12px;
		background:url(/images/sp/stats/iconDownBk.svg) no-repeat center center / contain;
		transition:.3s;
		opacity:.5;
	}
	.siteMap .depth1 > li > a.active:after {
		transform:translateY(-50%) rotate(180deg);
	}
	.siteMap .depth2 {
		position:relative;
		max-height:0;
		transition:.6s;
		background:#f8f8f8;
		padding-left:1rem;
		overflow:hidden;
	}
	.siteMap .depth2 > li {
		padding:0.5rem 0;
	}
	.siteMap .depth2 > li {
		margin-bottom:0 !important;
	}
	section {
		height:auto !important;
	}
	.fp-tableCell {
		height: auto !important;
	}
	.sct1 {
		padding-top:6.5rem !important;
	}
	.sct1 .flexBetween {
		display:block;	
	}
	.sct1 .flexBetween div[class$=t] {
		width:100%;
	}
	.sct1 .flexBetween div.left {
		width:100%;
	}
	.sct1 .flexBetween div.left > div {
		position:static;
		top:unset;
		left:unset;
		transform:translateY(0);
	}
	.sct1 .flexBetween div.left .mainSearchBox {
		margin-top:0.5rem;
	}
	.sct1 .flexBetween div.left > div h2,
	.sct1 .flexBetween div.left > div p {
		display:none;
	}
	.sct1 .flexBetween div.left .mainSearchBox {
		margin-bottom:1rem;
	}
	.sct1 .flexBetween div.right {
		width:100%;
	}
	.sct1 .flexBetween div.right ul.list li {
		padding:1rem;
	}
	.sct1 .flexBetween div.right ul.list {
		height:400px;
	}
	.sct1 .flexBetween div.right .swiper, 
	.sct1 .flexBetween div.right ul.lineUp {
		min-width:120px;
		height:calc(400px - 400px / 4);
	}
	.sct1 .flexBetween div.right ul.lineUp li {
		line-height:calc(400px / 4);
	}
	.sct1 .flexBetween div.right .slideBtnBox {
		min-width:120px;
		height:calc(400px / 4);
	}
	.sct1 .bottom {
		margin-top:3rem;
	}
	.sct2 .upper {
		margin-top:2rem;
		display:block;
	}
	.sct2 .upper > div.contBox {
		width:100%;
		margin-bottom:1.5rem;
	}
	.sct2 .below {
		display:block;
		margin-top:0;
	}
	.sct2 .below > div.contBox {
		width:100%;
		margin-bottom:1.5rem;
	}
	.sct2 .contBox .tagBox li a {
		font-size:14px;
	}
	.sct2 .contBox img {
    	position: absolute;
	    bottom: 1rem;
	    right: 1rem;
	    width: 60px;
    }
	.sct3 > .flexBetween   {
		display:block;
	}
	.sct3 > .flexBetween > div {
		width:100%;
	}
	.sct3 .newsWrap {
		display:block;
	}
	.sct3 .newsWrap > div {
		width:100%;
	}
	#footer footer {
		display:block;
		padding:1rem 0.5rem;
	}
	#footer footer ul {
		width:100%;
	}
	.scrollLock {
		overflow:hidden !important;
}
}
@media all and (max-width:768px) {
	.sct1 .flexBetween div.right ul.list li {
		display:flex;
		flex-wrap:wrap;
		align-items:flex-start;
	}
	.sct1 .flexBetween div.right ul.list li > p {
		text-align:left !important;
		width:100% !important;
		font-size:14px !important;
	}
	.sct1 .flexBetween div.right ul.list li > p:nth-child(2) {
		width:49% !important;
		font-size:18px;
	}
	.sct1 .flexBetween div.right ul.list li > p:nth-child(3) {
		width:49% !important;
		text-align:right !important;
		font-size:14px;
	}
	.sct1 .flexBetween div.right ul.lineUp li {
		font-size:16px;
	}
	.sct1 .flexBetween div.right ul.list {
		height:300px;
	}
	.sct1 .flexBetween div.right .swiper, 
	.sct1 .flexBetween div.right ul.lineUp {
		min-width:120px;
		height:calc(300px - 300px / 4);
	}
	.sct1 .flexBetween div.right ul.lineUp li {
		line-height:calc(300px / 4);
	}
	.sct1 .flexBetween div.right .slideBtnBox {
		min-width:120px;
		height:calc(300px / 4);
	}
	.sct1 .bottom > ul {
		flex-wrap:wrap;
		border-radius:0 15px;
	}
	.sct1 .bottom > ul > li:first-child {
		width:100%;
		line-height:48px;
		border-radius:0 15px;
	}
	.sct1 .bottom > ul > li:not(:first-child) {
		width:50%;
		padding:0.5rem 1rem;
	}
	.sct1 .bottom > ul > li:nth-child(3):after {
		display:none;
	}
	.sct1 .bottom > ul > li:nth-child(n + 3):before {
		content:"";
		position:absolute;
		top:0;
		left:50%;
		transform:translateX(-50%);
		width:80%;
		height:1px;
		background:#ccc;
		opacity:.5;
		
	}
	.sct1 .bottom > ul > li span.title,
	.sct1 .bottom > ul > li span.value {
		font-size:18px;
	}
	.sct1 .bottom > ul > li span.unit {
		font-size:14px;
	}
	.sct1 .bottom > ul > li:first-child.active a + ul {
		width:90%;
	}
	.sct2 .sctSbjt:first-of-type {
		margin-top:0px;
	}
	.sct2 .sctSbjt:first-of-type + .flexBetween {
		display:block;
	}
	.sct2 .flexBetween > .left,.sct2 .flexBetween > .statsBanner {
		width:100%;
	}
	.sct2 .flexBetween > .left li:nth-child(n + 13) {
		margin-bottom:1rem  ;
	}
	.sct2 .flexBetween > .statsBanner .banner {
		height:calc(200px - 46px);
	}
	.sct2 .sctSbjt:last-of-type {
		margin-top:30px;
		font-size:20px;
	}
	.sct2 .alignStart {
		flex-wrap:wrap;
		justify-content:center;
	}
	.sct2 .alignStart dl {
		width:33%;
	}
	.sct2 .alignStart dl:nth-child(n + 4) {
		margin-top:1rem;
		width:40%;
	}
	.sct2 .alignStart dl dt img {
		height:56px;
	}
	.sct2 .alignStart dl dd.title {
		font-size:16px;
		word-break:keep-all;
	}
	.sct2 .alignStart dl dd + dd {
		display:none;
	}
	.sct3 .sctSbjt {
		font-size:20px;
		margin:0px 0 20px 0;
	}
	.sct3 .bannerWrap {
		flex-direction:column;
	}
	.sct3 .bannerWrap > div {
		width:100%;
		height:calc((80vh / 4) - 1rem);
		margin:0.25rem 0;
	}
	.sct3 .bannerWrap > div.active {
		width:100%;
		height:calc((80vh / 3) - 1rem);
	}
	.sct4 .below .reportWrap > .report {
		width:100%;
	}
	.sct4 .below .reportWrap > .report:nth-of-type(3) {
		border-bottom:1px solid #ccc;
	}
	.sct5 .rollingBanner > .bannerWrap > div a {
		text-align:left;
	}
	section .sctSbjt {
		font-size:20px;
	}
} 
@media all and (max-width:400px) {
	.sct1 .flexBetween div.right ul.list li > p:nth-child(2) {
		width:100% !important;
		font-size:18px;
	}
	.sct1 .flexBetween div.right ul.list li > p:nth-child(3) {
		width:100% !important;
		text-align:left !important;
	}
	.sct2 .alignStart dl dd.title {
		font-size:14px;
	}
}

/*익스플로러 대응*/
 /* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#header {
		background:#fff;
	}
	#header:before {
		display:none;
	} 
	#header h1.logo {
		position:absolute;
	    top:50px;
	    left:0;
	    transform:translateY(-50%);
	}
	#header .gnb .btnSitemap.active {
		position:absolute;
		right:0;	
	}
	#header .gnb .btnSitemap.active > span:first-child {
		transform:translateY(6px) rotate(225deg);
	}
	.rollingTxt {
		display:none;
	}
}