@charset "UTF-8";

/* COMPASS
 * ----------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html, body {
  height: 100%;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

hr {
  border-top: none;
  border-bottom: #c9c9c9;
  background-color: #c9c9c9;
  box-shadow: none;
  height: 1px;
  margin: 2em 0;
}


/* BASE
 * ----------------------------------------------- */

.DIN2014-Bold {
  font-family: DIN2014-Bold;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-ExtraLight {
  font-family: DIN2014-ExtraLight;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-ExtraLightItalic {
  font-family: DIN2014-ExtraLightItalic;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-Light {
  font-family: DIN2014-Light;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-LightItalic {
  font-family: DIN2014-LightItalic;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-Regular {
  font-family: DIN2014-Regular;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-Italic {
  font-family: DIN2014-Italic;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-Demi {
  font-family: DIN2014-Demi;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-DemiItalic {
  font-family: DIN2014-DemiItalic;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-ExtraBold {
  font-family: DIN2014-ExtraBold;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-BoldItalic {
  font-family: DIN2014-BoldItalic;
  font-weight: normal;
  font-style: normal;
}

.DIN2014-ExtraBoldItalic {
  font-family: DIN2014-ExtraBoldItalic;
  font-weight: normal;
  font-style: normal;
}


/* MORE RESET
 * ----------------------------------------------- */

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

ul, ol, li {
  list-style: none;
}


/* GENERAL
 * ----------------------------------------------- */

body {
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.44;
  -webkit-text-size-adjust: none;
  background: #f7f8f5;
}

html.lang-en body {
  font-family: DIN2014-Regular, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

html.lang-zh body {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
}

html.lang-cn body {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
}

.ft-yahei-bd {
  font-family:Microsoft YaHei !important; font-weight:bold;
}
.ft-JhengHei-bd {
  font-family:Microsoft JhengHei !important; font-weight:bold;
}

.ft-dinb {
  font-family: "DIN2014-Bold";
}
.ft-dinbi {
  font-family: "DIN2014-BoldItalic";
}
.ft-dinm {
  font-family: "DIN2014-Regular";
}
.ft-dinri {
  font-family: "DIN2014-Italic";
}
.ft-dinm {
  font-family: "DIN2014-Demi";
}
.ft-dinmi {
  font-family: "DIN2014-DemiItalic";
}

html.lang-zh body [class*="ft-"] {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body [class*="ft-"] {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.ft-serif {
  font-family: Georgia, serif;
}


/* HELPERS
 * ----------------------------------------------- */

a {
  color: #1e1e1e;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}

.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

@media (min-width: 751px) {
  .container {
    min-width: 1100px;
    padding-top: /*78px*/
    110px;
  }
  .wrapper {
    width: 1044px;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper-wide {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* RESPONSIVE
 * ----------------------------------------------- */

@media only screen and (max-width: 750px) {
  html {
    font-size: 100px;
  }
}

@media only screen and (max-width: 745px) {
  html {
    font-size: 99.33333px;
  }
}

@media only screen and (max-width: 740px) {
  html {
    font-size: 98.66667px;
  }
}

@media only screen and (max-width: 735px) {
  html {
    font-size: 98px;
  }
}

@media only screen and (max-width: 730px) {
  html {
    font-size: 97.33333px;
  }
}

@media only screen and (max-width: 725px) {
  html {
    font-size: 96.66667px;
  }
}

@media only screen and (max-width: 720px) {
  html {
    font-size: 96px;
  }
}

@media only screen and (max-width: 715px) {
  html {
    font-size: 95.33333px;
  }
}

@media only screen and (max-width: 710px) {
  html {
    font-size: 94.66667px;
  }
}

@media only screen and (max-width: 705px) {
  html {
    font-size: 94px;
  }
}

@media only screen and (max-width: 700px) {
  html {
    font-size: 93.33333px;
  }
}

@media only screen and (max-width: 695px) {
  html {
    font-size: 92.66667px;
  }
}

@media only screen and (max-width: 690px) {
  html {
    font-size: 92px;
  }
}

@media only screen and (max-width: 685px) {
  html {
    font-size: 91.33333px;
  }
}

@media only screen and (max-width: 680px) {
  html {
    font-size: 90.66667px;
  }
}

@media only screen and (max-width: 675px) {
  html {
    font-size: 90px;
  }
}

@media only screen and (max-width: 670px) {
  html {
    font-size: 89.33333px;
  }
}

@media only screen and (max-width: 665px) {
  html {
    font-size: 88.66667px;
  }
}

@media only screen and (max-width: 660px) {
  html {
    font-size: 88px;
  }
}

@media only screen and (max-width: 655px) {
  html {
    font-size: 87.33333px;
  }
}

@media only screen and (max-width: 650px) {
  html {
    font-size: 86.66667px;
  }
}

@media only screen and (max-width: 645px) {
  html {
    font-size: 86px;
  }
}

@media only screen and (max-width: 640px) {
  html {
    font-size: 85.33333px;
  }
}

@media only screen and (max-width: 635px) {
  html {
    font-size: 84.66667px;
  }
}

@media only screen and (max-width: 630px) {
  html {
    font-size: 84px;
  }
}

@media only screen and (max-width: 625px) {
  html {
    font-size: 83.33333px;
  }
}

@media only screen and (max-width: 620px) {
  html {
    font-size: 82.66667px;
  }
}

@media only screen and (max-width: 615px) {
  html {
    font-size: 82px;
  }
}

@media only screen and (max-width: 610px) {
  html {
    font-size: 81.33333px;
  }
}

@media only screen and (max-width: 605px) {
  html {
    font-size: 80.66667px;
  }
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 80px;
  }
}

@media only screen and (max-width: 595px) {
  html {
    font-size: 79.33333px;
  }
}

@media only screen and (max-width: 590px) {
  html {
    font-size: 78.66667px;
  }
}

@media only screen and (max-width: 585px) {
  html {
    font-size: 78px;
  }
}

@media only screen and (max-width: 580px) {
  html {
    font-size: 77.33333px;
  }
}

@media only screen and (max-width: 575px) {
  html {
    font-size: 76.66667px;
  }
}

@media only screen and (max-width: 570px) {
  html {
    font-size: 76px;
  }
}

@media only screen and (max-width: 565px) {
  html {
    font-size: 75.33333px;
  }
}

@media only screen and (max-width: 560px) {
  html {
    font-size: 74.66667px;
  }
}

@media only screen and (max-width: 555px) {
  html {
    font-size: 74px;
  }
}

@media only screen and (max-width: 550px) {
  html {
    font-size: 73.33333px;
  }
}

@media only screen and (max-width: 545px) {
  html {
    font-size: 72.66667px;
  }
}

@media only screen and (max-width: 540px) {
  html {
    font-size: 72px;
  }
}

@media only screen and (max-width: 535px) {
  html {
    font-size: 71.33333px;
  }
}

@media only screen and (max-width: 530px) {
  html {
    font-size: 70.66667px;
  }
}

@media only screen and (max-width: 525px) {
  html {
    font-size: 70px;
  }
}

@media only screen and (max-width: 520px) {
  html {
    font-size: 69.33333px;
  }
}

@media only screen and (max-width: 515px) {
  html {
    font-size: 68.66667px;
  }
}

@media only screen and (max-width: 510px) {
  html {
    font-size: 68px;
  }
}

@media only screen and (max-width: 505px) {
  html {
    font-size: 67.33333px;
  }
}

@media only screen and (max-width: 500px) {
  html {
    font-size: 66.66667px;
  }
}

@media only screen and (max-width: 495px) {
  html {
    font-size: 66px;
  }
}

@media only screen and (max-width: 490px) {
  html {
    font-size: 65.33333px;
  }
}

@media only screen and (max-width: 485px) {
  html {
    font-size: 64.66667px;
  }
}

@media only screen and (max-width: 480px) {
  html {
    font-size: 64px;
  }
}

@media only screen and (max-width: 475px) {
  html {
    font-size: 63.33333px;
  }
}

@media only screen and (max-width: 470px) {
  html {
    font-size: 62.66667px;
  }
}

@media only screen and (max-width: 465px) {
  html {
    font-size: 62px;
  }
}

@media only screen and (max-width: 460px) {
  html {
    font-size: 61.33333px;
  }
}

@media only screen and (max-width: 455px) {
  html {
    font-size: 60.66667px;
  }
}

@media only screen and (max-width: 450px) {
  html {
    font-size: 60px;
  }
}

@media only screen and (max-width: 445px) {
  html {
    font-size: 59.33333px;
  }
}

@media only screen and (max-width: 440px) {
  html {
    font-size: 58.66667px;
  }
}

@media only screen and (max-width: 435px) {
  html {
    font-size: 58px;
  }
}

@media only screen and (max-width: 430px) {
  html {
    font-size: 57.33333px;
  }
}

@media only screen and (max-width: 425px) {
  html {
    font-size: 56.66667px;
  }
}

@media only screen and (max-width: 420px) {
  html {
    font-size: 56px;
  }
}

@media only screen and (max-width: 415px) {
  html {
    font-size: 55.33333px;
  }
}

@media only screen and (max-width: 410px) {
  html {
    font-size: 54.66667px;
  }
}

@media only screen and (max-width: 405px) {
  html {
    font-size: 54px;
  }
}

@media only screen and (max-width: 400px) {
  html {
    font-size: 53.33333px;
  }
}

@media only screen and (max-width: 395px) {
  html {
    font-size: 52.66667px;
  }
}

@media only screen and (max-width: 390px) {
  html {
    font-size: 52px;
  }
}

@media only screen and (max-width: 385px) {
  html {
    font-size: 51.33333px;
  }
}

@media only screen and (max-width: 380px) {
  html {
    font-size: 50.66667px;
  }
}

@media only screen and (max-width: 375px) {
  html {
    font-size: 50px;
  }
}

@media only screen and (max-width: 370px) {
  html {
    font-size: 49.33333px;
  }
}

@media only screen and (max-width: 365px) {
  html {
    font-size: 48.66667px;
  }
}

@media only screen and (max-width: 360px) {
  html {
    font-size: 48px;
  }
}

@media only screen and (max-width: 355px) {
  html {
    font-size: 47.33333px;
  }
}

@media only screen and (max-width: 350px) {
  html {
    font-size: 46.66667px;
  }
}

@media only screen and (max-width: 345px) {
  html {
    font-size: 46px;
  }
}

@media only screen and (max-width: 340px) {
  html {
    font-size: 45.33333px;
  }
}

@media only screen and (max-width: 335px) {
  html {
    font-size: 44.66667px;
  }
}

@media only screen and (max-width: 330px) {
  html {
    font-size: 44px;
  }
}

@media only screen and (max-width: 325px) {
  html {
    font-size: 43.33333px;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: 42.66667px;
  }
}

.sm {
  display: none !important;
}

@media (max-width: 750px) {
  .md {
    display: none !important;
  }
  .sm {
    display: block !important;
  }
  .trans, .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  .container {
    width: auto;
    min-width: 320px;
    padding-top: 50px;
  }
  .wrapper {
    width: auto;
    margin: 0;
  }
  img {
    width: 100%;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.top-sm .slick-slide img {
  display: block;
  width: auto;
  height: 100vh;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


/* PARTS
 * ----------------------------------------------- */

#main-header {
  width: 100%;
  position: absolute;
}

#main-header .header-logo-block {
  float: left;
}

#main-header .header-logo {
  display: table;
}

#main-header .header-logo .logo, #main-header .header-logo .txt {
  display: table-cell;
  vertical-align: middle;
}

#main-header .header-logo .logo img {
  width: 84px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  #main-header .header-logo .logo img {
    width: 56px;
  }
}

#main-header .header-logo .txt {
  padding-left: 1em;
}

#main-header .header-logo .txt>* {
  display: block;
  line-height: 1;
}

#main-header .top-menu {
  position: relative;
  width: 100%;
  height: 110px;
  left: 0;
  top: 0;
  padding: 35px 50px 0;
}

#main-header .top-menu .add-fixed {
  position: fixed !important;
  top: 0;
}

@media screen and (max-width: 599px) {
  #main-header .top-menu {
    position: fixed;
    background-color: #fff;
    padding: 10px;
    height: 50px;
  }
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .logo span.pc {
    display: none !important;
  }
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .logo span.sp {
    display: block !important;
  }
  main-header .top-menu .logo span.sp img {
    width: 190px;
  }
}

#main-header .top-menu .main-nav {
  display: block;
  float: right;
}

#main-header .top-menu .main-nav ul {
  display: flex;
}

#main-header .top-menu .main-nav ul li {
  width: 150px;
}

#main-header .top-menu .main-nav ul li .fa {
  display: none;
}

#main-header .top-menu .main-nav ul li .fa-envelope {
  display: inline !important;
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .main-nav ul li .fa {
    display: inline;
  }
}

#main-header .top-menu .main-nav ul li:last-child a {
  border-right: 1px solid #ccc;
}

#main-header .top-menu .main-nav ul li:hover a {
  color: #188334;
}

#main-header .top-menu .main-nav ul li a, #main-header .top-menu .main-nav ul li .langselecter {
  display: block;
  padding: 0 .5em;
  border-left: 1px solid white;
  text-align: center;
}

