@import url('font.css');


/* 팝업 전체 배경 */
.award-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20000;
    /* 커서 모양을 변경하여 클릭 가능함을 알림 */
    cursor: pointer; 
}

/* 팝업 내부 정렬 컨테이너 */
.award-popup-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* 이미지 좌우 중앙 */
    align-items: center;     /* 이미지 상하 중앙 */
}

/* [핵심] 닫기 버튼: 여기서 top 수치를 %로 자유롭게 조절하세요 */
.award-popup-close {
    position: absolute;
    top: 10%; /* ◀ 이 수치를 조절하여 버튼 높낮이를 정하세요 */
    left: 50%;
    transform: translateX(-50%); /* 버튼 자체의 좌우 중앙 정렬 */
    cursor: pointer;
    z-index: 20001;
}

/* 이미지와 버튼이 들어있는 영역은 클릭해도 안닫히게 설정 */
.award-popup-content, .award-popup-close {
    cursor: default; 
}

.award-popup-close img {
    width: 60px;
    height: auto;
	cursor: pointer;
}

/* 이미지 컨텐츠 영역 */
.award-popup-content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 이미지 개별 스타일 및 애니메이션 (이전 로직 유지) */
.pop-img {
    position: absolute;
    max-width: 552px; /* 이미지 크기 */
    border-radius: 10px;
    opacity: 0;
    will-change: transform, opacity;
}

/* 1번 이미지: 중앙 상승 후 왼쪽 이동 */
.award-popup-overlay.active .img1 {
    animation: centerRise 0.6s forwards ease-out, splitToLeft 0.6s forwards ease-in-out;
    animation-delay: 0.3s, 1.0s;
}

/* 2번 이미지: 1.6초에 오른쪽으로 나타나며 이동 */
.award-popup-overlay.active .img2 {
    animation: splitToRight 0.6s forwards ease-in-out;
    animation-delay: 1.0s;
}

@keyframes centerRise {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes splitToLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-53%); } /* 이미지 크기에 맞춰 조절 */
}

@keyframes splitToRight {
    from { opacity: 0; transform: translateX(0); }
    to { opacity: 1; transform: translateX(53%); }
}

/* 모바일 대응 */
@media screen and (max-width: 767px) {
    .award-popup-close { top: 10%; } /* 모바일에서는 조금 더 위로 */
    .pop-img { position: relative; max-width: 80%; transform: none !important; opacity: 1; }
    .award-popup-content { flex-direction: column; gap: 10px; }
}












/* --- 우측 하단 고정 배너 스타일 --- */
.fixed-awards-banner {
	position: fixed;
	/* 화면에 고정 */
	right: 20px;
	/* 우측 여백 */
	bottom: 180px;
	/* 하단 여백 (TOP 버튼 위치를 고려하여 조절) */
	z-index: 9900;
	/* 헤더(9999)보다 높은 우선순위 */
	width: 150px;
	/* 배너 너비 */
	transition: transform 0.3s ease;
	/* 호버 애니메이션 */
}

.fixed-awards-banner img {
	width: 100%;
	height: auto;
	display: block;
	/* 필터나 그림자를 넣어 가독성을 높일 수 있습니다 */
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* 마우스 호버 효과 */
.fixed-awards-banner:hover {
	transform: translateY(-10px);
	/* 살짝 위로 올라가는 효과 */
}

/* 반응형 처리 (모바일에서는 크기를 줄임) */
@media screen and (max-width: 767px) {
	.fixed-awards-banner {
		display: none;
	}
}




/* --- 기본 상태 --- */
.top-title.section2 {
	z-index: 1000;
	/* 헤더보다 아래 혹은 적절한 위치 */
}

.top-title.section2 h1.focus-in-expand {
	color: #000000;
	/* 초기 진한 색상 */
	transition: color 0.3s ease, transform 0.3s ease;
}

body.scrolled .top-title.section2 h1.focus-in-expand {
	color: #ffffff !important;
	/* 흰색으로 변경 */
	top: 20px;
	/* 헤더 중앙에 올 수 있도록 위치 조절 */
	z-index: 10000;
	/* 헤더(9999)보다 위로 */
}



/* --- 서브페이지 헤더 기본 상태 --- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	/* 초기 투명 */
	transition: background-color 0.3s ease;
	height: 100px;
	z-index: 500;
	
	display: flex;
	justify-content: center;
}

