.ptn2 {
	background-image: url(../img/common/lines_r.png);
	background-repeat: repeat;

}

.section2 {
	background-image: url(../img/common/bg1.png);
	background-repeat: repeat;
	background-size: cover;
	padding: 90px 0 90px;

}

.section4 {
	background-image: url(../img/common/bg2.png);
	background-repeat: repeat;
	background-size: cover;
	padding: 90px 0 90px;

}

@media screen and (max-width: 767px) {
	.section2 {
		background-image: url(../img/common/bg1.png);
		background-repeat: no-repeat;
		background-size: cover;
		padding: 35px 0 25px;

	}

	.section4 {
		background-image: url(../img/common/bg2.png);
		background-repeat: no-repeat;
		background-size: cover;
		padding: 20px 0 20px;

	}

}

.ptn {
	background-image: url(../img/common/block.png);
	background-repeat: repeat;
}

/* =========================================
          무한 흐르는 텍스트 애니메이션 시작
     ========================================= */

.main_tt {
	width: 100%;
	overflow: hidden;
	/* 영역 밖으로 나가는 글자 숨김 */
	background-color: transparent;
	/* 배경색 필요시 지정 */
	white-space: nowrap;
	/* 줄바꿈 방지 */
	display: flex;
}

.rolling_wrap {
	display: flex;
	width: fit-content;
	animation: marquee 180s linear infinite;
	/* 30초 동안 무한 반복 (속도 조절 가능) */
}

.main_tt p {
	display: flex;
	font-family: 'Paperozi7', sans-serif;
	font-size: 80px;
	color: #f0f0f0;
	margin: 0;
	padding: 0;
}

.main_tt p span {
	padding: 0 20px;
	/* 글자 사이의 간격 조절 */
}

/* 애니메이션 핵심: 전체 너비의 절반(50%)만큼 좌측으로 이동 */
@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}



/* =========================================
          뒤집히는 카드 메뉴 시작
     ========================================= */


.card-container {
	display: flex;
	gap: 17px;
	/* perspective: 1200px; */
	flex-wrap: wrap;
	justify-content: center;
}

.card-wrapper {
	width: 482px;
	height: 400px;
	cursor: pointer;
}

.card {
	width: 482px;
	height: 400px;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.card-wrapper:hover .card {
	transform: rotateY(180deg);
}

.card-face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 7px;
	overflow: hidden;
	background-color: #fff;
}

/* --- 앞면 --- */
.card-front {
	display: flex;
	flex-direction: column;
}

.card-image {
	width: 100%;
	height: 336px;
	/* object-fit: cover; */
}

.card-title-front {
	height: 17%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	font-family: 'beanpoleotM';
	color: #1f2937;
	background-color: #fff;
	border-top: 1px solid #f3f4f6;
	padding: 21px 0 15px 0;
}

/* --- 뒷면 --- */
.card-back {
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 25px 25px 18px;
	box-sizing: border-box;
	text-align: center;
	background: rgba(255, 255, 255, 0.9)
}

/* =========================================
           [수정됨] 이동 없이 투명도만 조절하는 애니메이션
        ========================================= */

/* 1. 공통 초기 상태: 투명도 0 (위치 이동 없음) */
.back-badge,
.back-title,
.back-content,
.back-button {
	opacity: 0;
	/* transform 제거됨 */
	transition: opacity 0.3s ease-out;
}

/* 2. 호버 상태: 투명도 1 + 순차적 딜레이 */

/* 배지: 0.3초 대기 후 등장 */
.card-wrapper:hover .back-badge {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.3s;
}

/* 제목: 0.4초 대기 후 등장 */
.card-wrapper:hover .back-title {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.4s;
}

/* 내용: 0.5초 대기 후 등장 */
.card-wrapper:hover .back-content {
	opacity: 1;
	transition: opacity 0.5s ease-out;
	transition-delay: 0.5s;
}

/* 버튼: 0.6초 대기 후 등장 */
.card-wrapper:hover .back-button {
	opacity: 1;
	/* 배경색 전환 효과는 별도로 지정하여 딜레이 영향을 받지 않게 조정 */
	transition: opacity 0.5s ease-out, background-color 0.2s ease;
	transition-delay: 0.6s, 0s;
	/* opacity는 0.6s 딜레이, bg-color는 즉시 반응 */
}

