@charset "UTF-8";
:root {
  --column-gap: 1rem;
}
@media (min-width: 40em) {
  :root {
    --column-gap: 1.5rem;
  }
}
@media (min-width: 64em) {
  :root {
    --column-gap: 2rem;
  }
}

:lang(en) {
  font-kerning: normal;
}

body {
  box-sizing: border-box;
  max-width: 90rem;
  margin: 0 auto 4rem;
  padding-left: var(--column-gap);
  padding-right: var(--column-gap);
  font-family: "Univers Next", "Tazugane Gothic", sans-serif;
  font-weight: 400;
  text-spacing-trim: trim-start;
  font-feature-settings: "chws" 1;
  font-kerning: none;
  font-size: 1rem;
  line-height: 1.5;
  line-break: normal;
  hanging-punctuation: allow-end;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 13%);
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.125em;
  text-decoration-thickness: 1px;
}

.Button {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1.66667em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: #212121;
  color: white;
  padding: 1.25rem 2em;
}

.Button,
.Button:hover {
  text-decoration: none;
}

.Button__wrap {
  display: inline-block;
}

.Cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--justify-content, flex-start);
  gap: 0.5rem 1em;
  padding-block: 0.25rem;
}

.Cluster.-buttons {
  padding-block: 0;
  gap: 2rem;
}

.Cluster li {
  list-style-type: none;
}

.Display {
  font-size: clamp(2.25rem, (100vw - 20rem) * 0.0821428571 + 2.25rem, 8rem);
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
}

.Display:lang(en) {
  font-size: clamp(2.3625rem, (100vw - 20rem) * 0.08625 + 2.3625rem, 8.4rem);
  line-height: 1.19048;
}

.Footer {
  position: relative;
  padding-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.66667em;
}
.Footer::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  border-top: 1px solid;
}

