@charset "UTF-8";

body {
  background-color: #f5f6f8;
  color: #505050;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 400;
}
body.is-fixed {
  overflow: hidden;
}

img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: baseline;
  width: 100%;
}

a {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: unset;
  left: unset;
  margin: 0;
  padding: 0;
  right: unset;
  top: unset;
}

.text-wrap {
  line-break: auto;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.display-none {
  display: none;
}

.swiper-wrapper {
  display: flex;
}
.swiper-wrapper.swiper-flow {
  transition-timing-function: linear;
}

.bg-text__wrap {
  display: flex;
  gap: 50px;
  width: 100%;
}

.bg-text {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
  flex-shrink: 0;
  height: 100%;
  width: auto;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}