/*공통 css*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.wrap {
	max-height: 100vh;
	overflow-x: hidden;
	overflow-y: scroll;
	animation: fadeIn .15s linear forwards;		
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	overflow: hidden;
	transition: height .3s, background-color .3s, box-shadow .3s;
	z-index: 2001;
}
.header-wrap {
	position: relative;
}
.header .header-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,.2);
    transition: background-color .3s;
}
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1960px;
    height: 100px;
    padding-left: 60px;
    margin: 0 auto;
    transition: height .3s;
}
.logo {
	display: flex;
    flex-shrink: 0;
    align-items: center;
    width: 150px;
}
.logo > a {
	display: block;
    width: 150px;
}
.logo-basic {
	display: block;
    height: auto;
	width: 100%;
}
.logo-on {
	display: none;
	width: 150px;
}
.header_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 40px;
}
.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    height: 100%;
}
.main-nav .main-nav-item.depth1 {
    justify-content: center;
    width: 25%;
}
.main-nav .main-nav-item {
    display: flex;
    align-items: center;
    position: relative;
}
.main-nav .main-nav-item.depth1 > .main-nav-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: color .3s;
    line-height: 1.3em;
}
 .main-nav .main-nav-sub { 
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    padding: 10px 0 30px;
    transform: translateX(-50%);
    transition: height .3s, opacity .3s, visibility .3s, background-color .3s;
    z-index: 2001;
} 
.main-nav .main-nav-item.depth2 {
    padding: 10px 0;
}
.main-nav .main-nav-item {
    display: flex;
    align-items: center;
    position: relative;
}
.main-nav .main-nav-item.depth2:first-child > .main-nav-link {
    padding-top: 0;
}
.main-nav .main-nav-item.depth2 > .main-nav-link {
    padding: 0 10px;
    color: #555;
    transition: color .3s;
    text-align: center;
}
.main-nav .main-nav-sub .main-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #555;
}
.main-nav:hover .main-nav-sub {
	opacity:1;
}
.header_trans {
	flex-shrink: 0;
    width: 200px;
    height: 100%;
}
.header-btn {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: -1px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border-left: 1px solid rgba(255,255,255,.2);
    transition: background-color .3s;
}
.header_trans span{
	background: url(../images/globe.png) 0 0 no-repeat;
	padding-left: 30px;
}
.main-nav .main-nav-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    visibility: hidden;
    opacity: 0;
    background-color: #23aee8;
    transition: visibility .3s, opacity .3s;
}
.header.hover{height:353px; background-color:#fff; box-shadow:2px 2px 10px rgba(0,0,0,0.1)}
.header.fixed.hover {height:333px;}
.header.hover .header-wrap::after {display:block; background-color:#e5e5e5;}
.header.hover .logo-basic, .header.fixed .logo-basic, .mobile-open .logo-basic{display:none;}
.header.hover .logo-on, .header.fixed .logo-on, .mobile-open .logo-on {display:block;}
.header.hover .main-nav .main-nav-item.depth1 > .main-nav-link,  .header.fixed .main-nav .main-nav-item.depth1 > .main-nav-link{color:#222;}
.header.hover .main-nav .main-nav-item.depth1:not(:last-child)::after {background-color:#e5e5e5;}
.header.hover .main-nav .main-nav-item > .main-nav-sub{height:253px;visibility:visible;opacity:1;}
.header.hover .main-nav .main-nav-item > .main-nav-sub{height:253px;visibility:visible;opacity:1;}
.header.hover .header-btn, .header.fixed .header-btn { color: #222;} 
.header.hover .header_trans span, .header.fixed .header_trans span{
	background: url(../images/globe_on.png) 0 0 no-repeat;
}
.header.hover .main-nav .main-nav-item.depth1:hover > .main-nav-link {color: #23aee8;}
.header.hover .main-nav .main-nav-item.depth1:hover > .main-nav-sub::before{visibility:visible;opacity:1;}
.header.hover .main-nav .main-nav-item.depth2:hover > .main-nav-link {color: #23aee8;}
.header.fixed {
	background: #fff;
	box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
	height: 80px;
}
.header.fixed .header_inner  { height: 80px; }
.footer {
	position: relative;
    padding: 60px 0 70px;
    background-color: #1d1d1d;
	margin-top: 50px;
}
.footer .inner {
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 0px 60px;
    display: flex;
	font-size: 14px;
}
.footer_logo { padding-right: 20px;	}
.info {
	max-width: 80%;
	color: #e7e7e7;
		}
.footer_sns {
	display: flex;
    position: absolute;
    right: 60px;
    top: 0;
}
.copy {
	padding: 10px 0 ;
	color: #e7e7e7;
	font-size: 13px;
}
/*서브*/
.page_top {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}
.page_top .txt {
	position: relative;
    width: var(--inner-width);
    height: 100%;
    margin: 0 auto;
    max-width: var(--inner-max-width);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page_top .txt .tit {
    font-size: 40px;
    color: #fff;
    font-family: var(--title-font-family);
    line-height: 1;
    text-transform: uppercase;
}
.page_top .sub_bg {
	position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #666;
}
.page_top .sub_bg .img {
	display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.w_1400 {
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}
.w_1080 {
	max-width: 1080px;	
	width: 100%;
    position: relative;
    margin: 0 auto;
}
.pt_25 {
	padding-top: 25px;
}
.page-section .inner {
	margin: 0 auto;
    position: relative;
	text-align: center;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5% 0;
}
.page-section .inner .sub_title {
	position: relative;
    padding-bottom: 40px;
    margin-top: 15px;
	font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
}
.page-section .inner > .text-medium {
	font-size: 20px;
	color: #676767;
}

ul.about_list {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
	margin-top: 30px;
}
ul.about_list > li {
    width: 26%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
ul.about_list  > li.plus {
    width: 10%;
}
ul.about_list > li.plus  p {
    background: url(../images/sub/01-02-about.png) 50% 50% no-repeat ;
    width: 100%;
	height: 100%;
    background-size: 80%;
}

ul.about_list > li > .inner {
	width: 100%;
	height: 100%;
	text-align: center;
}
ul.about_list > li > .inner .img {
	background: #d5f1fd 50% 50% no-repeat ;
	background-size: 60%;
	width: 20em;
	height: 20em;
	margin: 0 auto;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius: 50%;			
}
ul.about_list > li > .inner > .text-title {
	margin-top: 18px;
	font-size: 32px;
	font-weight: bold;
}
ul.about_list > li > .inner > .text-medium {
	padding-top: 10px;
}
.bdt { border-top: 1px solid #d5d6d7; }
.sub_title_s { font-size: 20px; font-weight: 600; }


/*테이블*/
.fixed-table-container {
  width: 100%;
  min-width: ;
  border-bottom: 1px solid #d7d7d7;
  position: relative;
  padding-top: 64px; /* header-bg heightê°’ */
}
.header-bg {
  height: 64px; /* header-bg heightê°’ */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid #aaa;
  border-top: 2px solid #5a9d24;;
}
.table-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper table > tbody > tr { height: 62px; }
.table-wrapper table > tbody > tr:hover {
	background: #f7f7f7;
	color: #5a9d24;
	cursor: pointer;
}
.table-wrapper table tr th {
  padding: 0px; /* reset */
}
.table-wrapper .th-text {
  position: absolute;
  top: 0;
  width: inherit;
  line-height: 60px; /* header-bg heightê°’ */
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.table-wrapper th:first-child .th-text {
  border-left: none;
}
.fixed-table-container .table-wrapper table tr td {
  border-bottom: 1px solid #dedede;
  padding: 5px;
  text-align: center;
  font-size: 14px;
}
.table-wrapper table tr td + td {
 text-align: center;
}
.fixed-table-container .table-wrapper table tr td.ta_left {
	text-align: left;
}

/*width*/
.w10 { width: 10%; }
.w20 { width: 20%; }
.w25 {
	width: 25%;
}
.w30 {
	width: 30%;
}
.w35 {
	width: 35%;
}
.w40 {
	width: 40%;
}
.w45 {
	width: 45%;
}
.w50 {
	width: 50%;
}
.w55 {
	width: 55%;
}
.w60 {
	width: 60%;
}
.w65 {
	width: 65%;
}
.w70 {
	width: 70%;
}
.w80 {
	width: 80%;
}
.w90 {
	width: 90%;
}
.w100 {
	width: 100%;
}
.white {
	color: #fff;
}
/**헤더 모바일**/
.hamburger  {
    display: none ;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	background-color: #fff;
}
.header.fixed .hamburger-inner, .header.fixed .hamburger-inner::before, .header.fixed .hamburger-inner::after {
	background-color: #222;
}
.mobile-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    background-color: #fff;
    transition: visibility .3s, opacity .3s, transform .3s;
    z-index: 2000;
}
.mobile-menu.show {
	opacity: 0;
}
.mobile-wrap {
    display: flex;
    flex-direction: column;
    height: calc(100% - 70px);
}
.mobile-content {
    height: calc(100% - 100px);
    padding-bottom: 40px;
    margin-top: 30px;
}
.mobile-nav {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.mobile-nav .main-nav-item {
    position: relative;
}
.mobile-nav > .main-nav-item > .main-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 70px 15px 40px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
}
.main-nav-link-btn {
    position: absolute;
    top: 18px;
    right: 40px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: -99px;
    border: 0;
    background-color: transparent;
    z-index: 50;
	cursor: pointer;
}
.main-nav-link-btn::before {
    content: "\e5cf";
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: Material Icons !important;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    text-indent: 0;
    font-variant: normal;
    text-transform: none;
    speek: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(-50%, -50%);
    transition: transform .3s;
}
.mobile-nav .main-nav-item.open .main-nav-link-btn {
	transform: rotate(180deg);
}
.mobile-nav .main-nav-item .main-nav-sub {
    display: none;
    position: relative;
    padding: 20px 40px;
    margin-top: -1px;
    background-color: #f8f8f8;
    z-index: 50;
}
.mobile-nav .main-nav-sub .main-nav-item {
    padding: 10px 0;
}
.mobile-nav .main-nav-item {
    position: relative;
}
.mobile-nav .main-nav-sub .main-nav-link {
    font-size: 18px;
    color: #555;
}
.disply-flex {
    display: flex;
}
.text-align-c {
    text-align: center;
}
.body-mobile { overflow: hidden;}
/*미디어 쿼리*/
@media screen and (max-width: 1024px) {
    .header_inner { padding: 0 20px; height: 70px;}
	.hamburger {
		display: inline-block;
	}
	.header_nav, .header_trans {
		display: none;
	}
	.header {height: 70px;}
	.mobile-menu.show { opacity: 1; }
	.header.mobile-open {
		background-color: #fff;
		box-shadow: none;
	}
	.address_wrap > dl.w35, .address_wrap > dl.w30 { width: 50%; }
	.page-section {
		padding-left: 5%;
		padding-right: 5%;
	 }
     .page_top .txt .tit, .page-section .inner .sub_title { 
		word-break: keep-all;
	}
}
@media screen and (max-width: 640px){
	.footer_sns { display: none;}
	.page_top { height: 300px; }
	.page_top .txt .tit, .page-section .inner .sub_title { 
		font-size: 3em; 
		line-height: 1.2;
    }
	 .footer .inner {
		flex-wrap: wrap;
		 padding: 0px 20px;
	 }
	 .footer_logo { margin-bottom: 5%; }
	 .info { max-width: 100%; }
	 .info li:first-child { padding-bottom: 3%; }
	 .copy { padding: 10px 0 0 20px; }
	 .address_wrap > dl.w35, .address_wrap > dl.w30 { width: 100%; }
	 .table-wrapper .th-text, .fixed-table-container .table-wrapper table tr td {font-size: 1em;}
     .copy {
        padding: 0 ;
        
    }
  
   
}
