@charset "utf-8";

/* ================================================================== */
/* Name	: main_2022.css
/* Script : Layout, Main CSS
/* Author : Design Geulggol
/* Date	: 2022-05-24
/* ================================================================== */

/* ----------------------------- */
/* Layout
/* ----------------------------- */

h3 {
	word-break: keep-all;
}
.main_wrap {
	display:flex;
}

/* ----------------------------- */
/* GNB
/* ----------------------------- */
.gnb-wrap {
	width:65%;
	background:#fff;
	position:absolute;
	top:0;
	right:0;
}


/* ----------------------------- */
/* 좌측 웹진표지부분
/* ----------------------------- */
.book-cover-wrap {
	width:35%;
	background:#f5f5f5;
	position:relative;
}
.book-cover {
	width:100%;
	transition: all 0.4s ease; 
}
.book-cover .webzine-vol {
	width:100%;
	font-size:2.2rem;
	font-weight: 700;
	padding:30px 20px;
	display:flex;
	align-items: center;
	position:absolute;
	z-index: 90;
	bottom:0;
	left:0;
}
.book-cover .webzine-vol > span span {
	color:#f26ca6;
}
.book-cover .webzine-vol > span.line {
	width: 65%;
	height: 1px;
	margin: 0 auto;
	background:#7a7a7a;
}
.book-cover .webzine-vol > span:last-child {
	font-weight:300;
	margin-left:auto;
	display:block;
}

.book-cober-absolute {
	position:absolute;
}


/* ----------------------------- */
/* 우측 콘텐츠 부분
/* ----------------------------- */
/* layout */
.main_wrap > div.main-contents-wrap {
	width:65%;
	padding-top:175px;
}

/* 공통 */
.block-text {
	display:inline-block;
	position:relative;
}
.main-inner {
	margin:0 6%;
}
.block-text::after {
	content:'';
	width:100%;
	height:18px;
	background:#f0e5fc;
	display:inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -11;
}
.col-2 {
	display:flex;
	flex-wrap: wrap;
}
.col-2 > * {
	width:calc(100% / 2 - (7% / 2) - 1px);
	margin-right:7%;
	margin-bottom:7%;
}
.col-2 > *:nth-child(2n) {
	margin-right:0;
}


.main_wrap > div.main-contents-wrap > p {
	font-family: 'NanumMyeongjoBold', sans-serif;
	margin-bottom:35px;
}

/* 김해, 문화 타이틀 */
.main_wrap > div.main-contents-wrap > div > header {
	font-size:3.2rem;
	font-weight:600;
	color:#fff;
	background:#6147d2;
	padding:25px;
	margin-bottom:6%;
	position:relative;
}
.main_wrap > div.main-contents-wrap > div > header.kimhae {
	color:#000;
	background:#fbef6c;
	margin-top:6%;
}
.main_wrap > div.main-contents-wrap > div > header .more {
	width:50px;
	height:50px;
	border-radius:50%;
	background:#fff;
	display:block;
	position:absolute;
	top:50%;
	right:25px;
	transform: translateY(-50%);
	overflow:hidden;
	text-indent: -1000px;
}
.main_wrap > div.main-contents-wrap > div > header .more::before,
.main_wrap > div.main-contents-wrap > div > header .more::after {
	content:'';
	background:#7a7a7a;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
}
.main_wrap > div.main-contents-wrap > div > header .more::before {
	width:50%;
	height:1px;
	transform: translateX(-50%);
}
.main_wrap > div.main-contents-wrap > div > header .more::after {
	width:1px;
	height:50%;
	transform: translateY(-50%);
}

