.contents-wrapper {
  --ink: #111;
  --muted: #555;
  --line: rgba(0, 0, 0, .10);
  --accent: #5f5fff;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.6rem 1rem;
  color: var(--ink)
}
.contents-wrapper .works-list {
  position: relative;
  padding: clamp(20px, 3vw, 32px) 0 clamp(36px, 6vw, 72px)
}
.contents-wrapper .works-list + .works-list {
  border-top: 1px solid var(--line)
}
.work-title h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #0a1a3c;
  line-height: 1.3;
  margin: 0 0 .4em;
  position: relative;
  display: inline-block;
  letter-spacing: .02em
}
.work-title h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  margin: .35em auto 0;
  background: linear-gradient(90deg, #0078ff, #5f5fff);
  border-radius: 2px
}
.work-title {
  text-align: center;
  margin-bottom: 1.6rem
}
.works-intro {
  padding: 0 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center
}
@media (max-width:600px) {
  .works-intro {
    text-align: left
  }
}
.contents-wrapper .work-item {
  display: block
}
.contents-wrapper .work-media {
  width: min(100%, 980px);
  margin-inline: auto;
  aspect-ratio: 16/9;
  overflow: clip;
  border-radius: 10px;
  background: #eee
}
.contents-wrapper .work-media iframe, .contents-wrapper .work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1)
}
.contents-wrapper .work-content {
  width: min(72ch, 90%);
  margin: clamp(14px, 2.4vw, 28px) auto 0;
  padding: 0
}
.contents-wrapper .work-content p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.85;
  letter-spacing: .01em;
  color: var(--ink)
}
.contents-wrapper [data-animate] {
  opacity: 0;
  transform: translateY(8px);
  animation: .5s cubic-bezier(.2, .8, .2, 1) .05s forwards cw-fade
}
@keyframes cw-fade {
  to {
    opacity: 1;
    transform: none
  }
}
.contents-wrapper .work-media :where(iframe, img):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px
}
@media (min-width:1200px) {
  .contents-wrapper .work-media {
    width: 600px
  }
}
@media (prefers-reduced-motion:reduce) {
  .contents-wrapper * {
    transition: none !important;
    animation: none !important;
    transform: none !important
  }
}