@charset "utf-8";

/* ----------------------- 베이스 영역  ---------------------- */
#visual {
}

/*-------------------------------------------------------------------------*/
/*-------------------------------- visual ---------------------------------*/
/*-------------------------------------------------------------------------*/

/* Visual Slide */
#visualInner .slide li {
	position: relative;
	width: 100%;
	height: 870px;
	text-align: center;
	color: #fff;
}
#visualInner .slide li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position:absolute;
	left: 50%;
	transform: translateX(-50%) scale(1);
	top:0;
}
#visualInner .slide li .txt {
	position: absolute;
	width: 100%;
	top: 34%;
	font-size: 50px;
	line-height: 1;
	letter-spacing: 12px;
}
#visualInner .slide li .txt span {
	text-shadow: 0 0 3px black;
}
#visualInner .slide li .txt p {
	margin-top: 20px;
	font-size: 60px;
	text-align: center;
	color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	text-shadow: 0 0 3px black;
	opacity: 0;
}
/* txtSlideUp Ani*/
#visualInner .slick-active .txt p {
	animation: txtSlideUp 1s 2s both;
}
@keyframes txtSlideUp {
    0% {
			transform: translateY(80px);
			opacity: 0;
		}
    100% {
			transform: translateY(0);
			opacity: 1;
		}
}
#visualInner .slick-active .txt p {
	opacity: 1;
	transform: translateY(0);
}
#visualInner .slide li a {
	display: inline-block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom:27%; font-size: 20px;
	letter-spacing: 1px;
	color: #fff;
}
#visualInner .slide li a:after {
	content: '';
	width: 65%;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -6px;
	background: dodgerblue;
	transition: all 0.3s;
}
#visualInner .slide li a:hover:after,#visualInner .slide li a:focus:after {
	width: 100%;
	transition: all 0.3s;
}

#visualInner .slide li .mask {
	display: block;
	position: absolute;
	top: 0;
	width: 0px;
	height: 100%;
	background: rgba(255, 255, 255, 0.35);
}
#visualInner .slide li .mask.a{
	left: 0%;
}
#visualInner .slide li .mask.b{
	left: 25%;
}
#visualInner .slide li .mask.c{
	left: 50%;
}
#visualInner .slide li .mask.d{
	left: 75%;
}

/* Slick-Arrow */
#visualInner .slide .slick-arrow {
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	z-index: 20;
	background: none;
	width: 110px;
	height: 52px;
	border: none;
	text-align: right;
	font-size: 20px;
	color: #fff;
	transition: all .3s;
	cursor: pointer;}
#visualInner .slide .slick-arrow:hover {
	color: black;
}
#visualInner .slide .slick-arrow:before {
	content: "";
	position: absolute;
	top: 50%;
	width: 55%;
	height: 2px;
	background-color: #fff;
	transition: all .3s;
}
#visualInner .slide .slick-next {
	right: 0;
	text-align: left;
}
#visualInner .slide .slick-prev:before {
	left: 0;
}
#visualInner .slide .slick-next:before {
	right: 0;
}
#visualInner .slide .slick-arrow:hover:before,
#visualInner .slide .slick-arrow:focus:before {
	background-color: orange;
}
#visualInner .slide .slick-arrow:after {
	content: "";
	position: absolute;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #fff;
	transition: all .3s;
	z-index: -1;}
#visualInner .slide .slick-prev:after {
	left: 0;
}
#visualInner .slide .slick-next:after {
	right: 0;
}
#visualInner .slide .slick-arrow:hover:after,
#visualInner .slide .slick-arrow:focus:after {
	width: 112%;
}

/* Slick-dots & 슬라이드 진행 Bar */
#visualInner .slide .slick-dots {
	position: absolute;
	bottom: 10%;
	left: 50%;
	width: 400px;
	transform: translateX(-50%);
	z-index: 20;
	text-align: center;
}
#visualInner .slide .slick-dots li:before {
	display: none;
}
#visualInner .slide .slick-dots li {
	float: left;
	width: 80px;
	height: 7px;
	margin: 0 10px;
	text-indent: -9999px;
	cursor: pointer;
	border: 1px solid #fff;
	box-sizing: border-box;
}
#visualInner .slide .slick-dots li.slick-active:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: orange;
	animation: aniBar 7s;
}
#visualInner .slide .slick-dots li button {
	display: none;
}
@keyframes aniBar {
    0% {width: 0%;}
    100%{width: 100%;}
}

/* Link Ani*/
#visualInner .slick-active a {
	animation: slideUp 1s;
}
@keyframes slideUp {
    0% {bottom: 20%;
			opacity: 0;
		}
    /* 50%{bottom: 20%; opacity: 0;} */
}

