@media screen and (min-width: 751px){
  .pc-non {
    display: none !important;
  }
}
@media screen and (max-width: 750px){
  .sp-non {
    display: none !important;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  list-style: none;
}
.slick-dots li {
  width: 12px;
  height: 12px;
  border: 1px solid #292929;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background-color: #292929;
}
.slick-dots li button {
  padding: 0;
  -webkit-appearance: none;
  border-style: none;
  background: transparent;
  text-indent: -9999px;
}
@media screen and (max-width: 768px){
  .is-scrollable {
    display: block !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
    > div {
      width: 768px !important;
      max-width: initial !important;
    }
  }
  .voiceList .slick-dots {
    display: flex !important;
    padding-left: 0;
  }
}
.voiceList {
  display: block !important;
}

.js-accordion-sp__btn {
  margin-top: 20px;
  text-align: center;
  text-indent: -9999px;
  background: url(../images/arrow_more.png) no-repeat center / contain;
  height: 9px;
}

.js-icon-list__btn {
  font-size: 14px;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.js-icon-list__btn:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 10px;
  background: url(../images/arrow_more.png) no-repeat center bottom / auto 9px;
  transition: transform .3s ease;
  pointer-events: none;
}
.js-icon-list__btn.is-open:after {
  transform: rotate(180deg);
}

.loop-logos {
  height: 48px !important;
  position: relative !important;
  overflow: hidden !important;
}
.loop-logos > div {
  position: absolute !important;
  max-width: initial !important;
  width: auto !important;
  top: 0 !important;
  left: 0 !important;
  animation: stream 30s linear infinite;
}
@media screen and (max-width: 750px){
  .loop-logos {
    height: 26px !important;
  }
  .loop-logos > div {
    animation-duration: 20s;
  }
}
.loop-logos>div>img {
  max-width: initial !important;
  width: auto !important;
  height: 48px !important;
}
.loop-logos > div > img:nth-child(2) {
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
}
.loop-logos > div > img:nth-child(3) {
  position: absolute !important;
  left: 200% !important;
  top: 0 !important;
}
@media screen and (max-width: 750px){
  .loop-logos > div > img {
    height: 26px !important;
  }
  .loop-logos > div > img:nth-child(2),
  .loop-logos > div > img:nth-child(3) {
    top: 4px !important;
  }
}

@keyframes stream {
  100% {
    transform: translateX(-100%);
  }
}

.video-fv video {
  object-position: left center !important;
}