/************************************
* LAYOUT                            *
************************************/
html {
	background-color: #323232;
	background-image: url('/assets/images/common/bg.png');
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
}

.inner {
	width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
}

.new_main .inner {
	max-width:1620px;
	width:100%;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.pagination {
	color: #fff;
    font-size: 1.4rem;
}
.pagination .paginate-complex {
	display: flex;
    padding: 1rem 0;
    justify-content: center;
}

.btnGrp {
	display: flex;
    padding: 2rem 0;
	align-items: center;
}
.btnGrp.tc {
	justify-content: center;
}
.btnGrp.tl {
	justify-content: flex-start;
}
.btnGrp.tr {
	justify-content: flex-end;
}

.btnGrp .btn {
	font-size: 1.3rem;
    min-width: 7rem;
    border: none;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    padding: 1rem 0.5rem;
    align-items: center;
    box-shadow: inset 1px 1px 0 0 #444;
    background-color: #efefef;
    color: #333;
	border-radius: 0.5rem;
}
.btnGrp .btn:hover {
	background-color: #555;
	color:#fefefe;
}

/***********************************
* HEADER                           *
***********************************/
header {
	position: fixed;
	height: 10rem;
	top: 0;
	right:0;
	left: 0;
	z-index: 900;
	box-shadow: 0 1px 5px -3px #333;
	width: 100%;
	
}
header:before {
	content:"";
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	right: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: all 1s ease-in-out;
	background-image: linear-gradient(to bottom, #323232, rgba(50,50,50, 0.9));
}
header:after{
	content: "";
	position: absolute;
	top: 12rem;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 0;
	transition: height,top .3ms;
	box-shadow: inset 0 1px 5px -3px #333;
}
header.dark::before {
	opacity: 1;
	visibility: visible;
}
header .logo {
	height: 50px;
	display: inline-block;
}header .logo img{
	height: 100%;
}
header .logo.cup_logo{
	height: 64px;
}
header .logo-m {
	display: none;
}

header > .inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
}


nav {
	top:0;
	height: 10rem;
}
nav > ul {

}

nav > ul > li {
	float:left;
	max-height: 12rem;
	position: relative;
}

nav > ul > li > a {
	font-size: 1.6rem;
	font-weight: 700;
	height: 10rem;
	padding: 0 1rem;
	text-align: center;
	display: inline-block;
	line-height: 10rem;
	color: #fff;
	transition: color .3s;
	box-sizing: border-box;
}
nav > ul > li:hover > a {
	color:#C66002;
}
nav > ul > li > div.nav__depth-2 {
	visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 9rem;
    left: -1.5rem;
    z-index: 999;
    border-radius: 1rem;
    padding: 1rem;
    background-color: #fff;
    width: inherit;
}
nav > ul > li > div.nav__depth-2 ul {

}

nav > ul > li > div.nav__depth-2 ul > li a {
	position: relative;
	color: #666;
	font-size: 1.6rem;
	padding: 1.2rem 0;
	width: 100%;
	text-align: center;
	display: inline-block;
}

nav div.nav__depth-2 ul > li:hover a {
	color:#C66002;
	border-bottom:1px solid #C66002;
}

nav div.nav__depth-2 ul > li:hover a em.arrow i {
	color:#C66002;
}


nav > ul > li:hover > div.nav__depth-2 {
	visibility:visible;
	opacity: 1;
}

div.util-mBtn {
	display:none;
	width: 7rem;
	height: 7rem;
	vertical-align: top;
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	z-index: 999;
}
div.util-mBtn .btn-toggle {
	position:relative;
	width:100%;
	height:100%;
	color:#fff;
	background:none;
	border:none;
}
div.util-mBtn .btn-toggle span.line {
	display: inline-block;
	position: absolute;
	left: 50%;
	margin-left: -2rem;
	width: 4rem;
	height: 0.6rem;
	background: #000;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	border-radius: 0.2rem;
}



/***********************************
* CONTENT                          *
***********************************/
.content {
	position:relative;
}


.swiper-container {
	width: 100%;
	border-top:1px solid #000;
	z-index:1;
}
.swiper-container .swiper-slide{
	width: 600px;
}
#section_04 .swiper-container .swiper-slide{
	width: 100%;
}
.swiper-container .swiper-slide img {
	width: 100%;
    vertical-align: middle;
}
.swiper-container .swiper-slide .description {
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}
.swiper-container .swiper-slide.swiper-slide-active {
	box-shadow: 0 0 4rem 2px #000;
}
.swiper-container .swiper-slide.swiper-slide-active .description {
	height:3rem;
	width: 100%;
	line-height:3rem;
	position: relative;
	display: inline-block;
	visibility: visible;
	opacity: 1;
}
.swiper-container .swiper-slide.swiper-slide-active .description p {
	color:#fff;
	font-size:1.4rem;
	text-align: center;
}
.swiper-container .swiper-button-next, 
.swiper-container .swiper-button-prev {
	width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
}
.swiper-container .swiper-button-prev, 
.swiper-container .swiper-rtl .swiper-button-next {
	left: calc(50% - 410px);
	right:auto;
}
.swiper-container .swiper-button-next, 
.swiper-container .swiper-rtl .swiper-button-prev {
	right: calc(50% - 410px);
	left:auto;
}
.swiper-container .swiper-button-next:after, 
.swiper-container .swiper-button-prev:after {
	font-size: calc(var(--swiper-navigation-size)/1.5);
	text-align: center;
	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);
	border-radius: 100%;
    border: 1px solid #fff;
	line-height: var(--swiper-navigation-size);
	background-color: rgba(0,0,0,0.3);
    color: #fff;
}