/* maskAni */
@keyframes mask {
    0%{
			width: 25%;
			background: #000;
		}
    50% {
			width: 25%;
			background: #000;
		}
    99% {
			background: #000;
		}
}
#visualInner .slick-active .mask.a {
	animation: mask 0.4s;
}
#visualInner .slick-active .mask.b {
	animation: mask 0.6s;
}
#visualInner .slick-active .mask.c {
	animation: mask 0.8s;
}
#visualInner .slick-active .mask.d {
	animation: mask 1s;
}

/*splitting text animation*/
#visualInner .slick-active .splitting .char {
	display: inline-block;
  animation: slide-up 1s cubic-bezier(.5, 0, .5, 1) both;
  animation-delay: calc(60ms * var(--char-index));
}
@keyframes slide-up {
    0% {
			transform: translateY(30px);
			opacity: 0;
		}
    80% {transform: translateY(30px);
			opacity: 0;
		}
}

#contents {
}
#contentsInner {
	position:relative;
	margin: 0 auto;
}
/* contents_first.php */
#contentsInner .contentsFirst {
	padding: 100px 0;
	padding-bottom: 150px;
	background-color: #eee;
}
.productsWrap {
	position: relative;
}
.productsTitle {
	margin-bottom: 50px;
	text-align: center;
}
.productsTitle h2 {
	margin-bottom: 10px;
	font-size: 30px;
}
.productsTitle h2 span {
	display: block;
	margin-top: -10px;
	font-size: 80px;
	color: #000;
	letter-spacing: 5px;
	font-family: 'Bebas Neue', cursive;
}
.productsTitle p {
	margin-bottom: 50px;
	font-size: 20px;
}
/* ▦▦▦▦▦▦▦▦▦ pd-slider ▦▦▦▦▦▦▦▦▦ */
.pd-slider {
	position: relative;
}
.pd-slider .slick-prev,
.pd-slider .slick-next {
  width: 50px;
  height: 50px;
	z-index: 1;
}
.pd-slider .slick-prev {
  left: -70px;
}
.pd-slider .slick-next {
  right: -70px;
}
.pd-slider .slick-prev:before,
.pd-slider .slick-next:before {
  content:"\f0a8";
  font-family: fontawesome;
  color: #fff;
  font-size: 60px;
  opacity: .8;
  transition: .3s;
}
.pd-slider .slick-prev:hover:before,
.pd-slider .slick-next:hover:before {
  text-shadow: 0 0 5px black;
  color: black;
}
.pd-slider .slick-next:before {
  transform: rotateY(180deg);
  display: block;
}

/* pd-slide 내용 */
.pd-slider .item {
	position: relative;
	overflow: hidden;
} 
.pd-slider .item > a {
	display: block;
	width: inherit;
	height: inherit;
}
.pdTitleWrap {
	position: absolute;
	top: 60%;
	left: 0;
	width: 100%;
	height: inherit;
	padding: 30px;
	box-sizing: border-box;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.0);
	transition: .5s;
	text-align: center;
}
.pd-slider .item > a:hover .pdTitleWrap {
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
}
.pdTitleWrap h3 {
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: bold;
	text-shadow: 0 0 3px black;
}
.pdTitleWrap h3 span {
	display: block;
	font-size: 30px;
	font-weight: normal;
}
.pdTitleWrap p {
	margin-bottom: 20px;
	font-size: 14px;
}
.pdTitleWrap .fa {
	font-size: 50px;
	transition: .3s;
}
.pd-slider .fa:hover {
	transform: rotate(180deg);
	color: dodgerblue;
}

/* contents_first.php */
#contentsInner .contentsSecond {
	padding: 100px 0;
}
#contentsInner .contentsSecond .item {
	overflow: hidden;
}
#contentsInner .contentsSecond .item ul li {
	float: left;
	width: 50%;
	height: 366px;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
#contentsInner .contentsSecond .item ul li:nth-child(odd) {
	border-left: 1px solid #ccc;
}
#contentsInner .contentsSecond .item ul li:nth-child(7),
#contentsInner .contentsSecond .item ul li:nth-child(8) {
	border-bottom: 1px solid #ccc;
}
#contentsInner .contentsSecond .item .text {
	padding: 50px;
}
#contentsInner .contentsSecond .item ul li:nth-child(3),
#contentsInner .contentsSecond .item ul li:nth-child(7) {
	text-align: right;
}
#contentsInner .contentsSecond .item .text h3 {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 30px;
	color: #333;
}
#contentsInner .contentsSecond .item .text h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 53px;
	height: 3px;
	background-color: dodgerblue;
}
#contentsInner .contentsSecond .item ul li:nth-child(3) .text h3:after,
#contentsInner .contentsSecond .item ul li:nth-child(7) .text h3:after {
	left: auto;
	right: 0;
}
#contentsInner .contentsSecond .item .text p {
	font-size: 20px;
	line-height: 2;
}
#contentsInner .contentsSecond .item .text p span {
	display: block;
}

