@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Play);
@import url(all.min.css);
@import url(jpreloader.css);
@import url(normalize.css);

/*font*/
body {
  font-family: 'Play', sans-serif
}

/*layout*/
body {
/*  background: linear-gradient(120deg, #eee, #fff, #D7E1EC);*/
  color: #1d1d1b;
}

/*header*/
header {
  position: relative;
	z-index: 1;
}
header h1 {
  text-align: left;
	margin: 10px;
}
header img {
  width: 413px
}
header .sns {
  position: absolute;
  right: 50px;
  top: 10px;
}
header .sns a {
  margin: 0 5px;
  opacity: .35;
}
header .sns img {
	width: 20px;
}
header .sns a:hover {
  opacity: .9;
}

/*동영상 시퀀스*/
.pics {
  position: fixed;
  width: 100%;
	height: 100%;
  top: 0;
  
  overflow: hidden
}
.pics img {
	min-width: 100%;
	min-height: 100%;
/*	object-fit:contain*/
}

/*.menubar*/
.menubar:before {
	content: '';
  position: fixed;
  width: 100%;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  background: #1d1d1b;
	opacity: 0.5;
}
.menubar {
  position: fixed;
  width: 100%;
  height: 50px;
  top: 50%;
  margin-top: -25px;
	text-shadow: 1px 1px 1px #eee;
}

.gnb {
  width: 1200px;
  height: 100%;
  margin: auto
}
.gnb > li {
  float: left;
  width: 200px;
  text-align: center;
  line-height: 50px;
  
  position: relative
}
.gnb > li > a {
  display: block;
  transition: all 0.3s
}
.gnb > li:hover > a {
  opacity: 0;
  transform: translateY(-25px)
}


/*snb*/
.gnb > li .snb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  height: 200px;
  
  border: 1px solid #000;
  padding: 10px;
  box-sizing: border-box;
  
  transform: rotateY(180deg);
  opacity: 0;
  transition: all 0.5s
}
.gnb > li {
  perspective: 500px
}
.gnb > li:hover .snb {
  transform: rotateY(0deg);
  opacity: 1;
  top: -115px
}

.snb h3 {
  font-size: medium;/*==16px*/
  position: absolute;
  left: 0;
  right: 0;
  top: 115px;
	transition: all 0.3s;
}
.snb h3:hover {
	letter-spacing: 2px;
}
.snb .thumb {
  height: 110px;
  overflow: hidden;
  border: 1px solid #222
}
.snb .thumb img {
  width: 100%;
  opacity: .9
}
.snb ul {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.snb ul a {
  display: block;
  height: 37.5px;
  line-height: 37.5px;
  /*(150 나누기 4) = 37.5*/
  border-top: 1px solid #111
}
.snb ul a:hover {
  background: url(../img/tr.png);
  color: #eee;
	text-shadow: 1px 1px 1px #1d1d1b;
}

/*메뉴 작동 영역 확장시키기*/
.gnb > li:after {
  content: '';
  display: block;
  width: 100%;
  height: 500px;
/*  background: red;*/
  
  position: absolute;
  top: -225px;
  z-index: -1;
  cursor: crosshair
} 

/*footer*/
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
/*  width: 1200px;*/
  height: 40px;
  line-height: 40px;
/*  margin: auto*/
  background: #1d1d1b;
  font-size: 12px;
	color: #b3b3b3;
}

footer .fnb {
  float: left;
  margin-left: 50px
}
footer .fnb a {
  display: block;
  float: left;
  padding: 0 10px
}
footer .fnb a:hover {
  background: #565656
}

footer address {
  float: right;
  margin-right: 50px
}

/*jQuery*/
/*
.count {
  font-size: 100px;
}
*/


