/* 最初の動画 */

.hero-area {
  position: relative;
  overflow: hidden;
}

.bg-video,
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-mask: url(/images/lp/mask.svg) center / cover;
  mask: url(/images/lp/mask.svg) center / cover;
}

.bg-video {
  object-fit: cover;
}

.video-overlay {
  background-image: url(/images/lp/bglp-shadow.png);
  background-repeat: repeat;
}

.container {
  position: relative; /* This makes the container appear over the video */
}

.responsive-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
}

/* --Youtube-- */

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* クライアントロゴ */
.logo-list {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  align-items: center;
  justify-content: space-between;
}

.logo-item img {
  max-height: 100%;
  width: auto;
  max-width: 80px; /* 追加 */
  object-fit: contain;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 2px;
  scroll-snap-align: start;
  margin-top: auto;
  margin-bottom: auto;
}

a:focus {
  text-decoration: underline;
}