.swiper-container-equipment, .swiper-container-platform {
	width: 100%;
	height: 100%;
}
.swiper-container-equipment .swiper-slide,
.swiper-container-platform .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-container-platform .swiper-slide {
	flex-direction: column;
}

.swiper-container-equipment .swiper-slide img,
.swiper-container-platform .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-container-platform .swiper-slide .desc {
	position: relative;
    height: 3rem;
    margin-top: -3rem;
    width: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 1;
}
.swiper-container-platform .swiper-slide .desc p {
	color: #fff;
    position: absolute;
    line-height: 3rem;
    height: 3rem;
    display: inline-block;
    z-index: 1;
}

section {
	/*min-height: 75rem;*/
	height: min-content;
	width: 100%;
    overflow: hidden;
}

section .inner > h2,
section .inner > h3
{
	color:#fff;
	text-align: center;
}

section .inner > h2 {
	position:relative;
	font-size: 2.6rem;
	z-index: 1;
	padding: 5rem 0;
	font-weight: 100;
}
.new_main section .inner > h2{
	margin-top:3rem;
	line-height: 3.8rem;
	font-size: 3.8rem;
}
section .inner > h2::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 35%;
	height: 1px;
	left:0;
	top:50%;
	background:linear-gradient(#A86D25, #9F641C);
	z-index: 0;
}
section .inner > h2::after {
	content: "";
	display: inline-block;
	position: absolute;
	width:35%;
	height: 1px;
	right:0;
	top:50%;
	background:linear-gradient(#9F641C, #A86D25);
	z-index: 0;
}

section .inner > h3 {
	font-size: 2.4rem;
	font-weight: 400;
	letter-spacing: 0.2rem;
}
#section_05 .inner > h3{
    font-size: 2rem;
    font-weight: 200;
}
section .inner > h3 > span {
	font-size: 1.8rem;
	display: block;
	font-weight: 100;
	margin:0.5rem 0;
}
#section_01 .description{
	text-align: center;
}
.description_img{
	width: 650px;
	vertical-align: middle;
	margin: 3rem 0;
	max-width: 60%;
}
#section_01 .description p.description_catchphrase{
	display: block !important;
	width: auto !important;
	font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
	font-weight: 800;
	font-size: 4.6rem;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #8c8c8c;
	text-align: center;
	margin: 1rem 0 3rem;
}
@media (max-width: 768px) {
	#section_01 .description p.description_catchphrase{
		font-size: 2.6rem;
	}
}
.swiper-wrapper{
	padding-bottom:40px !important;
}
#section_01 .description p{
	display:none !important;
}
.tab_wrap { margin: 6rem 0;}

.tab {
	display: flex;
    justify-content: center;
}
.tab ul {
	display: inline-block;
}
.tab ul li {
	float:left;
	margin-left:1rem;
}
.tab ul li:first-child {
	margin:0;
}
.tab ul li a {
	font-size:1.6rem;
	border:1px solid #C67617;
	padding:0.1rem 2rem;
	color:#C67617;
	border-radius: 5rem;
	display: inline-block;
    height: fit-content;
}
.tab ul li.active a {
	background-color:#C67617;
	color:#323232;
}

.tab_contents {
	position: relative;
	margin:3rem 0;
	z-index: 0;
}
.tab_contents::before {
	content:"";
	left:0;
	bottom:0;
	width: 20%;
	height:100%;
	position: absolute;
	display:inline-block;
	background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
	z-index:1;
}
.tab_contents::after {
	content:"";
	right:0;
	bottom:0;
	width:20%;
	height:100%;
	position: absolute;
	display:inline-block;
	background: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
	z-index:1;
}

.tab_contents > div {
	background: #252525;
}
.tab_contents article.bg {
	display:block;
	width:100%;
	height:3rem;
	margin-top: -3.1rem;
	position: absolute;
	background-color: #000;
	z-index:0;
}

.tab_contents > div {
	display: none;
}
.tab_contents > div.active {
	display: flex;
    justify-content: center;
}

