/*********************************
 	base
*********************************/
html,
body {
	width: 100%;
	max-width: 100%;
	font-family: 'GmarketSansMedium', sans-serif;
	overflow-X: hidden !important;
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
   16.65% {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}



.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.fade-in-bottom {
	-webkit-animation: fade-in-bottom 1.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
	        animation: fade-in-bottom 1.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


body {
	position: relative;
}

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

/*----- 커버 -----*/
#cover-wrapper {
	overflow: hidden;
}

/*----- 메인 비주얼 -----*/
#main-visual {
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 0 15px;
}

#main-visual .top-pc {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
	height: 100%;
	padding-top: 100px;
}

#main-visual .top-pc .topbg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 7px;
}



@media (max-width : 767px) {
	
	
	
	
	
	
	#list a {
		position: absolute;
        display: block;
        overflow: hidden;
        width: 100% !important;
        height: 200px !important;
        background-size: cover;
        background-position: center, center;
        transition: background 0.3s;
        background-repeat: no-repeat;
        top: 0;
        left: 0;
        padding: 30px;
    }

	#list h3 ~ ul {

		padding: 0 15px !important;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

}






#main-visual h1 {
	width: 320px;
	/* max-width: 320px; */
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	margin-top: 38vh;
	text-align: center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	z-index: 0;
}

#main-visual .webzine-title {
	text-align: center;
	font-size: 22px;
	position: absolute;
	bottom: 0;
	margin-bottom: -14px;
	letter-spacing: -0.01em;
}

#main-visual .webzine-title span.bold {
	font-family: 'GmarketSansbold', sans-serif;
}

/*하단 스크롤*/
#main-visual .ico-scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	cursor: pointer;
}

#main-visual .ico-scroll p {
	/* margin-bottom:6px; */

}

/*article list*/
#list {
	padding: 50vh 0 0 0;
	margin-top: -50vh
}

#list .category-1,
#list .category-2,
#list .category-3,
#list .category-4 {
	padding-bottom: 100px;
	padding-top: 1px;
}

/*category4*/
#list .category-4 {
	background-color: #fff;
}

#list .category-4 h3 {
	/* margin-top:-98px; */

}



/*category title*/
#list h3 {
	font-family: 'GmarketSansLight', sans-serif;
	font-size: 40px;
	text-align: center;
	margin: -40px 0 30px 0;
	position: relative;
}

#list h3::before {
	content: "";
	position: absolute;
	left: calc(50% - 1px);
	top: -80px;
	width: 1px;
	height: 40px;
	display: block;
	background-color: black;
	background-color: rgba(0, 0, 0, 0.1);
}

#list h3::after {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 3px;
	background-color: black;
	background-color: rgba(0, 0, 0, 0.3);
	display: block;
	left: calc(50% - 3px);
	top: -83px;
	position: absolute;
}

#list h3 .ico-cate {
	width: 30px;
	height: 30px;
	display: block;
	background-size: cover;
	margin: 80px auto 28px;
	position: relative;
}

#list h3 .ico-cate::before {
	content: "";
	width: 1px;
	height: 40px;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.1);
	display: block;
	position: absolute;
	left: calc(50% - 1px);
	margin: 0 auto;
	padding-top: 40px;
	top: -40px;
}

#list h3 .bold {
	font-family: 'GmarketSansMedium', sans-serif;
}

/*list thumb*/
#list h3 ~ ul {
	max-width: 1300px;
	padding: 0 10px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#list h3 ~ ul li {
	position: relative;
	padding-top: 41%;
}

#list h3 ~ ul li.pdt{
	position: relative;
	padding-top: 34%;
}

/*thumb-text*/
#list a {
	position: absolute;
	display: block;
	overflow: hidden;
	width: 410px;
	height: 450px;
	background-size: cover;
	background-position: center, center;
	transition: background 0.3s;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	padding: 30px;
	border-radius: 7px;
}


#list .thumb-2 a {
	position: absolute;
	display: block;
	overflow: hidden;
	width: 629px;
	height: 490px;
	background-size: cover;
	background-position: center, center;
	transition: background 0.3s;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	padding: 30px;
	border-radius: 7px;
}


#list .thumb-4 a {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 844px;
    height: 400px;
    background-size: cover;
    background-position: center, center;
    transition: background 0.3s;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    padding: 30px;
    border-radius: 7px;
}


#list a::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
	top: 0;
	left: 0;
	opacity: 1;
	display: block;
	position: absolute;
	transition: background 1s;
}

#list a::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	opacity: 0;
	transition: opacity 0.5s;
}

#list a:hover {}

#list a:hover::after {
	opacity: 0.8;
}

#list a .bg-hover {
	/* background:#000; */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 0.5s;
}

#list a:hover .bg-hover {
	opacity: 0.8;
}

#list a .text-wrapper {
	overflow: hidden;
	position: absolute;
	bottom: 2px;
	left: 21px;
	text-align: left;
	transition: all 0.5s;
}