/* 가운데 텍스트 제목 (기존 색상에서 변화) */
header .focus-in-expand {
	color: rgb(30 29 93 / 90%) ;
	/* 초기 색상 (기존 디자인 유지) */
	transition: color 0.3s ease;
}

/* --- 스크롤 시 적용되는 스타일 (.scrolled) --- */
header.scrolled {
	background-color: rgb(30 29 93 / 93%) !important;
	/* 배경색 적용 (진한 네이비) */
}

header.scrolled .focus-in-expand {
	color: #ffffff !important;
	/* 텍스트 흰색으로 변경 */
}

/* 우측 메뉴 버튼 이미지 교체 전략 (Overlay 방식) */
.btn-toggle-nav {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
}

.btn-toggle-nav img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

/* 초기 상태: 기본 버튼 보임, 스크롤 버튼 숨김 */
.btn-toggle-nav .btn-default {
	opacity: 1;
}

.btn-toggle-nav .btn-scrolled {
	opacity: 0;
}

/* 스크롤 시: 기본 버튼 숨김, 스크롤 버튼 보임 */
header.scrolled .btn-toggle-nav .btn-default {
	opacity: 0;
}

header.scrolled .btn-toggle-nav .btn-scrolled {
	opacity: 1;
}

.line {
	text-decoration: underline;
	text-underline-offset: 10px;
}

.bor {
	border-radius: 6px;
}

.sub p {
	margin-bottom: 3px;
}

@media (max-width: 1100px) {
	.visible-xs {
		display: block !important;
	}

	.hidden-xs {
		display: none !important;
	}
}

header .head {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 0px;
}

.ftitle {
	font-size: 38px;
}

.fstitle {
	font-size: 22px;
	line-height: 35px;
}

.stext {
	font-size: 16px;
	line-height: 25px;
}

.pic-text {
	font-size: 15px;
	margin-top: 3px;
	text-align: right;
	padding: 0px !important;
	color: darkgray;
}

.pic-text-c {
	font-size: 15px;
	margin-top: 3px;
	text-align: center;
	padding: 0px !important;
	color: darkgray;
}


.pic-text-w {
	font-size: 15px;
	margin-top: 3px;
	text-align: right;
	padding: 0px !important;
	color: #ffffff;
}

.pic-text-b {
	font-size: 15px;
	margin-top: 3px;
	text-align: right;
	padding: 0px !important;
	color: #000000;
}

.interview {
	width: 100%;
	position: relative;
	font-size: 21px;
	font-weight: 400;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -0.5px !important;
	color: #f8b6a2;
}

.interview1 {
	width: 100%;
	position: relative;
	font-size: 21px;
	font-weight: 410;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -1.3px !important;
	color: #000000;
}

.m-title {
	width: 100%;
	position: relative;
	font-size: 23px;
	font-weight: 600;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -1.3px !important;
	color: #000000;
}


.clinic-title {
	width: 100%;
	position: relative;
	font-size: 20px;
	font-weight: 600;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -1.3px !important;
	color: #5d6cb3;
}



.news-title {
	width: 100%;
	position: relative;
	font-size: 18px;
	font-weight: 600;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	letter-spacing: -0.05em;
	margin: 10px 0 5px;
}



.paper-title {
	width: 100%;
	position: relative;
	font-size: 17px;
	font-family: "NanumSquareNeo";
	letter-spacing: -0.02em !important;
	line-height: 1.5em;
	margin-top: 10px;

}

.paper-sub {
	width: 100%;
	position: relative;
	font-size: 17px;
	font-family: "nanum-square-r";
	letter-spacing: -0.08em !important;
	line-height: 1.0em;
}