.floating{ position: absolute; right:0; top:10rem; z-index:99999; transition:all 0.15s}
.floating ul { display: flex; justify-content: center; align-items: center; flex-direction: column; }
.floating ul li { margin: 0.2rem 0; display: flex; flex-direction: column; width: 10rem; align-items: center; }
.floating ul li+li{  }
.floating ul li a{ padding: 1.5rem; text-align: left; display: inline-block; width: 100%; height: 100%; line-height: 2.5rem; color: #333; font-size: 14px; }
.floating ul li a:hover,
.floating ul li a.active{ font-weight: 900; }
.layer{text-align: center;}

/***********************************
* SECTION CUSTOM                   *
***********************************/
#section_01 .inner {
	height: 100rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#section_01 .keyvisual {
	display: inline-block;
}
#section_01 .keyvisual > .keyvisual_img {
	display: block;
	max-width: 100%;
	max-height: 60vh;
	width: auto;
	height: auto;
	margin: 0 auto;
}
#section_01 .keyvisual 					{ position:relative; text-align:center; }
#section_01 .keyvisual table			{ z-index: 10;display:table;margin:0 auto; }
#section_01 .keyvisual table td			{ padding: 13px 10px; }
#section_01 .keyvisual table tr:first-child td	{ padding-top:0; }
#section_01 .keyvisual table tr:last-child td	{ padding-bottom:0; }
#section_01 .keyvisual table td img		{ scale: 0.7; }
#section_01 .keyvisual table td .img1	{ opacity:1; }
#section_01 .keyvisual table td .img2	{ opacity:0.6; }
#section_01 .keyvisual table td .img3	{ opacity:0.3; }
#section_01 .keyvisual table td .img4	{ opacity:0.6; }
#section_01 .keyvisual table td .img5	{ opacity:1; }
#section_01 .keyvisual table td .img6	{ opacity:0.7; }
#section_01 .keyvisual table td .img7	{ opacity:0.9; }
#section_01 .keyvisual table td .img8	{ opacity:0.5; }
#section_01 .keyvisual table td .img9	{ opacity:1; }
#section_01 .keyvisual table td .img10	{ opacity:0.2; }
#section_01 .keyvisual table td .img11	{ opacity:1; }
#section_01 .keyvisual table td .img12	{ opacity:0.3; }
#section_01 .keyvisual table td .img13	{ opacity:0.7; }
#section_01 .keyvisual table td .img14	{ opacity:0.3; }

#section_01 video {
	width: 100%;
}

.m_tr{display:none}
.pc_tr{display:table-row}

#section_01 .description p {
	width: 51rem;
    text-align: center;
    color: #898989;
    font-size: 3rem;
    font-weight: lighter;
    margin: 3rem 0;
}


#section_02 .business_cont {
	margin-top:24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#section_02 .business_cont > li {
	background-color: #F7941D;
	border:2px solid #000;
	flex: 1 1 40%;
	margin-right:2rem;
	margin-bottom:2rem;
	position: relative;
	height: 30rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}
#section_02 .business_cont > li:nth-child(n+3) {
	margin-bottom:0;
}
#section_02 .business_cont > li:nth-child(2n) {
	margin-right:0;
	padding-left: 2rem;
}
#section_02 .business_cont > li:nth-child(2n-1)::before {
	background:linear-gradient(to right, #000, rgba(0,0,0,0));
	background-repeat: no-repeat;
	background-size:100% 100%;
	content:"";
	top:0;
	left:0;
	width:40%;
	height: 100%;
	display: inline-block;
	position: absolute;
}
#section_02 .business_cont > li:nth-child(2n)::before {
	background:linear-gradient(to left, #000, rgba(0,0,0,0));
	background-repeat: no-repeat;
	background-size:100% 100%;
	content:"";
	top:0;
	right:0;
	width:40%;
	height: 100%;
	display: inline-block;
	position: absolute;
}

#section_02 .business_cont > li:nth-child(2n-1) {
	text-align: right;
	padding-right: 2rem;
}

#section_02 .business_cont > li > h4 {
	font-size:2.4rem;
	font-weight: 600;
	color:#fff;
}
#section_02 .business_cont > li > h5 {
	font-size: 2.4rem;
	font-weight: 400;
	color:#fff;
}
#section_02 .business_cont > li > div.business_cont_list {
    height: fit-content;
    margin-top: 1rem;
    display: inline-block;
}
#section_02 .business_cont > li:nth-child(2n-1) > div.business_cont_list {
	right: 0;
	margin-right: 2rem;
}
#section_02 .business_cont > li:nth-child(2n) > div.business_cont_list {
	left: 0;
	margin-left: 2rem;
}
#section_02 .business_cont > li > div.business_cont_list::after {
	clear:both;
}
#section_02 .business_cont > li > div.business_cont_list ul {
	height: fit-content;
    width: max-content;
    display: inline-block;
}
#section_02 .business_cont > li > div.business_cont_list ul li {
    display: inline-block;
    width: 25rem;
	height: 15rem;
	overflow: hidden;
}
#section_02 .business_cont > li:nth-child(4) > div.business_cont_list ul li {
	width:10rem;
}
#section_02 .business_cont > li > div.business_cont_list ul li img {
	width: 100%;
	max-height: 100%;
}

