@charset "UTF-8";
.ctm_head_bnr {
  display: none;
}

.ctm_mv__list {
  visibility: hidden;
  display: none;
}
.ctm_mv__list.slick-initialized {
  visibility: visible;
  display: block;
}

/* ローディングスタイル（例） */
.loading {
  position: relative;
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #333;
  aspect-ratio: 8/5; /* または 1 / 1, 4 / 3 など */
  width: 100%;
  /* background-color: #ccc; */
  display: flex;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=index.css.map */