@charset "UTF-8";

.section-title {
  margin-bottom: 40px;
}
.section-title .en {
  display: inline-block;
  font-size: 52px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
}
.section-title .ja {
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}
.section-title-left .en::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: -10px;
  left: 0;
}
.section-title-center {
  text-align: center;
}
.section-title-center .en::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -60px;
}
.section-title-center .en::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: -60px;
}

/* Inview */
.fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 2s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------
MV
-------------------------------------------*/
.mv-slider {
  max-width: 1920px;
  margin: 0 auto 100px;
}
.mv-slider .slider-item {
  position: relative;
}
.mv-slider .slider-item img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center bottom;
}
.mv-slider .slider-item .copy-text {
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
  text-align: left;
  position: absolute;
  left: 8%;
  bottom: 15%;
}
.mv-slider .slider-item .copy-text-area {
  text-align: left;
  position: absolute;
  left: 8%;
  bottom: 10%;
}
.mv-slider .slider-item .copy-text-area .copy-text {
  margin-bottom: 10px;
  position: static;
}
.mv-slider .slider-item .copy-text-area .copy-text-sub {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.8);
  text-align: left;
}

/*-------------------------------------------
About
-------------------------------------------*/
.about {
  margin-bottom: 100px;
}
.about .section-title {
  margin-bottom: 20px;
}
.about .about-content {
  background: linear-gradient(to left, #F5F5F5 30%, transparent 30%);
}
.en .about .about-content {
  background: transparent;
}
.about .about-content .inner {
  display: flex;
  align-items: center;
}
.about .about-content .text-area {
  width: 39%;
  margin: 0 3% 5% 0;
}
.en .about .about-content .text-area {
  width: 100%;
  margin: 0 auto 5%;
}
.about .about-content .text-area .text {
  font-size: 18px;
  line-height: 2.2;
  margin-bottom: 40px;
}
.about .about-content .img-area {
  width: 58%;
  background-color: #F5F5F5;
  padding: 4% 0 4% 7%;
}
.about .about-content .img-area img {
  width: 100%;
}

/*-------------------------------------------
Img
-------------------------------------------*/
.image {
  margin-bottom: 100px;
}
.image img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

/*-------------------------------------------
Feature
-------------------------------------------*/
.feature {
  margin-bottom: 100px;
}
.feature .feature-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 5%;
}
.feature .feature-list li {
  width: 30%;
}
.feature .feature-list li .no {
  color: #005BAB;
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}
.feature .feature-list li .no::after {
  content: "";
  width: calc(100% - 90px);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
}
.feature .feature-list li .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 25px;
}
.feature .feature-list li .text {
  line-height: 1.8;
  text-align: justify;
}
.en .feature .feature-list li .text {
  text-align: left;
}

/*-------------------------------------------
Products
-------------------------------------------*/
.products {
  width: 100%;
  background-color: #f5f5f5;
  padding: 120px 0;
  margin-bottom: 120px;
}

/*-------------------------------------------
Banner
-------------------------------------------*/
.banner-area {
  margin-bottom: 120px;
}
.banner-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: min(60px, 4vw) 4%;
}
.banner-list li {
  width: 48%;
  max-width: 570px;
}

/*-------------------------------------------
Information
-------------------------------------------*/
.information {
  width: 100%;
  background-color: #F5F5F5;
  padding: 100px 0;
  margin-bottom: 100px;
}
.information .btn-navy {
  text-align: right;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
.contact {
  background-color: #005BAB;
  padding: 60px 0;
}
.contact .inner {
  display: flex;
  gap: 0 1px;
}
.contact .inner .content-box {
  width: calc(50% - 0.5px);
  background-color: #fff;
  padding: 40px 20px;
}
.contact .inner .content-box .text {
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}
.contact .inner .content-box .btn-navy {
  margin-bottom: 10px;
  text-align: center;
}
.contact .inner .content-box .btn-navy a {
  width: 100%;
  max-width: 280px;
}

@media screen and (max-width: 980px) {
  .contact {
    padding: 40px 0 30px;
  }
  .contact .inner {
    flex-direction: column;
    gap: 1px 0;
  }
  .contact .inner .content-box {
    width: 100%;
  }
  .contact .inner .content-box .text {
    font-size: 15px;
    text-align: justify;
  }
  .en .contact .inner .content-box .text {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
  .section-title .en {
    font-size: 34px;
  }
  .section-title-center .en::before {
    left: -40px;
  }
  .section-title-center .en::after {
    right: -40px;
  }
  .section-title .ja {
    font-size: 14px;
  }

  /*-------------------------------------------
  MV
  -------------------------------------------*/
  .mv-slider {
    margin: 0 auto 80px;
  }
  .mv-slider .slider-item img {
    max-height: 100%;
  }
  .mv-slider .slider-item .copy-text {
    font-size: 22px;
    left: 5%;
  }
  .mv-slider .slider-item .copy-text-area {
    left: 5%;
    padding-right: 1%;
  }
  .mv-slider .slider-item .copy-text-area .copy-text {
    font-size: 26px;
  }
  .mv-slider .slider-item .copy-text-area .copy-text-sub {
    font-size: 13px;
  }

  /*-------------------------------------------
  About
  -------------------------------------------*/
  .about {
    margin-bottom: 60px;
  }
  .about .section-title {
    margin-bottom: 30px;
  }
  .about .about-content {
    background: transparent
  }
  .about .about-content .inner {
    flex-direction: column;
  }
  .about .about-content .text-area {
    width: 100%;
    margin: 0 0 25px;
  }
  .en .about .about-content .text-area {
    width: 100%;
    margin: 0;
  }
  .about .about-content .text-area .text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
  }
  .en .about .about-content .text-area .text {
    text-align: left;
  }
  .about .about-content .img-area {
    width: 100%;
    background-color: #F5F5F5;
    padding: 5%;
  }

  /*-------------------------------------------
  Img
  -------------------------------------------*/
  .image {
    margin-bottom: 60px;
  }
  .image img {
    min-height: 180px;
    object-position: left top;
  }

  /*-------------------------------------------
  Feature
  -------------------------------------------*/
  .feature {
    margin-bottom: 60px;
  }
  .feature .feature-list {
    flex-direction: column;
    gap: 40px 0;
  }
  .feature .feature-list li {
    width: 100%;
  }
  .feature .feature-list li .no {
    font-size: 50px;
  }
  .feature .feature-list li .no::after {
    width: calc(100% - 70px);
  }
  .feature .feature-list li .title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .feature .feature-list li .text {
    font-size: 15px;
  }

  /*-------------------------------------------
  Products
  -------------------------------------------*/
  .products {
    padding: 80px 0 40px;
    margin-bottom: 40px;
  }

  /*-------------------------------------------
  Banner
  -------------------------------------------*/
  .banner-area {
    margin-bottom: 40px;
  }
  .banner-list {
    flex-direction: column;
    gap: 20px 0;
  }
  .banner-list li {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
  }

  /*-------------------------------------------
  Information
  -------------------------------------------*/
  .information {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}