/* 요소 스타일 */
.back-badge {
	background-color: #28478b;
	color: white;
	font-family: 'beanpoleotM';
	padding: 12px 12px 1px;
	border-radius: 3px;
	/* font-weight: 700; */
	font-size: 27px;
	letter-spacing: 0em;
	line-height: 1.0em;
	align-self: center;
	margin-bottom: 20px;
}

.back-title {
	font-family: 'Paperozi6';
	font-size: 25px;
	margin: 0 0 10px 0;
	color: #111827;
	line-height: 1.35em;
	word-break: keep-all;
}

.back-content {
	font-size: 18px;
	color: #4b5563;
	text-align: justify;
	line-height: 1.6em;
	margin-bottom: 20px;
	letter-spacing: -0.04em;
	margin-top: 6px;
	flex-grow: 1;
}

.back-button {
	background-color: #c2c2c2;
	color: white;
	padding: 11px 16px;
	border: none;
	border-radius: 3px;
	font-family: 'Paperozi5';
	font-size: 19px;
	line-height: 1.0em;
	letter-spacing: 0.02em;
	cursor: pointer;
	align-self: center;
	text-decoration: none;
	display: inline-block;
}

.back-button:hover {
	background-color: #999999;
	/* 버튼 호버 시에는 딜레이 없이 즉각 반응해야 함 */
	transition-delay: 0s;
	color: #ffffff;
}

/* =========================================
          뒤집히는 카드 메뉴 끝
     ========================================= */





/* 카드 컨테이너: 3개 가로 배치 */

.sub_interview {
	font-size: 40px;
	font-family: 'Paperozi7';
	color: #c6c6c6;
}

.exp-cards {
	display: flex;
	gap: 20px;
	min-height: 260px;
	height: 390px;
}

/* 개별 카드 기본 상태 */
.exp-card {
	flex: 1;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition:
		flex 0.35s ease,
		transform 0.35s ease;
}

/* 왼쪽 이미지: 처음에는 100% */
.exp-card-media {
	width: 100%;
	transition: width 0.35s ease;
}

.exp-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 오른쪽 텍스트 영역: 컨테이너(폭만 애니메이션) */
.exp-card-body {
	width: 0;
	max-width: 0;
	flex: 0 0 auto;
	opacity: 0;
	overflow: hidden;
	border-left: none;
	background-color: #ffffff;
	transition:
		width 0.3s ease,
		opacity 0.4s ease;
}

/* 실제 패딩·콘텐츠는 안쪽 래퍼에만 적용 */
.exp-card-inner {
	opacity: 0;
	/* 텍스트는 기본적으로 보이지 않음 */
	padding: 22px 28px 24px 22px;
	box-sizing: border-box;
	transition: opacity 0.25s ease;
	/* 텍스트 fade-in/out */
}

/* 태그/텍스트 스타일 */
.exp-card-tag {
	display: inline-block;
	font-family: 'Paperozi6';
	padding: 7px 8px 7px;
	font-size: 19px;
	border-radius: 3px;
	background-color: #f53232;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.0em;
}

.exp-card-title {
	font-size: 27px;
	font-family: 'Paperozi6';
	letter-spacing: -0.02em;
	line-height: 1.3em;
	margin: 9px 0 10px;
	color: #222;
}

.exp-card-text {
	font-size: 18px;
	color: #666;
	line-height: 1.6em;
	margin: 12px 0 16px;
	letter-spacing: -0.03em;
}

.exp-card-text1 {
	font-size: 18px;
	color: #666;
	line-height: 1.55em;
	margin: 0px 0 35px;
	letter-spacing: -0.03em;
	border-top: 1px dotted #9f9f9f;
	padding-top: 12px;
	display: inline-block;
}

.exp-card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 20px 7px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 3px;
	border: 1px solid #e23d4e;
	line-height: 1.1em;
	color: #e23d4e;
	font-family: 'Paperozi5';
	background: #fff;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.exp-card-link:hover,
.exp-card-link:focus-visible {
	background: #e23d4e;
	color: #fff;
}



/* ===========================
   호버 동작
   =========================== */

/* 마우스가 exp-cards 안으로 들어오면:
   기본 카드들은 flex 1 → 0.6으로 부드럽게 줄어듦 */
.exp-cards:hover .exp-card {
	flex: 0.6;
}

/* 실제 호버된 카드만 flex 1.4로 커짐 */
.exp-cards:hover .exp-card:hover {
	flex: 1.4;
}