.Footer__links {
  display: grid;
  grid-template: ". website" auto ". social" auto ". fonts" auto/2rem 1fr;
  gap: 2rem 0;
}
@media (min-width: 40em) {
  .Footer__links {
    grid-template: ". website social" auto ". fonts fonts" auto/1fr 1fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 64em) {
  .Footer__links {
    grid-template: ". website social fonts" auto/1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.Footer p {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.Footer__links p {
  font-weight: 600;
}

.Footer ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.Footer li {
  list-style-type: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.Frame {
  display: block;
  position: relative;
  padding-bottom: calc(var(--h, 5) / var(--w, 8) * 100%);
}

.Frame::after {
  content: "";
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.87);
  pointer-events: none;
}

.Frame::after,
.Frame > * {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.Frame > img,
.Frame > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Grid {
  position: relative;
  padding-top: 2rem;
  display: grid;
}
.Grid::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  border-top: 1px solid;
}

.Grid.-image {
  grid-template: "header header" auto "image  image" auto ".      meta-1" auto ".      meta-2" auto/2rem 1fr;
  gap: 0;
}
@media (min-width: 40em) {
  .Grid.-image {
    grid-template: "header image  image" auto ".      meta-1 meta-2" auto/1fr 1fr 1fr;
    gap: 1rem 2rem;
  }
}
@media (min-width: 64em) {
  .Grid.-image {
    grid-template: "header image  image  image" auto ".      .      meta-1 meta-2" auto/1fr 1fr 1fr 1fr;
  }
}

.Grid.-image > * + * {
  margin-top: 1rem;
}
@media (min-width: 40em) {
  .Grid.-image > * + * {
    margin-top: 0.5rem;
  }
}

.Grid.-text {
  grid-template: "header header" auto ".      body" auto/2rem 1fr;
  gap: 2rem 0;
}
@media (min-width: 40em) {
  .Grid.-text {
    grid-template: "header body body" auto/1fr 1fr 1fr;
    gap: 2rem 2rem;
  }
}
@media (min-width: 64em) {
  .Grid.-text {
    grid-template: "header body body ." auto/1fr 1fr 1fr 1fr;
  }
}

.Grid.-single {
  grid-template: ". body" auto/2rem 1fr;
  gap: 0;
}
@media (min-width: 40em) {
  .Grid.-single {
    grid-template: ". body body" auto/1fr 1fr 1fr;
    gap: 0 2rem;
  }
}
@media (min-width: 64em) {
  .Grid.-single {
    grid-template: ". body body ." auto/1fr 1fr 1fr 1fr;
  }
}

.Grid.-full {
  grid-template: "body body" auto ".    meta" auto/2rem 1fr;
  gap: 0;
}
@media (min-width: 40em) {
  .Grid.-full {
    grid-template: "body body body" auto ".    .    meta" auto/1fr 1fr 1fr;
    gap: 0 2rem;
  }
}
@media (min-width: 64em) {
  .Grid.-full {
    grid-template: "body body body body" auto ".    .    .    meta" auto/1fr 1fr 1fr 1fr;
  }
}

.Header {
  position: relative;
  padding-top: 2rem;
  display: grid;
  grid-template: "logo logo" auto ".    menu" auto/2rem 1fr;
  gap: 1rem 0;
}
.Header::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  border-top: 1px solid;
}
@media (min-width: 40em) {
  .Header {
    grid-template: "logo menu menu" auto/1fr 1fr 1fr;
    gap: 0 2rem;
  }
}
@media (min-width: 64em) {
  .Header {
    grid-template: "logo menu menu ." auto/1fr 1fr 1fr 1fr;
  }
}

.Header__divider {
  grid-area: divider;
  position: relative;
  padding-top: 2rem;
}
.Header__divider::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  border-top: 1px solid;
}

.Header__logo {
  grid-area: logo;
  font-weight: 600;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  font-size: 1.28571rem;
  line-height: 1.55556;
  letter-spacing: 0.0625em;
  margin-top: 0;
  margin-bottom: 0;
}

.Header__logo a {
  text-decoration: none;
}

.Header__icon {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  width: 1.5rem;
}

.Header__icon a {
  display: block;
  margin: -0.5rem;
  padding: 0.5rem;
}

.Header__icon img {
  vertical-align: top;
}

.Header__menu {
  --justify-content: flex-end;
  font-size: 0.9rem;
  line-height: 1.66667em;
  grid-area: menu;
}
@media (min-width: 40em) {
  .Header__menu {
    --justify-content: flex-start;
  }
}

.Header__menu summary {
  font-weight: 600;
  cursor: default;
  padding: 0.25rem 0.5rem;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 40em) {
  .Header__menu summary {
    margin-left: 0;
  }
}

.Header__menu summary:hover {
  background-color: #212121;
  color: white;
}

.Header__menu ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.Headline {
  font-weight: 400;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  font-size: 2.25rem;
  line-height: 1.33334;
  margin-top: 0;
  margin-bottom: 0;
}

.Headline__wrap {
  display: inline-block;
}

.Icon::after {
  display: inline-block;
  line-height: 0;
}

.Icon.-external::after {
  content: "→";
  font-family: "TazuganeGothicStdN-Book", sans-serif;
  font-weight: 350;
  margin-inline-start: 0.25em;
  transform: rotate(-45deg);
}

.List {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.List li {
  list-style-type: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.Pagination {
  font-weight: 600;
  font-weight: 700;
  display: flex;
  gap: 0.5rem;
  font-kerning: normal;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.Pagination a {
  width: 2.5rem;
  line-height: 1rem;
  padding-top: 0.8125rem;
  padding-bottom: 0.6875rem;
  box-shadow: inset 0 0 0 1px #212121;
  text-align: center;
  text-decoration: none;
  border-radius: 99em;
}

.Pagination a[aria-current=page] {
  background-color: #212121;
  color: white;
}

.Stack > * {
  margin-top: 0;
  margin-bottom: 0;
}

.Stack.-s1 > * + * {
  margin-top: 2rem;
}

.Stack.-s2 > * + * {
  margin-top: 4rem;
}

.Stack.-s3 > * + * {
  margin-top: 6rem;
}

.Stack.-s4 > * + * {
  margin-top: 10rem;
}

.Subhead {
  font-weight: 600;
  font-size: 1rem;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.Text {
  font-size: 1.125rem;
  line-height: 1.77778;
}

.Text:lang(en) {
  font-size: 1.18125rem;
  line-height: 1.693122;
}

.Text > p {
  margin-top: 0;
  margin-bottom: 0;
}

.Text > p + p {
  margin-top: 2rem;
}

.Text > p.-right {
  text-align: right;
}

.VisuallyHidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
