@charset "UTF-8";

/* ==========================================
  /statement CSS
============================================= */

.p-keyvisual {
  text-align: center;
}
.p-keyvisual img {
  width: 100%;
}
.l-section--introduction {
  padding-top: var(--value-140);
}
.l-section--concept,
.l-section--business {
  padding-top: var(--value-200);
}
.l-section__title {
  font-size: var(--fs-46);
  font-weight: normal;
  line-height: calc(66 / 46);
}
.l-section .text-detail {
  font-family: var(--ff-YuGothic);
  line-height: calc(34 / 16);
  margin-top: var(--value-40);
}
.l-section .text-detail > p + p {
  margin-top: var(--value-32);
}
.l-section .text-detail > dl + dl {
  margin-top: var(--value-28);
}
.l-section .text-detail > dl dt {
  font-weight: bold;
}
.l-section .block-image {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: var(--value-60);
  margin-inline: calc(-1 * var(--value-80));
}
.l-section .block-image__item {
  width: 100%;
}
.l-section .block-slider {
  display: flex;
  margin-top: var(--value-60);
  margin-inline: calc(-1 * var(--value-80));
  width: max-content;
}
.l-section--concept .block-slider {
  animation: infiniteslider 35s linear infinite;
}
.l-section--business .block-slider {
  animation: infiniteslider 60s linear infinite;
}
.l-section .block-slider__item {
  flex-shrink: 0;
    width: calc(360 / 1440 * 100vw);
}
.l-section .block-slider__item img {
  display: block;
  height: auto;
  width: 100%;
}
/* アニメーション */
@keyframes infiniteslider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* PC */
@media screen and (min-width: 769px), print {
  .l-section__inner {
    max-width: 800px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .l-section--introduction {
    padding-top: var(--value-60);
  }
  .l-section--concept,
  .l-section--business {
    padding-top: var(--value-100);
  }
  .l-section__title {
    font-size: var(--fs-34);
    font-weight: normal;
    line-height: calc(48 / 34);
  }
  .l-section .text-detail {
    font-size: var(--fs-15);
    margin-top: var(--value-30);
  }
  .l-section .text-detail > dl dt {
    font-size: var(--fs-16);
  }
  .l-section .block-image {
    margin-top: var(--value-30);
    margin-inline: calc(-1 * var(--value-18));
  }
  .l-section .block-slider {
    margin-top: var(--value-50);
    margin-inline: calc(-1 * var(--value-18));
  }
  .l-section--concept .block-slider {
    animation: infiniteslider 45s linear infinite;
  }
  .l-section--business .block-slider {
    animation: infiniteslider 63s linear infinite;
  }
  .l-section .block-slider__item {
    width: calc(245 / 375 * 100vw);
  }
}