#list a .text-wrapper .title {
	position: relative;
	font-family: 'GmarketSansBold', sans-serif;
	font-size: 26px;
	color: #fff;
	display: inline-block;
	position: relative;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: auto;
	color: #fff;
	font-weight: bold;
	line-height: 1.3;
	display: block;
	text-align: left;
	padding: 10px 0 0;
}

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

#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;
}

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

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

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

/*thumb-size*/
#list h3 ~ ul li.thumb-1 {
	width: calc(33.3% - 16px);
}

#list h3 ~ ul li.thumb-2 {
	width: calc(50% - 10px);
}

#list h3 ~ ul li.thumb-4 {
	width: calc(66.7% - 4px);
}

/* subscribe */
#list .subscribe {
	padding: 80px 0 80px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right bottom;
}

#list .subscribe .container {
	width: 100%;
	max-width: 1170px;
	padding: 0 15px;
}

#list .subscribe .container .sub-icon {
	width: calc(100% - 7px);
	height: 200px;
	float: left;
	background: black;
}


/* subscribe */

#list .subscribe .container .sub-text {
	background-color: #fff;
	height: 240px;
	width: calc(98% + 6px);
	float: left;
	display: block;
	padding: 40px 5%;
}


#list .subscribe .container .sub-text h4 {
	font-size: 26px;
	margin: 0 0 15px 0;
}

#list .subscribe .container .sub-text p {
	font-size: 21px;
	margin: 0 0 15px 0;
	word-break: keep-all;
	font-family: 'GmarketSansLight', sans-serif;
}

#list .subscribe .container .sub-text input {
	height: 60px;
	border: 1px solid #666;
	padding: 0 20px;
	width: calc(100% - 180px);
	max-width: 300px;
	line-height: 60px;
	margin: 0;
	display: block;
	float: left;
	color: #aaa;
}

#list .subscribe .container .sub-text a {
	position: static;
	border: 0;
	width: 225px;
	height: auto;
	margin: 0;
	color: #fff;
	padding: 16px 20px 16px 20px;
	background-color: #000;
	border-radius: 4px;
	line-height: 1;
	text-align: center;
	vertical-align: middle;
}

#list .subscribe .container .sub-text a:hover {
	background-color: #334ea2;
}

#list .subscribe .container .sub-text a::before,
#list .subscribe .container .sub-text a::after {
	display: none;
}


/* subscribe_r */

#list .subscribe .container .sub-text_r {
	background-color: #fff;
	height: 240px;
	width: calc(98% + 6px);
	float: right;
	display: block;
	padding: 40px 5%;
}


#list .subscribe .container .sub-text_r h4 {
	font-size: 26px;
	margin: 0 0 15px 0;
}

#list .subscribe .container .sub-text_r p {
	font-size: 21px;
	margin: 0 0 15px 0;
	word-break: keep-all;
	font-family: 'GmarketSansLight', sans-serif;
}

#list .subscribe .container .sub-text_r input {
	height: 60px;
	border: 1px solid #666;
	padding: 0 20px;
	width: calc(100% - 180px);
	max-width: 300px;
	line-height: 60px;
	margin: 0;
	display: block;
	float: left;
	color: #aaa;
}

#list .subscribe .container .sub-text_r a {
	position: static;
	border: 0;
	width: 225px;
	height: auto;
	margin: 0;
	color: #fff;
	padding: 16px 20px 16px 20px;
	background-color: #000;
	border-radius: 4px;
	line-height: 1;
	text-align: center;
}

#list .subscribe .container .sub-text_r a:hover {
	background-color: #9c1515;
}

#list .subscribe .container .sub-text_r a::before,
#list .subscribe .container .sub-text_r a::after {
	display: none;
}


#list .subscribe .container .sub-icon .ico-img {
	display: block;
	width: 100%;
	height: 100px;
	background-size: contain;
	margin: 50px auto;
}

@media(max-width:767px) {
	#list .subscribe .container .sub-text a {
		margin: 0 auto;
	}

	#list .subscribe .container .sub-text_r a {
		margin: 0 auto;
	}
}

/*snow*/
canvas {
	display: none;
}

@media (min-width :768px) {
	canvas {
		display: block;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: fixed;
		z-index: 0;
	}
}

@media (max-width :860px) {
	#list .subscribe .container .sub-text p br {
		display: none;
	}

	#list .subscribe .container .sub-text_r p br {
		display: none;
	}

}



@media (max-width :860px) {
	#list .subscribe .container .sub-text {
		padding-top: 50px;
	}

	#list .subscribe .container .sub-text_r {
		padding-top: 50px;
	}
}