/* 호버된 카드 안에서:
   이미지는 40%, 텍스트는 60% */
.exp-cards:hover .exp-card:hover .exp-card-media {
	width: 40%;
}

.exp-cards:hover .exp-card:hover .exp-card-body {
	width: 60%;
	max-width: 60%;
	opacity: 1;
	border-left: 1px solid #eee;
}

/* 마우스를 완전히 빼면(컨테이너에서 :hover 해제):
   카드 폭은 다시 flex: 1 1 0 으로 부드럽게 복구 */
.exp-cards:not(:hover) .exp-card {
	flex: 1 1 0;
	transform: none;
}

/* 텍스트 영역은 그냥 폭만 0으로 접히고, opacity도 같이 0 */
.exp-cards:not(:hover) .exp-card .exp-card-body {
	opacity: 0;
	width: 0;
	max-width: 0;
	border-left: none;
}

/* 포커스 접근성 */
.exp-card:focus-within {

	outline-offset: 2px;
}

.exp-cards:hover .exp-card:hover .exp-card-inner {
	opacity: 1;
	/* 박스가 펼쳐진 뒤 자연스럽게 나타남 */
	transition-delay: 0.35s;
	/* width(0.35초) 애니메이션 끝난 후 동작 */
}

.exp-cards:not(:hover) .exp-card .exp-card-inner {
	opacity: 0;
	transition-delay: 0s;
}

/* 반응형: 좁은 화면에서는 세로 나열 */
@media (max-width: 991px) {
	.exp-cards {
		flex-direction: column;
	}

	.exp-cards:hover .exp-card,
	.exp-cards .exp-card {
		flex: 1 1 auto;
	}

	.exp-card {
		flex-direction: column;
	}

	.exp-card-media {
		width: 100%;
	}

	.exp-card-body {
		width: 100%;
		max-width: 100%;
		opacity: 1;
		border-left: none;
		display: none;
	}

	.exp-card-inner {
		padding: 16px 18px;
	}

	.exp-card-media .exp-media-title {
		position: absolute;
    left: 7px !important;
    bottom: 9px !important;
    padding: 12px 10px 2px !important;
    border-radius: 3px !important;
    font-size: 24px !important;

	}
	.exp-cards .exp-card {
        width: calc(50% - 5px) !important;
        flex: none !important;
        flex-direction: column !important;
        margin-bottom: 10px;
    }
	
	/* 1. 카드 전체 클릭 가능하도록 포인터 변경 및 애니메이션 차단 */
    .exp-cards .exp-card {
        cursor: pointer;
        flex: none !important; /* 호버 시 폭 변화 차단 */
        transform: none !important;
    }
	/* 1. 카드 뒤집기 애니메이션 및 호버 효과 완전 제거 */
    .card-wrapper:hover .card {
        transform: none !important;
    }
    
    .card {
        transform: none !important;
        transition: none !important;
        cursor: pointer;
        height: auto !important;
        min-height: 0 !important;
    }
	
	.card-wrapper,
			.card {
				width: 100% !important;
				height: auto !important;
				/* 고정 높이 해제 */
			}

    /* 2. 카드 뒷면(텍스트 영역) 모바일에서 숨기기 */
    .card-face.card-back {
        display: none !important;
    }

    /* 3. 카드 앞면을 정면으로 고정하고 레이아웃 정돈 */
    .card-face.card-front {
        position: relative !important;
        backface-visibility: visible !important;
    }

   /* 5. 카드 앞면 이미지 높이 조절 */
			.card-image {
				height: 165px !important;
				object-fit: cover;
			}


    .card-title-front {
        font-size: 24px !important;
        padding: 12px 0 3px!important;
        height: auto !important;
    }


	
}

/* exp-card 이미지 영역 기준 잡기 */
.exp-card-media {
	position: relative;
	overflow: hidden;
	/* 이미지 축소/확대해도 타이틀 잘림 방지 */
}

/* 이미지 우측하단 고정 타이틀 */
.exp-card-media .exp-media-title {
	position: absolute;
	left: 10px;
	bottom: 13px;
	z-index: 3;
	font-family: 'beanpoleotM';
	padding: 12px 10px 0px;
	border-radius: 5px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 32px;
	line-height: 1.0em;
	letter-spacing: -0.01em;

	/* 호버 시에도 “움직이지 않게” */
	transform: none !important;
	pointer-events: none;
}

