.wrap {
	width: 1280px;
	margin: 0 auto;
}

/* head */

.head {
    position: relative;
    /* overflow: hidden; */
    width: 100%;
    height: 136px;
}

.head .wrap {
	position: relative;
}

.head_inner01 {
	overflow: hidden;
}

.lang {
    float: right;
    margin-right: 35px;
    margin-top: 20px;
}

.lang_inner li {
	position: relative;
    float: left;
    padding: 0 15px;
}

.lang_inner li:after {
	display: none;
	content:'';
	width: 1px;
	height: 10px;
	background: #aaa;
	position: absolute;
	top: 14px;
	left: 0px;
}

.lang_inner li:first-child:after {
	display: none;
}

.lang_inner li a {
    line-height: 40px;
	color: #000;
    font-size: 15px;
    font-weight: 500;
}

.lang_inner li a:hover {
	color: #ff190a;
}

.logo {
    float: left;
    margin: 15px 0px;
}

.menu {
	display:block;
	text-align:center;
}

.menu_inner {
	display: inline-block;
}

.menu_inner li {
	position: relative;
	float: left;
}

.menu_inner li a {
	display: block;
	padding:0 35px;
    font-size: 18px;
    font-weight: 500;
	line-height: 60px;
}

.b_smenu {
	display: inline-block;
	position: absolute;
    top: 60px;
    left: 0px;
    z-index: 99;
	width: 100%;
    background: #ff190a;
	height:0px;
	padding: 0px 0;
	opacity: 0;
	-webkit-transition:all 0.30s ease-in-out;
	-moz-transition:all 0.30s ease-in-out;
	-ms-transition:all 0.30s ease-in-out;
	-o-transition:all 0.30s ease-in-out;
}

.menu_inner li:hover .b_smenu {
	opacity: 1;
	padding: 20px 0;
	height: auto;
}

.smenu_inner li {
    display: block;
    width: 100%;
}

.smenu_inner li a {
	display: block;
	padding: 0;
    text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
    line-height: 34px;
	letter-spacing: -0.5px;
	font-weight:500;
}

.smenu_inner li a:hover {
	color: rgba(255, 255, 255, 1);
}

.menu_inner li.all_menu a {
	padding-right: 0px;
}

.menu_inner li a.buger {
    display: inline-block;
    position: relative;
    top: -3px;
    padding-right: 7px;
}

.all_menu {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 25px;
    width: 25px;
}

/* fulldown */

.menu_inner > li .gnb-dep02-div{
	display:none;
	position: absolute;
	top: 82px;
	width:100%;
	height:250px;
	border-left:solid 1px rgba(0,0,0,0.1);
}

.menu_inner > li:first-child .gnb-dep02-div { border-left:0; }