#section_02 .business_cont > li > div.description {
	position: absolute;
    bottom: 0;
    margin-bottom: 2rem;
}
#section_02 .business_cont > li > div.description ul li {
	color:#fff;
	font-size:1.4rem;
	line-height: 2.4rem;
	position:relative;
	padding-left: 1.2rem;
}
#section_02 .business_cont > li > div.description ul li::before {
	position: absolute;  
    top: -1px;
    margin: 0 0 0 -1rem;
    vertical-align: middle;
    display: inline-block;
    content: '\2022';
}
#section_02 .business_cont > li:nth-child(2n-1) > div.description {
	right: 0;
	margin-right: 2rem;
}
#section_02 .business_cont > li:nth-child(2n) > div.description {
	left: 0;
	margin-left: 2rem;
}
ul.business_cont_new{
	display: flex;
	gap:5px;
	margin-top:25px;
	justify-content: center;
}
ul.business_cont_new > li{
	width:33.333%;
	color:#fff;
}
ul.business_cont_new > li h4{
	font-size: 2.4rem;
	text-align: center;
	margin-bottom:5px;
}
.business_cont_new_div{
	background: #f7941d;
	padding: 2rem;
	border-radius: 0px;
	text-align: center; 
}
.business_line{
	margin:15px 0;
	border-top:1px solid #fedbb4;
	border-bottom:4px solid #fedbb4;
	padding:7px 0;
}
.business_line hr{
	display:block;
	height:1px;
	background:#fedbb4;
	border:0;
	margin:0;
}
.business_cont_new_div > img{
	width:89px;
	margin-bottom: 0;
}
ul.business_cont_new > li h5{
	font-size: 5.4rem;
	color:#000;
	text-align: center;
}
.business_cont_new_ul{
	display: flex;
	gap:5px;
}
.business_cont_new_ul > li{
	width:50%
}
.business_cont_new_div div.description{
	padding-top:15px;
}
.business_cont_new_div div.description ul li {
	color:#fff;
	font-size:1.4rem;
	line-height: 2.4rem;
	position:relative;
	padding-left: 1.2rem;
}
.business_cont_new_div div.description ul li::before {
	position: absolute;  
    top: -1px;
    margin: 0 0 0 -1rem;
    vertical-align: middle;
    display: inline-block;
    content: '\2022';
}
.business_cont_r_line{
	height:1px;
	width:100%;
	background:#f7941d;
	margin:25px 0;
	position: relative;
}
.business_cont_r_line:after,
.business_cont_r_line:before{
	content:"";
	display:block;
	width:9px;
	height:9px;
	border-radius: 50%;
	position: absolute;
	background:#f7941d;
	top:50%;
	transform: translateY(-50%);
}
.business_cont_r_line:after{
	right:0;
}
.business_cont_new_ul > li{
	position: relative;
}
.business_cont_newB_li2 .business_cont_new_ul > li:after{
	position: absolute;
	width:5px;
	height:100%;
	background:#858585;
	content:"";
	display:block;
	top:0;
	left: 50%;
	transform: translateX(-50%);
}
.business_cont_new_ul > li img{
	width:100%;
	vertical-align: middle;
}
.business_cont_newB .business_cont_new_div{
	background: #858585;
	padding-top:30px;
}

.business_cont_newB .business_line{
	border-top:1px solid #e6e6e6;
	border-bottom:4px solid #e6e6e6;
}
.business_cont_newB .business_line hr{
	background:#e6e6e6;
}

.business_cont_newB h5{
	position: relative;
}
.business_cont_newB h5 img{
	position: absolute;
	top:-12px;
	width:89px
}
.business_cont_newB_li1 h5 img{
	left:7%;
} 
.business_cont_newB_li2 h5 img{
	right:7%;
} 
#section_03 h4 {
	font-size: 2rem;
    border: 1px solid #C67617;
    padding: 1rem 2rem;
    color: #C67617;
    border-radius: 5rem;
    display: block;
    position: relative;
    width: fit-content;
    margin: 4rem auto 2rem;
    text-align: center;
}

#section_03 .slide-article {
	position: relative;
	margin:3rem 0;
	z-index: 0;
	background: #252525;
}
#section_03 .slide-article::before {
	content:"";
	left:0;
	bottom:0;
	width: 20%;
	height:100%;
	position: absolute;
	display:inline-block;
	background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
	z-index:1;
}
#section_03 .slide-article::after {
	content:"";
	right:0;
	bottom:0;
	width:20%;
	height:100%;
	position: absolute;
	display:inline-block;
	background: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
	z-index:1;
}

#section_03 .slide-article article.bg {
	display:block;
	width:100%;
	height:3rem;
	margin-top: -3.1rem;
	position: absolute;
	background-color: #000;
	z-index:0;
}



#section_04 {
	background-image: url('/assets/images/main/section_04/section_04_bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}
#section_04 .wrap {
	display: flex;
	height: 60rem;
	flex-direction: row;
    justify-content: center;
	border:1px solid #000;
}
#section_04 .wrap .slide .swiper-slide {
	position: relative;
}
#section_04 .wrap > div {
	position: relative;
	overflow: hidden;
}
#section_04 .wrap .slide .swiper-slide img{
    vertical-align: middle;
}
#section_04 .wrap > div:nth-child(1) {
	flex-shrink: 0;
	width: 55%;
}