/* (선택) 가독성 더 올리고 싶으면 아래 그라데이션도 같이 */
.exp-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 55%);
	pointer-events: none;
}


/* 1) 텍스트 박스(hover로 펼쳐지는 영역)를 기준점으로 */
.exp-card-body {
	position: relative;
}

/* 2) 버튼을 항상 하단에 고정 */
.exp-card-link {
	position: absolute;
	left: 28px;
	/* exp-card-inner padding-left랑 동일하게 */
	/* 버튼을 박스 폭에 맞추려면 */
	bottom: 20px;
	/* 바닥 여백 */
	margin: 0 !important;
	z-index: 5;
}

/* 3) 카드1처럼 <div><a></a></div>로 감싸진 경우도 같이 고정 */
.exp-card-inner > div:last-child {
	position: static;
	/* 레이아웃 간섭 방지 */
}



/* 메뉴3 섹션 */
.health-zip-section {
	width: 100%;
}


/* 카드 */
.health-card {
	position: relative;
	/* 텍스트를 카드 안에서 절대 위치로 쓰기 위해 필요 */
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 350px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.health-card-img {
	position: relative;
	overflow: hidden;
	flex: 0 0 auto;
	cursor: pointer;
}

.health-card-img img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .5s ease;
	transform-origin: center center;
}

.health-card:hover .health-card-img img {
	transform: scale(1.03);
}

/* 텍스트 영역 : 카드 하단에 겹쳐지는 박스 */
.health-card-text {
	position: absolute;
	/* 카드 안에서 겹쳐지도록 */
	left: 0;
	right: 0;
	bottom: 0;
	background: #f3f3f3;
	padding: 21px 20px 15px;
	overflow: hidden;
	max-height: 70px;
	/* 기본: 제목만 보이는 높이 */
	transition: max-height .4s ease;
	cursor: pointer;
}

.health-card-title {
	font-size: 32px;
	font-family: 'beanpoleotM';
	color: #111;
	margin: 0;
	white-space: nowrap;
	/*overflow: hidden;*/
	text-overflow: ellipsis;
}

.health-card-detail {
	font-family: 'Paperozi5';
	line-height: 1.6;
	letter-spacing: -0.02em;
	color: #6c6c6c;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s ease, transform .5s ease;
}

.health-card-detail p {
	font-size: 19px;
	font-family: 'Paperozi5';
	line-height: 1.4em;
	letter-spacing: -0.01em;
	color: #929292;
	margin-top: 5px;
}



/* 버튼 영역 */
.health-card-footer {
	margin-top: 14px;
	display: flex;
	justify-content: flex-start;
}

.health-card-footer .read-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 15px;
	font-size: 17px;
	font-weight: 500;
	border-radius: 3px;
	border: 1px solid #e23d4e;
	line-height: 1.1em;
	color: #e23d4e;
	background: #fff;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.health-card-footer .read-btn:hover,
.health-card-footer .read-btn:focus-visible {
	background: #e23d4e;
	color: #fff;
}

/* 호버 시 텍스트 박스가 '위로' 확장되면서 이미지 아랫부분을 덮음 */
.health-card:hover .health-card-text {
	max-height: 220px;
	background-color: #f1f6ff;
	/* 내용 길이에 맞춰 조절 */
}

.health-card:hover .health-card-detail {
	opacity: 1;
	transform: translateY(0);
}



/* =========================
   건강 ZIP: Swiper 제거 → 리스트(나열)로 대체
   ========================= */

/* 기존 wrapper는 유지(폭/여백감 유지용) */
.health-zip-swiper-wrap {
	position: relative;
	overflow: visible;
}

/* ✅ Swiper 대신 리스트 그리드 */
.health-zip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	justify-content: space-between;
}

/* PC에서 3개가 보이던 느낌 유지 */
@media (min-width: 1024px) {
	.health-zip-list .health-card {
		width: calc((100% - 40px) / 4);
		/* gap 20px * 2 */
	}
}

/* 태블릿 */
@media (max-width: 1023px) {}