#main-header .top-menu .main-nav ul li .langselecter .fa {
  display: inline-block !important;
}

#main-header .top-menu .main-nav ul li .langselecter form {
  display: inline-block;
}

#main-header .top-menu .main-nav ul li a span {
  display: block;
}

#main-header .top-menu .main-nav ul li a span.jp {
  font-weight: 500;
  font-size: 16px;
  font-family: DIN2014-Demi;
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .main-nav ul li a span.jp {
    font-weight: 400;
  }
}

#main-header .top-menu .main-nav ul li a span.en {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Roboto Condensed", sans-serif;
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .main-nav ul li a span {
    color: #2a2a2a;
  }
}

#main-header .top-menu .main-nav ul li .child-menu {
  display: none;
  margin-top: 2px;
}

#main-header .top-menu .main-nav ul li .child-menu li {
  background: #188334;
  margin-bottom: 1px;
}

#main-header .top-menu .main-nav ul li .child-menu li a {
  border: none;
  display: block;
  padding: 1em 0;
  color: #fff;
  /*	font-size: 12px;
	font-size: 1.2rem;*/
}

#main-header .top-menu .main-nav ul li .child-menu li:hover {
  background: rgba(24, 131, 52, 0.5);
}

@media screen and (max-width: 1400px) {
  #main-header .top-menu .main-nav {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: calc(100vw - 125px);
    z-index: 10;
    padding-top: 85px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-backface-visibility: hidden;
  }
  #main-header .top-menu .main-nav ul {
    display: block;
  }
  #main-header .top-menu .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid #d7d7d7;
    border-left: none;
    border-right: none;
    position: relative;
  }
  #main-header .top-menu .main-nav ul li a, #main-header .top-menu .main-nav ul li .langselecter {
    color: #2a2a2a;
    padding: 15px 15px 15px 20px;
    text-align: left;
    outline: none !important;
    border-left: none;
  }
  #main-header .top-menu .main-nav ul li a span.en {
    display: none;
  }
  #main-header .top-menu .main-nav ul li:after {
    display: block;
    content: '\f107';
    font-family: FontAwesome, sans-serif;
    color: #0f8f29;
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 16px;
  }
  #main-header .top-menu .main-nav ul li.ext-link:after {
    content: '\f08e';
    color: #a1a1a1;
    right: 17px;
  }
  #main-header .top-menu .main-nav ul li.no-mark:after {
    content: '';
  }
  #main-header .top-menu .main-nav ul li .child-menu {
    display: none;
    border-top: 1px solid #d7d7d7;
  }
  #main-header .top-menu .main-nav ul li .child-menu li {
    background-color: #efefef;
    margin: 0;
  }
  #main-header .top-menu .main-nav ul li .child-menu li:last-child {
    border-bottom: none;
    border-right: none;
  }
  #main-header .top-menu .main-nav ul li .child-menu li:after {
    display: none;
  }
  #main-header .top-menu .main-nav ul li .child-menu li a {
    text-align: left;
    display: block;
    padding: 15px 15px 15px 20px;
    color: #4a4a4a;
    /*	font-size: 14px;
	font-size: 1.4rem;*/
  }
  #main-header .top-menu .main-nav ul li .child-menu li:hover {
    background: #eee;
  }
}

@media screen and (max-width: 1400px) {
  #main-header .top-menu .main-nav.display {
    right: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-backface-visibility: hidden;
  }
}

#main-header .top-menu #menu-sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 50px;
  top: 35px;
  z-index: 11;
}

@media screen and (min-width: 1400px) {
  #main-header .top-menu #menu-sp-btn {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  #main-header .top-menu #menu-sp-btn {
    border-left: 1px solid #dcdcdc;
    top: 0;
    right: 0;
  }
}

#main-header .top-menu #menu-sp-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background-color: #a0a0a0;
  margin-bottom: 6px;
  -webkit-transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
  transform: translateZ(0);
}

#main-header .top-menu #menu-sp-btn span:last-child {
  margin-bottom: 0;
}

#main-header .top-menu #menu-sp-btn.clicked {
  border-left: 1px solid transparent;
}

#main-header .top-menu #menu-sp-btn.clicked span:first-child {
  -webkit-transform: translateY(6px) rotateZ(-135deg);
  transform: translateY(6px) rotateZ(-135deg);
}

#main-header .top-menu #menu-sp-btn.clicked span:nth-child(2) {
  opacity: 0;
}

#main-header .top-menu #menu-sp-btn.clicked span:last-child {
  -webkit-transform: translateY(-8px) rotateZ(135deg);
  transform: translateY(-8px) rotateZ(135deg);
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

#main-header .top-menu {
  background: #fff;
}

#main-header .top-menu .main-nav ul li a, #main-header .top-menu .main-nav ul li .langselecter {
  border-left: 1px solid #ccc;
  color: #2a2a2a;
}

@media screen and (max-width: 599px) {
  #main-header .top-menu .main-nav ul li a {
    border-left: none;
  }
}

@media screen and (max-width: 900px) {
  .dimmed:before {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-backface-visibility: hidden;
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 1;
    visibility: visible;
  }
}

footer {
  background: #fff;
  position: relative;
  z-index: 10;
}

footer .wrapper {
  padding: 20px 0;
  *zoom: 1;
}

footer .wrapper:after {
  content: "";
  display: table;
  clear: both;
}

footer .wrapper .footer-logo {
  width: 84px;
  float: left;
}

footer .wrapper .copyright {
  font-size: 14px;
  line-height: 1;
  color: #6b6b6b;
  float: left;
  margin: 22px 0 0 18px;
}

footer .wrapper .footer-nav {
  float: right;
  font-size: 14px;
  line-height: 1;
  margin: 22px 0 0;
  border-left: 1px solid #6b6b6b;
  *zoom: 1;
}

footer .wrapper .footer-nav:after {
  content: "";
  display: table;
  clear: both;
}

footer .wrapper .footer-nav>li {
  float: left;
  border-right: 1px solid #6b6b6b;
}

footer .wrapper .footer-nav a {
  display: block;
  color: #6b6b6b;
  padding: 0 10px;
}

@media (max-width: 750px) {
  footer .wrapper {
    padding: 0 0 1rem;
    overflow: hidden;
    *zoom: 1;
  }
  footer .wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
  footer .wrapper .footer-logo {
    width: 33.33333%;
    float: none;
    margin: 1.07rem auto 0;
  }
  footer .wrapper .copyright {
    font-size: 0.22rem;
    float: none;
    margin: 0.18rem 0 0 0;
    text-align: center;
  }
  footer .wrapper .footer-nav {
    float: none;
    font-size: 0.24rem;
    margin: 0;
    background: #e9e9e9;
    border-top: 1px solid #b5b5b5;
    border-left: none;
  }
  footer .wrapper .footer-nav>li {
    width: 50%;
    display: table !important;
    height: 0.88rem;
    text-align: center;
    border: none;
    border-left: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
  }
  footer .wrapper .footer-nav>li:nth-child(2n+1) {
    border-left: none;
  }
  footer .wrapper .footer-nav>li:last-child {
    border-right: none;
  }
  footer .wrapper .footer-nav a, footer .wrapper .footer-nav>span {
    display: table-cell;
    padding: 0;
    vertical-align: middle;
  }
  footer .gototop {
    width: 1.52rem;
    height: 1.52rem;
    background: url(/common/img/common/sm/gototop.png) no-repeat 0 0;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    left: 50%;
    margin-left: -0.76rem;
    bottom: 0;
    position: fixed;
  }
}

.img {
  display: block;
  max-width: 100%;
}

.sec-title {
  color: #1c1c1c;
  text-align: center;
}

.sec-title>span {
  display: block;
}

.sec-title .fs01 {
  font-size: 48px;
  line-height: 1.2;
}

/*html.lang-cn body .sec-title .fs01, html.lang-zh body .sec-title .fs01 {
  font-family: initial;
  font-weight: bold;
}*/

.sec-title .fs02 {
  font-size: 30px;
  line-height: 1.4;
  margin: 10px 0 0;
}

@media (max-width: 750px) {
  .sec-title .fs01 {
    font-size: 0.48rem;
    line-height: 1.2;
  }
  .sec-title .fs02 {
    font-size: 0.34rem;
    line-height: 1.2;
    margin: 0;
  }
}

.caption-bl {
  width: 696px;
  margin: 0 auto;
  /*font-size: 18px;*/
  line-height: 1.44444;
  text-align: justify;
  text-justify: distribute;
  color: #070707;
}