/* 삶의 36.5도 */
.main_wrap .section1 .img-wrap {
	border:1px solid #dedede;
	position:relative;
	overflow:hidden;
}
.main_wrap .section1 .img-wrap::after {
	content:'';
	padding-top:66.3%;
	display:block;
}
.main_wrap .section1 .img-wrap figure {
	width:100%;
	display:block;
	position:absolute;
	top:0;
	left:0;
	transition:all 0.4s ease;
}
.main_wrap .section1 a:hover .img-wrap figure {
	transform: scale(1.2);
}
.main_wrap .section1 header {
	text-align: center;
	padding:30px 10px;
}
.main_wrap .section1 header span {
	color:#fff;
	background:#6147d2;
	padding:5px 10px;
}
.main_wrap .section1 header h3 {
	font-size:2.4rem;
	font-weight: 700;
	word-break: keep-all;
	margin-top:20px;
}

/* 확대경 */
.main_wrap .section2 {
	background:#e8e6e3;
	padding:6% 0;
}
.main_wrap .section2 .magnifier-focus article {
	position:relative;
}
.main_wrap .section2 .magnifier-focus span {
	font-size: 2.4rem;
	font-weight:700;
	border-radius:50px;
	padding:10px 30px;
	display:block;
	position:absolute;
	top:10%;
	left:5%;
	z-index: 20;
}
.main_wrap .section2 .magnifier-focus span.magnifier {
	background:#fbef6c;
}
.main_wrap .section2 .magnifier-focus span.focus {
	color:#fff;
	background:#6147d2;
}
.main_wrap .section2 .magnifier-focus span.reader-corner {
	color:#fff;
	background:#fb9216;
}

.main_wrap .section2 .magnifier-focus .img-wrap {
	width:60%;
	border-radius:50%;
	margin:0 auto;
	position:relative;
	overflow:hidden;
}
.main_wrap .section2 .magnifier-focus .img-wrap::after {
	content:'';
	padding-top:100%;
	display:block;
}
.main_wrap .section2 .magnifier-focus .img-wrap figure {
	width:100%;
	display:block;
	position:absolute;
	top:0;
	left:0;
	transition:all 0.4s ease;
}
.main_wrap .section2 .magnifier-focus a:hover .img-wrap figure {
	transform: scale(1.2);
}
.main_wrap .section2 .magnifier-focus header {
	text-align: center;
	background:#fff;
	padding:60px 7% 5% 7%;
	margin-top:-40px;
}
.main_wrap .section2 .magnifier-focus header h3 {
	font-size:2.4rem;
	font-weight: 700;
}
.main_wrap .section2 .magnifier-focus .more {
	width:35px;
	height:35px;
	margin:20px auto 0 auto;
	position:relative;
}
.main_wrap .section2 .magnifier-focus .more::before,
.main_wrap .section2 .magnifier-focus .more::after {
	content:'';
	background:#7a7a7a;
	display:block;
	position:absolute;
}
.main_wrap .section2 .magnifier-focus .more::before {
	width:1px;
	height:100%;
	top:0;
	left:50%;
}
.main_wrap .section2 .magnifier-focus .more::after {
	width:100%;
	height:1px;
	top:50%;
	left:0;
}

/* 공연전시 */
.main_wrap .section2 .concert-wrap > h2 {
	font-size: 2.8rem;
	font-weight: 700;
	display:inline-block;
}
.main_wrap .section2 .concert-wrap > h2 span {
	font-weight: 300;
	margin-left:30px;
	display:inline-block;
}
.main_wrap .section2 .concert-wrap > h2::after {
	content:'';
	width:100%;
	height:2px;
	background:#000;
	margin-top:10px;
	display:block;
}
.main_wrap .section2 .concert-wrap .concert-contents {
	width:100%;
	margin-top:40px;
	position:relative;
	margin-bottom: 50px;
}
.concert-contents .concert {
	margin-right:20px;
	position:relative;
	opacity:0.4;
	filter: grayscale(1);
}

/* 매월 공연쪽 갯수 보고 수정 (s) */
.concert-contents .concert:nth-child(-n+3) {
	opacity:1;
	filter: grayscale(0);
}
/* 매월 공연쪽 갯수 보고 수정 (e) */