@media (max-width :991px) {

	.maudio {
		width: 40%;
	}

	.col-lg-1,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-md-1,
	.col-md-10,
	.col-md-11,
	.col-md-12,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-sm-1,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-xs-1,
	.col-xs-10,
	.col-xs-11,
	.col-xs-12,
	.col-xs-2,
	.col-xs-3,
	.col-xs-4,
	.col-xs-5,
	.col-xs-6,
	.col-xs-7,
	.col-xs-8,
	.col-xs-9 {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
	}

	.MapoGoldenPier {
		font-family: 'MapoGoldenPier';
		letter-spacing: -1.7px !important;
		font-size: 18px;
	}

	.ftitle {
		font-size: 28px;
	}

	.fstitle {
		font-size: 20px;
		line-height: 35px;
	}

	.m-title {
		width: 100%;
		position: relative;
		font-size: 20px;
		font-weight: 600;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		letter-spacing: -1.3px !important;
		color: #000000;
	}

	.m-title2 {
		width: 100%;
		position: relative;
		font-size: 20px;
		font-weight: 600;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		letter-spacing: -1.3px !important;
		line-height: 30px;
	}

	.m-title3 {
		width: 100%;
		position: relative;
		font-size: 20px;
		font-weight: 600;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		letter-spacing: -1.3px !important;
		color: #5d6cb3;
		line-height: 30px;
	}

	.m-title4 {
		width: 100%;
		position: relative;
		font-size: 20px;
		font-weight: 600;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		letter-spacing: -1.3px !important;
		color: #29ba9a;
		line-height: 30px;
	}

	.interview1 {
		width: 100%;
		position: relative;
		font-size: 20px;
		font-weight: 410;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		letter-spacing: -1.3px !important;
		color: #000000;
	}

	.paper-title {
		width: 100%;
		position: relative;
		font-size: 15.5px !important;
		font-family: "NanumSquareNeo";
		letter-spacing: -1px !important;
		line-height: 22px;
		color: #000000;
		margin: 0px 0 0px;
	}

	.paper-sub {
		width: 100%;
		position: relative;
		font-size: 14px;
		line-height: 20px;
		font-family: "nanum-square-r";
		letter-spacing: -1.3px !important;
		color: #000000;
		margin: 0 0 0px;
	}
}

/* Bootstrap */

.container {
	padding: 0;
	width: 100%;
	max-width: 1840px;
}



.tooltip {}

.tooltip > .tooltip-inner {
	background-color: #7c7c7c;
	color: #1a1a1a;
	border-radius: 0;
	padding: 1px 7px;
	font-size: 16px;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	margin-bottom: 10px;
	white-space: nowrap;
}

.tooltip.top .tooltip-arrow {
	border-top-color: #7c7c7c;
	margin-bottom: 10px;
}

.tooltip.right .tooltip-arrow {
	border-right-color: #7c7c7c;
	margin-bottom: 10px;
}

.tooltip.bottom .tooltip-arrow {
	border-bottom-color: #7c7c7c;
	margin-bottom: 10px;
}

.tooltip.left .tooltip-arrow {
	border-left-color: #7c7c7c;
	margin-bottom: 10px;
}

/* Etc */

body,
section,
h1,
h2,
div,
li,
td {
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

p {
	font-family: "NanumSquareNeo";
	letter-spacing: -0.02em;
	line-height: 1.7em;
	font-size: 18.5px;
}

a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
}

a.top {
	position: fixed;
	margin-left: 142px;
	bottom: 100px;
	display: none;
	width: 68px;
	height: 68px;
	background-image: url(../img/common/goto_top.png);
	background-size: 68px 68px;
}

img {
	max-width: 100%;
}

body {
	padding-top: 100px;
	margin: 0;
	font-size: 18px;
	line-height: 1.5em;
	text-align: justify;
	letter-spacing: -0.02em !important;
	color: #000000;
}

body .edit {
	font-family: "nanum-square-r", "Malgun Gothic", "sans-serif";
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	text-align: justify;
	letter-spacing: -0.7px !important;
}

#include-header {
	width: 1500px;
	margin: 0 auto;
}

#include-header-section {
	width: 1500px;
}



header > div {
	position: relative;
	padding: 0;
	width: 100%;
}

header h1 {
	position: absolute;
	left: 0px;
	top: 0;
	margin: 0;
}

header .main .m {
	display: none;
}

header .main > a {
	display: block;
	height: 100px;
	padding-left: 220px;
	background-image: url('../img/common/logo.png');
	background-position: left center;
	background-repeat: no-repeat;
}