/* 모바일(기존 Swiper가 1.1개 보이던 느낌을 “1개 카드”로) */
@media (max-width: 767px) {

	.sec_con_left ul {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
		gap: 10px;
	}


	.health-card {
		height: 157px;
		width: 47%;
		border-radius: 5px;
	}

	.health-zip-list {
		gap: 10px;
		padding: 0px 0px 0px;
	}


	.health-zip-list .health-card {
		width: calc((100% - 10px) / 2);
	}


	.health-card-text {
		position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 10px 10px 10px;
        overflow: hidden;
        max-height: 35px;
        transition: max-height .4s ease;
        cursor: pointer;
	}

	.health-card-title {
		font-size: 24px;
		text-align: center;
		font-family: 'beanpoleotM';
		color: #111;
		margin: 0;
		white-space: nowrap;
		/*overflow: hidden;*/
		text-overflow: ellipsis;
	}

	.cover_btn p span {
		font-size: 18px !important;
		border: 1px solid #ffffff;
		padding: 6px 13px 6px 13px;
		font-family: 'Paperozi5';
		letter-spacing: -0.01em;
	}
	
	 .health-zip-list .health-card {
        width: calc(50% - 5px) !important;
        height: auto !important;
        margin-bottom: 10px;
    }
	

}

/* ✅ Swiper 전용 요소(닷/화살표) 안 쓸거면 숨김 처리 */
.health-zip-swiper .swiper-pagination,
.health-zip-arrow,
.health-zip-prev,
.health-zip-next {
	display: none !important;
}

.wrapper_menu {
	width: 1480px;
	margin: 0 auto;
}


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

section.cover {
	display: flex;
	/*justify-content: center;*/
	align-items: center;
	/*flex-shrink: 1;*/
	width: 100%;
}

.mlast {
	margin-right: 0px !important;
}

section.cover .container {
	display: flex;
	justify-content: center;
	align-items: center;
	/*flex-shrink: 1;*/
	width: 100%;
}

section.cover .banner {
	display: flex;
	justify-content: center;
	align-items: center;
	/*flex-shrink: 1;*/
	max-width: 1840px;
}

section.cover .banner .left {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	/*flex-shrink: 1;*/

	overflow: hidden;
	background-color: #d4ecea;
	padding-top: 77px;
	padding-bottom: 47px;
	width: 370px;
	height: 641px;
	z-index: 1;
}

section.cover .banner .left .vol {
	display: flex;
	justify-content: left;
	align-items: flex-end;
}

section.cover .banner .left .vol > h1,
section.cover .banner .left .vol > h2 {
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 500;
	font-size: 17px;
	text-align: right;
	margin-top: 20px;
}

section.cover .banner .left .vol > h1 {
	border-right: solid 1px;
	padding-right: 12px;
}

section.cover .banner .left .vol > h2 {
	font-weight: 400;
	padding-left: 12px;
}

section.cover .banner .left .vol > h2 > b {
	font-weight: 500;
	font-size: 23px;
}

section.cover .banner .center {
	display: block;
	max-width: 1470px;
}

section.cover2 {
	display: block;
	position: relative;
	text-align: left;
	height: 700px;
}

section.cover2 .container {
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	flex: 1;
}

section.cover2 .title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;

	/*position: absolute;*/
	/*display: block;*/
	background-color: #fde1e1;
	padding-top: 77px;
	padding-bottom: 47px;
	width: 370px;
	height: 641px;
	max-width: 370px;
	min-width: 370px;
	max-height: 641px;
	z-index: 1;
}

section.cover2 .title .vol {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

section.cover2 .title .vol > h1,
section.cover2 .title .vol > h2 {
	font-family: "s-core", "Malgun Gothic", "sans-serif";
	font-weight: 500;
	font-size: 17px;
	text-align: right;
	margin-top: 20px;
}

section.cover2 .title .vol > h1 {
	border-right: solid 1px;
	padding-right: 12px;
}

section.cover2 .title .vol > h2 {
	font-weight: 400;
	padding-left: 12px;
}

section.cover2 .cover-slide {
	display: block;
	/*width:1840px;*/
	/*width:1470px;*/
	min-width: 1500px;
	max-width: 1500px;
	/*right: 0;*/
}

.cover-slide {
	display: block;
}

.cover-slide .slide-wrap {
	padding: 0px;
	margin: 0%;
	position: relative;
}

.cover-slide .slide-wrap .lSSlideOuter {
	position: relative;
}

.cover-slide .slide-wrap .lSSlideOuter .lSPager {
	position: absolute;
	right: 45.2%;
	bottom: 11px;
}

.cover-slide .slide-wrap .lSSlideOuter .lSPager > li a,
.cover-slide .slide-wrap .lSSlideOuter .lSPager > li:hover a {
	width: 50px;
	height: 7px;
	background-color: #fff;
	border-radius: 0;
}

.cover-slide .slide-wrap .lSPager > li.active a,
.cover-slide .slide-wrap .lSPager > li.active:hover a {
	background-color: #f7ff1e !important;
}

.cover-slide .slide-wrap .lSAction > .lSPrev {
	background-position: 0 0;
	background-image: url(../img/all/lSPrev.png);
	background-size: 22px 65px;
	width: 22px;
	height: 65px;
	left: 40px;
}

.cover-slide .slide-wrap .lSAction > .lSNext {
	background-position: 0;
	background-image: url(../img/all/lSNext.png);
	background-size: 22px 65px;
	width: 22px;
	height: 65px;
	right: 40px;
}

.cover-slide .slide-wrap .slide-list {}

.cover-slide .slide-wrap .slide-list .slide {
	display: block;
}

.cover-slide .slide-wrap .slide-list .slide > img. {
	width: 100%;
}

section.section1 .stories a img,
section.section2 .stories a img,
section.section3 .stories a img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px 6px 0px 0px;
}