#section_04 .wrap > div:nth-child(1){
	
}
#section_04 .wrap > div:nth-child(2) {
	background-color: #252525;
	flex-grow: 1;
	padding: 2.2rem;
}
#section_04 .wrap > div:nth-child(2) > h3{
	color:#f39800;
	text-align: left;
	font-size: 2.6rem;
    font-weight: 400;
	padding-bottom: 2rem;
	border-bottom: 1px solid #f39800;
}

#section_04 .wrap > div:nth-child(2) > ul {
	margin-top:2rem;
}
#section_04 .wrap > div:nth-child(2) > ul > li {
	color:#fff;
	font-size:1.4rem;
	line-height: 3.4rem;
	position:relative;
	padding-left: 1.2rem;
	float: left;
    width: 45%;
}
#section_04 .wrap > div:nth-child(2) > ul > li::before {
	position: absolute;  
    top: -1px;
    margin: 0 0 0 -1rem;
    vertical-align: middle;
    display: inline-block;
    content: '\2022';
}
.new_main #section_04 .wrap{
	height:auto;
}

.wrap_list{
	display:flex;
	gap:10px;
}
.wrap_list ul{
	width:50%;
}

.wrap_list ul li {
    color: #fff;
    font-size: 1.4rem;
    line-height: 3.4rem;
    position: relative;
    padding-left: 1.2rem;
}
.margin-top30{
	margin-top:34px;
}
.wrap_list ul li::before {
    position: absolute;
    top: -1px;
    margin: 0 0 0 -1rem;
    vertical-align: middle;
    display: inline-block;
    content: '\2022';
}
.wrap_listB ul {
    width: 100%;
    display: flex;
	gap:0 10px;
    flex-wrap: wrap;
	overflow: hidden;
	position: relative;
}
.wrap_listB ul li{
	width:calc(50% - 24px);
	padding-left:14px;
	position: static;
}
.wrap_listB ul li::before {
	top:auto;
	line-height: 32px;
}
.wrap_listB ul li:nth-child(16){
	margin-bottom:15px;
}
.wrap_listB ul li:nth-child(17)::after {
	content: "";
    position: absolute;
    margin-top:-7px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: orange;
}
@media screen and (max-width: 550px) {
	.wrap_listB ul{
		margin-top:10px;
	}
	.wrap_listB ul li{
		width:calc(100%);
		padding-left:14px;
		position: static;
		line-height: 30px;
	}
	.wrap_listB ul li::before {
		top:auto;
		line-height: 28px;
	}
}

#section_05 {
	background-image: url('/assets/images/main/section_05/section_05_bg.png');
	background-size:cover;
}

#section_05 > .inner > h3 span {
	font-size: 4rem;
	font-weight: 600;
}
#section_05 > .inner > h3 img {
	margin: 4rem 0;
    width: 40rem;
}

#section_05 .wrap {
	margin-top: 4rem;
	margin-bottom: 4rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#section_05 .wrap .slide {
	position: relative;
	overflow: hidden;
}
#section_05 .wrap .slide .swiper-slide {
	position: relative;
}
#section_05 .wrap .slide .swiper-slide .desc {
	position: absolute;
	background-color: rgba(0,0,0, 0.5);
	color:#fff;
	font-size: 1.4rem;
	height: 3rem;
	line-height: 3rem;
	width: 100%;
	text-align: center;
	bottom: 0;
}

#section_05 .wrap > .desc {
	background-color: rgba(0,0,0,.7);
	height: 28rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#section_05 .wrap > .desc div {
	height: 100%;
    display: flex;
    flex-direction: column;
}
#section_05 .wrap > .desc div:nth-child(1) > ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li {
	float:left;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li h4 {
	border:5px solid #f7941d;
	border-radius: 100%;
	width: 18rem;
	height: 18rem;
	color:#fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li h4 b {
	font-size:3.6rem;
	font-weight: 900;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom:1px solid #f7941d;
}
#section_05 .wrap > .desc div:nth-child(1) > ul li h4 p {
	font-size:1.4rem;
	font-weight: 600;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) {
	width: 3rem;
    margin: 0 1rem;
    position: relative;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) span {
	position: absolute;
	height: 1px;
    width: 3rem;
    display: inline-block;
    background-color: #F7941D;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) span:nth-child(1) {
    rotate: 45deg;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) span:nth-child(2) {
	rotate: -45deg;
}
#section_05 .wrap > .desc div:nth-child(n+2) {
	margin-left:3rem;
	padding-top:3rem;
}
#section_05 .wrap > .desc div:nth-child(n+2) > h4 {
	color:#F7941D;
	font-weight: bold;
	font-size: 2.4rem;
	padding-bottom:1rem;
	margin-bottom:1rem;
	border-bottom:1px solid #F7941D;
}
#section_05 .wrap > .desc div:nth-child(n+2) > ul > li {
	font-size: 1.4rem;
	color:#fff;
	line-height: 2rem;
	font-weight: 100;
	word-break: keep-all;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li h4.h4_title{
	font-size: 4rem;
	font-weight: 500;
}
#section_05 .wrap > .desc div:nth-child(1) > ul > li h4.h4_title span{
	font-size: 2rem;
    display: block;
	height:0;
	margin: 7px 0 0px;
	padding-top:1px;
	overflow: hidden;
	background-color: #F7941D;
	width:50%;
}
@media screen and (max-width: 1199px) {
	#section_05 .wrap > .desc div:nth-child(1) > ul > li h4.h4_title {
		font-size: 3rem;
	}
}
@media screen and (max-width: 370px) {
	#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) span{
		width:100%;
	}
}
#section_06 {
	min-height: 50rem;
}
#section_06 > .inner > div {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
    max-width:800px;
    margin:0 auto;
    
}
#section_06 > .inner > div > div.map {
	flex-shrink: 0;
	width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-right:4rem;
}
#section_06 > .inner > div > div.map img {
	border:1px solid #fff;
	width: 41rem;
	margin-right:2rem;
}
#section_06 > .inner > div > div.map img:last-child {
	margin-right:0;
}

