@charset "UTF-8";
.columnMainContents.top {
  height: calc(100vh - 113px);
}
@media only screen and (max-width: 768px) {
  .columnMainContents.top {
    height: auto;
  }
}

#opv-wrap {
  display: none;
  position: relative;
}
#opv-wrap .button--skip {
  position: absolute;
  z-index: 10;
  top: 15px;
  right: 15px;
  font-family: var(--poppins);
  font-weight: var(--font-regular);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white);
  background-color: transparent;
}
#opv-wrap .blur-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("path/to/your/background-image.jpg"); /* 背景画像を指定 */
  background-size: cover; /* 背景画像をカバー */
  filter: blur(10px); /* ぼかし効果 */
  z-index: -1; /* 背景を動画の後ろに配置 */
}

video#opv {
  display: block;
  object-fit: cover;
  width: fit-content;
  height: 100dvh;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  video#opv {
    width: 100%;
  }
}

video#opv-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140vw;
  height: 120vh;
  object-fit: cover;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.85;
}

header.column-header, .column-wrapper footer {
  display: none;
}

.slider {
  display: none;
  height: calc(100vh - 133px);
  padding: 0 30px;
  margin: 103px 0 30px 0;
}
@media only screen and (max-width: 768px) {
  .slider .slick-list {
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .slider .slick-list .slick-track {
    height: 100%;
  }
}
.slider .slider-item {
  display: grid;
  grid-template-columns: 287px minmax(0, 1fr);
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .slider .slider-item {
    display: block;
  }
}
.slider .slider-item .mv-title {
  width: 287px;
  color: var(--blk);
  font-family: var(--poppins);
  font-weight: var(--font-regular);
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0.09em;
}
@media only screen and (max-width: 768px) {
  .slider .slider-item .mv-title {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: var(--white);
  }
}
.slider .slider-item a:hover {
  opacity: 1;
}
.slider .slider-item img {
  width: 100%;
  height: calc(100vh - 133px);
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .slider .slider-item img {
    height: 100%;
  }
}
.slider .slick-dots {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin: -30px 16px auto 0px;
}
.slider .slick-dots li {
  display: grid;
  place-content: center;
  width: 12px;
  height: 12px;
}
.slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.slider .slick-dots li button:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9d9d9;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.slider .slick-dots li button svg {
  display: none;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
.slider .slick-dots li.slick-active button svg {
  display: block;
}
.slider .slick-dots li.slick-active button:before {
  display: none;
}
.slider .slick-dots circle {
  fill: transparent;
  stroke: var(--white);
  stroke-width: 1.5;
  animation: circle 7.5s linear 0s forwards;
  -webkit-animation: circle 7.5s linear 0s forwards;
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 32;
  }
  99.9%, to {
    stroke-dasharray: 32 32;
  }
}
@media only screen and (max-width: 768px) {
  .slider {
    height: auto;
    padding: 30px;
    margin: 182px 0 0 0;
  }
}

/*# sourceMappingURL=top.css.map */