.gnb-dep02 {
    position: relative;
    top: auto;
    overflow: hidden;
    width: 100%;
    height: 230px;
    padding: 30px 0px;
    box-sizing: border-box;
    z-index: 99;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.menu_inner > li:nth-child(6) ul {
	border-right: 1px solid #ddd;
}

.gnb-dep02:hover { background: #f7f7f7; }

.gnb-dep02 > li {
    position: relative;
    top: auto;
    float: none;
    line-height: 24px;
    color: #111;
    opacity: 1;
    padding: 5px 0px;
}

.gnb-dep02 > li > a {
    display: block;
	padding: 0;
    text-align: center;
	color: rgba(0,0,0,0.7);
	font-size: 14px;
    line-height: 24px;
	letter-spacing: -0.5px;
	font-weight:500;
}

.gnb-dep02 > li > a span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.5px;
}

.gnb-dep02:hover > li > a { color: rgba(0,0,0,0.7); }

.gnb-dep02 > li > a.on, .gnb-dep02 > li > a:hover { color: #ff190a; }
.gnb-dep02 > li > a:after {background:#fff;}

.subGnbBack {
    position: absolute;
    left: 0;
    top: 82px;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,1);
    opacity: 0;
    z-index: 10;
    border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	-webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

.subGnbBack.active{
	height:230px !important;
	opacity:1;
}

.burger span {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #ff190a;
}

.burger span:before, .burger span:after {
	content:'';
	position: absolute;
	left: 0px;
	display: inline-block;
	width: 25px;
	height: 2px;
	background: #ff190a;
}

.burger span:before { top: 8px; }
.burger span:after { top: -8px; }

.burger.burger-close {
    display: none;
    position: absolute;
    top: 20px;
	right: 20px;
}

.burger.burger-close.clicked {
	display:inline-block;
}

.burger.clicked span { background-color: transparent; }

.burger.clicked span::before {
	top: 0px; 
	-webkit-transform: translateY(9px) rotate(45deg);
	-moz-transform: translateY(9px) rotate(45deg);
	-ms-transform: translateY(9px) rotate(45deg);
	-o-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
	top: 18px;
	-webkit-transform: translateY(-9px) rotate(-45deg);
	-moz-transform: translateY(-9px) rotate(-45deg);
	-ms-transform: translateY(-9px) rotate(-45deg);
	-o-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before, .burger.clicked span:after { 
	background-color: #fff;
}

.burger:hover { cursor: pointer; }



/* mobile menu */
/*  NAV */

nav.allmenu {
	overflow: hidden;
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	height: 100%;
	max-width: 70%;
	width: 100%;
	background-color: #710000;
	padding: 50px 30px;
	overflow-y: auto;
	-webkit-transform: translateX(110%);
	-moz-transform: translateX(110%);
	-ms-transform: translateX(110%);
	-o-transform: translateX(110%);
	transform: translateX(110%);
	-webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

.allmenu_logo {
    position: absolute;
    top: 30px;
    left: 50px;
	text-align: left;
}

nav.allmenu.show {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}

nav.allmenu ul.allmenu_list li {
	position:relative;
	float: left;
	width: 100%;
	padding: 20px 10px;
	/* -webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);*/
	opacity: 1;
	text-align:left;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav.allmenu ul.allmenu_list li:last-child {
	border-bottom: none;
}

/* nav.allmenu.show ul.allmenu_list li:nth-child(1) { transition-delay: 0.15s; }
nav.allmenu.show ul.allmenu_list li:nth-child(2) { transition-delay: 0.3s; }
nav.allmenu.show ul.allmenu_list li:nth-child(3) { transition-delay: 0.45s; }
nav.allmenu.show ul.allmenu_list li:nth-child(4) { transition-delay: 0.6s; }
nav.allmenu.show ul.allmenu_list li:nth-child(5) { transition-delay: 0.75s; }
nav.allmenu.show ul.allmenu_list li:nth-child(6) { transition-delay: 0.9s; }
nav.allmenu.show ul.allmenu_list li:nth-child(7) { transition-delay: 1.05s; }
nav.allmenu.show ul.allmenu_list li:nth-child(8) { transition-delay: 1.2s; }
nav.allmenu.show ul.allmenu_list li:nth-child(9) { transition-delay: 1.35s; }*/

/* nav.allmenu.show .about, nav.allmenu.show .social, nav.allmenu.show ul.sub {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: .85s;
} */

nav.allmenu ul.allmenu_list li:last-of-type { margin-bottom: 0px; }

nav.allmenu ul.allmenu_list li a {
    float: left;
    display: inline-block;
	width: 15%;
    padding: 0px 0;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
	line-height: 28px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav.allmenu ul.allmenu_list li a span {  }
nav.allmenu ul.allmenu_list li a:hover, nav.allmenu ul.allmenu_list li:hover > a {  }

nav.allmenu ul.allmenu_list li .smenu {
    float: left;
    margin-left: 5%;
    width: 80%;
}

nav.allmenu ul.allmenu_list li .smenu dd {
    float: left;
    width: 33.33%;
}

nav.allmenu ul.allmenu_list li .smenu dd a {
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
}

nav.allmenu ul.allmenu_list li .smenu dd a:hover {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}

nav.allmenu ul.allmenu_list li .smenu dd a span {
    display: block;
    font-size: 13px;
    line-height: 24px;
}

nav.allmenu ul.allmenu_list li .smenu dd p {
    display: block;
    float: left;
    width: 100%;
	margin-top: 15px;
    color: rgba(255,255,255,0.7);
	font-size: 14px;
    line-height: 28px;
}

nav.allmenu ul.allmenu_list li .smenu dd p a {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}

nav.allmenu ul.sub {
	list-style-type: none;
	margin-top: 40px;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

nav.allmenu ul.sub li {
	margin-bottom: 10px;
	float: left;
	margin-right: 20px;
}

nav.allmenu ul.sub li:last-of-type { margin-bottom: 0px; }

nav.allmenu ul.sub li a {
	color: #ffffff;
	font-family: "Raleway", sans-serif;
	letter-spacing: 1px;
	font-size: 18px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

nav.allmenu ul.sub li a:hover { color: #a9c2da; }

nav.allmenu ul.sub li a img, nav.allmenu ul.sub li a i {
	float: left;
}

/*  OVERLAY
========================================== */

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: #000;
	opacity: 0;
	visibility: hidden;
	z-index:999;
}

.overlay.show {
	opacity: 0.6;
	visibility: visible;
}

/* Centered texts in each section
* --------------------------------------- */

/* ì„œë¸Œë©”ë‰´ ìŠ¤íƒ€ì¼ */
#accordian ul ul li {
    margin-bottom: 0px;
    padding: 5px 0;
}

#accordian ul ul li a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 13px;
	line-height: 24px;
	display: block;
	padding: 0px;
	-webkit-transition: all 0.15s;
	-moz-transition: all 0.15s;
	-o-transition: all 0.15s;
	-ms-transition: all 0.15s;
	transition: all 0.15s;
}

#accordian ul ul li a:hover {
	/* background: #003545; */
	text-decoration: underline;
}

/* active í´ëž˜ìŠ¤ ì™¸ì— ê²ƒì€ ë³´ì´ì§€ ì•Šê²Œ í•˜ê¸° */
#accordian ul ul {
	display: none;
	float: left;
	overflow: hidden;
	width: 100%;
	margin-top: 10px;
}
#accordian li.active ul {
	display: block;
}

/* footer */
.footer {
    position: relative;
    clear: both;
    padding: 40px 0px;
    background: #000;
    color: #fff;
    font-size: 14px;
}

.footer .wrap {
	position: relative;
}

.footer_menu {
	margin-bottom: 20px;
}

.footer_menu a {
	position: relative;
    padding: 0 15px;
    color: #fff;
}

.footer_menu a:first-child {
    padding-left: 0px;
}

.footer_menu a:last-child {
	padding-right: 0px;
}

.footer_menu a:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 2px;
    width: 1px;
    height: 13px;
    background: #fff;
}

.footer_menu a:last-child:after {
	display: none;
}

.footer_text {
    color: rgba(255,255,255,0.5);
    line-height: 24px;
}

.footer_text span {
	display: inline-block;
	position: relative;
	padding: 0 15px;
}

.footer_text span:first-child {
    padding-left: 0px;
}

.footer_text span:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 7px;
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.5);
}

.footer_text span.last_footer_text {
	padding-left: 0px;
}

.footer_text span.fax_footer_text:after, .footer_text span.last_footer_text:after {
    display: none;
}

/* main */

.main_vis {
	position: relative;
    width: 100%;
}

.main_vis .wrap { position: relative; }

.main_vis .bx-controls-direction { display: none; }

.slide {
	height: 630px;
}

.main_vis01 {
	background: url('../image/main/main_vis01.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_vis02 {
	background: url('../image/main/main_vis02.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_vis03 {
	background: url('../image/main/main_vis03.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_text {
    position: absolute;
    left: 0px;
    top: 150px;
    height: 325px;
}

.main_vis02 .main_text {
    top: 150px;
    width: 100%;
    text-align: center;
}
.main_vis03 .main_text { top: 150px; }

.main_text_inner {
    display: inline-block;
    position: relative;
    height: 100%;
    padding: 95px;
}

.main_vis02 .main_text_inner { padding: 95px 35px; }

.main_line {
	display:inline-block;
	position: absolute;
}

.main_line01 { top:0px; left:0px; width: 10px; height: 325px; background: #000; }
.main_line02 { top:0px; left:0px; width: 325px; height: 10px; background: #000; }
.main_line03 { top:0px; left:325px; width: 10px; height: 65px; background: #ff190a; }
.main_line04 { bottom:0px; left:325px; width: 10px; height: 65px; background: #000; }
.main_line05 { bottom:0px; left:0px; width: 325px; height: 10px; background: #ff190a; }

.main_vis02 .main_line00 { bottom:0px; left:0px; width: 10px; height: 65px; background: #ff190a; }
.main_vis02 .main_line01 { top:0px; left:0px; width: 10px; height: 65px; background: #ff190a; }
.main_vis02 .main_line02 { top:0px; left:0px; width: 100%; height: 10px; background: #ff190a; }
.main_vis02 .main_line03 { top:0px; left:auto; right:0px; width: 10px; height: 65px; background: #ff190a; }
.main_vis02 .main_line04 { bottom:0px; left:auto; right:0px; width: 10px; height: 65px; background: #ff190a; }
.main_vis02 .main_line05 { bottom:0px; left:0px; width: 100%; height: 10px; background: #ff190a; }

.main_text h2 {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 200;
    letter-spacing: -1px;
}

.main_text h2 span {
	font-weight: 600;
}

.main_text p {
    font-size: 20px;
    font-weight: 700;
    color: rgba(0,0,0,0.4);
}

.main_con {
	width: 100%;
	padding: 50px 0px;
}

.main_con h2 {
	margin-bottom: 30px;
	text-align: center;
	font-size: 32px;
}

.main_con h2 span {
    display: block;
    margin-bottom: 10px;
    color: #f6190b;
    font-size: 12px;
}

.main_con01_list {
	overflow: hidden;
}

.main_con01_list li {
	position: relative;
	float: left;
	width: 49%;
}

.main_con01_list li:first-child {
	margin-right: 2%;
}

.main_con01_inner {
	display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 100%; */
    height: 210px;
}

.main_con01_inner01 { background:url('../image/main/main_con01_img01.jpg') center center no-repeat; background-size: cover; }
.main_con01_inner02 { background:url('../image/main/main_con01_img02.jpg') center center no-repeat; background-size: cover; }

.main_con01_inner a {
    display: block;
    width: 100%;
	padding: 0px 50px;
}

.main_con01_inner h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
}

.main_con01_inner p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    font-weight: 300;
}

.main_con01_inner .more {
	display: inline-block;
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 55px;
	height: 55px;
	background: #f6190b url('../image/main/main_con01_arrow01.png') center center no-repeat;
}

.main_con02 {
    background: #f4f4f4;
}

ul.main_con02_list {
	overflow: hidden;
}

ul.main_con02_list li {
    float: left;
    width: 20%;
    text-align: center;
}

ul.main_con02_list li a {
	display: block;
}

ul.main_con02_list li h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.5px;
}

ul.main_con02_list li h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

ul.main_con02_list li:hover h3 {
	color: #f6190b;
}

ul.main_con02_list li .icon {
    display: inline-block;
    width: 203px;
    height: 203px;
	margin-bottom: 20px;
    background: #fff;
    border-radius: 500px;
    /* border: 1px solid #ddd; */

	-webkit-transition:all 0.30s ease-in-out;
	-moz-transition:all 0.30s ease-in-out;
	-ms-transition:all 0.30s ease-in-out;
	-o-transition:all 0.30s ease-in-out;
}

ul.main_con02_list li .icon01 { background: #fff url('../image/sub/main_con02_icon01.svg') center top no-repeat; }
ul.main_con02_list li .icon02 { background: #fff url('../image/sub/main_con02_icon02.svg') center top no-repeat; }
ul.main_con02_list li .icon03 { background: #fff url('../image/sub/main_con02_icon03.svg') center top no-repeat; }
ul.main_con02_list li .icon04 { background: #fff url('../image/sub/main_con02_icon04.svg') center top no-repeat; }
ul.main_con02_list li .icon05 { background: #fff url('../image/sub/main_con02_icon05.svg') center top no-repeat; }

ul.main_con02_list li:hover .icon01 { background: #fff url('../image/sub/main_con02_icon01_on.svg') center bottom no-repeat; }
ul.main_con02_list li:hover .icon02 { background: #fff url('../image/sub/main_con02_icon02_on.svg') center bottom no-repeat; }
ul.main_con02_list li:hover .icon03 { background: #fff url('../image/sub/main_con02_icon03_on.svg') center bottom no-repeat; }
ul.main_con02_list li:hover .icon04 { background: #fff url('../image/sub/main_con02_icon04_on.svg') center bottom no-repeat; }
ul.main_con02_list li:hover .icon05 { background: #fff url('../image/sub/main_con02_icon05_on.svg') center bottom no-repeat; }

.main_con03 {
	background: url('../image/main/main_con03_bg01.jpg') center center no-repeat;
	background-size: cover;
}

.main_con03 h2 {
	color:#fff;
}

.main_con04 {
    overflow: hidden;
}

.main_con04_inner {
    float: left;
    width: 50%;
}

.main_con04 .tabs-nav {
	position:relative;
    display: inline-block;
    margin-bottom: 20px;
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.main_con04 .tabs-nav li {
	position: relative;
    float: left;
    padding: 0 20px;
}

.main_con04 .tabs-nav li:first-child {
	padding-left: 10px;
}

.main_con04 .tabs-nav li:before {
    content: '';
    position: absolute;
    right: -6px;
    top: 15px;
    width: 13px;
    height: 13px;
    background: url(../image/main/main_con04_line01.png) center center no-repeat;
}

.main_con04 .tabs-nav li:last-child:before {
	display: none;
}

.main_con04 .tabs-nav .tab-active a {
	color: #000;
	font-weight: 500;
}

.main_con04 .tabs-nav a {
    display: block;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 500px;
    font-size: 19px;
    color: #888;
    font-weight: 300;
	letter-spacing: -1px;
}

.main_con04 .tabs-stage {
    clear: both;
    position: relative;
    width: 100%;
}

.main_con04 .tabs-stage p {
    margin: 0;
}

.main_con04_inner02 { padding-left: 3%; }

ul.main_con04_banner li {
	position: relative;
	overflow:hidden;
    float: left;
	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 48%;
	height: 271px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

ul.main_con04_banner li.main_con04_banner01 {	 }

ul.main_con04_banner li.main_con04_banner02 {	
	margin-left: 4%;
}

ul.main_con04_banner li .bg {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
	width: 100%;
    height: 100%;
}

ul.main_con04_banner li.main_con04_banner01 .bg { background: url('../image/main/main_con04_bg01.jpg') center center no-repeat; background-size: cover; }
ul.main_con04_banner li.main_con04_banner02 .bg { background: url('../image/main/main_con04_bg02.jpg') center center no-repeat; background-size: cover; }

ul.main_con04_banner li .bg img { transition: all .3s ease-in-out; width: 100%; }
ul.main_con04_banner li:hover .bg img{ transform: scale(1.2); }

ul.main_con04_banner li h3 {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

ul.main_con04_banner li:hover h3 {
	text-decoration: underline;
}

/* sub */

.sub_vis {
    position: relative;
	display: flex;
    text-align: center;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    height: 250px;
    background: #000 url('../image/sub/sub_vis_img01.jpg') center top no-repeat;
	background-size: cover;
}

.sub_text h3 {
	margin-bottom: 10px;
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sub_text p {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    letter-spacing: 1px;
}

.sub_text p span {
	color: #ff190a;
}

.sub_layout {
    position: relative;
    width: 100%;
}

.sidebar {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 80px;
    /* border-bottom: 1px solid #ddd; */
    margin-top: -25px;
}

.sidebar_title {
    display: block;
    position: relative;
    height: 150px;
    margin: 0 0 10px;
    border-radius: 0 40px 0 0;
    background: #ff190a url(../image/sub/sidebar_bg01.png) center center no-repeat;
    text-align: center;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.sidebar_title strong {
    display: block;
    position: relative;
    font-size: 29px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    letter-spacing: -1px;
}

.sidebar_list{
	/* border-bottom: 1px solid #e0e0e0; */
	overflow: hidden;
}

.sidebar_list > li {
    position: relative;
    float: left;
    border-right: 1px solid #f1574d;
    border-bottom: 0;
	background: #ff190a;
}

.sidebar_list > li:first-child {
	border-left: 0px solid #ffffff;
}

.sidebar_list > li:last-child {
	border-right: 0px solid #ffffff;
}

.sidebar_list2 li { width: 50%; }
.sidebar_list4 li { width: 25%; }
.sidebar_list5 li { width: 20%; }
.sidebar_list6 li { width: 16.666%; }

.sidebar_list li a {
	position:relative;
	display:block;
	line-height:1.2;
	word-wrap:break-word;
	word-break:keep-all;
	color: #333;
}

.sidebar_list > li > a:before {
	display:none;
	position:absolute;
	top: 50%;
	right: 20px;
	z-index: 1;
	width: 5px;
	height: 5px;
	margin-top: -4px;
	border: solid #b5b5b5;
	border-width:0 1px 1px 0;
	content:'';
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transition:all 0.3s;
	-webkit-transition:all 0.3s;
}

.sidebar_list > li.over > a:before {
	border: solid #fff;
	border-width:0 1px 1px 0;
}

.sidebar_list > li.on > a:after {
	border:1px solid #fff;
}

.sidebar_list > li > a:hover span {
    text-decoration: underline;
}

.sidebar_list > li.over > a {
	background-color:#fff;
}

.sidebar_list > li > a span {
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.sidebar_list > li > a[target=_blank] span:before { 
	display: none;
}

.sidebar_list > li > a > span { padding: 18px 0; }

.sidebar_list > li.over > a:after {
	content:'';
	position: absolute;
	left: 0px;
	bottom: -1px;
	width: 100%;
	height: 2px;
	/* background: #ff190a; */
}

.sidebar_list > li.over > a span {
    position: relative;
    font-weight: 500;
    color: #000;
}

.product_btnbox {
    margin-bottom: 20px;
	text-align: right;
}

a.product_btn {
    display: inline-block;
    margin: 0 5px;
    padding: 12px 20px;
	font-size: 14px;
    font-weight: 500;
    line-height: 17px;
	box-shadow: 0px 6px 5px -5px rgba(0, 0, 0, 0.2);
}

a.product_btn01 {
	background: #fff;
	border: 1px solid #ff190a;
	color: #ff190a;
}

a.product_btn01:hover {
	background: #ff190a;
	color: #fff;
}

a.product_btn02 {
	background: #fff;
	border: 1px solid #000;
	color: #000;
}

a.product_btn02:hover {
	background: #000;
	color: #fff;
}

.product_smenu {
    margin-bottom: 50px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #aaa;
    text-align: center;
}

.product_smenu a {
    display: inline-block;
	margin: 0 20px;
    font-size: 19px;
}

.product_smenu a:hover {
	color: #ff190a;
}

.product_smenu a.active {
    color: #ff190a;
    font-weight: 500;
}

.sub_con {
	margin-bottom: 80px;
	min-height: 500px;
	line-height: 32px;
    letter-spacing: -0.5px;
    font-size: 17px;
    font-weight: 300;
}

.sub_title {
	overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.sub_title h2 {
    display: block;
    text-align: center;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 42px;
}

.sub_title p {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #888;
}

.sub_title p span {
    margin: 0 8px;
	font-size: 13px;
}

#sub_page h3 {
    margin-bottom: 30px;
    padding-left: 25px;
    background: url(../image/sub/title_icon01.png) left center no-repeat;
	text-align: left;
	font-size: 21px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

#sub_page h4 {
	position: relative;
    margin-bottom: 10px;
    color: #ff190a;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.catalog_box {
	position: absolute;
	right: 0;
	top: 0;
}

.catalog_box02 {
    margin-top: 30px;
    margin-bottom: 6px;
}

a.catalog_btn {
    display: inline-block;
    margin: 0 2px;
    padding: 10px 20px;
    background: #000;
	color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 15px;
    box-shadow: 0px 6px 5px -5px rgb(0 0 0 / 20%);
    border: 1px solid #000;
}

a.catalog_btn:hover { text-decoration: underline; }

a.catalog_btn02 { background: #fff; color: #000; }

ul.company_imgbox {
	overflow: hidden;
	margin-bottom: 50px;
}

ul.company_imgbox li {
	position: relative;
    float: left;
    width: 48%;
    height: 290px;
    border: 1px solid #ddd;
    text-align: center;

	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

ul.company_imgbox li:first-child {
	margin-right: 4%;
}

ul.company_imgbox li span {
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 8px 25px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.5px;
}

ul.company_imgbox li img {
	max-width: 100%;
}

.company_textbox {
    line-height: 32px;
    letter-spacing: -0.5px;
    font-weight: 300;
}

.company_textbox.mb50 {
	margin-bottom: 30px;
}

.sign {
    text-align: right;
}

.sign span {
    display: block;
	margin-bottom: 10px;
    font-weight: 500;
    font-size: 21px;
}

.history .tabs-nav {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.history .tabs-nav li {
    position: relative;
    float: left;
    padding: 0px 50px;
	margin-left: -1px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-bottom: none;
}

.history .tabs-nav li.tab-active {
	background: #fff;
	border: 1px solid #ff190a;
	border-bottom: none;
	z-index: 9;
}

.history .tabs-nav li.tab-active:after {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background: #fff;
}

.history .tabs-nav .tab-active a {
	color: #ff190a;
	font-weight: 500;
}

.history .tabs-nav a {
    display: block;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 500px;
    font-size: 17px;
    color: #aaa;
    font-weight: 400;
    letter-spacing: -1px;
}

.history .tabs-stage {
    clear: both;
    position: relative;
    width: 100%;
}

.history .tabs-stage p {
    margin: 0;
}

.history_listbox {
    padding-top: 30px;
    margin-bottom: 50px;
}

#sub_page.history h3 {
    display: inline-block;
    margin-bottom: 0;
	padding-left: 0px;
    padding: 8px 40px;
    background: #ff190a;
    border-radius: 0px 10px 0px 0px;
	text-align: left;
	color: #fff;
    font-size: 18px;
	font-weight: 400;
}

.history_box {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

ul.history_inner {
	overflow: hidden;
}

ul.history_inner li {
    float: left;
    width: 85%;
}

ul.history_inner li:first-child {
    width: 15%;
    padding-left: 10px;
    color: #ff190a;
    font-size: 35px;
    font-weight: 300;
    line-height: 36px;
}

ul.history_inner li dl.history_list dd {
    position: relative;
    padding: 5px 0;
    padding-left: 40px;
    margin-bottom: 10px;
	line-height: 24px;
}

ul.history_inner li dl.history_list dd:last-child {
	margin-bottom: 0px;
}

ul.history_inner li dl.history_list dd span.year {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 24px;
    height: 24px;
    line-height: 25px;
    background: #333333;
    color: #fff;
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    border-radius: 500px;
}

.year01, .year02 {
    position: relative;
}
.year_inr {
    margin-bottom: 100px;
}
.year01 > .year_inr > .thum {
    position: absolute;
    left: 0;
    top: 10px;
    width: 50%;
    padding: 0 120px 0 0;
    box-sizing: border-box;
}
.year01 > .year_inr {
    padding: 92px 0 0 50%;
}

.year01 > .year_inr > .thum span {
    display: block;
    font-size: 22px;
    text-align: right;
    font-weight: 600;
    margin-bottom: 20px;
}
.year01 > .year_inr > .thum span b {
    display: block;
    margin-bottom: 0px;
	font-size: 22px;
    font-weight: 500;
}

.year02 > .year_inr > .thum {
    position: absolute;
    right: 0;
    top: 10px;
    width: 50%;
    padding: 0 0 0 120px;
    box-sizing: border-box;
}

.year02 > .year_inr {
    padding: 92px 50% 0 0;
}

.year02 > .year_inr > .thum span {
    display: block;
    font-size: 22px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 20px;
}

.year02 > .year_inr > .thum span b {
    display: block;
    margin-bottom: 0px;
	font-size: 22px;
    font-weight: 500;
}

.year02 .year_inr dl {
    padding-right: 120px;
    position: relative;
    border-right: 1px solid #ff190a;
    margin-bottom: 50px;
    border-left: 0;
    padding-left: 0;
    text-align: right;
}
.year02 .year_inr dl::before {
    content: "";
    position: absolute;
    top: -78px;
    right: -1px;
    width: 1px;
    height: 96px;
    background: #ff190a;
    display: block;
    left: inherit;
}
.year02 .year_inr dl dt {
    text-align: right;
}
.year02 .year_inr dl dt::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -1px;
    width: 105px;
    height: 1px;
    background: #eaeaea;
    display: block;
    left: inherit;
}
.year02 .year_inr dl dt::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -7px;
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    border: #ff190a 2px solid;
    border-radius: 50%;
    z-index: 1;
	 left: inherit;
}
.year02 .year_inr dl dd b {
    color: #454545;
    margin-left: 8px;
    font-size: 16px;
}
.year02 > .year_inr > .thum::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -1px;
    width: 105px;
    height: 1px;
    background: #eaeaea;
    display: block;
}
.year02 > .year_inr > .thum::after {
    content: "";
    position: absolute;
    top: 4px;
    left: -7px;
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    border: #ff190a 2px solid;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 1;
}
.year02 .year_inr dl:last-child {
	border-right: 1px solid #ff190a;
}
.thum img {
    width: 100%;
}

.year_inr > .thum span.thum_title {
    margin-bottom: 0px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
}

.year_inr dl {
    padding-left: 120px;
    position: relative;
    border-left: 1px solid #ff190a;
    margin-bottom: 50px;
}
.year_inr dl::before {
    content: "";
    position: absolute;
    top: -78px;
    left: -1px;
    width: 1px;
    height: 96px;
    background: #ff190a;
    display: block;
}
.year_inr dl:last-child {
    /*border-left: 1px solid #eaeaea;*/
}
.year_inr dl dt {
    font-size: 26px;
    font-weight: 600;
    color: #ff190a;
    margin-bottom: 13px;
}
.year_inr dl dt::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -1px;
    width: 105px;
    height: 1px;
    background: #eaeaea;
    display: block;
}
.year_inr dl dt::after {
    content: "";
    position: absolute;
    top: 4px;
    left: -7px;
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    border: #ff190a 2px solid;
    border-radius: 50%;
    z-index: 1;
}
.year01 > .year_inr > .thum::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -1px;
    width: 105px;
    height: 1px;
    background: #eaeaea;
    display: block;
}
.year01 > .year_inr > .thum::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -7px;
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    border: #ff190a 2px solid;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 1;
}
.year_inr dl dd {
    position: relative;
    margin-bottom: 5px;
}
.year_inr dl dd b {
    color: #454545;
    margin-right: 8px;
    font-size: 16px;
}

table.tel_table {
    border-top: 1px solid #333;
    margin-bottom: 50px;
}

table.tel_table th, table.tel_table td {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
	line-height: 24px;
}

table.tel_table th {
    width: 20%;
    background: #eee;
    font-weight: 500;
}

.organization { text-align: center; }

.global_group_imgbox {
	position: relative;
    margin-bottom: 50px;
}

.global_group .global_group_imgbox p {
    position: absolute;
    top: 30%;
    left: 30%;
    line-height: 51px;
    font-size: 35px;
    font-family: 'Iropke Batang';
    /* font-weight: bold; */
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.global_group .global_group_textbox {
	overflow: hidden;
}

.global_group .global_group_textbox p {
	float: left;
	width: 49%;
    letter-spacing: -0.5px;
    font-weight: 300;
}

p.group_textbox02 {
    margin-left: 2%;
}

.global_group_textbox span {
	font-family: 'Iropke Batang';
    font-weight: bold;
	letter-spacing: 0px;
}

.anniversary_btn {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

.anniversary_btn span {
	position: relative;
    display: inline-block;
    padding: 0px 0px;
	font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.anniversary_btn a img {
	margin-right: 5px;
	height: 20px;
}

.global_btn {
    margin-top: 10px;
    text-align: right;
}

.global_btn a {
	position: relative;
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid #ddd;
    color: #aaa;
	font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.5px;
    box-shadow: 3px 3px 5px 1px rgb(0 0 0 / 5%);
}

.global_btn a:hover {
	top: 1px;
	color:#000;
}

.global_btn a img {
	margin-right: 5px;
	height: 20px;
}

.global_vision_inner { margin-bottom: 50px; }
.global_vision_inner02 { text-align: center; }
.global_vision_inner03 { margin-bottom: 0px; }

.global_vision_inner01 p {
    border: 8px solid #eee;
    padding: 30px;
    text-align: center;
    font-weight: 400;
}

.global_vision_inner01 p span {
	color: #ff190a;
}

ul.vision_list01 {
	overflow:hidden;
	display:inline-block;
}

ul.vision_list01 li {
    float: left;
}

ul.vision_list01 li:nth-child(2) {
	margin: 0 30px;
}

ul.vision_list01 li .icon img { width: 100%; }

ul.vision_list01 li span {
    display: block;
    margin-top: 20px;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.5px;
	word-break: keep-all;
}

.global_vision_inner03 p {
    margin-bottom: 30px;
}

ul.vision_list02 {
	overflow: hidden;
}

ul.vision_list02 li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
}

ul.vision_list02 li:last-child {
	margin-bottom: 0px;
}

ul.vision_list02 li span {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 7px;
    width: 18px;
    height: 18px;
	background: #aaa;
    text-align: center;
    border-radius: 500px;
	color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 19px;
}

p.ethics_titlebox {
    margin-bottom: 30px;
}

.ethics_inner {
    margin-bottom: 20px;
    padding: 10px 0;
}

ul.ethics_list {
	overflow: hidden;
    margin-bottom: 30px;
	padding: 30px;
	border: 8px solid #eee;
}

ul.ethics_list li {
    float: left;
    width: 49%;
    margin-bottom: 15px;
	letter-spacing: -0.5px;
}

ul.ethics_list li:nth-child(odd) {
	margin-right: 2%;
}

ul.ethics_list li:nth-child(11), ul.ethics_list li:nth-child(12) {
	margin-bottom: 0px;
}

ul.ethics_list li a {
	display: block;
}

ul.ethics_list li a:hover {
	color: #ff190a;
	text-decoration: underline;
}

.ethics_inner h5 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 500;
    color: #ff190a;
}

.ethics_inner h6 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 500;
}

.ethics_inner p {
	margin-bottom: 20px;
}

ul.ethics_list01 li {
    margin-bottom: 15px;
	word-break: keep-all;
}

ul.ethics_list01 li:last-child {
	margin-bottom: 0px;
}

dl.ethics_list_inner01 {
    margin-top: 10px;
	padding-left: 15px;
}

dl.ethics_list_inner01 dd {
    margin-bottom: 10px;
}

.global_titlebox {
	border: 8px solid #eee;
    padding: 30px;
    text-align: center;
	letter-spacing: 0px;
}

.global_imgbox {
	margin: 30px 0;
    border: 1px solid #ddd;
    text-align: center;
}

table.global_table01 {
    border-top: 1px solid #333;
    margin-bottom: 50px;
}

table.global_table01 th, table.global_table01 td {
	position: relative;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
	line-height: 24px;
}

table.global_table01 th {
    width: 20%;
    background: #eee;
    text-align: left;
	font-weight: 500;
}

table.global_table01 th a.global_btn01 {
    position: absolute;
    top: 15px;
    right: 20px;
    display: inline-block;
    padding: 0 7px;
    background: #ff190a;
    border-radius: 3px;
    color: #fff;
    font-size: 11px;
    line-height: 23px;
    letter-spacing: -0.5px;
}

table.global_table01 th a.global_btn01:hover {
	background: #c81308;
}

.location_inner {
	margin-bottom: 80px;
}

.location_inner.location_inner03 {
	margin-bottom: 0px;
}

table.location_table {
    border-top: 1px solid #333;
    margin-bottom: 0px;
	margin-top: 30px;
}

table.location_table th, table.location_table td {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
	line-height: 24px;
}

table.location_table th {
    width: 20%;
    background: #eee;
    font-weight: 500;
}

/* research_about */
ul.research_about_list {
	overflow: hidden;
}

ul.research_about_list li {
    float: left;
    width: 100%;
    margin-left: 0%;
	margin-bottom: 30px;
    border: 8px solid #f4f4f4;
    padding: 0px 30px;
    height: 230px;

	display: flex;
    /* text-align: center; */
    align-items: center;
    /* justify-content: center; */

	-webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

ul.research_about_list li:first-child {
	margin-left: 0%;
}

ul.research_about_list li:hover {
	border: 8px solid #ff190a;
}

.research_about_inner {
    width: 100%;
}

ul.research_about_list li .icon {
    float: left;
    width: 20%;
	text-align: center;
}

ul.research_about_list li .icon img { max-width:100%; }

ul.research_about_list li p {
    float: left;
    width: 80%;
	height: 116px;
	padding-left: 20px;
	display: flex;
    /* text-align: center; */
    align-items: center;
    /* justify-content: center; */
	line-height: 28px;
}

ul.research_about_list li p span {
    display: contents;
    color: #ff190a;
    font-weight: 500;
    font-size: 20px;
}

.research_info01_inner {
    margin-bottom: 80px;
}

.research_info01_inner.research_info01_inner03 {
    margin-bottom: 80px;
}

ul.research_info01_list {
    overflow: hidden;
    margin-top: 30px;
}

ul.research_info01_list01 li {
	float: left;
	width: 23.5%;
	margin-left: 2%;
	border: 1px solid #ddd;
}

ul.research_info01_list01 li:first-child {
	margin-left: 0;
}

ul.research_info01_list01 li img {
	max-width: 100%;
}

ul.research_info01_list01 li video {
	width: 100%;
	float: left;
}

ul.research_info01_list02 li {
	float: left;
	width: 23.5%;
	height: 345px;
	margin-left: 2%;
	border: 1px solid #ddd;

	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

ul.research_info01_list02 li:first-child {
	margin-left: 0;
}

ul.research_info01_list02 li img {
	width: 100%;
}

ul.research_info01_list03 li {
	float: left;
	width: 23.5%;
	height: 235px;
	margin-left: 2%;
	border: 1px solid #ddd;

	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

ul.research_info01_list03 li:first-child {
	margin-left: 0;
}

ul.research_info01_list03 li img {
	width: 100%;
}

/* research_info02 */

.research_info02_inner {
    margin-bottom: 80px;
}

.research_info02_inner02 {
    margin-bottom: 0px;
}

.research_info02_list li {
    margin-bottom: 30px;
	padding: 0 30px;
    padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}

.research_info02_list li:first-child {
    padding-top: 30px;
    border-top: 1px solid #ff190a;
}

.research_info02_list li dl {
	overflow: hidden;
}

.research_info02_list li dl dt, .research_info02_list li dl dd {
	float: left;
}

.research_info02_list li dl dt {
    width: 250px;
    margin-right: 50px;
}

.research_info02_list li dl dd {
	padding-top: 0px;
}

/* research_quality */
.research_quality_inner01, .research_quality_inner02 {
	margin-bottom:80px;
}

ul.research_quality_machine {
    overflow: hidden;
}

ul.research_quality_machine li {
    float: left;
    margin-right: 15px;
	margin-bottom: 10px;
}

ul.research_quality_machine li span {
    display: inline-block;
    background: #eee;
    padding: 5px 20px;
    border-radius: 500px;
    line-height: 28px;
    font-size: 15px;
	font-weight: 500;
}

.research_quality_contents {
    margin-bottom: 30px;
    padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}

ul.research_info02_list02 {
	overflow: hidden;
    margin-bottom: 30px;
}

ul.research_info02_list02 li {
    float: left;
    width: 32%;
}

ul.research_info02_list02 li:nth-child(2), ul.research_info02_list02 li:nth-child(3) {
	margin-left: 2%;
}

ul.research_info02_list02 li img {
	max-width: 100%;
}

ul.research_info02_list02 li span {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

/* research_certification */

ul.research_certification_list {
	overflow: hidden;
}

ul.research_certification_list li {
    float: left;
    width: 23.5%;
	margin-left: 2%;
}

ul.research_certification_list li:first-child, ul.research_certification_list li:nth-child(5) {
	margin-left: 0%;
}

ul.research_certification_list li:first-child, ul.research_certification_list li:nth-child(2), ul.research_certification_list li:nth-child(3), ul.research_certification_list li:nth-child(4) {
	margin-bottom: 30px;
}

ul.research_certification_list li img {
	max-width: 100%;
	border: 1px solid #ddd;
}

ul.research_certification_list li span {
    display: block;
    margin-top: 15px;
    padding: 5px 0;
    background: #eee;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.5px;
	word-break: keep-all;
}

/* product */

ul.product_title_list01 {
	overflow: hidden;
	margin-bottom: 30px;
	padding: 0px;
    /* background: #f7f7f7; */
    /* border: 1px solid #ddd; */
}

ul.product_title_list01 li {
    position: relative;
    float: left;
    display: inline-block;
    margin-right: 10px;
    /* padding-left: 15px; */
    padding: 8px 30px;
	background: #f4f4f4;
    border-radius: 500px;
    font-size: 15px;
    font-weight: 500;
}

ul.product_title_list01 li:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 14px;
    width: 5px;
    height: 5px;
    background: #ff190a;
    border-radius: 5px;
	display: none;
}

ul.product_list01 {
    overflow: hidden;
	margin-bottom: 50px;
}

ul.product_list01.mb00 { margin-bottom: 0px; }

ul.product_list01 li {
	float: left;
	width: 80%;
}

ul.product_list01 li.imgbox {
    width: 20%;
}

ul.product_list01 li.imgbox span {
    display: block;
	color: #888;
    font-size: 13px;
    font-weight: 400;
}

ul.product_list01 li img {
	border: 1px solid #ddd;
}

.product_list01_slist {
	position: relative;
	padding-top: 50px;
    padding-left: 208px;
    background: url(../image/sub/product01_bg01.png) left center no-repeat;
}

.product_list01_slist:after {
    content: '';
    position: absolute;
    left: 55px;
    top: 0px;
    width: 1px;
    height: 50%;
    background: #ddd;
    z-index: -1;
}

.product_textlist dt {
	font-weight: 500;
}

.product_textlist dt.mt30 {
	margin-top: 30px;
}

.product_textlist dd {
    position: relative;
    padding-left: 15px;
}

.product_textlist dd:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 15px;
	width: 5px;
    height: 1px;
    background: #000;
}

/* 인재개발 */
ul.recruit_development_list {
	overflow: hidden;
}

ul.recruit_development_list li {
    float: left;
    width: 24%;
    height: 365px;
    margin-left: 1.33%;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #ddd;
}

ul.recruit_development_list li:first-child, ul.recruit_development_list li:nth-child(5) {
	margin-left: 0%;
}

ul.recruit_development_list li .recruit_development_imgbox {
    margin-bottom: 20px;
}

ul.recruit_development_list li .recruit_development_imgbox img {
	max-width: 100%;
}

#sub_page ul.recruit_development_list li h4 {
    color: #000;
	font-size: 17px;
    font-weight: 500;
}

ul.recruit_development_list li dl dd {
    font-size: 15px;
    line-height: 26px;
	word-break: keep-all;
}

/* 인재상 */
.recruit_guide_inner {
    margin-bottom: 50px;
}

ul.recruit_guide_list {
    overflow: hidden;
}

.recruit_guide_list li {
	float: left;
    position: relative;
    padding-left: 20px;
	width: 100%;
}

.recruit_guide_wh02 li {
    width: 50%;
}

.recruit_guide_list li.point {
	color: #ff190a;
}

.recruit_guide_list li:after {
	content: '';
	position: absolute;
	left: 0px;
	top: 14px;
	width: 5px;
	height: 1px;
	background: #aaa;
}

.recruit_guide_imgbox {
    text-align: center;
}

#bo_list .td_name { text-align: center !important; }

ul.partner_list {
	overflow: hidden;
}

ul.partner_list li {
    float: left;
    width: 32%;
	margin-left: 1%;
	margin-bottom: 30px;
}

ul.partner_list li:first-child, ul.partner_list li:nth-child(4), ul.partner_list li:nth-child(7) {
	margin-left: 0%;
}

ul.partner_list li img {
	max-width: 100%;
	border: 1px solid #ddd;
}

ul.partner_list li span {
    display: block;
    margin-top: 10px;
	text-align: center;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.privacypolicy, .privacy_email { font-size: 15px; }
.termsofuse p, .privacypolicy p {
    margin-bottom: 30px;
    line-height: 24px;
    padding: 30px;
    background: #f4f4f4;
    border: 1px solid #ddd;
}

.privacypolicy_table01 {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0 0px;
    margin-bottom: 20px;
    border-top: 1px solid #ff190a;
}

.privacypolicy_table01 thead th {
    background: #fff;
    padding: 10px 0px;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	font-weight: 500;
}

.privacypolicy_table01 thead th:last-child {
	border-right:none;
}

.privacypolicy_table01 tbody th {
    background: #eee;
    font-weight: 500;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.privacypolicy_table01 tbody th.none_border {
	border-right:none;
}

.privacypolicy_table01 tbody td {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    padding: 10px 5px;
}

.privacypolicy_table01 tbody td:last-child {
	border-right:none;
}

.privacy_email_inner01 {
    border: 1px solid #ddd;
    padding: 30px;
    background: #fff;
    word-break: keep-all;
    border-radius: 0px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    margin-bottom: 50px;
}


#sub_page.privacy_email h3 {
    padding-left: 0px;
    background: none;
	word-break: keep-all;
}

#sub_page.privacy_email .privacy_email_inner01 h3 {
    border: none;
    background: none;
    padding: 0;
    margin-bottom: 10px;
	margin-top: 0px;
}

.privacy_email_inner01 h3 span {
    display: inline-block;
    background: #ff190a;
    padding: 5px 20px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    line-height: initial;
}

.privacy_email_list01 li {
	position: relative;
	margin-bottom:10px;
	padding-left: 20px;
}

.privacy_email_list01 li:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    width: 5px;
    height: 5px;
    background: #aaa;
    border-radius: 5px;
}
