@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", "Segoe UI", "Meiryo", "Microsoft JhengHei", "Microsoft YaHei", "MS UI Gothic", "MS PGothic", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4em;
  position: relative;
}

h1 {
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 15px;
}

h1:lang(fr) {
  font-size: 41px;
}

h2 {
  color: #275ea2;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 15px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 15px;
}
p {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4em;
  margin-bottom: 5px;
}
a {
  color: #2196F3;
  transition: color ease .2s
}
a:hover {
  color: #0077f2;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
section {
  margin: 100px 0;
}
@media screen and (max-width:991px) {
  h1,
  h1:lang(fr) {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  section {
    margin: 60px 0;
  }
}
@media screen and (max-width:600px) {
  h1,
  h1:lang(fr) {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
    text-align: center;
  }
  section {
    margin: 40px 0;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.container_fluid {
  width: 100%;
  padding: 0 15px;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1; /*For IE 6&7 only*/
}
.flex_block {
  height: auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
}
.break_line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

/* banner */
header {
  min-height: 400px;
  position: relative;
}
.logo_cl {
  background-color: #000;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 15px;
}
.logo_cl img {
  width: 120px;
  height: 32px;
}
.banner_img {
  background-image: url(../img/pic_banner_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.banner_content {
  height: 400px;
}
.banner_content .container {
  height: 100%;
  padding: 0;
  position: relative;
}
.banner_content .inner {
  max-width: 640px;
  color: #fff;
  padding: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
}
@media screen and (min-width:1921px) {
  header {
    min-height: 500px;
  }
  header .container {
    max-width: 1600px;
  }
  .banner_content {
    height: 500px;
  }
}
@media screen and (max-width:991px) {
  .banner_content .container {
    position: static;
  }
  .banner_img {
    width: 100%;
    height: 300px;
    background-position-x: 13%;
    position: relative;
  }
  .banner_content {
    height: auto;
  }
  .banner_content .inner {
    max-width: 100%;
    background-color: #333;
    padding: 20px 15px;
    position: relative;
    top: auto;
    transform: none;
  }
}
@media screen and (max-width:600px) {
  .logo_cl {
    padding: 10px;
  }
  .logo_cl img {
    width: 90px;
    height: 24px;
  }
  .banner_img {
    height: 200px;
  }
}

/* content */
.content {
  margin: 100px 0;
}
.content .pic, .content .txt {
  float: left;
  position: relative;
}
.content .pic {
  width: 200px;
  height: auto;
}
.content .pic::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #dee4e8;
  border-radius: 10px;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 1;
}
.content .pic img {
  position: relative;
  z-index: 2;
}
.content .txt {
  width: calc(100% - 200px);
  padding-left: 50px;
}
.content .txt .inner {
  margin-left: 20px;
}
.content .txt::before {
  content: "";
  width: 35px;
  height: 1px;
  background-color: #dee4e8;
  position: absolute;
  left: 0;
  top: 0;
}
.content .txt::after {
  content: "";
  width: 1px;
  height: calc(100% + 100px);
  background-color: #dee4e8;
  position: absolute;
  left: 35px;
  top: 0;
}
.content .txt .boss_name {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width:991px) {
  .content {
    margin: 60px 0;
  }
}
@media screen and (max-width:768px) {
  .content .pic {
    width: 160px;
  }
  .content .txt {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width:600px) {
  .content .pic, .content .txt {
    float: none;
  }
  .content .pic {
    width: auto;
    max-width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
  }
  .content .txt {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
  }
  .content .txt .inner {
    margin-left: 0;
  }
  .content .txt h2 {
    text-align: center;
  }
  .content .pic::before, .content .txt::before, .content .txt::after {
    content: none;
  }
}

/* product_features */
.product_features {
  background-color: #eef2f5;
}
.product_features .container {
  padding: 0;
}
.product_features section > h2, .product_features section > p {
  text-align: center;
}
.product_features section > p {
  max-width: 991px;
  margin: 0 auto
}
.product_features section {
  padding: 60px 0;
}
.product_features ul {
  margin-top: 30px;
}
.product_features ul li {
  width: 50%;
  padding: 30px;
  text-align: left;
}
.product_features ul li:nth-child(odd) {
  padding-left: 0;
}
.product_features ul li:nth-child(even) {
  padding-right: 0;
}
.product_features ul li a {
  font-size: 16px;
}
.product_features h3 {
  margin: 10px 0;
}
@media screen and (max-width:991px) {
  .product_features ul li {
    padding: 15px;
  }
}
@media screen and (max-width:600px) {
  .product_features ul li {
    width: 100%;
    padding: 15px 0;
  }
}

/* linker */
.linker ul.flex_block {
  margin: 0 -5px;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.linker ul li {
  width: 20%;
  padding: 5px;
}
.linker ul li a {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(70deg, transparent 40%, #0df 50%, #0af 80%);
  background-size: 600% auto;
  border: 1px solid #2196F3;
  border-radius: 5px;
  display: flex;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transition: background-position ease .5s, color ease .5s;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.linker ul li a:hover {
  background-position: right center;
  color: #fff;
}
@media screen and (max-width:991px) {
  .linker ul li {
    width: 33.333%;
  }
}
@media screen and (max-width:600px) {
  .linker ul li {
    width: 50%;
  }
}
@media screen and (max-width:480px) {
  .linker ul li {
    width: 100%;
  }
}

/* follow */
.follow ul {
  text-align: center;
}
.follow ul li {
  display: inline-block;
  margin: 15px 3%;
  vertical-align: top;
}
.follow ul li .left, .follow ul li .right {
  float: left;
}
.follow ul li .left {
  text-align: center;
}
.follow ul li .right {
  padding-left: 20px;
  text-align: left;
}
.follow ul li .left img {
  width: 55px;
  height: 55px;
  display: inline-block;
}
.follow ul li .left p {
  font-size: 14px;
  font-weight: 600;
}
.follow ul li .right > div {
  margin-bottom: 10px;
}
.follow ul li .right a {
  color: #444;
  text-decoration: none;
}
.follow ul li .right a span:last-child {
  text-decoration: underline;
}
.follow ul li .right a:hover span:last-child {
  color: #000;
}
.follow ul li .icon {
  width: 55px;
  height: 55px;
  background-color: #555;
  border-radius: 55px;
  color: #fff;
  display: inline-block;
  font-size: 30px;
  line-height: 55px;
  margin: 10px 50px;
  text-align: center;
  transition: background-color ease .2s;
}
.follow ul li .yt {
  width: 30px;
  height: 30px;
  background-color: #cf2126;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.follow ul li .ig {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.follow ul li .fb:hover {
  background-color: #3b5998;
}
.follow ul li .in:hover {
  background-color: #0073b0;
}
@media screen and (max-width:600px) {
  .follow ul {
    text-align: center;
  }
}