/*

section.section1 {
	padding-bottom: 80px;
}


section.section1 .title h1 {
    font-family: "s-core", "Malgun Gothic", "sans-serif";
    font-weight: 300;
    font-size: 30px;
    border-bottom: 1px solid black;
    padding: 0px;
    height: 43px;
}

section.section1 .stories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
	margin: 0 auto;
	    width: 1500px;
}

section.section1 .image-only {
    height: 340px;
}


section.section1 a {
    display: inline-block;
    position: relative;
    margin-right: 28px;
    margin-bottom: 40px;
}


section.section1 a:hover {
    background-color: #faf5e1;
	border-radius: 0px 0px 6px 6px;
}

section.section1 a > .text {
    height: 110px;
    font-family: "s-core", "Malgun Gothic", "sans-serif";
    color: black;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: 18px;

}

section.section1 a > .text > h1 {
    font-size: 35px;
    margin-top: 11px;
    width: fit-content;
    border-bottom: 1px solid #a1abd4;
    padding-bottom: 0px;
    font-family: "beanpoleotM", "Malgun Gothic", "sans-serif";
}

section.section1 a:hover > .text > h1 {
    color: #a08417;
	border-bottom: 1px solid #a08417;
}
section.section1 a:hover > .text > h2 {
    color: #a08417;
}


section.section1 a > .text > h2 {
    font-weight: 400;
    font-size: 19px;
    width: fit-content;
    margin-top: 6px;
    margin-bottom: 10px;
	letter-spacing: -0.05em;
}
*/

section.section3 {}




section .article-list {}

section .article-list a > .image {
	position: relative;

}

section .article-list a > .image:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity .3s;
	border-radius: 6px 6px 0px 0px;
}

section .article-list a:hover > .image:before {
	opacity: 1;
}