header .story > a {
	display: block;
	height: 100px;
	padding-left: 220px;
	background-image: url('../img/common/logo.png');
	background-position: left center;
	background-repeat: no-repeat;
}

header h1 .vol {
	display: none;
}

header .title {
	margin: 0;
	font-size: 20px;
	text-align: center;
	padding-top: 38px;
	color: #000000;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

header .cover-nav {
	float: right;
	margin-right: 90px;
	list-style-type: none;
	margin-top: 36px;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
}

header .cover-nav > li {
	float: left;
}

header .cover-nav > li > a {
	display: block;
	position: relative;
	font-weight: 400;
	padding: 0 46px;
	color: #595a5c;
	font-size: 21px;
	cursor: pointer;
	letter-spacing: 0em;
}

header .cover-nav > li > a:before {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 5px;
	height: 18px;
	border-right: 1px solid #595a5c;
}

header .cover-nav > li:last-child > a:before {
	display: none;
}

header .btn-toggle-nav {
	display: block;
	width: 40px;
	height: 24px;
	background-image: url('../img/common/btn_nav.png');
	position: absolute;
	right: 0px;
	top: 37px;
	cursor: pointer;
}

.top-title {
	position: fixed;
	z-index: 501;
	top: 35px;
	width: 100%;
	font-size: 19pt;
	font-weight: 500;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	color: #000;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

#side-nav {
	/*
    display:none;
    position:fixed;

    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    z-index:1000;
    */
}

#side-nav > .wrap {
	position: fixed;
	width: 600px;
	height: 100%;
	right: -600px;
	top: 0;
	background-color: #fff;
	animation-delay: 1s;
	transition: right .5s;
	z-index: 1000;
	padding: 40px 0 60px 0;
	overflow-y: scroll;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	z-index: 9999;
}

#side-nav > .wrap .btn-toggle-nav-close {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 12px;
	top: 19px;
	background-image: url('../img/common/btn_nav_close.png');
	cursor: pointer;
}

#side-nav > .wrap .logo {
	margin: 0 0 40px 29px;
	padding-left: 200px;
	padding-top: 3px;
	height: 57px;
	background-image: url('../img/common/logo.png');
	background-size: auto 57px;
	background-position: left center;
	background-repeat: no-repeat;
}

#side-nav > .wrap .logo .vol {
	color: #000;
	font-weight: 500;
	display: block;
	line-height: 19px;
	margin-left: 0px;
	margin-top: -2px;
}

#side-nav > .wrap .logo .vol h1,
#side-nav > .wrap .logo .vol h2 {
	display: inline-block;
	font-size: 16px;
}

#side-nav > .wrap .logo .vol h1 {
	padding-right: 15px;
	margin-right: 10px;
	border-right: 1px solid;
}

#side-nav > .wrap .logo .vol h2 b {
	font-size: 22px;
}

#side-nav > .wrap .nav-content {
	margin-bottom: 45px;
}

#side-nav > .wrap .nav-content h3 {
	margin: 0 0 22px 32px;
	padding-bottom: 10px;
	color: #000;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 400;
	font-size: 16pt;
	border-bottom: 1px solid #e5e5e5;
}

#side-nav > .wrap .nav-content ul {
	margin: 0;
	list-style-type: none;
	padding-left: 0;
}

#side-nav > .wrap .nav-content ul > li > a {
	display: block;
	padding: 14px 0 12px 32px;
	color: #141414;
	background-color: #fff;
	transition: background-color .3s, color .3s;
}

#side-nav > .wrap .nav-content ul > li > a small {
	display: inline-block;
	font-family: "beanpoleotB", "Malgun Gothic", "sans-serif";
	letter-spacing: 0.00em;
	font-size: 22pt;
	padding-bottom: 0px;
	border-bottom: 1px solid;
	background-color: transparent;
	color: #2b93d1;
	transition: color .3s;
}

#side-nav > .wrap .nav-content ul > li > a span {
	display: block;
	font-size: 18px;
	letter-spacing: -0.06em;
	background-color: transparent;
	color: #000;
	transition: color .3s;
	margin-top: 6px;
}