#section_06 > .inner > div > div.desc {
	flex-grow: 1;
    margin-top:20px;
}
#section_06 > .inner > div > div.desc dl {
	color:#fff;
	font-size:1.6rem;
	line-height: 2.2rem;
}
#section_06 > .inner > div > div.desc dl:nth-child(2) {
	margin-top: 4rem;
}
#section_06 > .inner > div > div.desc dl dt {
	background-color: #F7941D;
	padding:0.3rem 2rem;
	color:#323232;
    min-width:150px;
	border-radius: 50px;
	font-weight: bold;
	margin-bottom:1rem;
    display:inline-block
}
#section_06 > .inner > div > div.desc dl dd {
	padding-left: 10px;
    line-height:28px;
}
#section_06 > .inner > div > div.desc dl dd span {
	color:#F7941D;
	font-weight: bold;
}

section.news .inner {
	min-height: 75rem;
	padding-top: 10rem;
}

section.news .inner .row {
	display: flex;
    padding: 1.2rem 0;
    justify-content: space-between;
}

section.news .inner .row .search {
	display: flex;
}
section.news .inner .row .search input 
{	
	border: none;
    box-shadow: inset 1px 1px 0px 0px #444;
    padding: 1.2rem;
    border-radius: 0.5rem 0 0 0.5rem;
}
section.news .inner .row .search .btn {
	font-size: 1.3rem;
    min-width: 7rem;
    border: none;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    box-shadow: inset 1px 1px 0 0 #444;
    background-color: #efefef;
	color:#333;
}
section.news .inner .row .search .btn:hover {
	background-color: #555;
	color:#fefefe;
}
    
section.news .inner .row .search .btn:first-child {
	border-radius: 0.5rem 0 0 0.5rem;
}
section.news .inner .row .search .btn:last-child {
	border-radius: 0 0.5rem 0.5rem 0;
}

section.news .inner .total {
	font-size: 1.4rem;
    padding: 1.2rem 0;
    color: #fff;
}
.news .inner > ul > li:first-child {
	border-top:2px solid #999;
}
.news .inner > ul > li {
	border-bottom: 1px solid #555;
}
.news .inner > ul > li > a {
	padding: 1rem 0;
    line-height: 2rem;
    color: #fff;
    width: 100%;
    display: inline-block;
}
.news .inner > ul > li p.subject {
	font-size: 1.8rem;
    padding: 1rem 2rem;
	color:#fff;
}
.news .inner > ul > li span.info {
	display: flex;
    padding: 1rem 2rem;
	color:#fff;
}
.news .inner > ul > li span.info span {
	font-size: 1.3rem;
    margin-right: 1.5rem;
}
.news .inner > ul > li span.info span i {
	color: bisque;
	margin-right: 0.5rem;
}
.news .inner > ul > li > a:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.news .inner > ul > li.cont {
	padding:2rem;
}
.news .inner > ul > li.cont img {
	max-width: 100%;
}
.news .inner > ul > li.cont
{
	background-color: #fff;
}

.news .inner > ul > li.cont,
.news .inner > ul > li.cont p,
.news .inner > ul > li.cont div {
	font-size: 1.6rem;
	line-height: 2.8rem;
}



section.insight .inner {
	min-height: 75rem;
	padding-top: 10rem;
}

section.insight .inner .row {
	display: flex;
    padding: 1.2rem 0;
    justify-content: space-between;
}

section.insight .inner .row .search {
	display: flex;
}
section.insight .inner .row .search input 
{	
	border: none;
    box-shadow: inset 1px 1px 0px 0px #444;
    padding: 1.2rem;
    border-radius: 0.5rem 0 0 0.5rem;
}
section.insight .inner .row .search .btn {
	font-size: 1.3rem;
    min-width: 7rem;
    border: none;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    box-shadow: inset 1px 1px 0 0 #444;
    background-color: #efefef;
	color:#333;
}
section.insight .inner .row .search .btn:hover {
	background-color: #555;
	color:#fefefe;
}
    