.concert-contents .concert:last-child {
	margin-right:0;
}
.concert-contents .concert::before {
	content:'';
	padding-top:68%;
	display:block;
	position:relative;
}
.concert-contents .concert .img-wrap {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	overflow:hidden;
	z-index: 10;
}
.concert-contents .concert .img-wrap figure {
	transition:all 0.4s ease;
}
.concert-contents .concert a::after {
	content:'';
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index: 20;
	transition:all 0.4s ease;
}
.concert-contents .concert a:hover::after {
	background:rgba(0,0,0,0.7);
}
.concert-contents .concert a:hover .img-wrap figure {
	transform: scale(1.2);
}
.concert-contents .concert a header {
	width:100%;
	height:100%;
	font-size: 1.6rem;
	color:#fff;
	padding:40px 20px;
	position:absolute;
	top:0;
	left:0;
	z-index:30;
}
.concert-contents .concert a header h3 {
	font-size:2rem;
	font-weight: 700;
}
.concert-contents .concert a .more {
	width:75px;
	height:75px;
	font-size:1.4rem;
	font-weight:600;
	background-size:100%;
	display:flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	bottom:0;
	left:50%;
	transform: translate(-50%, 50%);
	z-index: 30;
}
.concert-contents .concert a:hover .more {
	text-indent: -100px;
	overflow:hidden;
}
.concert-contents .concert a:hover .more::before,
.concert-contents .concert a:hover .more::after {
	content:'';
	background:#000;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.concert-contents .concert a:hover .more::before {
	width:1px;
	height:20px
}
.concert-contents .concert a:hover .more::after {
	width:20px;
	height:1px
}

.concert-contents .concert a .more.yellow {
	background:url('/share/images/main/concert_yellow.svg') no-repeat;
}
.concert-contents .concert a .more.green {
	background:url('/share/images/main/concert_green.svg') no-repeat;
}
.concert-contents .concert a .more.blue {
	background:url('/share/images/main/concert_blue.svg') no-repeat;
}
.concert-contents .concert a .more.gray {
	background:url('/share/images/main/concert_gray.svg') no-repeat;
}
.concert-contents .slick-prev,
.concert-contents .slick-next {
	width:43px;
	height:14px;
	top: -60px;
}
.concert-contents .slick-prev {
	right:55px;
	left:auto;
}
.concert-contents .slick-next {
	right:0;
}
.concert-contents .slick-prev::before,
.concert-contents .slick-next::before {
	content:'';
	width:43px;
	height:14px;
	display: block;
}
.concert-contents .slick-prev::before {
	background:url('/share/images/main/main_slider_prev.png') no-repeat;
}
.concert-contents .slick-next::before {
	background:url('/share/images/main/main_slider_next.png') no-repeat;
}

.concert-contents .slick-list {
	padding-bottom:40px;
}

/* 김해 */
.main_wrap .section3 .img-wrap {
	border:1px solid #dedede;
	position:relative;
	overflow:hidden;
}
.main_wrap .section3 .img-wrap::after {
	content:'';
	padding-top:66.3%;
	display:block;
}
.main_wrap .section3 .img-wrap figure {
	width:100%;
	display:block;
	position:absolute;
	top:0;
	left:0;
	transition:all 0.4s ease;
}
.main_wrap .section3 a:hover .img-wrap figure {
	transform: scale(1.2);
}
.main_wrap .section3 header {
	text-align: center;
	padding:30px 10px;
}
.main_wrap .section3 header span {
	color:#000;
	background:#fbef6c;
	padding:5px 10px;
}
.main_wrap .section3 header h3 {
	font-size:2.4rem;
	font-weight: 700;
	margin-top:20px;
}
.main_wrap .section3 .kimhae-search {
	padding-bottom:60px;
	margin-bottom:60px;
}
.main_wrap .section3 .kimhae-search a {
	display:flex;
}
.main_wrap .section3 .kimhae-search a .img-wrap {
	width:calc(100% / 2 - (7% / 2) - 1px);
	margin-bottom:0;
}
.main_wrap .section3 .kimhae-search a > div:last-child {
	width:calc(50% + (7% / 2));
	padding:30px 60px;
	margin-bottom:0;
}
.main_wrap .section3 .kimhae-search a > div:last-child header {
	text-align: left;
}
.main_wrap .section3 .kimhae-search a > div:last-child p {
	margin-top:0;
}