#side-nav > .wrap .nav-content ul > li:hover > a span,
#side-nav > .wrap .nav-content ul > li:hover > a small {
	color: #0c5f90;
}

#side-nav > .wrap .nav-content ul > li.active > a,
#side-nav > .wrap .nav-content ul > li:hover > a {
	background-color: #ececec;
	color: #0c5f90;
}

#side-nav > .wrap .btn-wrap {
	border-top: 1px solid #e5e5e5;
	padding-top: 50px;
	margin-left: 30px;
}

#side-nav > .wrap .btn-wrap > .row {
	margin: 0;
}

#side-nav > .wrap .btn-x {
	position: relative;
	display: inline-block;
	width: 175px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	margin-right: 15px;
	background-color: #eeeeee;
	border: 1px solid #e5e5e5;
	color: #000;
	cursor: pointer;
}

#side-nav > .wrap .btn-x ul {
	display: none;
	width: 100%;
	padding: 0;
	list-style-type: none;
	position: absolute;
	background-color: #fff;
	border: 1px solid #eee;
	left: 0;
	bottom: 40px;
	margin: 0;
}

#side-nav > .wrap .btn-x.open ul {
	display: block;
}

#side-nav > .wrap .btn-x ul > li > a {
	display: block;
	padding: 4px 10px;
	color: #222;
	transition: background-color .5s, color .5s;
}

#side-nav > .wrap .btn-x ul > li:hover > a {
	background-color: #333;
	color: #fff;
}

#side-nav > .wrap .btn-x.btn-newsstand:after {
	display: block;
	content: '';
	border-left: 6px solid #363636;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -5px;
}

#side-nav > .wrap .btn-x.btn-prev:after {
	display: block;
	content: '';
	border-left: 5px solid #000;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
}

body.nav-open {
	overflow: hidden;
	font-family: "nanum-square-r", "Malgun Gothic", "sans-serif";
}

body.nav-open #side-nav {
	display: block;
}

body.nav-open #side-nav:before {
	display: block;
	content: '';
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 500;
}

body.nav-open #side-nav > .wrap {
	right: 0;
}

footer {
	/*display: flex;*/
	justify-content: center;
	padding: 60px 0 70px;
	background-color: #27264c;
}

footer .container {
	width: 1500px;
}

footer .wrap.m {
	display: none;
}

footer .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

footer .wrap .info {
	display: flex;
	align-items: center;
}

footer .wrap .info .data {
	font-size: 16px;
	line-height: 1.4em;
	color: #ffffff;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	/* font-weight: 300; */
	padding-left: 18px;
}

footer .wrap .sns {
	position: relative;
	margin-left: 300px;
}

footer .wrap .sns > a {
	margin-left: 0px;
}

footer .wrap .sns > a.pdf {
	margin-left: 71px;
}

footer .wrap .prev {
	position: relative;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
}

footer .wrap .prev:after {
	display: block;
	content: '';
	border-left: 5px solid #000;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
}

footer .wrap .prev .selectPrev {
	width: 140px;
	height: 44px;
	position: relative;
	padding: 8px 36px 8px 16px;
	border: 0;
	background-color: #ffffff;
	color: #ffffff;
	appearance: none;
	-webkit-appearance: none;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-size: 17px;
	outline: none;
	cursor: pointer;
	line-height: 28px;
}

footer .wrap .prev .selectPrev ul {
	display: none;
	width: 100%;
	padding: 0px;
	list-style-type: none;
	position: absolute;
	background-color: #ffffff;
	border: 1px solid #eee;
	left: 0;
	bottom: 44px;
	margin: 0;
	width: 141px;

}

footer .wrap .prev .selectPrev.open ul {
	display: block;
}

footer .wrap .prev .selectPrev ul > li > a {
	display: block;
	padding: 4px 10px;
	color: #000;
	transition: background-color .5s, color .5s;
}

footer .wrap .prev .selectPrev ul > li:hover > a {
	background-color: #333;
	color: #fff;
}

.article-list a .text-wrapper {
	overflow: hidden;
	position: absolute;
	bottom: 60%;
	left: 0%;
	width: 100%;
	text-align: center;
	transition: all 0.5s;
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 500;
}

