@charset "utf-8";

/*body 에 background-img를 넣는건 최대한 자제하세요*/

/* 기본 css */
#wrap {
	display: flex;
	flex-flow: column nowrap; /* 모바일에서 박스 배치를 한줄로 하기 위함 */	
	overflow:hidden;
	font-family: 'Play', sans-serif;
}






.float-left{
	float: left;	
	margin: 0 0 0 20px;
}

.float-right{
	float: right;
	margin: 0 20px 0 0;
}

.center{
	font-size: 2.5em;
	padding: 80px 0 0 0;
	text-align: center;
}

#screen1{
	background: url(../../images/firstBG.jpg) 50% 0 no-repeat fixed;
	color: white;
	height: 300px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
#second{
	background: url(../../images/secondBG.jpg) 50% 0 no-repeat fixed;
	color: white;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
}

#second .bg{
	background: url(../../images/trainers.png) 50% 0 no-repeat fixed;
	height: 700px;
	margin: 0 auto;
	padding: 0;
	position: absolute;
	width: 900px;
}

#third{
	background: url(../../images/thirdBG.jpg) 50% 0 no-repeat fixed;
	color: white;
	height: 500px;
	padding: 100px 0 0 0;
	overflow: hidden;
}

#fifth{
	background: #ccc;
	height: 400px;
	margin: 0 auto;
	padding: 40px 0 0 0;
}
#fiveth{
	height: 400px;
	margin: 0 auto;
	padding: 40px 0 0 0;
	background-color: #36F;
}
#sixth{
	height: 400px;
	margin: 0 auto;
	padding: 40px 0 0 0;
	/* [disabled]background-color: #C30; */
	background-attachment: fixed;
	background-image: url(../../images/thirdBG.jpg);
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 0;
}
.story{
	margin: 0 auto;
	min-width: 980px;
	overflow: auto;
	width: 980px;
}

.story .float-left, .story .float-right{
	padding: 100px 0 0 0;
	position: relative;
	width: 350px;	
}





/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */

.cd-secondary-nav ul {
  /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
  position: fixed;
  width: 90%;
  max-width: 400px;
  right: 5%;
  bottom: 20px;
  border-radius: 0.25em;
  background-color: rgba(3, 13, 24, 0.96);
  visibility: hidden;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
.cd-secondary-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
}
.cd-secondary-nav li a {
  display: block;
  padding: 1.6em;
  border-bottom: 1px solid #092645;
  color: #f0eee1;
}
.cd-secondary-nav li:last-child a {
  border-bottom: none;
}
.cd-secondary-nav {
	width: 100%;
	overflow: hidden;
    z-index: 1;
    height: 100px;
    background-color: rgba(3, 13, 24, 0.96); /*네비 배경색깔*/
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}
.cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
	height: 100%;
}
.cd-secondary-nav ul {
    /* reset navigation values */
    position: static;
    width: auto;
    max-width: 100%;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    text-align: center;
    background-color: transparent;
}
.cd-secondary-nav li {
    display: inline-block;
    margin-left: -4px;
}
.cd-secondary-nav li a {
	position: relative;
	text-align: center;
	display: block;
	padding-top: 25px;
	padding-right: 40px;
	padding-left: 40px;
	padding-bottom: 25px;
	border-bottom: none;
	-webkit-transition: padding 0.2s;
	-moz-transition: padding 0.2s;
	transition: padding 0.2s;
}
.cd-secondary-nav li a b {
    text-transform: uppercase;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(240, 238, 225, 0.3); /* 메뉴글씨 색깔 */
}
.cd-secondary-nav li a span {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    top: 16px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-image: url(../img/cd-nav-icons.svg);
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
    color: #f0eee1; /*마우스 오버 했을때의 색깔 */
}
.cd-secondary-nav.is-fixed {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    width: 100%;
}
.cd-secondary-nav.animate-children {
    /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cd-secondary-nav.animate-children li a {
    padding: 26px 30px 0 30px;
}
.cd-secondary-nav.animate-children li a span {
    opacity: 0;
}




/* 모바일 메뉴정의 */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: white;
  z-index: 998;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /*-------------오픈네비 width 1/3 --------------*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}


header {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #ffbe32;  /*-------------네비바탕색깔--------------*/
  z-index: 999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /*-------------오픈네비 width 2/3--------------*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
header.is-fixed {
  position: fixed;
}


#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px;
}
#cd-logo img {
  display: block;
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 16px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #ffbe32;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


#cd-lateral-nav {
  padding-top: 20px;
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 997;
  width: 260px;/*-------------오픈네비 width 3/3 --------------*/
  background-color: #2b2f38; /*-------------오픈네비색깔--------------*/
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 2em;
  padding: 8px 0px 8px 30px;
  color: #fff; /*-------------네비 글씨 색깔--------------*/
  font-size: 13px; /*-------------네비 글씨 크기--------------*/
  font-weight: bold;
  font-family: '맑은 고딕', 'Malgun Gothic', 'Nanum Gothic', sans-serif;
}
#cd-lateral-nav a.current {
  background-color: #3a3f49;
  color: #FFF; /*-------------네비 구분 포인트 글씨 색깔--------------*/
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF; /*-------------네비 오버 글씨 색깔--------------*/
}

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 14px; /*-------------서브네비 / 2차서브네비 글씨 크기--------------*/
  font-weight: bold;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../images/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}