#include-footer {
	/*padding-left: 180px;*/
}

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

	section.section1 a > .text {
		height: 100px;
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		color: black;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		margin-top: 18px;

	}


	section.section1 a > .text > h1 {
		font-weight: 500;
		font-size: 25px;
		margin-top: 0;
		width: fit-content;
		border-bottom: 1px solid #4ecbea;
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	section.section1 a:hover > .text > h1 {
		color: #2d9a94
	}

	section.section1 a > .text > h2 {
		font-weight: 400;
		font-size: 15px;
		width: fit-content;
		margin-top: 0;
		line-height: 1.4em;
		margin-bottom: 10px;
	}

	section.section2 a > .text > h1 {
		font-weight: 500;
		font-size: 17px;
		margin-top: 0;
		width: fit-content;
		border-bottom: 1px solid #4ecbea;
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	section.section2 a:hover > .text > h1 {
		color: #2d9a94
	}

	section.section2 a > .text > h2 {
		font-weight: 400;
		font-size: 16px;
		width: fit-content;
		margin-top: 0;
		line-height: 1.4em;
		margin-bottom: 10px;
		line-height: 23px;
	}

	section.section3 a > .text > h1 {
		font-weight: 500;
		font-size: 17px;
		width: fit-content;
		margin-top: 0px;
		border-bottom: 1px solid #4ecbea;
		padding-bottom: 5px;
		margin-bottom: 5px;
	}

	section.section3 a:hover > .text > h1 {
		color: #2d9a94
	}

	section.section3 a > .text > h2 {
		font-weight: 400;
		font-size: 16px;
		width: fit-content;
		margin-top: 0;
		line-height: 1.4em;
		margin-bottom: 10px;
		line-height: 23px;
	}

	.cover-slide .slide-wrap .lSAction > .lSPrev {
		background-position: 0 0;
		background-image: url(../img/all/lSPrev.png);
		background-size: 22px 65px;
		width: 22px;
		height: 65px;
		left: 1px;
	}

	.cover-slide .slide-wrap .lSAction > .lSNext {
		background-position: 0;
		background-image: url(../img/all/lSNext.png);
		background-size: 22px 65px;
		width: 22px;
		height: 65px;
		right: 1px;
	}

	section.cover {
		display: block;
		position: relative;
		width: auto;
	}

	section.cover .container {
		padding: 0;
	}

	section.cover .banner {
		display: flex;
		justify-content: center;
		width: auto;
	}

	section.cover .banner .left {
		display: none;
	}

	section.cover .banner .left .vol > h1,
	h2 {
		padding: 0;
		font-size: 13px;
	}

	section.cover .banner .left .vol > h2 {
		font-size: 13px;
	}

	section.cover .banner .center {
		width: 100vw;
		max-width: 100vw;
	}

	section.cover2 {
		height: auto;
		margin-bottom: 20px;
		padding: 0 10px;
	}

	section.cover2 .title {
		display: none;
	}

	section.cover2 .cover-slide {
		width: 100%;
		max-width: 100%;
		min-width: auto;
	}

	.cover-slide .slide-wrap {
		padding: 0;
	}

	.cover-slide .slide-wrap .lSSlideOuter .lSPager {
		width: 100%;
		right: 0;
		bottom: 15px;
	}

	section .article-list {
		width: auto;
		padding: 0 17px;
	}

	section .article-list a > .image {
		display: flex;
		justify-content: flex-start;
		width: auto;
		height: auto;
	}

	section.section1 .container,
	section.section2 .container,
	section.section3 .container {
		display: flex;
		flex-direction: column;
		width: auto;
		height: auto;
		margin: 0;
		padding: 10px;
	}

	section.section1 .title,
	section.section2 .title,
	section.section3 .title {
		margin: 0;
		padding: 0;
		width: auto;
		height: auto;
	}

	section.section1 .title h1,
	section.section2 .title h1,
	section.section3 .title h1 {
		font-size: 24px;
		margin-bottom: 30px;
		margin-top: 31px;
	}

	section.section1 .title h1,
	section.section1 .title h2,
	section.section1 .title h3 {
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		font-weight: 400;
		font-size: 23px;
		border-bottom: 1px solid black;
		padding: 0px;
		height: 37px !important;
	}

	section.section2 .title h1,
	section.section2 .title h2,
	section.section2 .title h3 {
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		font-weight: 400;
		font-size: 23px;
		border-bottom: 1px solid black;
		padding: 0px;
		height: 37px !important;
	}

	section.section3 .title h1,
	section.section3 .title h2,
	section.section3 .title h3 {
		font-family: "s-core", "Malgun Gothic", "sans-serif";
		font-weight: 400;
		font-size: 23px;
		border-bottom: 1px solid black;
		padding: 0px;
		height: 37px !important;
	}



	section.section1 .stories,
	section.section2 .stories,
	section.section3 .stories {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 0;
		width: auto;
		height: auto;
	}

	section.section1 .stories a,
	section.section2 .stories a,
	section.section3 .stories a {
		margin: 0;
		padding: 0;
		width: 48.5%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	/*
	section.section1 .stories a:nth-child(1){
        margin-top: 30px;
        width: 100%;
      
    }
	
	section.section1 .stories a:nth-child(6){
        
        width: 100%;
      
    }*/




	section.section1 .stories a:nth-child(7) {

		width: 100%;

	}

	section.section1 .stories a:nth-child(8) {

		width: 100%;

	}







	section.section1 a > .text.top {
		height: 80px;
		display: block !important;

	}

	section.section1 {
		padding-bottom: 0px;
	}



	section.section1 .stories a img,
	section.section2 .stories a img,
	section.section3 .stories a img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	section.section1 .stories a > .text > h2,
	section.section2 .stories a > .text > h2,
	section.section3 .stories a > .text > h2 {
		text-align: center;
	}

	section.section1 .stories .image-only {
		height: 130px;
	}

	#include-footer {
		padding-left: 0;
	}
}