/* 문화소식 */
.main_wrap .section4 {
	background:#f8f8f8 url('/share/images/main/main_culture_bg.png') no-repeat 80% 100px;
	padding:80px 0;
}
.main_wrap .section4 .culture-news-wrap > h2 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom:30px;
	display:inline-block;
}
.main_wrap .section4 .culture-news-wrap > h2 span {
	font-weight:300;
	margin-left:30px;
	display:inline-block;
}
.main_wrap .section4 .culture-news-wrap > h2::after {
	content:'';
	width:100%;
	height:2px;
	background:#000;
	margin-top:10px;
	display:block;
}
.culture {
	margin-bottom:20px;
}
.culture:last-child {
	margin-bottom:0;
}
.culture a {
	display:flex;
}
.culture .img-wrap {
	width:206px;
	border:1px solid #dedede;
	position:relative;
}
.culture .img-wrap::after {
	content:'';
	padding-top:66.3%;
	display:block;
}
.culture .img-wrap figure {
	width:100%;
	height:100%;
	display:block;
	position:absolute;
	top:0;
	left:0;
}
.culture .culture-content {
	width:calc(100% - 206px);
	font-style:italic;
	color:#7c7c7c;
	padding:20px;
}
.culture .culture-content header h3 {
	font-size:2.2rem;
	font-weight:700;
	color:#000;
}

/* ----------------------------- */
/* 하단 웹진 지난호 보기 및 뉴스레터 신청
/* ----------------------------- */
.main-bottom {
	display:flex;
}

