body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  padding: 84px 0 0 0;
}
@media (max-width: 1070px) {
    body {padding: 76px 0 0 0;}
}

h1 {font-size: 2rem; font-weight: 600;}

.wrapper {
  max-width: 1230px;
  margin: 0 auto;
  line-height: 2rem;
  padding-top: 3%;
  padding-bottom: 40px;
}

.sub_wrap {display: flex; flex-flow: wrap; align-items: flex-start;}
.sub_wrap_menu {width: 277px; position: sticky; top: 90px; max-height: calc(100vh - 110px); overflow-y: auto;}
.sub_wrap_main {width: 100%;}
.sub_wrap > .sub_wrap_menu + .sub_wrap_main {width: calc(100% - 277px); padding: 0 0 0 30px; position: relative; z-index: 1;}
.sub_wrap_main_full {position: absolute; top: -21px; left: 30px; z-index: 100; width: 40px; height: 20px; border: 1px solid #ccc; border-radius: 5px; background: #fff; cursor: pointer; opacity: 0; transition: all 0.5s ease 0s;}
.sub_wrap > .sub_wrap_menu + .sub_wrap_main:hover .sub_wrap_main_full {opacity: 1;}
.sub_wrap_main_full span {position: absolute; width: 5px; height: 5px; border-style: solid; border-color: #ccc; transform: rotate(0deg); opacity: 1; transition: all 0.5s ease 0s;}
.sub_wrap_main_full span:nth-child(1) {left: 3px; top:2px; border-width: 2px 0 0 2px;}
.sub_wrap_main_full span:nth-child(2) {right: 3px; top:2px; border-width: 2px 2px 0 0;}
.sub_wrap_main_full span:nth-child(3) {right: 3px; bottom:2px; border-width: 0 2px 2px 0;}
.sub_wrap_main_full span:nth-child(4) {left: 3px; bottom:2px; border-width: 0 0 2px 2px;}
.sub_wrap_menu_hide .sub_wrap_menu {display: none;}
.sub_wrap_menu_hide > .sub_wrap_menu + .sub_wrap_main {width: 100%; padding: 0;}
.sub_wrap_menu_hide > .sub_wrap_menu + .sub_wrap_main .container {max-width: 100%;}
.sub_wrap_menu_hide .sub_wrap_main_full {left: 0; opacity: 1;}
.sub_wrap_menu_hide .sub_wrap_main_full span:nth-child(1) {height: 14px; width: 10px; border-width: 2px 2px 2px 2px;}
.sub_wrap_menu_hide .sub_wrap_main_full span:nth-child(2) {width: 17px; height: 10px;}
.sub_wrap_menu_hide .sub_wrap_main_full span:nth-child(3) {width: 17px; height: 10px;}
.sub_wrap_menu_hide .sub_wrap_main_full span:nth-child(4) {left: 17px; bottom: 7px; transform: rotate(45deg);}
@media (max-width: 1024px) {
    .sub_wrap_menu {width: 100%; position: relative; z-index: 10; top: auto; max-height: none; overflow-y: inherit;}
    .sub_wrap > .sub_wrap_menu + .sub_wrap_main {width: 100%; padding: 0; position: relative; z-index: 1;}
    .sub_wrap > .sub_wrap_menu + .sub_wrap_main .container {max-width: 100%;}
    .sub_wrap_main_full {display: none;}
}

/* Banner ===================================================================== */
.banner {line-height: 0;}
.banner-mobile { display: none; }

@media (max-width: 576px) {
  .banner-pc { display: none; }
  .banner-mobile { display: block; }
}

/* Page Title ===================================================================== */
.page-title {
  max-width: 1000px;
  font-size: 18px;
  padding: 50px 0 50px 0;
  margin: 0 auto;
  text-align: center;
}
.page-title h1 {
  margin-bottom: 50px;
  position: relative;
  font-weight: 400;
  font-size: 35px;
  text-align: center;
}
.page-title h1:after {
  content: ". . .";
  display: block;
  color: #04caf7;
  font-size: 3rem;
  position: absolute;
  bottom: -35px;
  left: calc(50% - 25px);
}
.page-title h1 span {
  color: #04caf7;
}
.page-title p {
  font-weight: 200;
  font-size: 1rem;
  line-height: 2rem;
}

/* Breadcrumbs ======================================================================= */
.breadcrumbs {
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
}
.breadcrumbs ul {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 1rem;
}
.breadcrumbs ul li {
  position: relative;
  padding: 5px 20px 5px 0;
  display: inline-block;
  font-size: 0.75rem;
  color: #00355B;
  line-height: inherit;
}
.breadcrumbs ul li a {
  color: #333;
}
.breadcrumbs ul li a:hover {
  color: #2F72A2;
  text-decoration: underline;
}
.breadcrumbs ul li:before {
  content: ""; position: absolute; right: 8px; top:8px; width: 8px; height: 8px; border-width: 1px 1px 0 0; border-style: solid; border-color: #ccc; transform: rotate(45deg); transition: all 0.5s ease 0s;
}
/*.breadcrumbs ul li:after {
  position: absolute;
  top: 6px;
  right: -15px;
  content: "";
  transform: skew(45deg, 0);
  height: 25%;
  width: 1px;
  background: #ccc;
  border-right: 1px solid #ccc;
}*/
.breadcrumbs ul li:last-child:before {
  display:none;
}
/*.breadcrumbs ul li:last-child:after {
  display:none;
}*/

/* Pagination ======================================================================= */
.page-number {
  margin: 30px 0;
  text-align: center;
}
.page-number ul {
  list-style-type: none;
}
.page-number a {
  width: 30px;
  height: 30px;
  line-height: 20px;
  text-align: center;
  margin: auto 5px;
  display: inline-block;
  color: #000;
}
.page-number a:hover {
  color: #04caf7;
}
.page-number a.page-active {
  border: 3px solid #04caf7;
  border-radius: 100%;
}
.page-number a.page-prev, .page-number a.page-next {
  border-radius: 100%;
  color: #fff;
  background-color: #04caf7;
}
.page-number a.page-prev li img {
  width: 15px;
  height: 15px;
  margin: 7px 0 0 0;
}
.page-number a.page-next li img {
  width: 15px;
  height: 15px;
  margin: 7px 0 0 2px;
}

/* Table Style ============================================================ */
.table_scroll {
  overflow-x: auto;
}
.table_scroll > table {
  min-width: 700px;
}

.model-table {
  width: 100%;
  min-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.model-table thead tr {
  background: #00355B;
  color: #fff;
}
.model-table thead tr th {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  font-weight: 600;
}
.model-table thead tr th:first-of-type {
  border-left: none;
}
.model-table th, .model-table td {
  padding: 7px;
  text-align: center;
  font-size: 0.9rem;
}
.model-table td {
  border-left: 1px solid #eee;
}
.model-table tbody tr {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.model-table tbody tr td:last-child {
  border-right: 1px solid #eee;
}
.model-table tbody tr:nth-of-type(odd) {
  background: #fff;
}
.model-table tbody tr:nth-of-type(even) {
  background: #fafafa;
}

.datatable {
  width: 100%;
  min-width: 800px;
}
.datatable th, .datatable td {
  padding: 7px 10px;
}
.datatable th {
  font-size: 0.9rem;
  color: #fff;
  background: #00355B;
  border: solid 1px rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
}
.datatable tr:nth-child(even) {
  background: #fafafa;
}
.datatable tr:nth-child(odd) {
  background: #fff;
}
.datatable td {
  font-size: 0.9rem;
  font-weight: 400;
  border-left: solid 1px #eee;
}
.datatable tbody tr:first-child {
  border-top: 1px solid #eee;
}
.datatable tbody tr:last-child {
  border-bottom: 1px solid #eee;
}
.datatable tbody tr td:last-child {
  border-right: 1px solid #eee;
}

/* Hashtag ===================================================================== */
.hashtag-common {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  margin-top: 20px;
}
.hashtag-common-icon {
  position: absolute;
  left: 5px;
  top: 0px;
}
.hashtag-common ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 5px;
  margin-bottom: 5px;
}
.hashtag-common li {
  list-style: none;
}
.hashtag-common li a {
  display: block;
  font-size: 0.9rem;
  background-color: #e7e7e7;
  border: 1px solid #d9d9d9;
  padding: 5px 7px;
  margin-bottom: 10px;
  border-radius: 3px;
  margin-left: 10px;
  color: #8b8b8b;
  transition: all 0.5s;
}
.hashtag-common li a:hover, .hashtag-common li a.selected {
  color: #fff;
  font-weight: bold;
  background-color: #a3a3a3;
}



/* leftMenu */
.leftMenu ul, .leftMenu ul li {list-style-type:none; margin: 0; padding: 0;}
.leftMenu ul {width: 100%; background: #f5f5f5; }
.leftMenu ul:nth-child(2) {width: 100%; background: #f5f5f5;  }
.leftMenu ul li.menu-title a{ color:#fff; font-size: 1.1rem; line-height: 1.5rem; background:#5a0707; }
.leftMenu ul:nth-child(2) li.menu-title a{ background:#00355B; }
.leftMenu ul li:hover.menu-title a{ color:#fff; }
.leftMenu ul:nth-child(2){margin-bottom:0px;}
.leftMenu > ul ul {display: none; background:#c6c6c6;}
.leftMenu ul li {position: relative; z-index: 1;font-size: 0.85rem;  line-height: 20px; border-bottom: 1px solid #d8d8d8;}
/*.leftMenu ul li:last-child {border-bottom: 0;}*/
.menu_dot {position: absolute; top: 6px; right: 0px; z-index: 99; width: 30px; height: 30px; cursor: pointer;}
.menu_dot::before {content: ''; width: 12px; height: 2px; background-color: #000; border-radius: 2px; position: absolute; top: 12px; left: 7px; z-index: 99; transition: all 0.5s ease 0s;}
.menu_dot::after {content: ''; width: 2px; height:12px; background-color: #000; border-radius: 2px; position: absolute; top: 7px; left: 12px; z-index: 99; transition: all 0.5s ease 0s;}
.leftMenu .menu_dot_open{top:6px; }
.leftMenu .menu_dot_open::before {background-color: #fff;}
.leftMenu .menu_dot_open::after { display: none;}
.leftMenu a:link, .leftMenu a:visited {text-decoration:none; color:#222; background-color: transparent; padding: 10px 25px; display: block; position: relative; z-index: 1; transition: all 0.5s ease 0s;}
.leftMenu a:active, .leftMenu a:hover {text-decoration:none; background-color:#ece9e9; cursor:pointer; transition: all 0.5s ease 0s; opacity: 0.85;}
.leftMenu ul li a.menu_arrow_open{background-color:#ea5404; color: #fff;}
.menu_arrow {position: absolute; top: 10px; left: 5px; width: 20px; height: 20px; -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg); -ms-transform:rotate(0deg); transform:rotate(0deg); transition: all 0.5s ease 0s;}
.menu_arrow::before {content: ''; width: 7px; height: 2px; background-color: #000; border-radius: 2px; position: absolute; top: 7px; left: 6px; -moz-transform:rotate(45deg); -webkit-transform:rotate(45deg); -o-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); transition: all 0.5s ease 0s;}
.leftMenu a:hover .menu_arrow::before {background-color: #fff; transition: all 0.5s ease 0s;}
.menu_arrow::after {content: ''; width: 7px; height: 2px; background-color: #000; border-radius: 2px; position: absolute; top: 11px; left: 6px; -moz-transform:rotate(-45deg); -webkit-transform:rotate(-45deg); -o-transform:rotate(-45deg); -ms-transform:rotate(-45deg); transform:rotate(-45deg); transition: all 0.5s ease 0s;}
.leftMenu ul li a.menu_arrow_open .menu_arrow::before,.leftMenu ul li a.menu_arrow_open .menu_arrow::after  {background-color:#fff; }
.leftMenu a:hover .menu_arrow::after {background-color: #fff; transition: all 0.5s ease 0s;}
.menu_arrow_open .menu_arrow {-moz-transform:rotate(90deg); -webkit-transform:rotate(90deg); -o-transform:rotate(90deg); -ms-transform:rotate(90deg); transform:rotate(90deg); transition: all 0.5s ease 0s; }
.leftMenu a.active{background: #2f7eb8; color: #fff;}
.leftMenu ul.menu_sub_open { display: block !important; }

@media only screen and (min-width:1025px){
  .leftMenuMobile {display: none;}
}
@media only screen and (max-width:1024px){
  .leftMenu ul:nth-child(2){position: absolute; top: 75px; left: 0; z-index: 99;}
  .leftMenuMobile {width: 30px; height: 20px; margin: 40px auto 10px auto; position: relative; cursor: pointer;}
  .leftMenuMobile > span:nth-child(1) {width: 30px; height: 2px; background-color: #000; position: absolute; top: 0px; left: 0; transition: all 0.5s ease 0s;}
  .leftMenu > div.show > span:nth-child(1) {top: 14px; transform: rotate(45deg);}
  .leftMenuMobile > span:nth-child(2) {width: 30px; height: 2px; background-color: #000; position: absolute; top: 10px; left: 0; transition: all 0.5s ease 0s;}
  .leftMenu > div.show > span:nth-child(2) {top: 14px; transform: rotate(-45deg);}
  .leftMenuMobile::before {content: attr(data-title); width: 200px; height: 30px; line-height: 30px; position: absolute; top: -34px; left: calc(50% - 100px); text-align: center; font-size: 12px; color: #000;}
  .leftMenu > ul {max-height: 0; overflow: hidden; transition: all 0.5s ease 0s;}
  .leftMenu > ul.open {max-height: 500px; overflow: auto; padding-bottom: 10px; transition: all 1.5s ease 0s;}
}

.ab-content{padding: 40px 0;}
.ab-A{display: flex;flex-wrap: wrap;}
.ab-A .ab-A-bg{width: 42%;position: relative;}
.ab-A .ab-A-writing{width: calc(58% - 50px);position: relative;padding: 50px 0px 0 30px;margin-left: 50px;}
.ab-A .ab-A-writing::before{position: absolute;content: "";top: 0;left: 0;height: 100%;width: 31.065%;background: #f3f3f3;z-index: -1;}
.ab-A .ab-A-writing .ab-A-title{background: #00355B;padding: 10px 20px;color: #fff;font-size: 24px;display: inline-block;margin-bottom: 20px;}
.ab-introduce{text-align: center;margin: 40px 0 50px 0;}

.ab-B .ab-B-introduce{text-align: center;font-weight: bold;color: #00355B;font-size: 24px;margin-bottom: 30px;}
.ab-B .ab-B-box .ab-B-item{display: flex;flex-wrap: wrap;min-height: 373px;margin-bottom: 60px;}
.ab-B .ab-B-box .ab-B-item .ab-B-writing{width: calc(58% - 50px);position: relative;padding: 50px 0px 0 30px;margin: 0 50px 0 0;}
.ab-B .ab-B-box .ab-B-item .ab-B-writing::before{position: absolute;content: "";top: 0;left: 0;height: 100%;width: 31.065%;background: #f3f3f3;z-index: -1;}
.ab-B .ab-B-box .ab-B-item .ab-B-writing .ab-B-title{background: #00355B;padding: 6px 20px;color: #fff;font-size: 20px;display: inline-block;margin-bottom: 20px;}
.ab-B .ab-B-box .ab-B-item .ab-B-bg{width: 42%;position: relative;display: flex;align-items: center;flex-wrap: wrap;justify-content: center;}
.ab-B .ab-B-box .ab-B-item .ab-B-bg::before{position: absolute;content: ""; top: 0;right: 0;background: #00355B;width: 51%;height: 100%;z-index: -1;}
.ab-B .ab-B-box .ab-B-item .ab-B-bg img{width: 100%;max-width: 410px;}

.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-writing{margin: 0 0 0 50px;order: 2;}
.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-writing::before{left: auto;right: 0;}
.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-bg{order: 1;}
.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-bg::before{right: auto;left: 0;}

.ab-B .ab-B-idea{text-align: center;margin-bottom: 30px;}
.ab-B .ab-B-idea strong{display: block;font-size: 24px;margin-bottom: 5px;color: #00355B;}
.ab-B .ab-B-idea span{font-size: 20px;}
.ab-B .ab-B-img {display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;}
.ab-B .ab-B-img .ab-B-item{background: #00355B;width: 100%;}
.ab-B .ab-B-img .ab-B-item:last-child{grid-column: 4 / 7;grid-row: 1/4;height: 100%;}
.ab-B .ab-B-img .ab-B-item img{width: 100%;height: 100%;object-fit: cover;}

.oem-content{margin-top: 40px;}
.oem-anchor{display: flex;flex-wrap: wrap;justify-content: space-between;margin-bottom: 100px;}
.oem-anchor a{display: flex;flex-direction: column;width: calc((100% / 7) - 20px);align-items: center;position: relative;}
.oem-anchor a::before{position: absolute;content: ""; top: 36%;right: -20px;background: url("../images/arrow.svg")no-repeat;width: 10px;height: 18px;background-size: cover;transform: translateY(-50%);}
.oem-anchor a img{margin-bottom: 10px;transition: all 0.5s ease 0s;}
.oem-anchor a span{text-align: center;line-height: 1.4;transition: all 0.5s ease 0s;}
.oem-anchor a:hover img{transform: scale(0.95);opacity: 0.9;}
.oem-anchor a:hover span{color: #00355B;}
.oem-anchor a:last-child:before{display: none;}

.oem-sop{margin: 40px 0 60px 0;}
.oem-anchor a:nth-child(1) img{width: 49px; height: 50px;}
.oem-anchor a:nth-child(2) img{width: 36px; height: 50px;}
.oem-anchor a:nth-child(3) img{width: 47px; height: 50px;}
.oem-anchor a:nth-child(4) img{width: 50px; height: 50px;}
.oem-anchor a:nth-child(5) img{width: 48px; height: 50px;}
.oem-anchor a:nth-child(6) img{width: 51px; height: 50px;}
.oem-anchor a:nth-child(7) img{width: 46px; height: 50px;}

.oem-process .oem-item{display: flex;flex-wrap: wrap;align-items: center;position: relative;margin-bottom: 120px;padding-bottom: 60px;}
.oem-process .oem-item:last-child{margin: 0;}
.oem-process .oem-item::before{position: absolute;content: ""; bottom: 0px;left: 0;background: #F3F3F3;width: 100%;height: 201px;z-index: -1;}
.oem-process .oem-item .oem-writing{width: calc(58% - 50px);margin-right: 50px;padding: 0 0 0 30px;}
.oem-process .oem-item .oem-writing .oem-title{background: #00355B;padding: 6px 20px;color: #fff;font-size: 20px;display: inline-block;margin-bottom: 20px;}
.oem-process .oem-item .oem-bg{width: calc(42% - 30px);margin-right: 30px;position: relative;text-align: center;}
.oem-process .oem-item .oem-bg img{width: 100%; max-width: 410px;}
.oem-process .oem-item .oem-number{position: absolute;bottom: 0px;left: 0;background: #00355B;color: #fff;line-height: 1;font-size: 40px;font-family: 'Lato', sans-serif;padding: 6px 10px;}

.oem-process .oem-item:nth-child(2n+2) .oem-writing{order: 2;padding: 0 30px 0 0;margin-right: 0;margin-left: 50px;}
.oem-process .oem-item:nth-child(2n+2) .oem-bg{order: 1;}
.oem-process .oem-item:nth-child(2n+2) .oem-number{left: auto;right: 0;}
.oem-process .oem-item:nth-child(2n+2) .oem-bg{margin-right: 0;margin-left: 30px;}

@media only screen and (max-width:768px){
	.ab-A .ab-A-bg{width: 100%;max-width: 500px;margin: 0 auto 30px auto;}
	.ab-A .ab-A-bg::before{position: absolute;content: "";bottom: -30px;left: 50%;transform: translateX(-50%);background: #00355B;width: 1px;height: 60px;}
	.ab-A .ab-A-writing{width: 100%;margin: 0;padding: 45px 30px;}
	.ab-A .ab-A-writing::before{width: 110px;}
	
	.ab-B .ab-B-box .ab-B-item{margin-bottom: 40px;}
	.ab-B .ab-B-box .ab-B-item:last-child{margin-bottom: 0;}
	.ab-B .ab-B-box .ab-B-item .ab-B-writing{width: 100%;order: 2;margin: 0;padding: 45px 30px;}
	.ab-B .ab-B-box .ab-B-item .ab-B-writing::before{width: 110px;}
	.ab-B .ab-B-box .ab-B-item .ab-B-bg{width: 100%;order: 1;margin: 0 auto 30px auto;}
	.ab-B .ab-B-box .ab-B-item .ab-B-bg::before{top: auto;bottom: -30px;left: 50%;transform: translateX(-50%);z-index: 1;width: 1px;height: 60px;}
	.ab-B .ab-B-box .ab-B-item .ab-B-bg img{max-width: 500px;}
	
	.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-writing{margin: 0;}
	.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-writing::before{left: 0;right: auto;}
	.ab-B .ab-B-box .ab-B-item:nth-child(2n+2) .ab-B-bg::before{left: 50%;}
	
	.ab-B .ab-B-img .ab-B-item{grid-column: span 2;}
	.ab-B .ab-B-img .ab-B-item:last-child{grid-column: 3 / 7;}
	
	.oem-sop{margin: 30px 0 0 0;}
	.oem-anchor{justify-content: flex-start;margin-bottom: 40px;}
	.oem-anchor a{width: 33%;margin-bottom: 30px;}
	.oem-anchor a:nth-child(3n+3):before{display: none;}
	.oem-anchor a:nth-child(4):before{display: block;}
	.oem-anchor a::before{right: -2%;}
	
	.oem-process .oem-item{padding-bottom: 0px;margin-bottom: 50px;}
	.oem-process .oem-item .oem-writing{width: 100%;order: 2;margin: 0!important; padding: 40px 30px 70px 30px!important;background: #F3F3F3;}
	.oem-process .oem-item .oem-bg{width: 100%;order: 1;margin: 0 0 25px 0!important;position: relative;}
	.oem-process .oem-item .oem-bg::before {position: absolute;content: "";bottom: -50px;left: 50%;transform: translateX(-50%);background: #00355B;width: 1px;height: 60px;}
	.oem-process .oem-item::before{display: none;}
	.oem-process .oem-item .oem-number{left: auto;right: 0;}
}

@media only screen and (max-width:430px){
	.oem-anchor a{width: 50%;}
	.oem-anchor a:nth-child(3n+3):before{display: block;}
	.oem-anchor a:nth-child(2n+2):before{display: none;}
	
	.ab-B .ab-B-img{grid-template-columns: 1fr;}
	.ab-B .ab-B-img .ab-B-item{grid-column: auto;height: 240px!important;}
	.ab-B .ab-B-img .ab-B-item:last-child{grid-column: auto;grid-row:auto;}
}

@media only screen and (max-width:350px){
	.oem-anchor a{width: 100%;margin: 30px 0;}
	.oem-anchor a:nth-child(2n+2):before{display: block;}
	.oem-anchor a::before{top: auto;bottom: -42px;right: auto;left: 50%;transform: rotate(90deg) translateY(-50%); left: calc(50% - 15px);}
}
