:root {
  --page-bg: #fdfcf7;
  --ink: #000000;
  --rule: #d9d9d9;
  --shell-width: 936px;
  --cover-height: 481px;
  --cover-gap: 24px;
  --marquee-duration: 40s;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family:
    brandon-grotesque, 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

img {
  display: block;
}

.closure-page {
  overflow-x: hidden;
  background: var(--page-bg);
}

.closure-shell {
  width: min(var(--shell-width), calc(100% - 48px));
  margin: 0 auto;
}

.closure-header {
  height: 106px;
}

.closure-logo {
  width: 178.63px;
  padding-top: 37px;
  box-sizing: content-box;
}

.intro-copy,
.message-copy {
  margin-inline: auto;
  text-align: center;
}

.intro-copy {
  margin-top: 48px;
}

.intro-copy h1 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.75;
}

.intro-copy p,
.message-copy p,
.closure-footer p {
  line-height: 1.75;
}

.closure-footer p {
  margin: 0;
}

.intro-copy p {
  margin-top: 32px;
}

.cover-gallery {
  margin-top: 112px;
}

.cover-track {
  display: flex;
  width: max-content;
  animation: cover-marquee-reverse var(--marquee-duration) linear infinite;
  will-change: transform;
}

.cover-sequence {
  display: flex;
  gap: var(--cover-gap);
  padding-right: var(--cover-gap);
}

.cover-item {
  margin: 0;
  text-align: center;
}

.cover-image {
  height: var(--cover-height);
}

.cover-caption {
  margin-top: 18px;
}

.cover-caption span {
  display: block;
  height: 24px;
}

@keyframes cover-marquee-reverse {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-100% / 3), 0, 0);
  }
}

.message-copy {
  margin-top: 80px;
}

.message-copy p + p {
  margin-top: 32px;
}

.editor-credit {
  display: block;
}

.closure-footer {
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  padding: 31px 0 58px;
  text-align: center;
}

@media (max-width: 760px) {
  :root {
    --cover-height: 335px;
    --cover-gap: 18px;
  }

  .no-break-sp {
    white-space: nowrap;
  }

  .closure-shell,
  .intro-copy,
  .message-copy {
    width: calc(100% - 40px);
  }

  .closure-header {
    height: 86px;
  }

  .closure-logo {
    width: 148px;
    height: auto;
    padding-top: 28px;
  }

  .cover-caption span {
    height: 21px;
  }

  .intro-copy {
    margin-top: 34px;
  }

  .intro-copy h1 {
    font-size: 24px;
    line-height: 1.65;
    height: 40px;
  }

  .intro-copy p,
  .message-copy p,
  .closure-footer p {
    font-size: 14px;
  }

  .intro-copy p,
  .message-copy p {
    line-height: 26.6px;
  }

  .editor-credit {
    height: 27px;
  }

  .closure-footer p {
    line-height: 27px;
  }

  .intro-copy br,
  .message-copy br {
    display: none;
  }

  .cover-gallery {
    margin-top: 72px;
  }

  .cover-image {
    height: var(--cover-height);
  }

  .cover-caption {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .message-copy {
    margin-top: 64px;
  }

  .message-copy p + p {
    margin-top: 28px;
  }

  .closure-footer {
    margin-top: 64px;
    padding: 27px 24px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-marquee {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .cover-track {
    animation: none;
    transform: none;
  }

  .cover-sequence[aria-hidden="true"] {
    display: none;
  }
}