.article-list a .text-wrapper .title {
	position: relative;
	font-size: 20px;
	color: #fff;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: auto;
	font-weight: bold;
	line-height: 1.3;
	/*display: inline-block;*/
	display: block;
	text-align: left;
	padding: 10px 0 0;
	white-space: nowrap;
}

.article-list a .text-wrapper .desc {
	font-size: 18px;
	line-height: 24px;
}

.article-list a .text-wrapper .desc::before {
	content: "";
	width: 30px;
	height: 1px;
	background-color: white;
	display: block;
	margin: 0;
	opacity: 0;
	transition: opacity 0.3s, margin 0.3s 0.3s;
}

.article-list a .text-wrapper .desc::before {
	/*opacity: 1;*/
	/*margin-top: 10px;*/
	/*margin-bottom: 10px;*/
	/*transition: margin 0.1s, opacity 0.3s 0.3s;*/
}

.article-list a .text-wrapper .desc {
	box-sizing: border-box;
	width: 100%;
	display: block;
	position: relative;
	left: 0;
	/* font-size: 14px; */
	color: #fff;
	margin-bottom: -10px;
	height: 40px;
	max-height: 0;
	white-space: nowrap;
	transition: max-height 0.6s;
	z-index: 9;
	word-break: keep-all;
}

.article-list a:hover .text-wrapper .desc {
	max-height: 100px;
	transition: max-height 0.8s;
}

@media screen and (max-width:1100px) {
	
	p {
    font-family: "NanumSquareNeo";
    letter-spacing: -0.02em;
    line-height: 1.7em;
    font-size: 17px !important;
}

	footer .wrap .info .data {
		font-size: 14px;
		line-height: 22px;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		font-weight: 300;
		padding-left: 34px;
	}

	#side-nav > .wrap .logo .vol {
		color: #000;
		font-weight: 500;
		display: block;
		line-height: 19px;
		margin-left: 0px;
		margin-top: 0px;
	}

	#side-nav > .wrap .nav-content ul > li > a {
		display: block;
		padding: 10px 0 8px 32px;
		color: #141414;
		background-color: #fff;
		transition: background-color .3s, color .3s;
	}

	#side-nav > .wrap .logo {
		margin: 0 0 30px 29px;
		padding-left: 200px;
		padding-top: 3px;
		height: 57px;
		background-image: url('../img/common/logo.png');
		background-size: auto 57px;
		background-position: left center;
		background-repeat: no-repeat;
	}

	#side-nav > .wrap .nav-content ul > li > a span {
		display: block;
		font-size: 17px;
		font-weight: 400;
		background-color: transparent;
		transition: color .3s;
		margin-top: 6px;
	}

	#side-nav > .wrap .nav-content ul > li > a small {
		display: inline-block;
		font-family: "beanpoleotL", "Malgun Gothic", "sans-serif";
		font-weight: 600;
		letter-spacing: 0.05em;
		font-size: 19pt;
		padding-bottom: 0px;
		border-bottom: 1px solid;
		background-color: transparent;
		transition: color .3s;
	}

	body {
		padding-top: 64px;
		font-size: 17px;
	}

	.container {
		padding: 0 10px;
	}

	header {
		height: 64px;
		padding: 0 10px;
	}

	header h1 {
		left: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	header .main > a {
		height: 64px;
		/* width: 160px; */
		padding-left: 140px;
		background-size: auto 41px;
		background-image: url(../img/common/logom.png);
	}

	header .main .vol {
		line-height: 17px;
		font-size: 14px;
		color: #000;
		font-weight: 500;
		padding: 0;
		padding-top: 1px;
	}

	header .main .vol small {
		font-size: 12px;
		color: #000;
	}

	header .story > a {
		height: 30px;
		width: 40px;
		padding-left: 40px;
		margin-left: 20px;
		margin-top: 5px;
		background-size: auto 21px;
	}

	header .story .vol {
		line-height: 14px;
		padding-top: 0px;
		font-size: 12pt;
		color: #000;
		font-weight: 500;
		padding-left: 10px;
	}

	header .only-logo {}

	header .only-logo > a {
		margin-top: 12px;
		/*margin-left: 15px;*/
		/*padding-left: 50px;*/
		background-image: url(../img/common/logo_mobile.png);
		width: 39px;
		height: 39px;
		background-size: 39px 39px;
	}

	header .only-logo .vol {
		display: none;
	}

	header .head {
		display: none;

	}

	header .title {
		padding-top: 22px;
		font-weight: 600;
	}

	header .cover-nav {
		display: none;
	}

	header .btn-toggle-nav {
		right: 0px;
		top: 50%;
		margin-top: -12px;
	}

	footer .wrap {
		flex-wrap: wrap;
	}

	footer .wrap .info {
		flex-wrap: wrap;
	}

	footer .wrap .info .logo {
		width: 100%;
		text-align: center;
		margin-bottom: 28px;
	}

	footer .wrap .info .data {
		text-align: center;
		line-height: 25px;
		margin-bottom: 20px;
		padding-left: 0;
	}

	footer .wrap .prev {
		margin: 0 auto;
		text-align: center;
	}

	footer .wrap .prev select {
		padding: 10px 36px 10px 16px;
		margin: 0 auto;
	}

	#side-nav > .wrap {
		width: 90%;
		padding-top: 60px;
	}

	#side-nav > .wrap .logo {
		margin-left: 30px;
		padding-left: 140px;
		background-size: auto 40px;
		height: 40px;
	}

	#side-nav > .wrap .logo .vol h1,
	#side-nav > .wrap .logo .vol h2 {
		font-size: 13px;
		margin-top: 5px;
	}

	#side-nav > .wrap .btn-toggle-nav-close {
		right: 23px;
		top: 23px;
	}

	#side-nav > .wrap .nav-content h3 {
		margin-left: 30px;
	}

	#side-nav > .wrap .nav-content ul > li > a {
		padding-left: 30px;
	}

	#side-nav > .wrap .btn-wrap {}

	#side-nav > .wrap .btn-x {
		margin: 6px 0;
	}
}