#header {
	width: 100%;
	height:auto;
	/*background: url(../../images/main_images_1.jpg) no-repeat center center;*/
	/*background: url(../../images/contactus_pattern.jpg) repeat  ;*/
	/*z-index: 100;*/
}
#header-short {
	width: 100%;
	height: 450px;
	/*background: url(../../images/main_images_1.jpg) no-repeat center center;*/
	/*background: url(../../images/contactus_pattern.jpg) repeat  ;*/
	/*z-index: 100;*/
}
#header-back-dot {
	width: 100%;
	height: 450px;
	background: url(../../images/contactus_pattern.jpg) repeat  ;
}
#header-main-images {
	width: 100%;
	height: 330px;
	margin-top: 400px;
	display: block;
	top: 0;
	position: absolute;
	background: url(../../images/main_images_1.png) no-repeat  center;
	background-size: 130%;
}
#header-contactus {
	width: 100%;
	height: 440px;
	background: url(../../images/contactus_pattern.jpg) repeat  ;
}
#header-contactus-images {
	width: 100%;
	height: 334px !important;
	margin-top: 350px;
	display: block;
	top: 0;
	position: absolute;
}
#navi-background-1 {
	width:100%;
	height: auto;
}

#myvideo_box {
	width: 90%;
	height: 100%;
	margin: 0 auto;
	margin-top:50px;
}
#myVideo {
	display: block;
    /*position: absolute;*/
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
	background: #fff;
	var video = document.getElementById('player');
video.volume = 0.2;
}











#navi {
	width: 100%;
	height: 400px;
	/*display:block;*/
	margin: 0 auto;
	display: block;
	/*background-color: red;*/
}
#navi1 {
	width: 320px;
	height: auto;
	padding-top: 40px;
	display: block;
	margin: 0 auto;

}
#navi2 {
	width: 22%;
	height: auto;
	/*background-color:white;*/
	display: inline-block;
	float: left;
	margin-left: 3%;
	top: 0;
	/*background: blue;*/
}
#navi3 {
	width: 19%;
	height: auto;
	/*background-color:white;*/
	display: inline-block;
	float: left;
	top: 0;
}
#navi4 {
	width: 18%;
	height: auto;
	/*background-color:white;*/
	display: inline-block;
	float: left;
	top: 0;
	/*background: blue;*/
}
#navi5 {
	width:18%;
	height: auto;
	/*background-color:white;*/
	display: inline-block;
	float: left;
	top: 0;
}
#navi6 {
	width: 18%;
	height: auto;
	/*background-color:white;*/
	display: inline-block;
	float: left;
	top: 0;
	/*background: blue;*/
}
.navi_title {
	width: 100%;
	height: 10px;
	font-size: 15px;
	font-weight: bold;
	display: block;
	color: #fff;
	padding: 50px 0px 0px 0px;
	letter-spacing: 1px;
}
.navi_line {
	width: 80%;
	height: 1px;
	max-width:  340px;
	margin-top: 30px;
	background: #ffffff;
}
.navi_subtitle {
	font-size: 15px;
	font-weight: bold;
	display: block;
	color: #f6c52d;
	padding: 20px 0px 10px 0px;
	letter-spacing: 1px;
}
.navi_link {
	width:100%;
	float: left;
	display : block;
	color: #ffffff;
	padding: 0px 0px 0px 0px;
	text-decoration : none;
	font-size: 12px;
	font-weight: 100;
	letter-spacing: 0.3px;
	line-height: 200%;
}
.navi_link a {
	color: #ffffff;
	padding: 5px 15px 5px 15px;
}
.navi_link a:hover {
	color: #ffffff;
	background:#1f2128;
}
.header_copy {
	margin: 0 auto;
	width: 90%;
	padding: 300px 5% 0% 5%;
	text-align: center;
	font-size: 28px;
	color: #333;
	font-weight: 100;
	line-height: 150%;
}
#navi1 img {
	width: 80% !important;
	margin: 0 auto;
}