@media (max-width : 767px) {

	/*메인 비주얼*/
	#main-visual .top-pc {
		padding-top: 60px;
	}

	#main-visual h1 {
		width: 220px;
	}

	#main-visual .webzine-title {
		font-size: 16px;
		letter-spacing: -0.03em;
	}

	#main-visual .ico-scroll {
		bottom: 20px;
	}

	/*정렬*/
	#list .category-1,
	#list .category-2,
	#list .category-3,
	#list .category-4 {
		padding-bottom: 40px;
	}

	/*카테고리 이름*/
	#list h3::before {
		height: 20px;
		top: -40px;
	}

	#list h3 {
		font-size: 30px;
		margin-bottom: 12px;
	}

	#list h3::after {
		top: -43px;
	}

	#list h3 .ico-cate {
		margin: 60px auto 16px;
	}

	#list h3 .ico-cate::before {
		height: 20px;
		top: -20px;
		padding-top: 20px;
	}

	/*category4*/
	#list .category-4 h3::before {
		height: 40px;
		top: -60px;
	}

	#list .category-4 h3::after {
		top: -63px;
	}

	/*썸네일 배열*/
	#list h3 ~ ul {
		flex-wrap: wrap;
		max-width: 480px;
	}

	#list h3 ~ ul li {
		padding-top: 62%;
		margin-bottom: 10px;
	}

	#list h3 ~ ul > li:nth-last-child(1) {
		margin-bottom: 0px;
	}

	#list h3 ~ ul li.thumb-1 {
		width: calc(50% - 3px);
	}

	#list .category-1 h3 ~ ul li.thumb-1,
	#list .category-2 h3 ~ ul li.thumb-1,
	#list h3 ~ ul li.thumb-2,
	#list h3 ~ ul li.thumb-3 {
		width: 100%;
	}
	
	#list .category-1 h3 ~ ul li.thumb-1 .m1:nth-child(1){
		background: url(/data/img/202509/m0.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	#list .category-1 h3 ~ ul li.thumb-1 .m2:nth-child(1){
		background: url(/data/img/202509/m1.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	#list .category-1 h3 ~ ul li.thumb-1 .m3:nth-child(1){
		background: url(/data/img/202509/m2.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	#list .category-1 h3 ~ ul li.thumb-1 .m4:nth-child(4){
		background: url(/data/img/202509/m3.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	
	
	
	
	#list .category-2 h3 ~ ul li.thumb-1 .m1:nth-child(1){
		background: url(/data/img/202509/m4.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	
	#list .category-2 h3 ~ ul li.thumb-1 .m2:nth-child(1){
		background: url(/data/img/202509/m5.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	

	#list .category-2 h3 ~ ul li.thumb-1 .m3:nth-child(1){
		background: url(/data/img/202509/m6.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	#list .category-4 h3 ~ ul li.thumb-2 .m2:nth-child(1){
		background: url(/data/img/202509/m11.png) no-repeat top center !important;
		background-size: cover !important
	}
	
	
	
	
	
	#list a {
		padding: 4%;
	}

	#list a .text-wrapper {
		left: 17px;
        bottom: 12px;
        width: calc(100% - 20px);
	}

	#list a .text-wrapper .title {
		font-size: 20px;
	}

	#list a .text-wrapper .desc {
		font-size: 16px;
		max-height: 100px;
	}

	/*구독신청*/
	#list .subscribe {
		padding: 40px 0;
	}

	#list .subscribe .container {
		max-width: 480px;
	}

	#list .subscribe .container .sub-icon {
		float: none;
		clear: both;
		width: 100%;
		height: auto;
		padding: 5%;
	}

	#list .subscribe .container .sub-icon .ico-img {
		margin: 0 auto;
		width: 120px;
		height: 120px;
	}

	#list .subscribe .container .sub-text {
		width: 100%;
		height: auto;
		text-align: center;
		word-break: keep-all;
		padding: 10%;
	}

	#list .subscribe .container .sub-text br {
		display: none;
	}

	#list .subscribe .container .sub-text h4 {
		font-size: 22px;
	}

	#list .subscribe .container .sub-text p {
		font-size: 16px;
		line-height: 24px;
	}

	#list .subscribe .container .sub-text input {
		width: 100%;
		max-width: 100%;
		height: 40px;
		font-size: 14px;
		float: none;
		margin: 0 auto 20px;
		line-height: 40px;
	}

	#list .subscribe .container .sub-text button {
		height: 40px;
		/* line-height:40px; */
		padding: 3px 5px 0px;
	}

	#list a .text-wrapper .title {
		/* font-size:14px; */

	}

	#list a .text-wrapper .desc {
		/* font-size: 13px; */
		line-height: 18px;
	}

	#list a .text-wrapper .desc::before {
		margin: 6px 0 8px;
	}


	/*카드뉴스_우*/

	#list .subscribe .container .sub-text_r {
		width: 100%;
		height: auto;
		text-align: center;
		word-break: keep-all;
		padding: 10%;
		margin-top: 2%;
	}

	#list .subscribe .container .sub-text_r br {
		display: none;
	}

	#list .subscribe .container .sub-text_r h4 {
		font-size: 22px;
	}

	#list .subscribe .container .sub-text_r p {
		font-size: 16px;
		line-height: 24px;
	}

	#list .subscribe .container .sub-text_r input {
		width: 100%;
		max-width: 100%;
		height: 40px;
		font-size: 14px;
		float: none;
		margin: 0 auto 20px;
		line-height: 40px;
	}

	#list .subscribe .container .sub-text_r button {
		height: 40px;
		/* line-height:40px; */
		padding: 3px 5px 0px;
	}



}

@media (max-width :480px) {}