@media screen and (max-width:1100px) {

	section,
	#include-header,
	#include-footer {
		width: 100%;
	}

	.container {
		margin: 0;
		width: auto;
	}

	header {
		width: 100vw;
	}

	header h1 .vol {
		display: block;
		font-size: 19pt;
		font-weight: 500;
		line-height: 19px;
		color: #000;
		padding-top: 40px;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
	}

	.top-title {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		top: 17px;
		font-size: 17pt;
		width: 100vw;
	}

	.top-title.main {
		display: none;
	}

	.top-title.section2 {
		top: 15px;
	}

	.top-title.section2 > h1 {
		font-size: 10px;
		line-height: 11pt;
	}

	.top-title.section2 > h2 {
		font-size: 17px;
		color: red;
		margin: 0;
	}


	.lh30px {
		line-height: 30px !important;
	}

	footer {
		padding: 20px 0;
	}

	footer .container {
		margin: 0;
		padding: 0;
		width: auto;
		height: auto;
	}

	footer .wrap {
		display: none;
	}

	footer .wrap .sns {
		display: none;
	}

	footer .wrap.m {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	footer .wrap.m > .info {
		display: flex;
		justify-content: center;
	}

	footer .wrap.m .sns > a.pdf {
		display: none;
	}

	footer .wrap.m .prev {
		margin: 20px 0;
		margin-bottom: 40px;
	}

	footer .wrap .sns > a:first-child {
		margin-right: 0px;
	}
}

@media screen and (max-width:1200px) {
	footer {
		padding: 20px 0;
	}

	footer .container {
		margin: 0;
		padding: 0;
		width: auto;
		height: auto;
	}

	footer .wrap {
		display: none;
	}

	footer .wrap .sns {
		display: none;
	}

	footer .wrap.m {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	footer .wrap.m > .info {
		display: flex;
		justify-content: center;
	}

	footer .wrap.m .sns > a.pdf {
		display: none;
	}

	footer .wrap.m .prev {
		margin: 20px 0;
		margin-bottom: 20px;
	}

	footer .wrap .sns > a:first-child {
		margin-right: 0px;
	}
}


.article-footer .container . article-slide-wrap .article-slide-list .img-wrap {
	width: 100%;
	height: 0;
	padding-top: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
}