#container {
	width: 100%;
	height: auto;
	display: block;
	/*background:red;*/
}
.article_main {
	width: 90%;
	height: 500px;
	margin: 0 auto;
	padding: 100px 0px 100px 0px;
}
.article_main div {
	display: inline-block;
	height: 100%;
}
.article_main div:first-child {
	width:35%;
	margin-top: 50px;
}
.article_main div:nth-child(2) {
	width: 60%;
	height: auto;
	padding: 0px 0px 0px 20px;
	/*background: #f7e041;*/
	vertical-align: top;
}
.article_main div div:first-child {
	margin-top: 0px;
	width: 250px;
	height: 25px;
	padding: 8px 8px;
	letter-spacing: 0.5px;
	background: #555;
	font-size: 14px;
	color: #fff;
}
.article_main div div:nth-child(2) {
	width: 95%;
	height: auto;
	padding: 8px 8px;
	/*letter-spacing: 0.5px;*/
	font-size: 14px;
	line-height: 150%;
	color: #000;
}
.article_main div div:nth-child(3) {
	margin-top: 0px;
	width: 370px;
	height: 25px;
	padding: 8px 8px;
	letter-spacing: 0.5px;
	background: #555;
	font-size: 14px;
	color: #fff;
}
.article_main div div:nth-child(4) {
	width: 95%;
	height: auto;
	padding: 8px 8px;
	/*letter-spacing: 0.5px;*/
	font-size: 14px;
	line-height: 150%;
	color: #000;
}
.article_main div div:nth-child(5) {
	margin-top: 0px;
	width: 340px;
	height: 25px;
	padding: 8px 8px;
	letter-spacing: 0.5px;
	background: #555;
	font-size: 14px;
	color: #fff;
}
.article_main div div:nth-child(6) {
	width: 95%;
	height: auto;
	padding: 8px 8px;
	/*letter-spacing: 0.5px;*/
	font-size: 14px;
	line-height: 150%;
	color: #000;
}
.article_main div div:nth-child(7) {
	margin-top: 0px;
	width: 520px;
	height: 25px;
	padding: 8px 8px;
	letter-spacing: 0.5px;
	background: #555;
	font-size: 14px;
	color: #fff;
}
.article_main div div:nth-child(8) {
	width: 95%;
	height: auto;
	padding: 8px 8px;
	/*letter-spacing: 0.5px;*/
	font-size: 14px;
	line-height: 150%;
	color: #000;
}



.article_item {
	width: 100%;
	margin: 0 auto;
	height: auto;
	background: #f1f1f1;
	padding: 80px 0px;
	display: inline-block;
}
.article_item div {
	display: inline-block;
	width: 100%;
	height: auto;
/*	background: yellow;*/
	padding: 10px 0px;
}
.article_item div:first-child {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(2) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(3) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(4) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(5) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(6) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(7) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(8) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(9) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(10) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(11) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(12) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(13) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}
.article_item div:nth-child(14) {
	width: 31%;
	height: 250px;
	vertical-align: top;
	padding: 0% 0% 0% 2%;
}


