@charset "UTF-8";
/* CSS Document */
#top-slide {
  position: relative;
  display: flex;
  align-items: center; }
  #top-slide .swiper {
    height: 680px;
    width: 100%; }
    @media screen and (max-width: 1399px) {
      #top-slide .swiper {
        height: 600px; } }
    @media screen and (max-width: 1199px) {
      #top-slide .swiper {
        height: 500px; } }
  #top-slide .swiper-wrapper {
    width: 100%;
    height: 100%; }
  #top-slide .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden; }
  #top-slide .swiper-slide .swiper-img.slide01 {
    width: 100%;
    height: 100%;
    background-image: url("../img/top-swiper01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center; }
    @media screen and (max-width: 767px) {
      #top-slide .swiper-slide .swiper-img.slide01 {
        background-image: url("../img/top-swiper01-sm.jpg"); } }
    @media screen and (max-width: 575px) {
      #top-slide .swiper-slide .swiper-img.slide01 {
        background-image: url("../img/top-swiper01-xs.jpg"); } }
  #top-slide .swiper-slide .swiper-img.slide02 {
    width: 100%;
    height: 100%;
    background-image: url("../img/top-swiper02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center; }
    @media screen and (max-width: 767px) {
      #top-slide .swiper-slide .swiper-img.slide02 {
        background-image: url("../img/top-swiper02-sm.jpg"); } }
    @media screen and (max-width: 575px) {
      #top-slide .swiper-slide .swiper-img.slide02 {
        background-image: url("../img/top-swiper02-xs.jpg"); } }
  #top-slide .swiper-slide .swiper-img.slide03 {
    width: 100%;
    height: 100%;
    background-image: url("../img/top-swiper03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center; }
    @media screen and (max-width: 767px) {
      #top-slide .swiper-slide .swiper-img.slide03 {
        background-image: url("../img/top-swiper03-sm.jpg"); } }
    @media screen and (max-width: 575px) {
      #top-slide .swiper-slide .swiper-img.slide03 {
        background-image: url("../img/top-swiper03-xs.jpg"); } }
  #top-slide .swiper-slide .swiper-img.slide04 {
    width: 100%;
    height: 100%;
    background-image: url("../img/top-swiper04.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center; }
    @media screen and (max-width: 767px) {
      #top-slide .swiper-slide .swiper-img.slide04 {
        background-image: url("../img/top-swiper04-sm.jpg"); } }
    @media screen and (max-width: 575px) {
      #top-slide .swiper-slide .swiper-img.slide04 {
        background-image: url("../img/top-swiper04-xs.jpg"); } }
  #top-slide .swiper-pagination {
    bottom: 3%; }
  #top-slide .swiper-pagination-bullet {
    background: #8c8c8c; }
  #top-slide .swiper-pagination-bullet-active {
    background: #fff; }
  #top-slide .swiper-caption {
    position: absolute;
    left: 10%;
    z-index: 99; }
    @media screen and (max-width: 1199px) {
      #top-slide .swiper-caption {
        left: 7%; } }
    @media screen and (max-width: 767px) {
      #top-slide .swiper-caption {
        left: 0;
        right: 0;
        margin: auto; } }
    #top-slide .swiper-caption h2 {
      font-size: 43px;
      font-size: 4.3rem;
      font-weight: bold;
      color: #fff;
      line-height: 1.5;
      letter-spacing: 0.1em; }
      @media screen and (max-width: 1199px) {
        #top-slide .swiper-caption h2 {
          font-size: 35px;
          font-size: 3.5rem; } }
      @media screen and (max-width: 767px) {
        #top-slide .swiper-caption h2 {
          font-size: 30px;
          font-size: 3rem;
          text-align: center; } }
    #top-slide .swiper-caption p {
      margin-top: 2rem;
      color: #fff;
      letter-spacing: 0.1em;
      line-height: 1.75; }
      @media screen and (max-width: 767px) {
        #top-slide .swiper-caption p {
          font-size: 15px;
          font-size: 1.5rem;
          text-align: center; } }
      @media screen and (max-width: 575px) {
        #top-slide .swiper-caption p {
          font-size: 13px;
          font-size: 1.3rem;
          text-align: center; } }

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }
@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); } }
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  /* ８秒かけて拡大させる */
  -webkit-animation: zoomUp 8s linear 0s;
  animation: zoomUp 8s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

