#logo svg path.st0 {
  fill: var(--base-color) !important;
}
#logo svg path.st1,
#logo svg rect.st1 {
  fill: var(--base-color);
  opacity: 0.8;
}
#logo svg circle.st1 {
  fill: var(--base-color);
}
#logo svg path.st2 {
  fill: #fff !important;
}
#logo svg .st9,
#logo svg path.cls-3 {
  fill: var(--base-color);
}
#logo svg path.st3,
#logo svg path.cls-2 {
  fill: rgba(243, 243, 243, 0.3411764706);
}
#logo svg {
  /* Height managed by style.css */
}

.wrap-init-loader svg path.st0 {
  fill: var(--base-color) !important;
}
.wrap-init-loader svg path.st1,
.wrap-init-loader svg rect.st1 {
  fill: var(--base-color);
  opacity: 0.8;
}
.wrap-init-loader svg circle.st1 {
  fill: var(--base-color);
}
.wrap-init-loader svg path.st2 {
  fill: #fff !important;
}
.wrap-init-loader svg .st9,
.wrap-init-loader svg path.cls-3 {
  fill: var(--base-color);
}
.wrap-init-loader svg path.st3,
.wrap-init-loader svg path.cls-2 {
  fill: rgba(243, 243, 243, 0.3411764706);
}

body {
  --base-color: #4CAF50;
  --base-color: #9C27B0;
}

.headerInner {
  max-width: unset;
}
.headerInner .headerContents {
  justify-content: start !important;
}


.movieList__detail .btnBox .detailLink {
  display: none !important;
}

a.copyLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2588235294) !important;
  border-color: transparent !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 50% ;
}
a.copyLink:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
a.copyLink:active {
  transform: translateY(0) scale(0.98);
}
a.copyLink.copied {
  animation: pulse 0.4s ease-in-out;
}
a.copyLink.copied::before {
  width: 6px !important;
  height: 10px !important;
  background-color: #2c3e50 !important;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: calc(100% + 2px) !important;
  animation: fadeInOut 2s ease-in-out !important;
  display: none;
}
a.copyLink.copied::after {
  content: "コピーしました！" !important;
  top: 0 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap !important;
  animation: fadeInOut 2s ease-in-out !important;
  letter-spacing: 0.5px !important;
}
a.copyLink:before {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

li.is-card-link {
  position: relative;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  15%, 85% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
}
.detail-btm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  color: gray;
  font-weight: 500;
  gap: 5px;
  margin-top: 2px;
  margin-left: 5px;
}
.d-none {
  display: none !important;
}

.playlistMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.metaChip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #0f3f22;
  background: #e8f8ee;
  border: 1px solid #cdecd9;
  line-height: 1;
  white-space: nowrap;
}

.metaChip i {
  font-size: 13px;
}

.metaChipNew {
  color: #7a1f28;
  background: #ffeef1;
  border-color: #ffd3da;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.active {
  background-color: var(--base-color) !important;
  color: #FFFFFF !important;
  border-color: transparent;
  /* transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

@media screen and (max-width: 900px) {
  .playlistHeader {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .playlistMeta {
    width: 100%;
    order: 3;
    margin-left: 0;
  }
}

@media screen and (max-width: 750px) {
  .playlistMeta {
    gap: 6px;
  }

  .metaChip {
    font-size: 10px;
    padding: 5px 8px;
  }

  .reveal-item {
    transform: translateY(14px);
    transition-duration: 0.45s;
  }
}