/* default settings */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@500;600&display=swap");
/* =================================================================== */
.page-top .kv {
  position: relative;
}
.page-top .kv:after {
  content: "";
  position: absolute;
  top: -5.625rem;
  left: 0;
  width: 5.625rem;
  height: 5.625rem;
  background: #032A65;
  -webkit-transform: rotate(45deg) scale(6.85);
          transform: rotate(45deg) scale(6.85);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-top .kv:after {
    display: none;
  }
}
.page-top .kv__wrapper {
  position: relative;
  overflow: hidden;
  margin-left: 10.9375rem;
}
@media (max-width: 767px) {
  .page-top .kv__wrapper {
    margin-left: 0;
  }
}
.page-top .kv__img {
  height: 41.6875rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-top .kv__img {
    width: 100%;
    height: 29.9375rem;
  }
}
.page-top .kv__img-item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.page-top .kv__img-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 5s ease;
  transition: -webkit-transform 5s ease;
  transition: transform 5s ease;
  transition: transform 5s ease, -webkit-transform 5s ease;
}
.page-top .kv__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .page-top .kv__progress {
    height: 0.375rem;
  }
}
.page-top .kv__progress-bar {
  width: 0%;
  height: 100%;
  background-color: #0F5CB5;
  -webkit-transition: width 0s;
  transition: width 0s;
}
.page-top .kv .slick-list,
.page-top .kv .slick-track {
  height: 100%;
}
.page-top .kv .slick-slide.is-zooming img {
  -webkit-transform: scale(1.075);
          transform: scale(1.075);
}
.page-top .kv__ttl {
  position: absolute;
  left: 6.25rem;
  right: 6.25rem;
  bottom: 10.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .page-top .kv__ttl {
    left: 0.9375rem;
    right: 0.9375rem;
    bottom: 2rem;
  }
}
.page-top .kv__ttl span {
  font-size: 1.875rem;
  font-weight: bold;
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1.125rem 1.3125rem;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: revealClip 0.75s ease-out forwards;
          animation: revealClip 0.75s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media (max-width: 767px) {
  .page-top .kv__ttl span {
    font-size: 1.125rem;
    padding: 0.40625rem 0.625rem;
  }
}
.page-top .kv__ttl span + span {
  margin-top: 0.9375rem;
}
@media (max-width: 767px) {
  .page-top .kv__ttl span + span {
    margin-top: 0.75rem;
  }
}
.page-top .kv__scroll {
  width: 0.6875rem;
  height: 3.75rem;
  position: absolute;
  left: 2.125rem;
  bottom: 3.8125rem;
}
@media (max-width: 767px) {
  .page-top .kv__scroll {
    display: none;
  }
}
.page-top .kv__scroll-line {
  position: absolute;
  left: calc(50% - 0.0625rem);
  top: calc(100% + 1.25rem);
  width: 1px;
  height: 5.625rem;
  overflow: hidden;
}
.page-top .kv__scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-animation: scrollLine 2s linear infinite;
          animation: scrollLine 2s linear infinite;
}
.page-top .company {
  background: #F4F7FB;
  padding: 7.5rem 0 7.125rem;
  margin-top: 7.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-top .company {
    margin-top: 0;
    padding: 4.6875rem 0 3.75rem;
  }
}
.page-top .company:before {
  content: "";
  position: absolute;
  width: 125rem;
  height: 21.625rem;
  background: #E5F0FB;
  top: 8.75rem;
  left: calc(50% - 89.6875rem);
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-top .company:before {
    width: 33.3125rem;
    height: 11.5rem;
    top: 0;
    left: calc(50% - 21.25rem);
  }
}
.page-top .company .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .page-top .company .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-top .company__img {
  width: 38.75rem;
  padding-top: 0.25rem;
}
@media (max-width: 767px) {
  .page-top .company__img {
    padding-top: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-top .company__img .title__main {
    margin-bottom: 1.6875rem;
  }
}
.page-top .company__img-item {
  position: relative;
  width: 38.75rem;
  height: 45rem;
}
@media (max-width: 767px) {
  .page-top .company__img-item {
    width: 21.5625rem;
    height: 25.0403225806rem;
  }
}
.page-top .company__img-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-top .company__content {
  width: 35.75rem;
}
@media (max-width: 767px) {
  .page-top .company__content {
    width: 100%;
  }
}
.page-top .company__txt {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 2.0625rem;
}
@media (max-width: 767px) {
  .page-top .company__txt {
    font-size: 0.9375rem;
    line-height: 1.73;
  }
}
@media (max-width: 767px) {
  .page-top .company__txt {
    margin-top: 1.25rem;
    padding-right: 0.5rem;
  }
}
.page-top .company__txt p + p {
  margin-top: 1.0625rem;
}
@media (max-width: 767px) {
  .page-top .company__txt p + p {
    margin-top: 0.875rem;
  }
}
.page-top .company__btn {
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .page-top .company__btn {
    text-align: center;
    margin-top: 2.125rem;
  }
}
.page-top .product {
  padding: 7.5rem 0 7.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-top .product {
    padding: 4.875rem 0 3.5rem;
  }
}
.page-top .product:before {
  content: "";
  position: absolute;
  width: 288.125rem;
  height: 170.6875rem;
  background: #E5F0FB;
  top: -36.25rem;
  left: calc(50% - 178.125rem);
  z-index: -1;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 79.375rem 100%);
          clip-path: polygon(100% 0, 0% 100%, 79.375rem 100%);
}
@media (max-width: 767px) {
  .page-top .product:before {
    width: 63.375rem;
    height: 37.5rem;
    top: 25.9375rem;
    left: calc(50% - 42.1875rem);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 17.5rem 100%);
            clip-path: polygon(100% 0, 0% 100%, 17.5rem 100%);
  }
}
.page-top .product__items {
  margin-top: 2.0625rem;
}
@media (max-width: 767px) {
  .page-top .product__items {
    margin-top: 1.625rem;
  }
}
.page-top .product__item {
  width: 64.5rem;
  background: #FFF;
  -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin: 0 3.1875rem;
}
@media (max-width: 767px) {
  .page-top .product__item {
    width: 20rem;
    margin: 0 0.46875rem;
  }
}
.page-top .product__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media (max-width: 767px) {
  .page-top .product__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-top .product__item-img {
  width: 30.4375rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-top .product__item-img {
    width: 20rem;
    height: 14.0625rem;
  }
}
.page-top .product__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-top .product__item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 21.4375rem;
  padding: 1.8125rem 4.375rem 0.625rem 2.375rem;
}
@media (max-width: 767px) {
  .page-top .product__item-content {
    padding: 0.875rem 0.875rem 1.8125rem;
    min-height: auto;
  }
}
.page-top .product__item-ttl {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: bold;
  color: #0F5CB5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .page-top .product__item-ttl {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.page-top .product__item-txt {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.625rem;
}
@media (max-width: 767px) {
  .page-top .product__item-txt {
    font-size: 0.9375rem;
    line-height: 1.73;
  }
}
@media (max-width: 767px) {
  .page-top .product__item-txt {
    margin-top: 0.5rem;
  }
}
.page-top .product__item-btn {
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  .page-top .product__item-btn {
    text-align: center;
    margin-top: 1.25rem;
  }
}
.page-top .machines {
  padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .page-top .machines {
    padding-bottom: 3.1875rem;
  }
}
.page-top .machines__img {
  width: 61.75rem;
  height: 31.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-top .machines__img {
    width: 23.4375rem;
    height: 18.625rem;
    margin-inline: -0.9375rem;
  }
}
.page-top .machines__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-top .machines__content {
  width: 37.5rem;
  background: #FFF;
  -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: 0;
  top: -20.1875rem;
  margin-bottom: -20.1875rem;
  padding: 3.75rem 3.625rem 3.6875rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-top .machines__content {
    width: 100%;
    top: -2.5rem;
    margin-bottom: -3.3125rem;
    padding: 2.4375rem 1.25rem 2.25rem;
  }
}
.page-top .machines__txt {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.375rem;
}
@media (max-width: 767px) {
  .page-top .machines__txt {
    font-size: 0.9375rem;
    line-height: 1.73;
  }
}
.page-top .machines__btn {
  margin-top: 1.75rem;
}
@media (max-width: 767px) {
  .page-top .machines__btn {
    text-align: center;
    margin-top: 1.25rem;
  }
}
.page-top .news {
  padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .page-top .news {
    padding-bottom: 2.9375rem;
  }
}
.page-top .news__box {
  background: #FFF;
  padding: 5.8125rem 2.5rem 7.5rem 3.375rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  .page-top .news__box {
    -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767px) {
  .page-top .news__box {
    width: 100%;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-top .news__head {
  width: 22.5rem;
  padding-top: 1.625rem;
}
@media (max-width: 767px) {
  .page-top .news__head {
    width: 100%;
    padding-top: 0rem;
  }
}
@media (min-width: 768px) {
  .page-top .news__btn {
    position: absolute;
    top: 15.4375rem;
    left: 3.375rem;
  }
}
@media (max-width: 767px) {
  .page-top .news__btn {
    text-align: center;
    margin-top: 2.5625rem;
  }
}
.page-top .news__items {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.1875rem;
}
@media (min-width: 768px) {
  .page-top .news__items {
    min-height: 14.375rem;
  }
}
@media (max-width: 767px) {
  .page-top .news__items {
    padding-left: 0;
    margin-top: 1.6875rem;
  }
}
.page-top .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #171717;
  padding: 1.0625rem 0.9375rem;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .page-top .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0.75rem;
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 767px) {
  .page-top .news__item:last-child {
    margin-bottom: 0;
  }
}
.page-top .news__item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  top: 0;
  bottom: 0;
  background: #E5F0FB;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  z-index: -1;
}
.page-top .news__item-date {
  width: 6.375rem;
  font-size: 0.875rem;
  line-height: 1.875;
  font-weight: 500;
  padding-top: 0.125rem;
}
@media (max-width: 767px) {
  .page-top .news__item-date {
    width: 100%;
    padding-top: 0rem;
    margin-bottom: 0.375rem;
  }
}
.page-top .news__item-desc {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-right: 3.125rem;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .page-top .news__item-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.9375rem;
    line-height: 1.5;
    padding-right: 2.5rem;
  }
}
.page-top .news__item-desc:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
  width: 1rem;
  height: 0.625rem;
  background: url("../../common/img/icon_arrow-left-blue.svg") no-repeat center center;
  background-size: cover;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .page-top .news__item-desc:before {
    right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-top .news__item:hover:before {
    width: 100%;
  }
  .page-top .news__item:hover .news__item-desc:before {
    right: 0;
  }
}
.page-top .connect {
  padding: 7.5rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-top .connect {
    background: -webkit-gradient(linear, left top, right top, from(#032A65), color-stop(50%, #032A65), color-stop(50%, #0F5CB5), to(#0F5CB5));
    background: linear-gradient(90deg, #032A65 0%, #032A65 50%, #0F5CB5 50%, #0F5CB5 100%);
  }
}
@media (max-width: 767px) {
  .page-top .connect {
    padding: 0;
  }
}
.page-top .connect:before {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  width: 9.6875rem;
  height: 5.875rem;
  background: url("../../img/top/contact_logo.png") center center no-repeat;
  background-size: cover;
  right: 0;
}
@media (max-width: 767px) {
  .page-top .connect:before {
    display: none;
  }
}
.page-top .connect .inner {
  min-width: 100%;
}
@media (max-width: 767px) {
  .page-top .connect .inner {
    padding: 0;
  }
}
.page-top .connect__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .page-top .connect__items {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.page-top .connect__item {
  width: 33.875rem;
  text-align: center;
  color: #FFF;
}
@media (max-width: 767px) {
  .page-top .connect__item {
    width: 100%;
    padding: 2.5rem 0.9375rem;
    text-align: left;
    position: relative;
  }
}
@media (max-width: 767px) {
  .page-top .connect__item:nth-child(1) {
    background: #032A65;
  }
}
@media (max-width: 767px) {
  .page-top .connect__item:nth-child(2) {
    background: #0F5CB5;
  }
}
.page-top .connect__item .title__main {
  color: #FFF;
}
@media (min-width: 768px) {
  .page-top .connect__item .title__main {
    text-align: center;
    font-size: 1.25rem;
  }
}
.page-top .connect__item .title__main:before, .page-top .connect__item .title__main:after {
  background: #FFF;
}
@media (min-width: 768px) {
  .page-top .connect__item .title__main:before {
    left: calc(50% - 1.71875rem);
  }
}
@media (min-width: 768px) {
  .page-top .connect__item .title__main:after {
    left: calc(50% + 0.15625rem);
  }
}
.page-top .connect__item .title__main .txt-en {
  color: #FFF;
}
@media (min-width: 768px) {
  .page-top .connect__item .title__main .txt-en {
    font-size: 2.125rem;
    margin-bottom: 0.5625rem;
  }
}
.page-top .connect__txt {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.875rem;
  color: #FFF;
}
@media (max-width: 767px) {
  .page-top .connect__txt {
    font-size: 0.9375rem;
    line-height: 1.73;
  }
}
@media (max-width: 767px) {
  .page-top .connect__txt {
    margin-top: 1.1875rem;
    line-height: 1.53;
  }
}
@media (min-width: 768px) {
  .page-top .connect__btn {
    margin-top: 1.875rem;
  }
}
@media (max-width: 767px) {
  .page-top .connect__btn {
    position: absolute;
    top: 2.75rem;
    right: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .page-top .connect__btn .btn__main-content {
    width: 2.875rem;
    height: 2.875rem;
    text-indent: -9999px;
  }
}
@media (max-width: 767px) {
  .page-top .connect__btn .btn__main-content:after {
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
}
@media (max-width: 767px) {
  .page-top .connect__btn .btn__main-border {
    width: 2.875rem;
    height: 2.875rem;
    top: -0.25rem;
    left: 0.25rem;
    border-width: 0.125rem;
  }
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}