/* 지난호 보기 */
.webzine-download-wrap {
	width:calc(100% - 480px);
	background:#d7d6dd;
	padding-top:50px;
	padding-right:140px;
	padding-bottom:50px;
	padding-left:8%;
	display:flex;
	align-items: center;
	position:relative;
}
.webzine-download-wrap > ul {
	width:100%;
	display:flex;
}
.webzine-download-wrap > ul li {
	text-align: center;
	margin-right:6%;
	flex:1
}
.webzine-download-wrap > ul li:last-child {
	margin-right:0;
}
.webzine-download-wrap > ul li > figure > img {
	width:100%;
}
.webzine-download-wrap > ul li figcaption {
	font-size:2.4rem;
	font-weight: 700;
	margin-top:20px;
}
.webzine-download-wrap > ul li figcaption span {
	font-size:1.8rem;
	font-weight: 300;
}
.webzine-download-wrap > ul li figcaption::after {
	content:'';
	width:23px;
	height:19px;
	background:url('/share/images/common/download_icon.svg') no-repeat;
	background-size: 100%;
	margin:0 auto;
	margin-top:10px;
	display:block;
}
.webzine-download-wrap > a {
	width:90px;
	height:90px;
	text-indent: -200px;
	border-radius:50%;
	background:#fff;
	display:block;
	overflow: hidden;
	position:absolute;
	top:50%;
	right:20px;
	transform: translateY(-50%);
}
.webzine-download-wrap > a::before,
.webzine-download-wrap > a::after {
	content:'';
	background:#000;
	display:block;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.webzine-download-wrap > a::before {
	width:1px;
	height:40%;
}
.webzine-download-wrap > a::after {
	width:40%;
	height:1px;
}

/* 뉴스레터 신청 */
.subscribe-wrap {
	width:480px;
	background:#484650;
	position:relative;
}
.subscribe-wrap::after {
	content:'';
	padding-top:100%;
	display:block;
}
.subscribe-wrap > div {
	width:100%;
	text-align: center;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.subscribe-wrap > div header h2 {
	font-size: 4rem;
	font-weight: 700;
	color:#fff;
}
.subscribe-wrap > div header h2 span {
	color:#fbef6c;
	display:block;
}
.subscribe-wrap > div p {
	color:#b3b2b5;
}
.subscribe-wrap > div a {
	color:#fff;
	border:2px solid #fff;
	padding:20px 70px;
	margin-top:50px;
	display:inline-block;
}


@media (max-width:1500px) {
	.main_wrap .section3 .kimhae-search a > div:last-child {
		padding:30px;
	}
	.main_wrap .section3 .kimhae-search a > div:last-child p {
		height: 2.4em;
		-webkit-line-clamp: 2;
	}

	.webzine-download-wrap {
		padding-left:6%;
	}
	.webzine-download-wrap > ul li:nth-child(4) {
		display:none;
	}
	.webzine-download-wrap > ul li:nth-child(3) {
		margin-right:0;
	}
}

@media (max-width:1390px) {
	.main_wrap .section3 .kimhae-search a > div:last-child {
		padding:0 30px;
	}
}

@media (max-width:1280px) {
	.webzine-download-wrap > ul li:nth-child(3) {
		display:none;
	}
	.webzine-download-wrap > ul li:nth-child(2) {
		margin-right:0;
	}
}

@media (max-width:1100px) {
	.main_wrap .section3 .kimhae-search a {
		display:block;
	}
	.main_wrap .section3 .kimhae-search a .img-wrap,
	.main_wrap .section3 .kimhae-search a > div:last-child {
		width:100%;
	}
	.main_wrap .section3 .kimhae-search a > div:last-child {
		padding:30px;
	}
	.main_wrap .section3 .kimhae-search a > div:last-child p {
		height: 3.6em;
		-webkit-line-clamp: 3;
	}
}

@media (max-width:1024px) {
	.webzine-download-wrap {
		padding-right:90px;
	}
	.webzine-download-wrap > a {
		width:50px;
		height:50px;
	}
}

@media (max-width:900px) {
	.main_wrap {
		display:block;
	}
	.book-cover-wrap,
	.main_wrap > div.main-contents-wrap {
		width:100%;
	}
	.main_wrap > div.main-contents-wrap {
		padding-top:6%;
	}
	.book-cover .webzine-vol {
		position:relative;
		bottom:auto;
	}

	.main-bottom {
		display:block;
	}
	.webzine-download-wrap,
	.subscribe-wrap {
		width:100%;
		padding:6%;
	}
	.webzine-download-wrap {
		padding-right:90px;
	}
	.subscribe-wrap::after {
		display:none;
	}
	.subscribe-wrap > div {
		position:relative;
		top:auto;
		left:auto;
		transform: none;
	}
}

@media (max-width:767px) {
	.culture a {
		display:block;
	}
	.culture .img-wrap {
		width:100%;
	}
	.culture .culture-content {
		width:100%;
	}

	/* 문화소식 */
	.main_wrap .section4 {
		background:#f8f8f8;
	}

	.culture-list .slick-prev,
	.culture-list .slick-next {
		width:43px;
		height:14px;
		top: -50px;
	}
	.culture-list .slick-prev {
		right:55px;
		left:auto;
	}
	.culture-list .slick-next {
		right:0;
	}
	.culture-list .slick-prev::before,
	.culture-list .slick-next::before {
		content:'';
		width:43px;
		height:14px;
		display: block;
	}
	.culture-list .slick-prev::before {
		background:url('/share/images/main/main_slider_prev.png') no-repeat;
	}
	.culture-list .slick-next::before {
		background:url('/share/images/main/main_slider_next.png') no-repeat;
	}
}
@media (max-width:640px) {
	.col-2 {
		display:block;
	}
	.col-2 > * {
		width:100%;
		margin-right:0;
	}
}

@media (max-width:480px) {
	.main_wrap {
		padding-top:71px;
	}
	.book-cover .webzine-vol > span.line {
		width:35%;
	}
	.subscribe-wrap > div header h2 {
		font-size:3rem;
	}
	.subscribe-wrap > div a {
		margin-top:6%;
	}

}