.article_item div div:first-child {
	float: left;
	width: 48%;
	padding: 6% 0% 0% 0%;
}
.article_item div div:nth-child(2) {
	width: 30%;
	height: auto;
	padding: 5% 1% 0% 4%;
	margin-top: 10px;
}
.article_item div div:nth-child(3) {
	width: 40%;
	height: auto;
	font-size:  16px;
	color: #000;
	font-weight: bold;
	padding: 5% 1% 0% 4%;
}
.article_item div div:nth-child(4) {
	width: 46%;
	height: auto;
	font-size:  12px;
	font-weight: 100;
	color: #000;
	padding: 1% 1% 4% 4%;
	line-height: 120%;
}
.article_item div div:nth-child(5) {
	width: 85px;
	height: 25px;
	font-size: 12px;
	color: #fff;
	background: #f6c52d;
	margin-left: 2%;
	margin-top: 1%;
	text-align: center;
	vertical-align: center;
	padding: 2px;
}
.article_item div div:nth-child(5) a {
	width: 85px;
	height: 25px;
	font-size: 12px;
	color: #000;
	background: #f6c52d;
	margin-left: 2%;
	margin-top: 1%;
	text-align: center;
	vertical-align: center;
	padding: 2px;
}




#fotter {
	width: 100%;
	margin: 0 auto;
	/*background: #f7f6f4;*/
	background: url(../../images/item_back_images_2.jpg) no-repeat center center;
	padding: 0px 0px 70px 0px;
}
#fotter_navi {
	display: inline-block;
	width: 95%;
	padding: 0% 2% 0% 4%;
	/*background: yellow;*/
}
.fotterbox_1 {
	float:left;
	width: 20%;
	/*background: #aea199;*/
}
.fotterbox_2 {
	float:left;
	width: 20%;
	/*background: #aea333;*/
}
.fotterbox_3 {
	float:left;
	width: 20%;
	/*background: #aea333;*/
}
.fotterbox_4 {
	float:left;
	width: 20%;
	/*background: #aea333;*/
}
.fotterbox_5 {
	float:left;
	width: 20%;
	/*background: #aea333;*/
}
.fotter_title {
	height: 20px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	margin-top: 70px;
	letter-spacing: 1px;
}
.fotter_line {
	margin-top: 15px;
	width: 80%;
	height: 1px;
	background: #a6a6a6;
}
.fotter_title2 {
	margin-top: 12px;
	color: #f6c52d;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
}
.fotter_link {
	margin-top: 15px;
	color: #fff;
	width:100%;
	display : block;
	padding: 0px 0px 0px 0px;
	font-weight: 100;
	letter-spacing: 0.3px;
}
.fotter_link p {
	margin-top: 10px;
	font-size: 11px;
	line-height: 120%;
}
.fotter_link  a {
	color: #fff;
}
.fotter_link  a:hover {
	color: #fff;
	/*background:#1f2128;*/
}
.fotter_copy {
	width: 100%;
	height: 200px;
	background: #414143;
	font-size: 10px;
	color: #d0d0d0;
	padding-top: 50px;
	text-align: center;
	letter-spacing: 2px;
}
.fotter_copy br {
	line-height: 180%;
}
.bottom_logo {
	margin: 0 auto;
	width: 250px;
	height: 74px;
	padding-top: 30px;
	text-align: center;
}






#header-subpage {
	width: 100%;
	height: 740px;
	display: block;
	background: url(../../images/item_back_images_1.jpg) no-repeat center center;
}
.article_sub_itembox1 {
	display: inline-block;
	width: 100%;
	height: 600px;
	background: url(../../images/item_back_images_2.jpg) no-repeat center center;
}
.sub_itembox_left {
	float:left;
	width: 5%;
	height: 100%;
	/*background: yellow;*/
}
.sub_itembox_center {
	float:left;
	width: 25%;
	height: 100%;
	margin-top: 50px;
	/*background: red;*/
}
.sub_itembox_right {
	float:left;
	width: 60%;
	padding-top: 8%;
	padding-left: 4%;
	padding-right: 0%;
	height: 100%;
	/*background: red;*/
}
.right {
	position: absolute;
	right: 0px;
}
.sub_itembox_title {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
}
.sub_itembox_titlesub {
	font-size: 14px;
	font-weight: 100;
	color: #fff;
}
.article_sub_itembox2 {
	display: inline-block;
	width: 100%;
	height: 600px;
	background: url(../../images/item_back_images_3.png) repeat;
	margin: 0 auto;
}
.article_sub_itembox3 {
	display: inline-block;
	width: 100%;
	height: 600px;
	margin: 0 auto;
}


