@charset "UTF-8";

p {
  margin: 0;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.container,
.col-md-4,
.col-md-6,
.col-md-8 {
  padding-left: 0;
  padding-right: 0;
}

.col-md-4,
.col-md-6,
.col-md-8 {
  flex-basis: auto !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

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

body {
  background-color: #f8fbfb;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
body.is-fixed {
  overflow: hidden;
}

img {
  display: inline-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;
}

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

.display-none {
  display: none;
}

.pc_only {
  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%);
  }
}
iframe {
  border: none;
  height: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  .sp_only {
    display: none;
  }
  .pc_only {
    display: block;
  }
}