/* services_feature */
.services_feature {
    position: relative;
    padding: 150px 0;
  }
  .services_feature::before {
    content: url('../img/services/feature_bg1.jpg');
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .15;
  }
  .services_feature::after {
    content: url('../img/services/feature_bg2.jpg');
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: .15;
  }
  .feature_content {
    text-align: center;
  }
  .feature_content h3 {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
  }
  .feature_content p {
    display: inline-block;
    text-align: left;
  }
  /* services_feature end */

  /* services_advantage */
  .advantage_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .advantage_wrap .item {
    width: 33.333%;
  }
  .advantage_wrap .item .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -10px;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 1px solid #333;
  }
  .advantage_wrap .item .circle::before {
    content: '';
    display: block;
    padding-top: 100%;
  }
  .advantage_wrap .item .circle h3 .lg_en {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 25px;
    word-break: keep-all;
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }
  .advantage_wrap .item .circle h3 .lg_jp {
    display: block;
    text-align: center;
  }
  .advantage_wrap .item .circle h3 .lg_jp span {
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
    font-weight: 400;
    font-size: 15px;
    color: #FFF;
    background-color: #333;
  }
  .advantage_wrap .item .desc {
    margin-top: 20px;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .advantage_wrap .item .desc p {
    word-break: initial;
    word-wrap: initial;
    overflow-wrap: initial;
  }
  /* services_advantage end */

  /* services_products */
  .services_products {
    overflow-x: hidden;
    background-color: #FFF;
  }
  .services_products .container {
    position: relative;
  }
  .products_title {
    margin-bottom: 50px;
    text-align: left;
  }
  .products_title h2 .lg_en {
    display: block;
    font-weight: 700;
    font-size: 30px;
  }
  .products_title h2 .lg_jp {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    font-size: 15px;
  }
  .swiper-pagination {
    position: absolute;
    bottom: initial;
    left: initial;
    top: 0;
    right: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 20px;
  }
  .swiper-pagination-current {
    margin-right: 50px;
  }
  .swiper-pagination-total {
    margin-left: 50px;
  }
  .swiper-button-next, .swiper-button-prev {
    top: 55% !important;
    width: 90px;
    height: 90px;
    background-color: #333;
    border-radius: 90px;
    border: 2px solid #FFF;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    content: none !important;
  }
  .swiper-button-next svg, .swiper-button-prev svg {
    max-width: 30px;
    width: 100%;
    fill: #FFF;
  }
  .swiper-slide .card img {
    width: 100%;
  }
  .swiper-slide .card .card_ttl {
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
  }
  /* services_products end */

  @media screen and (max-width: 599px) {
    .services_feature {
      padding: 100px 0;
    }
    .feature_content h3 {
      font-size: 20px;
      text-align: left;
      line-height: 1.5em;
    }
    .services_feature::before {
      display: none;
    }
    .services_feature::after {
      bottom: 10%;
      opacity: .1;
    }
    .advantage_wrap .item {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      margin-bottom: 30px;
    }
    .advantage_wrap .item .circle {
      width: 165px;
      padding: 0;
    }
    .advantage_wrap .item .circle h3 .lg_en {
      font-size: 15px;
    }
    .advantage_wrap .item .circle h3 .lg_jp span {
      font-size: 12px;
    }
    .advantage_wrap .item .desc {
      width: 55%;
      padding: 0 0 0 30px;
      box-sizing: border-box;
    }
    .products_title h2 .lg_en {
      font-size: 25px;
    }
    .swiper-pagination-current {
      margin-right: 30px;
    }
    .swiper-pagination-total {
      margin-left: 30px;
    }
    .swiper-slide .card img {
      padding: 10px;
      box-sizing: border-box;
    }
    .swiper-button-prev {
      left: 5px;
    }
    .swiper-button-next {
      right: 5px;
    }
    .swiper-button-next, .swiper-button-prev {
      top: 52% !important;
      width: 80px;
      height: 80px;
      border-radius: 80px;
    }
    .swiper-button-next svg, .swiper-button-prev svg {
      max-width: 25px;
    }
    .swiper-slide .card .card_ttl {
      font-size: 18px;
      text-align: center;
    }
  }