.f_c_b {
	color: #000;
}
.specbox {
	width: 100%;
	height: auto;
	margin-top: 85px;
	/*background: #f9f9f9;*/
}
.specbox_title {
	float: left;
	display: inline-block;
	width: 20%;
	padding: 10px 10px;
	margin-left: 10px;
	font-size: 12px;
	color: #c2c2c2;
	text-shadow: 2px 2px 2px #fff;
	font-weight: bold;
	/*background: red;*/
	letter-spacing: 1px;
	border-bottom: 1px solid #000;
}
.specbox_content {
	float: left;
	display: inline-block;
	width: 72%;
	padding: 10px 10px;
	margin-left: 10px;
	font-size: 12px;
	color: #000;
	text-shadow: 2px 2px 2px #fff;
	font-weight: bold;
	letter-spacing: 1px;
	border-bottom: 1px solid #000;
	/*background: red;*/
}
.specbox_content_long {
	display: inline-block;
	width: 500px;
	padding: 10px 10px;
	margin-left: 10px;
	font-size: 14px;
	color: #000;
	text-shadow: 2px 2px 2px #fff;
	font-weight: bold;
	letter-spacing: 1px;
	border-bottom: 1px solid #000;
	/*background: red;*/
}
.black {
	color: #000;
}
.sub_itembox_certi_icon {
	width: 100%;
	display: block;
	margin-top: 50px;
}
.certi_icon_H {
	width: 100%;
	height: 50px;
	display: block;
}
#header-contactus {
	width: 100%;
	height: 740px;
	background: url(../../images/contactus_pattern.jpg) repeat  ;
}
#header-contactus-images {
	width: 100%;
	height: 734px;
	margin-top: 400px;
	display: block;
	top: 0;
	position: absolute;
}
.article_contactus {
	width: 100%;
	height: auto;
	font-size : 36px;
	font-weight: bold;
	text-align : center;
	color: #000;
	letter-spacing: 1.5em;
	margin-top: 330px;
}
.article_contactus_contents {
	width: 100%;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-top: 50px;
}
.article_contactus_H {
	width: 100%;
	height: 50px;
	display: block;
}

#header-aboutus {
	width: 100%;
	height: 740px;
	background: url(../../images/aboutus_pattern.jpg) repeat  ;
}
.article_aboutus_box1 {
	width: 100%;
	height: 500px;
	/*background: url(../../images/aboutus_images_1.png) no-repeat  right top;*/
	/*display: inline-block;*/
}
.article_aboutus_title {
	width: 80%;
	margin: 0 auto;
	font-size: 40px;
	font-weight: bold;
	line-height: 110%;
	text-align: center;
	color: #000;
	text-transform: uppercase;
	padding: 10px;
	/*background: url(../../images/item_back_images_3.png) repeat;*/
	text-shadow: 2px 2px 2px #fff;
	position: absolute;
	left: 10%;
	margin-top: 150px;
}
.article_aboutus_box1_image {
	width: 100%;
	height: 400px;
	background: url(../../images/aboutus_images_1.png) no-repeat  right top;
	background-size: 30%;
	position: absolute;
}
.article_aboutus_box2_image {
	width: 100%;
	height: 550px;
	background: url(../../images/aboutus_images_2.png) no-repeat  center bottom;
	position: absolute;
	background-size: 70%;
}