@media (max-width: 750px) {
  .caption-bl {
    width: auto;
    margin: 0 auto;
    font-size: 0.28rem;
    line-height: 1.5;
  }
}

.sec-pttl {
  border-top: 1px solid #c9c9c9;
  font-size: 26px;
  line-height: 1;
  color: #1c1c1c;
  position: relative;
}

.sec-pttl>span {
  display: inline-block;
  position: relative;
  padding: 24px;
  font-family: DIN2014-Demi;
}

html.lang-zh body .sec-pttl>span {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .sec-pttl>span {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.sec-pttl>span:before {
  content: "";
  left: 0;
  top: 0;
  background: #61ad37;
  height: 4px;
  width: 100%;
  position: absolute;
}

@media (max-width: 750px) {
  .sec-pttl {
    font-size: 0.42rem;
    line-height: 1;
    color: #1c1c1c;
    position: relative;
  }
  .sec-pttl>span {
    padding: .85em .2rem .25em .2rem;
  }
  .sec-pttl>span:before {
    height: 0.08rem;
  }
}

.main-content {
  margin: 64px 0 128px;
}


.main-content .wrapper {
  background: #fff;
}

@media (max-width: 750px) {
  .main-content {
    margin: 5.6% 3.2%;
  }
}


/*@media (max-width: 375px) {
.main-content {
	margin: 12px;
}
}*/


/*@media (max-width: 375px) {
.main-content {
	margin: 12px;
}
}*/

.breadcrumb {
  background: #f7f8f5;
  padding: 15px 0;
}

.breadcrumb .ul-breadcrumb {
  font-size: 14px;
  line-height: 1.2;
  color: #adadad;
}

.breadcrumb .ul-breadcrumb a {
  color: #adadad;
}

.breadcrumb .ul-breadcrumb>li {
  display: inline-block;
  padding-right: 8px;
  margin-right: 8px;
  position: relative;
}

.breadcrumb .ul-breadcrumb>li:before {
  content: " ";
  position: absolute;
  right: -5px;
  width: 7px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  background: url(/common/img/common/bullet01.png) no-repeat 0 0;
}

.breadcrumb .ul-breadcrumb>li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcrumb .ul-breadcrumb>li:last-child:before {
  display: none;
}

@media (max-width: 750px) {
  .breadcrumb {
    padding: 0.3rem 0.2rem;
  }
  .breadcrumb .ul-breadcrumb {
    font-size: 0.2rem;
  }
  .breadcrumb .ul-breadcrumb>li {
    display: inline-block;
    padding-right: 0.1rem;
    margin-right: 0.1rem;
    position: relative;
  }
  .breadcrumb .ul-breadcrumb>li:before {
    right: -0.09rem;
    width: 0.1rem;
    height: 0.11rem;
    background: url(/common/img/common/sm/bullet01.png) no-repeat 0 0;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    top: 0.06rem;
    margin-top: 0;
  }
}

.ask-an-expert {
  background: url(/common/img/common/bg-footer.jpg) no-repeat center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f4f4f4;
  color: #fff;
  font-size: 24px;
  line-height: 1.29167;
  padding: 76px .5rem;
  text-align: center;
  min-height: 300px;
  position: relative;
}

.ask-an-expert .caption {
  margin-top: -9px;
  font-family: DIN2014-Demi;
}

html.lang-zh body .ask-an-expert .caption {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .ask-an-expert .caption {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.ask-an-expert .btn {
  background: #61ad37;
  width: 356px;
  color: #fff;
  display: table;
  margin: 28px auto 0;
  height: 68px;
  font-size: 30px;
  border: 1px solid #61ad37;
}

.ask-an-expert .btn>span {
  display: table-cell;
  vertical-align: middle;
}

.ask-an-expert .btn>span>span {
  font-family: DIN2014-Demi;
  padding: 5px 0 5px 40px;
  background: url(/common/img/common/ic_mess.png) no-repeat 0 center;
  display: inline-block;
}
html.lang-zh body .ask-an-expert .btn>span>span {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
}
html.lang-cn body .ask-an-expert .btn>span>span {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
}

.ask-an-expert .btn:hover {
  background: #cce198;
  color: #61ad37;
}

.ask-an-expert .btn:hover>span>span {
  background-image: url(/common/img/common/ic_mess_on.png);
}

@media (max-width: 750px) {
  .ask-an-expert {
    font-size: 0.385rem;
    line-height: 1.2;
    min-height: 0;
    height: auto;
    overflow: hidden;
    position: relative;
    background-image: url(/common/img/common/bg-footer.jpg);
    background-color: #6DBE40;
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
  }
  .ask-an-expert .caption {
    margin-top: -0.1rem;
  }
  .ask-an-expert .btn {
    width: 100%;
    color: #fff;
    margin: 0.45rem auto 0;
    height: 1.5rem;
    font-size: 0.5rem;
  }
  .ask-an-expert .btn>span>span {
    padding: 0.05rem 0 0.05rem 0.65rem;
    background-image: url(/common/img/common/sm/ic_mess.png);
    -moz-background-size: 0.52rem 0.46rem;
    -o-background-size: 0.52rem 0.46rem;
    -webkit-background-size: 0.52rem 0.46rem;
    background-size: 0.52rem 0.46rem;
  }
  .ask-an-expert .btn:hover>span>span {
    background-image: url(/common/img/common/sm/ic_mess_on.png);
  }
}

@media (max-width: 375px) {
  .ask-an-expert {
    padding: 72px 20px;
    min-height: 0;
  }
}

.section-banner {
  position: relative;
  overflow: hidden;
  background-image: url(/common/img/common/banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.section-banner.banner01 {
  background-image: url(/common/img/common/banner01.jpg);
}

.section-banner.banner02 {
  background-image: url(/common/img/common/banner02.jpg);
}

.section-banner.banner03 {
  background-image: url(/common/img/common/banner03.jpg);
}

.section-banner.banner04 {
  background-image: url(/common/img/common/banner04.jpg);
}

.section-banner.banner05 {
  background-image: url(/common/img/common/banner05.jpg);
}

.section-banner .wrapper {
  height: 410px;
  position: relative;
  z-index: 20;
}

.section-banner .wrapper:before, .section-banner .wrapper:after {
  content: " ";
  position: absolute;
  height: 100%;
  top: 0;
}

.section-banner .wrapper:before {
  background: #6dbe40;
  width: 10000%;
  left: 682px;
}

.section-banner .wrapper:after {
  right: 0;
  margin-right: 347px;
  width: 112px;
  background: url(/common/img/common/arrow01.png) no-repeat 0 0;
}

.section-banner .wrapper .inner {
  padding-left: 522px;
  display: table;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 20;
  letter-spacing: -0.05em;
}

.section-banner .wrapper .inner>div {
  display: table-cell;
  vertical-align: middle;
}

.section-banner .wrapper .inner h2 {
  font-size: 62px;
  line-height: 1.2;
  font-family: DIN2014-BoldItalic;
}

html.lang-zh body .section-banner .wrapper .inner h2 {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .section-banner .wrapper .inner h2 {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.section-banner .wrapper .inner .caption {
  font-size: 28px;
  line-height: 1.2;
  margin-top: 16px;
}

@media (max-width: 750px) {
  .section-banner .wrapper .inner .caption {
    font-size: 12px;
    margin-top: -3px;
    text-align: right;
  }
}

@media (max-width: 750px) {
  .section-banner .wrapper {
    height: 3.2rem;
  }
  .section-banner .wrapper:before {
    width: 36.06667%;
    left: auto;
    right: 0;
  }
  .section-banner .wrapper:after {
    margin-right: 33.86667%;
    width: 14.93333%;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
  }
  .section-banner .wrapper .inner {
    padding-left: 0;
    letter-spacing: 0;
    padding: 0.2rem;
  }
  .section-banner .wrapper .inner h2 {
    font-size: 0.725rem;
    text-align: right;
  }
}

.wrap-anchor {
  background: #e4e4e4;
  height: 87px;
}

.wrap-anchor .wrapper .ul-anchor {
  *zoom: 1;
  background: #dcdcdc;
}

.wrap-anchor .wrapper .ul-anchor:after {
  content: "";
  display: table;
  clear: both;
}

.wrap-anchor .wrapper .ul-anchor>li {
  display: table;
  width: 25%;
  float: left;
}

.wrap-anchor .wrapper .ul-anchor>li a {
  display: table-cell;
  vertical-align: middle;
  height: 87px;
  text-align: center;
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.4;
  font-family: DIN2014-Demi;
}

html.lang-zh body .wrap-anchor .wrapper .ul-anchor>li a {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .wrap-anchor .wrapper .ul-anchor>li a {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.wrap-anchor .wrapper .ul-anchor>li a:hover, .wrap-anchor .wrapper .ul-anchor>li.active a {
  color: #61ad37;
  background: #f7f8f5;
}

.wrap-anchor .wrapper .ul-anchor>li .ic {
  display: inline-block;
  padding-right: 32px;
  background: url(/common/img/common/ic_z.png) no-repeat right center;
  font-family: DIN2014-Demi;
}

.wrap-anchor .nav-fixed.fixed {
  background: #e4e4e4;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  min-width: 1100px;
  z-index: 500;
}

@media (max-width: 750px) {
  .wrap-anchor {
    background: #e4e4e4;
    height: auto;
    overflow: hidden;
  }
  .wrap-anchor .wrapper .ul-anchor {
    *zoom: 1;
    background: #dcdcdc;
  }
  .wrap-anchor .wrapper .ul-anchor:after {
    content: "";
    display: table;
    clear: both;
  }
  .wrap-anchor .wrapper .ul-anchor>li {
    display: table;
    width: 50%;
    float: left;
    border-left: 1px solid #c9c9c9;
    border-top: 1px solid #c9c9c9;
    height: 1.08rem;
  }
  .wrap-anchor .wrapper .ul-anchor>li a {
    height: auto;
    font-size: 0.28rem;
  }
  .wrap-anchor .wrapper .ul-anchor>li .ic {
    padding-right: 0.42rem;
    background-image: url(/common/img/common/sm/ic_z.png);
    -moz-background-size: 0.35rem auto;
    -o-background-size: 0.35rem auto;
    -webkit-background-size: 0.35rem auto;
    background-size: 0.35rem auto;
  }
  .wrap-anchor .nav-fixed.fixed {
    position: relative;
    top: auto;
    left: auto;
    min-width: 0;
  }
}

.list-menu {
  margin: 0 -1px;
  *zoom: 1;
}

.list-menu:after {
  content: "";
  display: table;
  clear: both;
}

.list-menu>li {
  width: 25%;
  float: left;
  padding: 0 1px;
}

.list-menu>li a {
  display: table;
  border: 1px solid #f1f1f1;
  border-bottom-width: 4px;
  background: #fff;
  width: 100%;
  padding: 9px 9px 9px 14px;
}

.list-menu>li a .thumb, .list-menu>li a .info {
  display: table-cell;
  vertical-align: middle;
}

.list-menu>li a .thumb {
  width: 76px;
}

.list-menu>li a .info .ttl {
  font-size: 16px;
  line-height: 1.2;
}

.list-menu>li a .info .txt {
  font-size: 14px;
  line-height: 1.2;
}

.list-menu>li a .info:hover {
  color: #61ad37;
}

@media (max-width: 750px) {
  .list-menu {
    margin: 0;
    *zoom: 1;
    font-family: "DIN2014-Bold";
  }
  .list-menu:after {
    content: "";
    display: table;
    clear: both;
  }
  .list-menu>li {
    width: 50%;
    float: left;
    padding: 0 0 2px 2px;
  }
  .list-menu>li a {
    border: none;
    border-bottom-width: 4px;
    background: #fff;
    width: 100%;
    padding: 0.12rem 0.12rem 0.12rem 0.18rem;
  }
  .list-menu>li a .thumb {
    width: 1.1rem;
  }
  .list-menu>li a .info {
    padding-right: 0.15rem;
  }
  .list-menu>li a .info .ttl {
    font-size: 0.28rem;
  }
  .list-menu>li a .info .txt {
    font-size: 0.21rem;
  }
}


/* LIBS
 * ----------------------------------------------- */


/* PAGES
 * ----------------------------------------------- */


/*.section-movie {
  height: 590px;
  overflow: hidden;
  position: relative;
}
.section-movie .info {
  position: absolute;
  z-index: 150;
  left: 0;
  width: 100%;
  height: inherit;
  display: table;
  top: 0;
}
.section-movie .info .inner {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
}
.section-movie .info .inner .ttl {
	width: 873px;
	height: 172px;
	background-image: url(/common/img/top/keyvisualtitle-pc.png);
	background-position: center center;
	background-repeat: no-repeat;
	text-indent: -9999px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin:  auto;
}
.section-movie .info .inner .desc {
  font-size: 18px;
  line-height: 1.44444;
  margin-top: 37px;
}
.section-movie .keyvisual {
  position: relative;
  height: inherit;
  overflow: hidden;
}
.section-movie .keyvisual:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  background: url(/common/img/common/pattern01.png) repeat 0 0;
  mix-blend-mode: multiply;
}
.section-movie .keyvisual .movie {
  position: fixed;
  left: 50%;
  top: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
}
	@media (max-width: 750px) {
		.section-movie .keyvisual .movie {
		  height: 56.25%;
		  position: relative;
		  left: 0;
		  top: 0;
		  -moz-transform: translateX(0%);
		  -ms-transform: translateX(0%);
		  -webkit-transform: translateX(0%);
		  transform: translateX(0%);
		}
		.slick-dots {
		height: 0;
		}	
	}
.section-movie .keyvisual .movie video {
  position: absolute;
  left: 50%;
  top: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

@media (min-width: 751px) {
  .page-top {
    background: #fff
  }
  .section-movie.h-movie .keyvisual .movie {
    min-height: 92%
  }
}

@media (max-width: 750px) {
  .section-movie {
  height: 56.25%;;
    background-attachment: fixed;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
  .section-movie .keyvisual:before {
    content: "";
    width: 100%;
    height: auto;
    padding-top: 56.25%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    background: url(/common/img/common/pattern02.png) repeat 0 0;
	background-size: 4px 4px;
    mix-blend-mode: multiply;
  }
   .section-movie .info .inner {
   padding-top: 56.25%;   
 }
  .section-movie .info .inner .ttl {
    font-size: 0.62rem;
    line-height: 1;
    width: 90%;
	width: calc(873px / 4);
	height: calc(172px / 4);
	background-image: url(/common/img/top/keyvisualtitle-sp.png);
	background-size: 100% auto;
  }
  .section-movie .info .inner .desc {
    font-size: 0.26rem;
    line-height: 1.44444;
    margin: 0.25rem auto 0;
    width: 80%;
    text-align: center;
  }
}*/

.section-maintech-dsp {
  background: #f4f4f4 url(/common/img/top/backg01.jpg) no-repeat center 0;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
  background-attachment: fixed;
  z-index: 10;
  position: relative;
  padding: 128px 0;
}

.section-maintech-dsp .wrapper {
  position: relative;
  z-index: 20;
}

.section-maintech-dsp .sec-title {
  margin: -13px 0 0;
}

.section-maintech-dsp .ul-col {
  width: 810px;
  margin: 100px auto 80px;
  display: table;
  table-layout: fixed;
}

.section-maintech-dsp .ul-col>li {
  display: table-cell;
  vertical-align: middle;
}

.section-maintech-dsp .ul-col>li.plus {
  width: 66px;
  text-align: center;
  background-image: url(/common/img/top/plus.png);
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (max-width: 750px) {
  .section-maintech-dsp .ul-col>li.plus {
    width: 33px;
    background-size: 18px auto;
  }
}

.section-maintech-dsp .logo {
  width: 171px;
  margin: 0 auto 31px;
}

@media (max-width: 750px) {
  .section-maintech-dsp {
    background: #fff url(/common/img/top/sm/backg01.jpg) no-repeat center 0;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    padding: 0.4rem;
    z-index: 0;
  }
  .section-maintech-dsp .sec-title {
    margin: -0.12rem 0 0;
  }
  .section-maintech-dsp .ul-col {
    width: auto;
    margin: 1rem -0.07rem 1rem !important;
  }
  .section-maintech-dsp .ul-col>li {
    margin-left: 0;
    padding: 0 0.07rem;
  }
  .section-maintech-dsp .logo {
    width: 35.8209%;
    margin: 0 auto 0.56rem;
  }
}

@media (max-width: 375px) {
  .section-maintech-dsp {
    padding: 3em 20px;
  }
  .section-maintech-dsp .ul-col {
    margin-top: 24px;
  }
}

.section-our-technologe {
  padding: 64px 0;
  /*background: #f7f8f5;*/
  position: relative;
  z-index: 10;
}

.section-our-technologe .sec-title {
  margin: -13px 0 40px;
}

.section-our-technologe.bg {
  background-image: url(../img/product/backg_slide2.jpg);
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f4f4f4;
  color: #fff;
  font-size: 24px;
  line-height: 1.29167;
  padding: 76px 0 75px;
  min-height: 300px;
  position: relative;
}

.section-our-technologe.bg .sec-title {
  color: #fff;
}

@media (max-width: 750px) {
  .section-our-technologe {
    padding: 3em 0;
  }
  .section-our-technologe .sec-title {
    margin: -0.12rem 0 0.4rem;
  }
  /*.section-our-technologe .sec-title .fs01 {
	font-size: 0.42rem;
}*/
  .section-our-technologe .caption-bl {
    margin: -0.07rem 0 0;
  }
}


/*.sectiopn-top-module {
  background: #f7f8f5;
  position: relative;
  z-index: 10;
}
.sectiopn-top-module .top-head {
  height: 328px;
  background-position: 0 0;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  display: table;
}
.sectiopn-top-module .top-head.bg01 {
  background-image: url(/common/img/top/backg02.jpg);
}
.sectiopn-top-module .top-head.bg02 {
  background-image: url(/common/img/top/backg03.jpg);
}
.sectiopn-top-module .top-head.bg03 {
  background-image: url(/common/img/top/backg04.jpg);
}
.sectiopn-top-module .top-head > h2 {
  font-size: 120px;
  line-height: 1;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 20;

}
.sectiopn-top-module .wrapper {
  padding: 64px 0;
}
.sectiopn-top-module .ttl {
  font-size: 36px;
  line-height: 1.2;
  color: #1c1c1c;
  text-align: center;
  margin: -9px 0 32px;
}
.sectiopn-top-module .caption-bl {
  margin: -6px auto -5px;
  width: 480px;
}
.sectiopn-top-module .btn {
  width: 196px;
  margin: 32px auto 0;
  display: block;
}

@media (max-width: 750px) {
  .sectiopn-top-module {
    background: none
  }
  .sectiopn-top-module .section-wrap {
    background: #f7f8f5;
    position: relative;
    z-index: 20;
  }
  .sectiopn-top-module .top-head {
    height: 3.28rem;
  }
  .sectiopn-top-module .top-head.bg01 {
    background-image: url(/common/img/top/sm/backg02.jpg);
  }
  .sectiopn-top-module .top-head.bg02 {
    background-image: url(/common/img/top/sm/backg03.jpg);
  }
  .sectiopn-top-module .top-head > h2 {
    font-size: 1.2rem;
  }
  .sectiopn-top-module .wrapper {
    padding: 0.65rem 0.4rem 1.15rem;
  }
  .sectiopn-top-module .ttl {
    font-size: 0.42rem;
    line-height: 1.2;
    color: #1c1c1c;
    text-align: center;
    margin: -0.09rem 0 0.48rem;
  }
  .sectiopn-top-module .caption-bl {
    margin: -0.06rem 0 -0.1rem;
    width: auto;
  }
  .sectiopn-top-module .btn {
    width: 77.61194%;
    margin: 0.48rem auto 0;
    display: block;
  }
}
@media (max-width: 375px) {
  .sectiopn-top-module .wrapper {
    padding: 0.65rem 20px 1.15rem;
  }
  .sectiopn-top-module .ttl {
    font-size: 0.42rem;
    line-height: 1.2;
    color: #1c1c1c;
    text-align: center;
    margin: -0.09rem 0 24px;
  }
  .sectiopn-top-module .btn {
    margin: 24px auto 0;
  }
}*/

.about-business {
  padding: 40px 32px 72px;
  *zoom: 1;
}

.about-business:after {
  content: "";
  display: table;
  clear: both;
}

.about-business .info {
  width: 550px;
  float: left;
}

.about-business .info .ttl {
  font-size: 36px;
  line-height: 1.2;
  margin: -7px 0;
}
html.lang-zh body .about-business .info .ttl {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .about-business .info .ttl {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.about-business .info .caption-bl {
  margin: 24px 0 0;
  width: auto;
}

.about-business .thumb {
  width: 380px;
  height: 300px;
  float: right;
  position: relative;
}

.about-business .thumb img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 750px) {
  .about-business {
    padding: 0.48rem 0.2rem 1.3rem;
  }
  .about-business .info {
    width: auto;
    float: none;
  }
  .about-business .info .ttl {
    font-size: 0.52rem;
    line-height: 1.2;
    margin: -0.1rem 0;
  }
  .about-business .info .caption-bl {
    margin: 0.4rem 0 0;
    width: auto;
  }
  .about-business .thumb {
    width: auto;
    float: none;
    margin-top: 0.35rem;
  }
}

@media (max-width: 375px) {
  .about-business {
    padding: 24px 8px 64px;
  }
  .about-business .info .caption-bl {
    margin: 16px 0 0;
  }
  .about-business .thumb {
    margin-top: 16px;
    height: auto;
  }
  .about-business .thumb img {
    position: relative;
  }
}

.company-profile {
  padding: 40px 32px 72px;
}

.company-profile .ul-data {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  /*font-size: 18px;*/
  line-height: 1.2;
}

.company-profile .ul-data li {
  display: table-row;
}

.company-profile .ul-data li .th, .company-profile .ul-data li .td {
  display: table-cell;
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.company-profile .ul-data li .th>div, .company-profile .ul-data li .td>div {
  margin: -1px 0;
}

.company-profile .ul-data li .th>div {
  font-family: DIN2014-Demi;
}
html.lang-zh body .company-profile .ul-data li .th>div {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
}
html.lang-cn body .company-profile .ul-data li .th>div {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
}

.company-profile .ul-data li .th {
  width: 290px;
  padding: 16px 8px;
}

.company-profile .ul-data li .td {
  padding: 16px 0;
}

@media (max-width: 750px) {
  .company-profile {
    padding: 0.25rem 0.2rem 0.86rem;
  }
  .company-profile .ul-data {
    display: block;
    font-size: 0.28rem;
  }
  .company-profile .ul-data li {
    display: block;
    border-top: 1px solid #ccc;
    padding: 0 0.2rem;
  }
  .company-profile .ul-data li:last-child {
    border-bottom: 1px solid #ccc;
  }
  .company-profile .ul-data li .th, .company-profile .ul-data li .td {
    display: block;
    border: none;
    padding: 0.18rem 0;
  }
  .company-profile .ul-data li .th>div, .company-profile .ul-data li .td>div {
    margin: -1px 0;
  }
  .company-profile .ul-data li .th {
    width: auto;
    font-family: "DIN2014-Medium";
  }
  .company-profile .ul-data li .td span.ft-dinm {
    font-family: "DIN2014-Bold";
  }
}

@media (max-width: 375px) {
  .company-profile {
    padding: 0.25rem 8px 32px;
  }
  .company-profile .ul-data li {
    padding: 0 8px;
  }
  .company-profile .ul-data li .th {
    padding: 8px 0;
  }
  .company-profile .ul-data li .td {
    padding: 0 0 8px 0;
  }
}

.contact-us {
  margin-bottom: 128px;
}

.contact-us .wrapper {
  padding: 48px 60px;
}

.contact-us .wrapper .ttl {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 40px;
}
html.lang-zh body .contact-us .wrapper .ttl {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .contact-us .wrapper .ttl {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.contact-us .wrapper .caption {
  font-size: 18px;
  line-height: 1.4;
  margin: -7px 0 -5px;
}

.contact-us .wrapper .caption .note {
  /*	font-size: 16px;
	line-height: 1.4;*/
  color: #eb2228;
}

.contact-us .wrapper .ul-form {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 18px;
  line-height: 1.4;
  margin: 48px 0 0;
}

.contact-us .wrapper .ul-form>li {
  display: table-row;
}

.contact-us .wrapper .ul-form .th, .contact-us .wrapper .ul-form .td {
  display: table-cell;
  vertical-align: middle;
  padding: 24px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

.contact-us .wrapper .ul-form .th {
  width: 290px;
  background: #fafafa;
  color: #484848;
  letter-spacing: -0.02em;
}

.contact-us .wrapper .ul-form .th .red {
  color: #eb2228;
}

.contact-us .wrapper .ul-form .wpcf7-text, .contact-us .wrapper .ul-form textarea {
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 0 10px;
  outline: none;
  resize: none;
  width: 100%;
  font-size: 1em;
  background: #fff;
  border: 1px solid #b5b5b5;
  font-family: inherit;
}

.contact-us .wrapper .ul-form .wpcf7-text:focus, .contact-us .wrapper .ul-form textarea:focus {
  border: 1px solid #b5b5b5;
}

.contact-us .wrapper .ul-form .wpcf7-text {
  height: 50px;
  border: 1px solid #b5b5b5;
}

.contact-us .wrapper .ul-form textarea {
  height: 194px;
  padding: 10px;
}

.contact-us .wrapper .ul-form .select {
  width: 112px;
  position: relative;
}

.contact-us .wrapper .ul-form .select .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.contact-us .wrapper .ul-form .select select {
  outline: none;
  font-size: 12px;
  line-height: 21px;
  height: 21px;
  padding: 0 0 0 5px;
  color: #000000;
  display: block;
  vertical-align: top;
  width: 100%;
}

.contact-us .wrapper .ul-form .select select::-ms-expand {
  display: none;
}

.contact-us .wrapper .checkbox .wpcf7-form-control-wrap {
  margin: -4px 0;
  display: block;
}

.contact-us .wrapper .checkbox input[type=checkbox] {
  display: inline-block;
  margin: 3px 5px 0 0;
  vertical-align: middle;
}

.contact-us .wrapper .checkbox .wpcf7-list-item {
  display: block;
  margin: 7px 0 0;
}

.contact-us .wrapper .checkbox .wpcf7-list-item.first {
  margin-top: 0;
}

.contact-us .wrapper .checkbox .wpcf7-list-item label {
  display: inline-block;
}

.contact-us .wrapper .checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.contact-us .wrapper .list-check {
  margin: -5px 0;
}

.contact-us .wrapper .list-check .txt {
  margin-top: 10px;
}

.contact-us .wrapper .list-check .txt:first-child {
  margin-top: 0;
}

.contact-us .wrapper .row-chk {
  margin: 22px 0 0 323px;
  font-size: 16px;
  line-height: 1.45;
}

.contact-us .wrapper .row-chk .checkbox {
  display: inline-block;
}

.contact-us .wrapper .row-chk a {
  color: #61ad37;
  text-decoration: underline;
  display: inline-block;
  margin-left: 5px;
}

.contact-us .wrapper .row-chk a:hover {
  text-decoration: none;
}

.contact-us .wrapper .wpcf7-submit, .contact-us .wrapper .wpcf7-back, .contact-us .wrapper .wpcf7-confirm {
  width: 356px;
  height: 68px;
  background: #61ad37;
  margin: 0 auto;
  outline: none;
  padding: 0 0 4px;
  border: 1px solid #61ad37;
  display: block;
  cursor: pointer;
  overflow: hidden;
  font-family: inherit;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  /*	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  font-weight: normal;
}

.contact-us .wrapper .wpcf7-submit:hover, .contact-us .wrapper .wpcf7-confirm:hover {
  background: #cce198;
  color: #61ad37;
}

.contact-us .wrapper .wpcf7-back {
  background: #d2d2d2;
  color: #6d6d6d;
}

.contact-us .wrapper .wpcf7-back>span {
  padding: 0 0 0 42px;
  display: inline-block;
  background: url(/common/img/common/ic_load.png) no-repeat 0 center;
}

.contact-us .wrapper .row-btn {
  margin-top: 48px;
}

.contact-us .wrapper .row-btn01 {
  margin: 48px auto 0;
  width: 760px;
  *zoom: 1;
}

.contact-us .wrapper .row-btn01:after {
  content: "";
  display: table;
  clear: both;
}

.contact-us .wrapper .row-btn01 .wpcf7-back {
  float: left;
}

.contact-us .wrapper .row-btn01 .wpcf7-confirm {
  float: right;
}

.contact-us .wrapper .error {
  color: #eb2228
}

@media (max-width: 750px) {
  .contact-us {
    margin-bottom: 0.2rem;
  }
  .contact-us .wrapper {
    padding: 0.25rem 0.2rem 0.7rem;
  }
  .contact-us .wrapper .ttl {
    font-size: 0.42rem;
    line-height: 1;
    margin-bottom: 0.48rem;
  }
  .contact-us .wrapper .caption {
    font-size: 0.28rem;
    line-height: 1.42857;
    margin: -0.09rem 0 -0.06rem;
  }
  .contact-us .wrapper .caption .note {
    font-size: 0.22rem;
    margin-top: 0.25rem;
  }
  .contact-us .wrapper .ul-form {
    display: block;
    font-size: 0.28rem;
    margin: 0.32rem 0 0;
  }
  .contact-us .wrapper .ul-form>li {
    display: block;
    border-top: 1px solid #dcdcdc;
  }
  .contact-us .wrapper .ul-form .th, .contact-us .wrapper .ul-form .td {
    display: block;
    padding: 0.24rem;
    border: none;
  }
  .contact-us .wrapper .ul-form .th {
    width: auto;
    letter-spacing: 0;
  }
  .contact-us .wrapper .ul-form .wpcf7-text, .contact-us .wrapper .ul-form textarea {
    -moz-border-radius: 0.05rem;
    -webkit-border-radius: 0.05rem;
    border-radius: 0.05rem;
    padding: 0 0.15rem;
    outline: none;
    resize: none;
    width: 100%;
    border: 1px solid #b5b5b5;
  }
  .contact-us .wrapper .ul-form .wpcf7-text {
    height: 0.9rem;
  }
  .contact-us .wrapper .ul-form textarea {
    height: 4.35rem;
    padding: 0.15rem;
  }
  .contact-us .wrapper .ul-form .select {
    width: 2.76rem;
  }
  .contact-us .wrapper .ul-form .select:before {
    display: none;
  }
  .contact-us .wrapper .ul-form .select .wpcf7-form-control-wrap {
    position: relative;
    display: block;
  }
  .contact-us .wrapper .ul-form .select select {
    font-size: 0.29rem;
    line-height: 0.5rem;
    height: 0.52rem;
    padding: 0 0 0 0.1rem;
  }
  .contact-us .wrapper .checkbox .wpcf7-form-control-wrap {
    margin: -0.06rem 0;
  }
  .contact-us .wrapper .checkbox .wpcf7-list-item {
    margin: 0.35rem 0 0;
  }
  .contact-us .wrapper .checkbox .wpcf7-list-item.first {
    margin-top: 0;
  }
  .contact-us .wrapper .checkbox .wpcf7-list-item label .wpcf7-list-item-label {
    min-height: 0;
  }
  .contact-us .wrapper .checkbox input[type=checkbox] {
    margin: 0 0.1rem 0 0;
  }
  .ios .contact-us .wrapper .checkbox input[type=checkbox] {
    margin: 0.05rem 0.1rem 0 0;
  }
  .contact-us .wrapper .list-check {
    margin: -0.05rem 0;
  }
  .contact-us .wrapper .list-check .txt {
    margin-top: 0.1rem;
  }
  .contact-us .wrapper .list-check .txt:first-child {
    margin-top: 0;
  }
  .contact-us .wrapper .row-chk {
    margin: 0;
    text-align: center;
    font-size: 0.28rem;
  }
  .contact-us .wrapper .row-chk a {
    margin-left: 0.05rem;
  }
  .contact-us .wrapper .row-chk .wpcf7-list-item {
    margin-top: 0 !important;
  }
  .contact-us .wrapper .wpcf7-submit, .contact-us .wrapper .wpcf7-confirm, .contact-us .wrapper .wpcf7-back {
    width: 100%;
    height: 1rem;
    font-size: 0.36rem;
    line-height: 0.98rem;
    /*	-moz-border-radius: 0.05rem;
	-webkit-border-radius: 0.05rem;
	border-radius: 0.05rem;*/
    padding: 0;
  }
  .contact-us .wrapper .wpcf7-back>span {
    padding: 0 0 0 0.42rem;
    background: url(/common/img/common/sm/ic_load.png) no-repeat 0 center;
    -moz-background-size: 0.34rem 0.35rem;
    -o-background-size: 0.34rem 0.35rem;
    -webkit-background-size: 0.34rem 0.35rem;
    background-size: 0.34rem 0.35rem;
  }
  .contact-us .wrapper .row-btn {
    margin-top: 0.48rem;
  }
  .contact-us .wrapper .row-btn01 {
    margin: 0 auto 0;
    width: auto;
    border-top: 1px solid #dcdcdc;
    padding-top: 0.48rem;
    *zoom: 1;
  }
  .contact-us .wrapper .row-btn01:after {
    content: "";
    display: table;
    clear: both;
  }
  .contact-us .wrapper .row-btn01 .wpcf7-back, .contact-us .wrapper .row-btn01 .wpcf7-confirm {
    width: 47.46269%;
  }
}

@media (max-width: 375px) {
  .contact-us .wrapper {
    padding: 24px 8px;
  }
  .contact-us .wrapper .ttl {
    margin-bottom: 24px;
  }
  .contact-us .wrapper .caption .note {
    margin-top: 16px;
  }
  .contact-us .wrapper .ul-form {
    margin: 16px 0 0;
  }
  .contact-us .wrapper .ul-form .th, .contact-us .wrapper .ul-form .td {
    padding: 12px;
  }
  .contact-us .wrapper .checkbox .wpcf7-list-item {
    margin: 20px 0 0;
  }
  .contact-us .wrapper .checkbox .wpcf7-list-item.first {
    margin-top: 0;
  }
  .contact-us .wrapper .row-btn {
    margin-top: 24px;
  }
}

.page-application .wrap-menu {
  margin-bottom: 62px;
}

@media (max-width: 750px) {
  .page-application .wrap-menu {
    margin-bottom: 0;
  }
}


/*.application {
	margin: 70px 0;
}*/


/*.application .caption {
	font-size: 18px;
	line-height: 1.2;
	text-align: justify;
	text-justify: distribute;
}*/

.application .can-application {
  padding: 55px 32px 115px;
  *zoom: 1;
}

.application .can-application:after {
  content: "";
  display: table;
  clear: both;
}

.application .can-application .video {
  width: 520px;
  float: left;
}

.application .can-application .video iframe {
  width: 100%;
  height: 293px;
  border: none;
  display: block;
}

.application .can-application .info {
  width: 415px;
  float: right;
  margin-top: -5px;
}

.application .can-application .info .ttl {
  font-size: 24px;
  line-height: 1.2;
}

.application .can-application .info .caption {
  margin: 1.5em 0 0;
}

@media (max-width: 750px) {
  /*.application {
	margin: 0.24rem 0.2rem 0.24rem;
}*/
  /*.application .caption {
	font-size: 0.28rem;
	line-height: 1.42857;
}*/
  .application .can-application {
    padding: 0.48rem 0.2rem 1.2rem;
    *zoom: 1;
  }
  .application .can-application:after {
    content: "";
    display: table;
    clear: both;
  }
  .application .can-application .video {
    width: auto;
    float: none;
  }
  .application .can-application .video iframe {
    height: 3.77rem;
  }
  .application .can-application .info {
    width: auto;
    float: none;
    margin-top: 0.3rem;
  }
  /*.application .can-application .info .ttl {
	font-size: 0.36rem;
	line-height: 1.11111;
}*/
  .application .can-application .info .caption {
    margin: 0.25rem 0 0;
  }
}

@media (max-width: 375px) {
  /*.application {
	margin: 12px;
}*/
  .application .can-application {
    padding: 24px 10px 64px;
  }
  .application .can-application .info {
    margin-top: 16px;
  }
  .application .can-application .info .caption {
    margin: 16px 0 0;
  }
}

.mechanism-DSP {
  padding: 36px 32px 127px;
}

@media (max-width: 750px) {
  .mechanism-DSP {
    padding: 0.48rem 0.2rem 1.2rem;
  }
}

@media (max-width: 375px) {
  .mechanism-DSP {
    padding: 24px 10px 64px;
  }
}

.equipment {
  padding: 23px 32px 95px;
}

.equipment .ul-col {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.equipment .ul-col>li {
  width: 470px;
  margin-left: 40px;
}

.equipment .ul-col>li:nth-child(2n+1) {
  margin-left: 0;
}

.equipment .ul-col .txt {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 7px;
}

.equipment .ul-col .video {
  height: 264px;
}

.equipment .ul-col .video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.equipment .ul-col .caption {
  margin-top: 31px;
}

.equipment .ul-col .btn {
  background: #61ad37;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: table;
  width: 215px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #b5b5b5;
  font-family: inherit;
  color: #fff;
  margin: 21px auto 0;
  height: 50px;
  text-align: center;
}

.equipment .ul-col .btn>span {
  display: table-cell;
  vertical-align: middle;
}

.equipment .ul-col .btn>span>span {
  background: url(/common/img/common/ic_doc.png) no-repeat 0 center;
  padding-left: 17px;
  display: inline-block;
}

@media (max-width: 750px) {
  .equipment {
    padding: 0.4rem 0.2rem 1.3rem;
  }
  .equipment .ul-col {
    display: block;
  }
  .equipment .ul-col>li {
    float: none;
    width: auto;
    margin: 0.48rem 0 0;
  }
  .equipment .ul-col>li:first-child {
    margin-top: 0;
  }
  .equipment .ul-col .txt {
    font-size: 0.36rem;
    margin-bottom: 0.18rem;
  }
  .equipment .ul-col .video {
    height: 3.77rem;
  }
  .equipment .ul-col .video iframe {
    width: 100%;
    height: 100%;
  }
  .equipment .ul-col .caption {
    margin-top: 0.28rem;
  }
  .equipment .ul-col .btn {
    -moz-border-radius: 0.05rem;
    -webkit-border-radius: 0.05rem;
    border-radius: 0.05rem;
    padding: 0 0.1rem;
    font-size: 0.36rem;
    margin: 0.4rem auto 0;
    height: 1.2rem;
    width: 100%;
  }
  .equipment .ul-col .btn>span>span {
    background: url(/common/img/common/sm/ic_doc.png) no-repeat 0 center;
    -moz-background-size: 0.33rem 0.38rem;
    -o-background-size: 0.33rem 0.38rem;
    -webkit-background-size: 0.33rem 0.38rem;
    background-size: 0.33rem 0.38rem;
    padding-left: 0.38rem;
  }
}

@media (max-width: 375px) {
  .equipment {
    padding: 24px 10px 64px;
  }
  .equipment .ul-col>li {
    margin: 24px 0 0;
  }
  .equipment .ul-col>li:first-child {
    margin-top: 0;
  }
}

.chemical-products {
  padding: 55px 32px 115px;
}

.chemical-products .txt {
  font-size: 24px;
  line-height: 1.4;
}

html.lang-zh body .chemical-products .txt {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
}
html.lang-cn body .chemical-products .txt {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
}

.chemical-products .box {
  background: #e3f2cd;
  text-align: center;
  color: #2b8c00;
  font-size: 24px;
  line-height: 1.4;
  padding: 15px;
  margin-top: 24px;
}

html.lang-cn body .chemical-products .box, html.lang-zh body .chemical-products .box {
  font-family: initial;
  font-weight: bold;
}

.chemical-products .txt01 {
  font-size: 18px;
  line-height: 1.4;
  margin: 17px 0 0;
}

.chemical-products .txt02 {
  color: #2d2d2d;
  margin: 30px 0 0;
}

.chemical-products .inner {
  margin: 13px 0 0;
  *zoom: 1;
}

.chemical-products .inner:after {
  content: "";
  display: table;
  clear: both;
}

.chemical-products .inner .ul-data {
  width: 560px;
  float: left;
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
  line-height: 1.4;
}

.chemical-products .inner .ul-data>li {
  display: table-row;
}

.chemical-products .inner .ul-data>li .th, .chemical-products .inner .ul-data>li .td {
  display: table-cell;
  vertical-align: middle;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  padding-top: 6px;
  padding-bottom: 6px;
}

.chemical-products .inner .ul-data>li .th {
  width: 204px;
  padding-left: 5px;
  padding-right: 10px;
  background: #f5f5f5;
  font-weight: bold;
}

.chemical-products .inner .ul-data>li .td {
  padding-left: 50px;
}

.chemical-products .inner .thumb {
  width: 332px;
  float: right;
}

@media (max-width: 750px) {
  .chemical-products {
    padding: 0.4rem 0.2rem 0.9rem;
  }
  .chemical-products .txt {
    margin: 0;
    /*	font-size: 0.36rem;*/
    line-height: 1.11111;
  }
  .chemical-products .box {
    font-size: 0.42rem;
    line-height: 1.2;
    padding: 0.15rem 0.1rem;
    margin-top: 0.3rem;
  }
  .chemical-products .txt01 {
    /*	font-size: 0.36rem;
	line-height: 1.11111;*/
    margin: 0.3rem 0 0;
  }
  .chemical-products .txt02 {
    /*	font-size: 0.28rem;
	line-height: 1.42857;*/
    margin: 0.2rem 0 0;
  }
  .chemical-products .inner {
    margin: 0.4rem 0 0;
  }
  .chemical-products .inner .ul-data {
    width: auto;
    margin: 2em 0;
    float: none;
    font-size: 0.28rem;
    line-height: 1.2;
  }
  .chemical-products .inner .ul-data>li {
    border-top: 1px solid #c9c9c9;
  }
  .chemical-products .inner .ul-data>li .th, .chemical-products .inner .ul-data>li .td {
    border: none;
    padding: 0.13rem 0.16rem;
  }
  .chemical-products .inner .ul-data>li .th {
    width: 30%;
  }
  .chemical-products .inner .ul-data>li .td {
    width: 70%;
    /*padding-bottom: 0.24rem;*/
  }
  .chemical-products .inner .thumb {
    width: auto;
    float: none;
  }
}

@media (max-width: 375px) {
  .chemical-products {
    padding: 24px 10px 64px;
  }
}

.product-slider {
  position: relative;
  margin-bottom: 46px;
  background-color: #208038;
}

.product-slider .slider img {
  display: block;
  width: 100%;
}

.product-slider .slick-dots {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 100%;
  padding-top: 10px;
}

.product-slider .slick-dots>li {
  display: inline-block;
  padding: 0 2px;
}

.product-slider .slick-dots button {
  padding: 0;
  background: #989898;
  width: 40px;
  height: 22px;
  outline: none;
  border: none;
  display: block;
  overflow: hidden;
  cursor: pointer;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: "DIN2014-Medium";
  color: #fff;
  text-indent: 0;
  font-size: 18px;
  line-height: 22px;
}

.product-slider .slick-dots li.slick-active button {
  background: #1c1c1c;
}

@media (max-width: 750px) {
  .product-slider {
    margin-bottom: 0.82rem;
  }
  .product-slider .slick-dots {
    padding-top: 0.14rem;
  }
  .product-slider .slick-dots>li {
    display: inline-block;
    padding: 0 0.06rem;
  }
  .product-slider .slick-dots button {
    width: 0.9rem;
    height: 0.5rem;
    font-size: 0.36rem;
    line-height: 0.5rem;
  }
}

.product {
  margin: 64px 0 128px;
}

.product .wrapper {
  padding: 28px 60px 45px;
}

.product .wrapper .ttl {
  position: relative;
  font-size: 36px;
  line-height: 1.1;
  margin: -5px 0 -5px -60px;
  padding-left: 60px;
}
html.lang-zh body .product .wrapper .ttl {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .product .wrapper .ttl {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.product .wrapper .ttl:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 24px;
  margin-top: -12px;
  background: url(/common/img/common/line.png) repeat-x 0 0;
}

.product .wrapper .why-pager {
  *zoom: 1;
  margin: 40px 0 0;
}

.product .wrapper .why-pager:after {
  content: "";
  display: table;
  clear: both;
}

.product .wrapper .why-pager .video {
  width: 464px;
  float: left;
  height: 261px;
  position: relative;
}


/*.product .wrapper .why-pager .video:before, .product .wrapper .why-pager .video:after {
  content: " ";
  position: absolute;
  background: #f0f0f0;
  width: 100%;
  height: 100%;
}
.product .wrapper .why-pager .video:before {
  left: -2px;
  top: -2px;
}
.product .wrapper .why-pager .video:after {
  right: -4px;
  bottom: -4px;
}*/

.product .wrapper .why-pager .video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: relative;
  z-index: 4;
}

.product .wrapper .why-pager .info {
  width: 430px;
  float: right;
  margin: -8px 0;
}

.product .wrapper .why-pager .info .desc {
  font-size: 18px;
  line-height: 1.5;
}

.product .wrapper .why-pager .info .desc li {
  list-style-type: decimal;
  margin-left: 20px;
  line-height: 1.25;
  margin-bottom: .5em;
}

.product .wrapper .why-pager .info .desc li:last-child {
  margin-bottom: 0;
}

.product .wrapper .why-pager .info .txt {
  font-size: 30px;
  line-height: 1;
  color: #008c3a;
  letter-spacing: -0.02em;
}

@media (max-width: 750px) {
  .product {
    margin: 0.24rem 0.2rem;
  }
  .product .wrapper {
    padding: 0.2rem 0.2rem 0.48rem;
  }
  .product .wrapper .ttl {
    font-size: 0.42rem;
    line-height: 1.1;
    margin: 0 0 0 -0.2rem;
    padding-left: 0.72rem;
  }
  .product .wrapper .ttl:before {
    width: 0.5rem;
    height: 0.24rem;
    margin-top: -0.12rem;
    -moz-background-size: auto 100%;
    -o-background-size: auto 100%;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
  }
  .product .wrapper .why-pager {
    *zoom: 1;
    margin: 0.48rem 0 0;
  }
  .product .wrapper .why-pager:after {
    content: "";
    display: table;
    clear: both;
  }
  .product .wrapper .why-pager .video {
    width: auto;
    float: none;
    height: 3.77rem;
  }
  .product .wrapper .why-pager .video:before {
    left: -1px;
    top: -1px;
  }
  .product .wrapper .why-pager .video:after {
    right: -3px;
    bottom: -3px;
  }
  .product .wrapper .why-pager .info {
    width: auto;
    float: none;
    margin: 0.43rem 0 0;
  }
  .product .wrapper .why-pager .info .desc.arrow {
    background: url(/common/img/product/sm/arrow02.png) no-repeat 0 bottom;
    -moz-background-size: 0.22rem auto;
    -o-background-size: 0.22rem auto;
    -webkit-background-size: 0.22rem auto;
    background-size: 0.22rem auto;
    padding-bottom: 0.3rem;
  }
  .product .wrapper .why-pager .info .txt {
    font-size: 0.48rem;
    line-height: 1.2;
    margin: 0.12rem 0 0.6rem;
  }
}

@media (max-width: 375px) {
  .product {
    margin: 12px;
  }
  .product .wrapper {
    padding: 0.2rem 0.2rem 24px;
  }
  .product .wrapper .why-pager {
    margin: 24px 0 0;
  }
  .product .wrapper .why-pager .info {
    width: auto;
    float: none;
    margin: 24px 0 0;
  }
  .product .wrapper .why-pager .info .txt {
    font-size: 0.48rem;
    line-height: 1.2;
    margin: 0.12rem 0 32px;
  }
}

.page-showcase .wrap-menu {
  margin-bottom: 75px;
}

@media (max-width: 750px) {
  .page-showcase .wrap-menu {
    margin-bottom: 0;
  }
}


/*.showcase {
	margin: 70px 0 54px;
}*/


/*@media (max-width: 750px) {
.showcase {
	margin: 0.24rem 0.2rem;
}
}*/


/*@media (max-width: 375px) {
.showcase {
	margin: 0.24rem 0.2rem;
}
}*/

.application-point {
  padding: 48px 60px 75px;
}

.application-point .thumb {
  margin: 0 -30px;
  padding-bottom: 4px;
}

.application-point .ttl {
  margin: 24px 0 0;
  /*	font-size: 14px;
	line-height: 1.2;*/
}

.application-point .ul-data {
  /*width: 292px;*/
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  /*	font-size: 14px;
	line-height: 1.4;*/
  margin: 9px 0 0;
  background: url(/common/img/common/dot.png) repeat-x 0 bottom;
}

.application-point .ul-data>li {
  display: table-row;
  background: url(/common/img/common/dot.png) repeat-x 0 0;
}

.application-point .ul-data>li .th, .application-point .ul-data>li .td {
  display: table-cell;
  vertical-align: middle;
  border-collapse: collapse;
  border-spacing: 0;
  padding-top: 4px;
  padding-bottom: 4px;
}

.application-point .ul-data>li .th {
  width: 144px;
  padding-right: 10px;
}

@media (max-width: 750px) {
  .application-point {
    padding: 0.48rem 0.2rem 1.3rem;
  }
  .application-point .thumb {
    margin: 0;
    padding-bottom: 0;
  }
  /*.application-point .ttl {
	margin: 0.32rem 0 0;
	font-size: 0.24rem;
}*/
  .application-point .ul-data {
    width: 100%;
    /*	font-size: 0.24rem;
	line-height: 1.4;*/
    margin: 0.1rem 0 0;
  }
  .application-point .ul-data>li .th, .application-point .ul-data>li .td {
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
  }
  .application-point .ul-data>li .th {
    width: 2.15rem;
    padding-right: 0.1rem;
  }
}

@media (max-width: 375px) {
  .application-point {
    padding: 24px 12px 64px;
  }
  .application-point .thumb {
    margin: 0;
    padding-bottom: 0;
  }
}

.effect {
  padding: 31px 33px 75px;
}

.effect .ttl {
  font-size: 18px;
  background-repeat: no-repeat;
  background-position: 0 center;
  padding: 3px 0 5px 42px;
  font-family: DIN2014-Demi;
}

html.lang-zh body .effect .ttl {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .effect .ttl {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

.effect.one .ttl {
  background-image: url(/common/img/showcase/one.png);
}

.effect.two .ttl {
  background-image: url(/common/img/showcase/two.png);
}

.effect.three .ttl {
  background-image: url(/common/img/showcase/three.png);
}

.effect.four .ttl {
  background-image: url(/common/img/showcase/four.png);
}

.effect.five .ttl {
  background-image: url(/common/img/showcase/five.png);
}

.effect.graph .ttl {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 1em;
  font-size: 32px;
  border-bottom: 3px solid #62ad37;
}

@media (max-width: 750px) {
  .effect.graph .ttl {
    font-size: 22px;
  }
}

.effect .thumb {
  margin: 5px 0 0;
}

@media (max-width: 750px) {
  .effect {
    padding: 0.48rem 0.2rem 1.2rem;
  }
  .effect .ttl {
    /*font-size: 0.3rem;*/
    background-size: 0.31rem 0.31rem;
    padding: 0.05rem 0 0.05rem 0.4rem;
  }
  .effect .thumb {
    margin: 0 0 0;
  }
}

@media (max-width: 375px) {
  .effect {
    padding: 24px 12px 64px;
  }
}

.benefits {
  padding: 30px 30px 80px;
}


/*.benefits .caption {
	font-size: 16px;
	line-height: 1.2;
}*/

.benefits .ul-data {
  display: table;
  width: /*925px*/
  100%;
  font-size: 18px;
  line-height: 1.4;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 33px auto 0;
  font-family: DIN2014-Demi;
}

.benefits .ul-data.roi {
  background-color: #fff3b2;
  position: relative;
}

.benefits .ul-data>li {
  display: table-row;
}

.benefits .ul-data>li>div {
  display: table-cell;
  border-spacing: 0;
  border-collapse: 0;
  vertical-align: middle;
  border: 1px solid #cacaca;
  border-right: none;
  padding: 10px 20px;
}

.benefits .ul-data>li.head>div {
  padding: 0;
}

.benefits .ul-data>li.head>div:nth-of-type(1) {
  border-top-color: #fff;
}

.benefits .ul-data>li.head>div:nth-of-type(2) {
  border-top-color: #cacaca;
  border-right-color: #cacaca;
  background: #cacaca;
}

.benefits .ul-data>li.head>div:nth-of-type(3) {
  border-top-color: #1c1c1c;
  border-left-color: #1c1c1c;
  background: #1c1c1c;
  color: #fff;
}

.benefits .ul-data .col01 {
  width: 375px;
  border-left-color: #fff;
}

.benefits .ul-data .col02 {
  width: 275px;
  text-align: center;
}

.benefits .ul-data .col03 {
  text-align: center;
}

.benefits .ul-data.roi .col04 {
  text-align: center;
  width: calc(100% - 375px);
  font-size: 200%;
}

@media (max-width: 750px) {
  .benefits .ul-data.roi .col04 {
    text-align: left;
    width: calc(100% - 375px);
    font-size: 150%;
  }
}

.benefits .ul-data.roi .ico-roi {
  display: block;
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
  background-color: #0043AB;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto;
}

.benefits .ul-data .fs01 {
  font-size: 14px;
  line-height: 1.2;
  margin-left: 5px;
}

.benefits .ul-data .fs02 {
  font-size: 26px;
  line-height: 1.2;
}

.benefits .ul-data .ic01, .benefits .ul-data .ic02 {
  display: inline-block;
  width: 18px;
  height: 17px;
  background-position: center center;
  background-repeat: no-repeat;
}

.benefits .ul-data .ic01 {
  background-image: url(/common/img/showcase/icon3.png);
}

.benefits .ul-data .ic02 {
  background-image: url(/common/img/showcase/icon4.png);
}

.benefits .ul-data .clor {
  color: #61ad37;
}

.benefits .ul-col {
  width: 814px;
  margin: 28px auto 0;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}

.benefits .ul-col>li {
  float: left;
  width: 353px;
  margin: 20px 0 0 108px;
}

.benefits .ul-col>li:nth-child(2n+1) {
  margin-left: 0;
}

.benefits .ul-col>li .pttl {
  background-repeat: no-repeat;
  background-position: 0 9px;
  padding: 5px 0 5px 32px;
  margin: 0 -30px 8px 0;
}

.benefits .ul-col>li .pttl.ic01 {
  background-image: url(/common/img/showcase/icon01.png);
}

.benefits .ul-col>li .pttl.ic02 {
  background-image: url(/common/img/showcase/icon02.png);
}

.benefits .ul-col>li .pttl .fs01 {
  font-size: 22px;
  line-height: 1.4;
}

.benefits .ul-col>li .pttl .fs02 {
  font-size: 14px;
  line-height: 1.4;
  color: #4f4f4f;
}

@media (max-width: 750px) {
  .benefits {
    padding: 0.48rem 0.2rem 1.2rem;
  }
  /*.benefits .caption {
	font-size: 0.28rem;
	line-height: 1.42857;
}*/
  .benefits .ul-data {
    display: table;
    font-size: 0.24rem;
    margin: 0.4rem auto 0;
  }
  .benefits .ul-data>li {
    display: table-row;
  }
  .benefits .ul-data>li>div {
    padding: 0.1rem 0.2rem;
  }
  .benefits .ul-data .col01 {
    width: 30%;
  }
  .benefits .ul-data .col02 {
    width: 30%;
  }
  .benefits .ul-data .fs01 {
    font-size: 0.2rem;
    margin-left: 0;
    display: block;
  }
  .benefits .ul-data .fs02 {
    font-size: 0.28rem;
  }
  .benefits .ul-data .ic01, .benefits .ul-data .ic02 {
    width: 0.18rem;
    height: 0.17rem;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
  .benefits .ul-col {
    width: 100%;
    margin: 0.3rem auto 0;
    display: block;
  }
  .benefits .ul-col>li {
    float: none;
    width: auto;
    margin: 0.3rem 0 0;
  }
  .benefits .ul-col>li .pttl {
    -moz-background-size: 0.25rem 0.26rem;
    -o-background-size: 0.25rem 0.26rem;
    -webkit-background-size: 0.25rem 0.26rem;
    background-size: 0.25rem 0.26rem;
    background-position: 0 0.2rem;
    padding: 0.09rem 0 0.09rem 0.32rem;
    margin: 0 0 0.1rem 0;
  }
  .benefits .ul-col>li .pttl .fs01 {
    font-size: 0.3rem;
  }
  .benefits .ul-col>li .pttl .fs02 {
    font-size: 0.22rem;
  }
}


/*# sourceMappingURL=style.css.map */

.parallax-wrap {
  display: none
}

@media (max-width: 750px) {
  .parallax-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
  }
  .parallax-wrap .parallax {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: translateZ(0);
    will-change: transform;
  }
}

.checklist {
  font-size: 18px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  margin: 4% 0;
}

.checklist dt {
  padding: .5em 0;
  font-weight: bold;
}

.checklist dd:last-child {
  padding-bottom: .5em;
}


/* TOP Our technorogy */

.our-technologe-list {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.our-technologe-list li {
  width: calc(100% / 3);
  display: table-cell;
  vertical-align: top;
  text-align: center;
}


/*@media (max-width: 750px) {
.our-technologe-list {
	display: block;
}
.our-technologe-list li {
	width: 100%;
	display: block;
}
}*/

.our-technologe-list li .thumbs {
  padding: .25em;
}

.our-technologe-list li .thumbs img {
  width: 100%;
  /*border-radius: 4px;*/
}

.our-technologe-list li .txt {
  padding: 1em;
}

@media (max-width: 750px) {
  .our-technologe-list li .txt {
    padding: 0 .5em;
    margin-bottom: 2.4em;
  }
}

.our-technologe-list li .txt .ft-dinbi {
  font-size: 48px;
}

@media (max-width: 750px) {
  .our-technologe-list li .txt .ft-dinbi {
    font-size: .74rem;
  }
}

.our-technologe-list li .txt .ttl {
  font-size: 24px;
}

html.lang-zh body .our-technologe-list li .txt .ttl {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
  font-size: 22px;
}
html.lang-cn body .our-technologe-list li .txt .ttl {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
  font-size: 22px;
}


@media (max-width: 750px) {
  .our-technologe-list li .txt .ttl {
    margin-bottom: 1em;
    font-size: .325rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }
  .our-technologe-list li .txt p {
    font-size: 13px;
  }
  html.lang-cn body .our-technologe-list li .txt .ttl, html.lang-zh body .our-technologe-list li .txt .ttl {
    font-size: .3rem;
  }
}

.our-technologe-list li .txt .btn {
  margin-top: 1.5em;
  display: block;
}

.our-technologe-list li .txt .btn img {
  margin: 0 auto;
}

@media (max-width: 750px) {
  .our-technologe-list li .txt .btn img {
    width: 80%;
  }
}

.btn-map {
  display: inline-block;
  padding: .25em 1em;
  margin: .5em 0;
  background: #61ad37;
  color: #fff;
  border: 1px solid #61ad37;
  /*border-radius: 4px;*/
}

.btn-map:hover {
  color: #61ad37;
  background: #f4f4f4;
}

.tbl-spec {
  margin: 2em 0 0 0;

}

.tbl-spec tr {
  border-top: 1px solid #c9c9c9;
}
.tbl-spec tr:nth-child(2n) {
  border-top: none;
}
.tbl-spec tr:last-child {
  border-bottom: 1px solid #c9c9c9;
}

.tbl-spec th, .tbl-spec td {
  padding: .5em .25em;
  line-height: 1.25;
}

.tbl-spec th {
  color: #008803;
  font-weight: bold;
  padding-bottom: 0;
}

.dsp-arrow {
  font-size: 3em;
  padding: 8px;
  line-height: 1;
}

@media (max-width: 750px) {
  .dsp-arrow {
    font-size: 3em;
    padding: 0px;
  }
}

.bg-light-green {
  background: #e3f2cd;
  padding: 1em;
}

.videocapture {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 50px;
}

.videocapture .left, .videocapture .right {
  display: table-cell;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.videocapture .left>span, .videocapture .right>span {
  display: inline-block;
  line-height: .8;
  font-family: DIN2014-Demi;
  color: #fff;
  font-size: 32px;
  padding: .45rem 0;
}

html.lang-cn body .videocapture .left>span, html.lang-cn body .videocapture .right>span, html.lang-zh body .videocapture .left>span, html.lang-zh body .videocapture .right>span {
  display: inline-block;
  font-family: initial;
  font-weight: bold;
  padding: .25rem 0;
}

@media (max-width: 599px) {
  html.lang-cn body .videocapture .left>span, html.lang-cn body .videocapture .right>span, html.lang-zh body .videocapture .left>span, html.lang-zh body .videocapture .right>span {
    font-size: 22px;
    line-height: 1.2;
  }
}

.videocapture .left:before, .videocapture .right:before {
  content: "\f062";
  display: block;
  width: 100%;
  position: absolute;
  top: -64px;
  height: 64px;
  font-family: "FontAwesome";
  font-size: 64px;
}

.videocapture .left {
  background: #1C1C1C;
}

.videocapture .left:before {
  color: #1C1C1C;
}

.videocapture .right {
  background: #6dbe40;
}

.videocapture .right:before {
  color: #6dbe40;
}

.index-dsp {
  width: 100%;
  /*margin-bottom: 126px;*/
  display: table;
  table-layout: fixed;
}

@media (max-width: 599px) {
  .index-dsp {
    display: block;
    padding: 0 .5em;
    margin-bottom: 40px;
  }
}

.index-dsp>* {
  display: table-cell;
  vertical-align: middle;
}

.index-dsp .sp-on {
  display: none;
}

@media (max-width: 599px) {
  .index-dsp>* {
    display: block;
  }
  .index-dsp .sp-on {
    display: block;
  }
  .index-dsp .sp-off {
    display: none;
  }
}

.index-dsp .txt {
  padding-right: 100px;
}

@media (max-width: 599px) {
  .index-dsp .txt {
    padding-right: 0;
    text-align: center;
  }
}

.index-dsp .txt .ttl {
  margin-bottom: 38px;
  font-size: 150px;
  line-height: 1;
  font-family: DIN2014-ExtraBoldItalic;
}

@media (max-width: 599px) {
  .index-dsp .txt .ttl {
    margin-bottom: 19px;
    font-size: 100px;
  }
}

.index-dsp .txt .ttl small {
  display: block;
  font-size: 30px;
  font-family: DIN2014-BoldItalic;
}

html.lang-zh body .index-dsp .txt .ttl small {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
  font-weight: bold;
}
html.lang-cn body .index-dsp .txt .ttl small {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
  font-weight: bold;
}

@media (max-width: 599px) {
  .index-dsp .txt .ttl small {
    font-size: 18px;
  }
}

.index-dsp .txt p {
  margin-bottom: 14px;
  font-size: 22px;
  font-family: DIN2014-Demi;
  line-height: 1.2;
}

html.lang-zh body .index-dsp .txt p {
  font-family: "Open Sans","Microsoft YaHei","Heiti SC","STHeiti Light","PMingLiU", sans-serif;
}
html.lang-cn body .index-dsp .txt p {
  font-family: "Open Sans","Microsoft JhengHei","Heiti TC","LiHei Pro Medium","PMingLiU", sans-serif;
}

@media (max-width: 599px) {
  .index-dsp .txt p {
    font-size: 16px;
  }
}

.index-dsp .txt .btn {
  display: inline-block;
  font-size: 18px !important;
  font-weight: bold;
  background: #303030;
  color: #fff;
  padding: .75em 3em;
}

.index-dsp .txt .btn:hover {
  background: #ccc;
  color: #303030;
}

.index-dsp .thumbs img {
  width: 100%;
}