/* third Contents */
.contentsThird {
  position: relative;
	padding: 100px 0;
	border-top: 1px solid #ccc;
	background: url("../images/user_img/community_img2.jpg") no-repeat center center;
}
/* .contentsThird:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 100%;
  background: url("../images/user_img/community_img.jpg") no-repeat center center;
  background-size: cover;  
} */
.community-content {
	position: relative;
	height: 342px;
}

/* phoneWrap */
.community-content .phoneWrap {
	float: left;
  width: 25%;
	height: 342px;
	margin-right: 2%;
	padding-right: 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	color: #333;
}
.community-content .phoneWrap h3 {
	margin-bottom: 10px;
	font-size: 30px;
}
.community-content .phoneWrap h3 span {
	display: block;
	font-size: 12px;
	font-weight: 400;
}
.community-content .phoneWrap p {
	margin-bottom: 10px;
	font-size: 15px;
}
.community-content .phoneWrap ul {
	margin-bottom: 10px;
	font-size: 28px;
}
.community-content .phoneWrap ul li:nth-child(1) {
	color: #000;
}
.community-content .phoneWrap ul li:nth-child(2) {
	color: #666;
}
.community-content .phoneWrap ul li:before {
	content:"\f232";
	font-family: fontawesome;
	margin-right: 8px;
}
.community-content .phoneWrap ul li:nth-child(2):before {
	content:"\f02f";
}
.community-content .phoneWrap a {
	font-size: 14px;
	color: #333;
	transition: .3s;
}
.community-content .phoneWrap a:hover {
	color: orangered;
}
.community-content .phoneWrap a:before {
	content:"\f003";
	font-family: fontawesome;
	margin-right: 8px;
}
.community-content .boardWrap {
	float: left;
  width: 46%;
	margin-right: 1%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* boardWrap tabMenu */
.boardWrap ul.tabMenu {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.boardWrap ul.tabMenu li {
  float: left;
  width: 33.333333%;
}
.boardWrap ul.tabMenu li a {
  display: block;
  background-color: #ddd;
  text-align: center;
  padding: 5px;
  border-right: 1px solid #ccc;
  border-top: 2px solid transparent;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
}
.boardWrap ul.tabMenu li:last-child a {
  border-right: 1px solid transparent;
  width: calc(100% + 1px);
}
.boardWrap ul.tabMenu li a:hover, .boardWrap ul.tabMenu li.active a {
  border-top: 2px solid dodgerblue;
  background-color: #fff;
  color: dodgerblue;
}
.boardWrap ul.tabMenu li.active a {
  border-bottom: 1px solid transparent;
}
/* Tab Content */
.boardWrap .content {
  position: relative;
  display: none;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  overflow: hidden;
  background-color: #fff;
}
.boardWrap .content.active {
  display: block;
}
.boardWrap .content > ul li {
  position: relative;
  padding: 5px 0;
	font-size: 16px;
	white-space:nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.boardWrap .content > ul li span.date {
  float: right;
}
.boardWrap .content > ul li span.title a:before {
  content:"\f061";
  display: inline-block;
  margin-right: 10px;
  font-family: fontawesome;
  font-size: 12px;
  color: #ccc;
}
.boardWrap .content > ul li span.title a:hover {
  color: dodgerblue;
}
.boardWrap .content > ul li span.boardContents {
  display: none;  
}
/* 메인 News */
.boardWrap .content > ul li:nth-child(1) {
  margin-bottom: 20px;
  padding: 20px 0;
  padding-left: 80px;
  border-bottom: 1px dotted #ccc;
}
.boardWrap .content > ul li:nth-child(1) span.title {
  display: block;
  margin-bottom: 5px;
	margin-top: -3px;	
  font-size: 20px;
  font-weight: bold;
	white-space:nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.boardWrap .content > ul li:nth-child(1) span.title a:before {
  display: none;
}
.boardWrap .content > ul li:nth-child(1) .boardContents {
  display: block;
  font-size: 16px;
  color: #999;
  height: 46px;
	overflow: hidden;
	white-space:normal;
	text-overflow:inherit;
	overflow: hidden;
}
.boardWrap .content > ul li:nth-child(1) span.date {
  position: absolute;
  top: 20px;
  left: 0;
}
.boardWrap .content > ul li:nth-child(1) span.date span.day {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: dodgerblue;
  letter-spacing: 5px;
  text-align: center;
  text-shadow: 0 0 2px black;
}
.boardWrap .content a.moreView {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  transition: .3s;
}
.boardWrap .content a.moreView:hover {
  color: dodgerblue;
}
/* galleryWrap */
.community-content .galleryWrap {
	float: left;
  width: 26%;
	height: 342px;
	padding: 20px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.community-content .galleryWrap h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: #000;
	text-align: center;
}
.community-content .galleryWrap h3 span {
	display: block;
	margin-top: -5px;
	font-size: 12px;
	color: #999;
}
.community-content .galleryWrap h4 {
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 16px;
	color: #000;
	white-space:nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}
.community-content .galleryWrap img {
	object-fit: cover;
	width: 100%;
	height: 170px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}