section.insight .inner .row .search .btn:first-child {
	border-radius: 0.5rem 0 0 0.5rem;
}
section.insight .inner .row .search .btn:last-child {
	border-radius: 0 0.5rem 0.5rem 0;
}

section.insight .inner .total {
	font-size: 1.4rem;
    padding: 1.2rem 0;
    color: #fff;
}
.insight .inner > ul > li:first-child {
	border-top:2px solid #999;
}
.insight .inner > ul > li {
	border-bottom: 1px solid #555;
}
.insight .inner > ul > li > a {
	padding: 1rem 0;
    line-height: 2rem;
    color: #fff;
    width: 100%;
    display: inline-block;
}
.insight .inner > ul > li p.subject {
	font-size: 1.8rem;
    padding: 1rem 2rem;
	color:#fff;
}
.insight .inner > ul > li span.info {
	display: flex;
    padding: 1rem 2rem;
	color:#fff;
}
.insight .inner > ul > li span.info span {
	font-size: 1.3rem;
    margin-right: 1.5rem;
}
.insight .inner > ul > li span.info span i {
	color: bisque;
	margin-right: 0.5rem;
}
.insight .inner > ul > li > a:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.insight .inner > ul > li.cont {
	padding:2rem;
}
.insight .inner > ul > li.cont img {
	max-width: 100%;
}
.insight .inner > ul > li.cont
{
	background-color: #fff;
}

.insight .inner > ul > li.cont,
.insight .inner > ul > li.cont p,
.insight .inner > ul > li.cont div {
	font-size: 1.4rem;
	line-height: 2.4rem;
}

/***********************************
* FOOTER                           *
***********************************/
footer {
	padding: 1rem 0;
	height: 12rem;
	background-color: #000;
	color:#fff;
}
footer .inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
}
footer .logo {
	width:18rem;
	display: inline-block;
	flex-shrink: 0;
	width: 18rem;
}
footer .logo a {
	display: inline-block;
}
footer .logo a img {
	width:80%;
}
footer .info {
	flex-grow:1;
	display: flex;
	height: 100%;
	justify-content: space-evenly;
	flex-direction: column;
}
footer .info ul li {
	font-size: 1.2rem;
	line-height: 2rem;
}

/***********************************
* MEDIA SCREEN                     *
***********************************/
/* TABLET						  */
/* @media screen and (max-width: 1199px) {
	.inner {
		padding: 1.5rem;
		width:inherit;
	}
} */