.article_aboutus_box3_image {
	width: 100%;
	height: 400px;
	background: url(../../images/aboutus_images_3.png) no-repeat  center center;
	position: absolute;
	background-size: 50%;
	margin-top: 150px;
}
.article_aboutus_coment {
	width: 70%;
	font-size: 16px;
	font-weight: 100;
	line-height: 150%;
	text-align: center;
	color: #000;
	padding: 10px;
	text-shadow: 1px 1px 1px #fff;
	margin-top: 250px;
	position: absolute;
	left: 15%;
}
.article_aboutus_box2 {
	width: 100%;
	height: 600px;
	background-size: 70%;
	background-color: #e9e9e9;
	display: inline-block;
}
.article_aboutus_box3 {
	width: 100%;
	height: 600px;
	background-color: #fff;
	display: inline-block;
	/*background-size: 65%;*/
}
.F_C_W {
	color: #fff !important; 
}
.sub_itembox_right img {
	padding: 20px 0px;
	cursor: pointer;
	width: 75%;
}
.article_sub_relation_item {
	width: 100%;
	height: auto;
	/*background : #f2f2f2;*/
	background: url(../../images/item_back_images_3.png) repeat;
	text-align: center;
	padding: 100px 0px;
}
.relation_item_down {
	width: 85%;
	height: auto;
	display: inline-block;
	margin-top: 50px;
}
relation_item_up {
	width: 100%;
	height: auto;
	display: inline-block;
}
.relation_box {
	margin: 0 auto;
	width: 11.8%;
	/*padding: 0.5%;*/
	display: inline-block;
}
.relation_item_up_title {
	font-size: 24px;
	font-weight: 600;
	color: #000;
}
.relation_item_up_titlesub {
	font-size: 14px;
	font-weight: 100;
	margin-top: 50px;
	color: #000;
}
.photobox {
	margin: 0 auto;
	width: 12%;
	/*padding: 0.5%;*/
	/*display: inline-block;*/
	/* [disabled]border: 5px solid #fff; */
	cursor: pointer;
	height: 150px;
	float: left;
	/* [disabled]margin: 5px; */
	position: relative;
	overflow: hidden;
	/*width: 350px;*/
	/* [disabled]-webkit-box-shadow: 1px 1px 1px 1px #ccc; */
	/* [disabled]-moz-box-shadow: 1px 1px 1px 1px #ccc; */
	/* [disabled]box-shadow: 1px 1px 1px 1px #ccc; */
}
.photobox img {
	height: auto;
	position: absolute;
	left: 0;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}
.photobox .caption {
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	color: #000;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
	left: 0;
}
.photobox .fade-caption, .photobox .scale-caption  {
	opacity: 0;
	width: 90%;
	height: 8%;
	top: 40%;
	text-align: left;
	padding: 12px ;
	font-size: 12px;
	font-weight: 100;
	color: #fff;
}
.photobox:hover .fade-caption, .photobox:hover .scale-caption  {
	opacity: 1;
}

.homepage {
	width: 100%;
	height: 140px;
	padding: 10px 0px;
	background: #f6c52d;
}
.homepage_box1 {
	width: 10%;
	height: auto;
	padding: 1%;
	display: inline-block;
	float: left;
}
.homepage_box2 {
	width: 36%;
	height: auto;
	padding: 1%;
	float: left;
}
.homepage_box3 {
	width:36%;
	height: auto;
	padding: 1%;
	float: left;
	display: inline-block;
}
.homepage_box4 {
	width: 10%;
	height: auto;
	padding: 1%;
	float: left;
	display: inline-block;
}
.homepage_icon {
	width: 10%;
	height: 50px;
	display: inline-block;
	vertical-align: middle;
}
.homepage_icon_sub {
	width: 80%;
	color: #414143;
	font-size: 12px;
	display: inline-block;
}
.homepage_icon_button {
	padding: 10px 15px;
	width: 150px;
	margin-left: 11%;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background: #414143;
	text-align: center;
	letter-spacing: 1px;
	border-radius: 7px;
}
.homepage_icon_button a {
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background: #414143;
	text-align: center;
	letter-spacing: 1px;
	border-radius: 7px;
}
/*모바일메뉴*/
#header-main-images-mobile {
	width: 100%;
	height: 230px;
	margin-top: 80px;
	display: none;
	top: 0;
	position: absolute;
	background: url(../../images/main_images_1.png) no-repeat  center;
	background-size: 150%;
}
.header_copy-mobile {
	margin: 0 auto;
	width: 90%;
	height: auto;
	padding: 35% 5% 0% 5%;
	text-align: center;
	font-size: 20px;
	color: #333;
	font-weight: 100;
	display: none;
}
#page {
	padding-bottom: 0px;
	display: none;
}
#menu {
	display: none;
}