#top-about-us {
  background-color: #e4e4e4;
  background-image: url("../img/top-about-img.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  display: flex;
  align-items: center; }
  @media screen and (max-width: 1199px) {
    #top-about-us {
      background-position: 110% center; } }
  @media screen and (max-width: 991px) {
    #top-about-us {
      background-image: none; } }
  #top-about-us div.inner div:not(.read-more) {
    width: 45%; }
    @media screen and (max-width: 1399px) {
      #top-about-us div.inner div:not(.read-more) {
        width: 50%; } }
    @media screen and (max-width: 1199px) {
      #top-about-us div.inner div:not(.read-more) {
        width: 52%; } }
    @media screen and (max-width: 991px) {
      #top-about-us div.inner div:not(.read-more) {
        width: 100%; } }
    #top-about-us div.inner div:not(.read-more) p {
      text-align: justify;
      margin-top: 4rem;
      margin-bottom: 8rem; }
      @media screen and (max-width: 1399px) {
        #top-about-us div.inner div:not(.read-more) p {
          margin-top: 2rem;
          margin-bottom: 4rem; } }
      @media screen and (max-width: 1199px) {
        #top-about-us div.inner div:not(.read-more) p {
          margin-top: 2rem;
          margin-bottom: 2rem; } }
  #top-about-us + div {
    width: 100%; }
    #top-about-us + div img {
      width: 100%; }

#main-equipment .parallax_content {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-image: url("../img/main-equipment-back.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  #main-equipment .parallax_content .d-flex {
    justify-content: space-between;
    position: relative; }
    @media screen and (max-width: 767px) {
      #main-equipment .parallax_content .d-flex {
        flex-wrap: wrap; } }
    #main-equipment .parallax_content .d-flex div p {
      color: #fff;
      margin-bottom: 2rem; }
      @media screen and (max-width: 767px) {
        #main-equipment .parallax_content .d-flex div p {
          margin-top: 2rem; } }

#technigue {
  background-image: url("../img/technigue-back.png");
  background-color: #000;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center; }
  #technigue .d-flex {
    margin-bottom: 5rem;
    justify-content: space-between; }
    @media screen and (max-width: 767px) {
      #technigue .d-flex {
        flex-wrap: wrap; } }
    @media screen and (max-width: 575px) {
      #technigue .d-flex {
        margin-bottom: 1rem; } }
    #technigue .d-flex h2 span {
      color: #fff; }
    @media screen and (max-width: 1199px) {
      #technigue .d-flex dl {
        width: 50%; } }
    @media screen and (max-width: 991px) {
      #technigue .d-flex dl {
        width: 45%; } }
    @media screen and (max-width: 767px) {
      #technigue .d-flex dl {
        width: 100%;
        margin-top: 3rem; } }
    #technigue .d-flex dl dt {
      color: #fff;
      font-size: 25px;
      font-size: 2.5rem;
      margin-bottom: 2rem; }
      @media screen and (max-width: 1199px) {
        #technigue .d-flex dl dt {
          font-size: 23px;
          font-size: 2.3rem; } }
    #technigue .d-flex dl dd {
      color: #fff;
      font-size: 15px;
      font-size: 1.5rem; }
      @media screen and (max-width: 1199px) {
        #technigue .d-flex dl dd {
          text-align: justify; } }
  #technigue .technigue-swiper figure {
    text-align: center; }
    #technigue .technigue-swiper figure figcaption {
      color: #fff;
      text-align: center;
      margin-top: 2rem; }
      @media screen and (max-width: 991px) {
        #technigue .technigue-swiper figure figcaption {
          font-size: 14px;
          font-size: 1.4rem; } }