/* MOBILE						  */
@media screen and (max-width: 1280px) {
    ul.business_cont_new > li h5{
        font-size: 3.8rem;
    }
    ul.business_cont_newB h5 img {
        position: absolute;
        top: -10px;
        width: 68px;
    }
    .business_cont_new_div > img {
        width: 68px;
    }
}
@media screen and (max-width: 1199px) {
	html {
		background-size: cover;
	}

	.floating { display: none; }

	header .logo-normal {
		display: none;
	}
	header .logo-m {
		display: inline-block;
	}

	header {
		height: 8rem;
	}

	/* HEADER : ACTIVE */
	header.active nav {
		height: 100% !important;
	}
	header.active div.util-mBtn .btn-toggle span.line {
		top:3rem;
		transform: rotate(225deg);
		background: #f39800;
	}
	header.active div.util-mBtn .btn-toggle span:first-child {
		transform: rotate(135deg);
	}

	.inner {
		padding: 2rem;
		width: inherit;
	}
    #section_02 .inner {
		padding-top:0;
	}
    #section_02 .inner:nth-child(1){
        padding-bottom:0;
    }
    ul.business_cont_new {
        flex-wrap: wrap;
    }
    ul.business_cont_new > li {
        width: 48%;
    }
	/* GNB */
	nav {
		position: fixed;
		top: 8rem;
		left: 0px;
		background: rgba(89,89,89,1);
		width: 100%;
		height: 0;
		z-index: 1000;
		overflow-y: scroll;
	}
	nav > ul > li {
		float: none;
	}
	nav > ul > li > a {
		width: 100%;
		height: 5rem;
		line-height: 5rem;
	}

	nav > ul > li > div.nav__depth-2 {
		top: 6rem;
		left: 0;
		padding: 0;
		background-color: #333;
		border-radius: 0;
		border: none;
		width: 100%;
	}

	nav > ul > li > div.nav__depth-2 ul li a {
		color: #fff;
	}

	.header_utils {
		display: none;
	}

	aside {
		display:block;
	}

	/* util-mBtn */
	div.util-mBtn{
		display:inline-block;
	}
	

	div.util-mBtn .btn-toggle span.line:nth-child(1) {
		top: 1.8rem;
	}
	div.util-mBtn .btn-toggle span.line:nth-child(2) {
		top: 3.2rem;
	}
	div.util-mBtn .btn-toggle span.line:nth-child(3) {
		top: 4.7rem;
	}

	section .inner > h2 {
		padding: 2rem 0;
	}
	section .inner > h2::before,
	section .inner > h2::after
	{
		width: 20%;
		
	}
    #section_05 .inner > h3,
	section .inner > h3 {
		font-size:1.4rem;
	}
	section .inner > h3 > span {
		font-size:1.4rem;
	}

	.swiper-container .swiper-slide{
		width: 100%;
	}

	#section_01 { margin-top:8rem; }
	#section_01 .inner {height: auto;}
    #section_01 table{z-index: 10;display:table;margin:0 auto;width:100%}
    #section_01 table td{padding:10px 30px;}
    .m_tr{display: table-row;}
    .pc_tr{display:none;}
    /* .sec1 table td .logo{transform: scale(0.4)} */
    #section_01 table td img{transform: scale(0.7)}

    #section_01 .sec1_effect{z-index:-1;position:absolute;bottom:-250px;left:0;width:100%;height:500px;background: url('/image/site/m_effect.png')no-repeat center;background-size:cover}

	#section_01 .description p {
		font-size: 2rem;
		margin: 2rem 0;
	}

	#section_02 .business_cont {
		display: block;
		background-image: none;
	}
	#section_02 .business_cont > li {
		margin-right: 0;
		height: auto;
	}

	#section_02 .business_cont > li:nth-child(2n-1),
	#section_02 .business_cont > li:nth-child(2n) {
		padding-left: 0;
		padding-right: 0;
	}
	#section_02 .business_cont > li:nth-child(2n-1) > div.business_cont_list,
	#section_02 .business_cont > li:nth-child(2n) > div.business_cont_list {
		left: 0;
		right: 0;
		display: block;
		margin-right: 0;
		position: relative;
		margin-left:0;
	}
	
	#section_02 .business_cont > li > div.business_cont_list ul {
		width:100%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	#section_02 .business_cont > li > div.business_cont_list ul li {
		width: auto;
		height: 5rem;
		margin:0 0.5rem 0.5rem 0;
		flex: 1 1 22%;
	}

	#section_02 .business_cont > li > div.business_cont_list ul li:last-child {
		margin-right: 0;
	}

	#section_02 .business_cont > li:nth-child(4) > div.business_cont_list ul li {
		flex: 1 1 18%;
		height: 11rem;
	}

	#section_02 .business_cont > li:nth-child(2n-1) > div.description,
	#section_02 .business_cont > li:nth-child(2n) > div.description {
		left:3rem;
		text-align: left;
		position: relative;
		margin-right: 0;
	}
	#section_02 .business_cont > li > h4 {
		text-align: center;	
	}

	#section_02 .business_cont > li:nth-child(n+3) {
		margin-bottom:2rem;
	}


	#section_04 .wrap {
		display: block;
		height: fit-content;
	}
	#section_04 .wrap > div:nth-child(1) {
		width: auto;
	}
	#section_04 .wrap div:nth-child(2){
		
	}


	
	#section_05 > .inner > h3 img {
		width: 100%;
	}
	#section_05 .wrap > .desc {
		height: fit-content;
		flex-direction: column;
		padding: 3rem;
	}

	#section_05 .wrap > .desc div:nth-child(n+2) > ul > li {
		font-size: 1.2rem;
	}

	#section_05 .wrap > .desc div:nth-child(1) > ul > li h4 {
		width: 11rem;
    	height: 11rem;
	}

	#section_05 .wrap > .desc div:nth-child(1) > ul > li h4 b {
		font-size: 2.5rem;
	}

	#section_05 .wrap > .desc div:nth-child(1) > ul li h4 p {
		font-size: 1rem;
	}

	#section_05 .wrap > .desc div:nth-child(1) > ul > li:nth-child(2) {
		margin:0;
	}

	#section_05 .wrap > .desc div:nth-child(n+2) {
		margin:0;
	}


	#section_06 > .inner > div {
		display: block;
	}
	#section_06 > .inner > div > div.map {
		width: 100%;
		flex-direction: column;
	}
	#section_06 > .inner > div > div.map img {
		width: 100%;
		margin:0;
	}
	#section_06 > .inner > div > div.desc {
		margin-top:2rem;
	}


	section.news .inner .row {
		display: block;
	}
	
}
@media screen and (max-width: 780px) {
    ul.business_cont_new > li:nth-child(3) {     
        width: calc(96% + 5px)
    }
}
@media screen and (max-width: 680px) {
    ul.business_cont_new > li:nth-child(3),
    ul.business_cont_new > li {
        width: 98%;
    }
    ul.business_cont_newB h5 img {
        right:auto;
        left:7%;
    }
    .new_main section .inner > h2{
        font-size:2.4rem;
    }
	.wrap_list ul{
		width:100%;
	}
	.wrap_list {
		gap: 0px;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 450px) {
    #section_05 .inner > h3 br{
        display:none;
    }
	.margin-top30 {
		margin-top: 0px;
	}
}


@media screen and (max-width: 350px) {
    ul.business_cont_newB h5 img{
        left:0;
    }

}