@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}
:where(html:has(dialog:modal[open])) {
  overflow: clip;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(button) {
  all: unset;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}
:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}
:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: none;
  max-width: initial;
  max-height: none;
  max-height: initial;
  overflow: visible;
  overflow: initial;
}
:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}
:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}
:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}
:root {
  --padding: 1.875rem;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-jp-min: "Zen Old Mincho", serif;
  --font-en: "EB Garamond", sans-serif;
  --color-mono1: #000;
  --color-mono2: #444;
  --color-mono3: #919191;
  --color-mono4: #b4b0b0;
  --color-mono5: #fff;
  --color-mono5-20: rgba(255, 255, 255, 0.2);
  --color-mono5-30: rgba(255, 255, 255, 0.3);
  --color-mono5-40: rgba(255, 255, 255, 0.4);
  --color-primary: #e76113;
  --color-foreground: #fff;
  --color-background: #0d0c0c;
  --icon-movie_play: "";
  --icon-chevron-up: "";
  --icon-chevron-down: "";
  --icon-chevron-left: "";
  --icon-chevron-right: "";
  --icon-pagetop: "";
  --icon-facebook: "";
  --icon-instagram: "";
  --icon-line: "";
  --icon-x: "";
  --icon-x2: "";
  --icon-youtube: "";
  --ease-none: linear;
  --ease-power1-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-power2-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-power3-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-power4-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-power1-in: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-power2-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-power3-in: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-power4-in: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-power1-inout: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-power2-inout: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-power3-inout: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-power4-inout: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease: var(--ease-power3-out);
  --duration-fast: 0.15s;
  --duration: 0.25s;
  --duration-slow: 1s;
}
html {
  scroll-behavior: auto;
}
body {
  line-height: 1.625;
  color: var(--color-foreground);
  background-color: var(--color-background);
  font-weight: 400;
  font-family: var(--font-jp);
}
@media only screen and (min-width: 750px) {
  body {
    line-height: 1.8125;
  }
}
:focus-visible,
:target {
  outline-width: 1px;
  outline-offset: 0;
  box-shadow: none;
}
:where(h1, h2, h3) {
  text-wrap: auto;
}
h1 {
  line-height: 1.5833333333;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  h1 {
    line-height: 1.8125;
    font-size: 2rem;
  }
}
h2 {
  line-height: 1.6111111111;
  font-weight: 700;
  font-size: 1.125rem;
}
@media only screen and (min-width: 750px) {
  h2 {
    line-height: 1.5909090909;
    font-size: 1.375rem;
  }
}
h3 {
  line-height: 1.4444444444;
  font-weight: 700;
  font-size: 1.125rem;
}
@media only screen and (min-width: 750px) {
  h3 {
    line-height: 1.7916666667;
    font-size: 1.5rem;
  }
}
a {
  text-decoration-color: var(--color-foreground);
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
a:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
picture {
  display: block;
}
button {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@font-face {
  font-family: "icon";
  src: url("../../assets/fonts/icon.ttf?jj0wem") format("truetype"), url("../../assets/fonts/icon.woff?jj0wem") format("woff"), url("../../assets/fonts/icon.svg?jj0wem#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  line-height: 1;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--icon-);
}
.icon-movie_play:before {
  content: var(--icon-movie_play);
}
.icon-chevron-up:before {
  content: var(--icon-chevron-up);
}
.icon-chevron-down:before {
  content: var(--icon-chevron-down);
}
.icon-chevron-left:before {
  content: var(--icon-chevron-left);
}
.icon-chevron-right:before {
  content: var(--icon-chevron-right);
}
.icon-pagetop:before {
  content: var(--icon-pagetop);
}
.icon-facebook:before {
  content: var(--icon-facebook);
}
.icon-instagram:before {
  content: var(--icon-instagram);
}
.icon-line:before {
  content: var(--icon-line);
}
.icon-x:before {
  content: var(--icon-x);
}
.icon-x2:before {
  content: var(--icon-x2);
}
.icon-youtube:before {
  content: var(--icon-youtube);
}
.content-root > :where(h2),
.content-flow > :where(h2) {
  padding: 0.5625rem 1rem 0.625rem;
  border-radius: 0.3125rem;
  background-color: var(--color-mono5-30);
}
@media only screen and (min-width: 750px) {
  .content-root > :where(h2),
  .content-flow > :where(h2) {
    padding: 0.6875rem 1.375rem 0.625rem;
  }
}
.content-root > :where(h2):where(:not(:first-child)),
.content-flow > :where(h2):where(:not(:first-child)) {
  margin-top: 2.5625rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(h2):where(:not(:first-child)),
  .content-flow > :where(h2):where(:not(:first-child)) {
    margin-top: 3.5rem;
  }
}
.content-root > :where(h2):where(:not(:last-child)),
.content-flow > :where(h2):where(:not(:last-child)) {
  margin-bottom: 1.4375rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(h2):where(:not(:last-child)),
  .content-flow > :where(h2):where(:not(:last-child)) {
    margin-bottom: 2rem;
  }
}
.content-root > :where(h3):where(:not(:first-child)),
.content-flow > :where(h3):where(:not(:first-child)) {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(h3):where(:not(:first-child)),
  .content-flow > :where(h3):where(:not(:first-child)) {
    margin-top: 1.5625rem;
  }
}
.content-root > :where(h3):where(:not(:last-child)),
.content-flow > :where(h3):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(h3):where(:not(:last-child)),
  .content-flow > :where(h3):where(:not(:last-child)) {
    margin-bottom: 1rem;
  }
}
.content-root > :where(p):where(:not(:last-child)),
.content-flow > :where(p):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(p):where(:not(:last-child)),
  .content-flow > :where(p):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
.content-root > :where(ul),
.content-flow > :where(ul) {
  border-radius: 0.3125rem;
}
.content-root > :where(ul):where(:not(:last-child)),
.content-flow > :where(ul):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ul):where(:not(:last-child)),
  .content-flow > :where(ul):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
.content-root > :where(ul) > :where(li),
.content-flow > :where(ul) > :where(li) {
  padding-left: 1.625rem;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ul) > :where(li),
  .content-flow > :where(ul) > :where(li) {
    padding-left: 1.6875rem;
  }
}
.content-root > :where(ul) > :where(li):before,
.content-flow > :where(ul) > :where(li):before {
  border-radius: 9999px;
  position: absolute;
  top: 0.625em;
  left: 0.375em;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: var(--color-primary);
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ul) > :where(li):before,
  .content-flow > :where(ul) > :where(li):before {
    top: 0.6875rem;
    left: 0.4375rem;
  }
}
.content-root > :where(ul):where(:not(:last-child)),
.content-flow > :where(ul):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ul):where(:not(:last-child)),
  .content-flow > :where(ul):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
ul.list--separated > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  ul.list--separated > li:not(:last-child) {
    margin-bottom: 1.5625rem;
  }
}
ul.notes > li {
  padding-left: 1em;
  position: relative;
  line-height: 1.5714285714;
  font-size: 0.875rem;
}
@media only screen and (min-width: 750px) {
  ul.notes > li {
    line-height: 1.7857142857;
  }
}
ul.notes > li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  content: "※";
  background-color: transparent;
}
ul.notes.is-large > li {
  line-height: 1.625;
  font-size: 1rem;
}
@media only screen and (min-width: 750px) {
  ul.notes.is-large > li {
    line-height: 1.8125;
  }
}
.content-root > :where(ol),
.content-flow > :where(ol) {
  border-radius: 0.3125rem;
  counter-reset: ol;
}
.content-root > :where(ol):where(:not(:last-child)),
.content-flow > :where(ol):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ol):where(:not(:last-child)),
  .content-flow > :where(ol):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
.content-root > :where(ol) > :where(li),
.content-flow > :where(ol) > :where(li) {
  padding-left: 0.9375rem;
  position: relative;
  counter-increment: ol;
}
.content-root > :where(ol) > :where(li):before,
.content-flow > :where(ol) > :where(li):before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(ol) ".";
}
.content-root > :where(ol):where(:not(:last-child)),
.content-flow > :where(ol):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(ol):where(:not(:last-child)),
  .content-flow > :where(ol):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
.content-root > :where(dl):where(:not(:last-child)),
.content-flow > :where(dl):where(:not(:last-child)) {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(dl):where(:not(:last-child)),
  .content-flow > :where(dl):where(:not(:last-child)) {
    margin-bottom: 1.5625rem;
  }
}
.content-root > :where(dl) > dt,
.content-flow > :where(dl) > dt {
  line-height: 1.8125;
  color: var(--color-primary);
  font-weight: 700;
}
.content-root > :where(dl) > dd,
.content-flow > :where(dl) > dd {
  line-height: 1.8125;
}
.content-root > :where(dl) > dt:has(+ dd > span),
.content-flow > :where(dl) > dt:has(+ dd > span) {
  margin-bottom: 0.625rem;
  line-height: 1.625;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(dl) > dt:has(+ dd > span),
  .content-flow > :where(dl) > dt:has(+ dd > span) {
    margin-bottom: 0.1875rem;
  }
}
.content-root > :where(dl) > dd:has(> span),
.content-flow > :where(dl) > dd:has(> span) {
  display: flex;
  line-height: 1.625;
  flex-direction: column;
  row-gap: 0.625rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(dl) > dd:has(> span),
  .content-flow > :where(dl) > dd:has(> span) {
    row-gap: 0.1875rem;
  }
}
.buttons {
  display: flex;
  justify-content: center;
}
.buttons > .button {
  flex: 0 0 auto;
}
.button .button__link {
  padding: 0.375rem 0 0.5rem;
  border-bottom: 0.0625rem solid var(--color-foreground);
  display: flex;
  align-items: center;
  -moz-column-gap: 0.4375rem;
       column-gap: 0.4375rem;
  position: relative;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media only screen and (min-width: 750px) {
  .button .button__link {
    padding-bottom: 0.375rem;
    -moz-column-gap: 0.6875rem;
         column-gap: 0.6875rem;
    letter-spacing: 0;
  }
}
.button .button__link:before {
  line-height: 1;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--icon-chevron-right);
  order: 2;
  position: relative;
  top: 0.1875em;
  font-size: 0.5625rem;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button .button__link:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-primary);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button .button__link .button__link__label {
  line-height: 1;
}
.button a.button__link,
.button button.button__link {
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.button a.button__link:hover,
.button button.button__link:hover {
  color: var(--color-primary);
}
.button a.button__link:hover:before,
.button button.button__link:hover:before {
  color: var(--color-primary);
  transform: translateX(25%);
}
.button a.button__link:hover:after,
.button button.button__link:hover:after {
  transform-origin: left;
  transform: scaleX(1);
}
.button--next .button__link {
  -moz-column-gap: 0.5625rem;
       column-gap: 0.5625rem;
}
.button--next .button__link:before {
  top: 0.3125em;
  content: var(--icon-chevron-right);
}
.button--next a.button__link:hover:before,
.button--next button.button__link:hover:before {
  transform: translateX(25%);
}
.button--back .button__link:before {
  order: revert;
  content: var(--icon-chevron-left);
}
.button--back a.button__link:hover:before,
.button--back button.button__link:hover:before {
  transform: translateX(-25%);
}
.buttons.button--compact {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
.buttons.button--compact .button .button__link,
.button.button--compact .button__link {
  padding: 0.5625rem 0.625rem;
  border: 0.0625rem solid var(--color-foreground);
  border-radius: 0.3125rem;
  background-color: transparent;
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 750px) {
  .buttons.button--compact .button .button__link,
  .button.button--compact .button__link {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}
.buttons.button--compact .button .button__link:before, .buttons.button--compact .button .button__link:after,
.button.button--compact .button__link:before,
.button.button--compact .button__link:after {
  content: none;
}
.buttons.button--compact .button a.button__link:hover,
.button.button--compact a.button__link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.buttons.button--primary .button,
.button.button--primary {
  flex: 1 1 100%;
  width: 100%;
  max-width: 23.75rem;
}
.buttons.button--primary .button .button__link,
.button.button--primary .button__link {
  padding: 1.5625rem 0.625rem 1.4375rem;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 0.3125rem;
  background-color: transparent;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-foreground);
  background-color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.buttons.button--primary .button .button__link:before, .buttons.button--primary .button .button__link:after,
.button.button--primary .button__link:before,
.button.button--primary .button__link:after {
  content: none;
}
.buttons.button--primary .button a.button__link:hover,
.button.button--primary a.button__link:hover {
  color: var(--color-primary);
  background-color: transparent;
}
.content-root > :where(figure):where(:not(:first-child)),
.content-flow > :where(figure):where(:not(:first-child)),
.content-root > :where(picture):where(:not(:first-child)),
.content-flow > :where(picture):where(:not(:first-child)),
.content-root > :where(img):where(:not(:first-child)),
.content-flow > :where(img):where(:not(:first-child)) {
  margin-top: 2.0625rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(figure):where(:not(:first-child)),
  .content-flow > :where(figure):where(:not(:first-child)),
  .content-root > :where(picture):where(:not(:first-child)),
  .content-flow > :where(picture):where(:not(:first-child)),
  .content-root > :where(img):where(:not(:first-child)),
  .content-flow > :where(img):where(:not(:first-child)) {
    margin-top: 2.5rem;
  }
}
.content-root > :where(figure):where(:not(:last-child)),
.content-flow > :where(figure):where(:not(:last-child)),
.content-root > :where(picture):where(:not(:last-child)),
.content-flow > :where(picture):where(:not(:last-child)),
.content-root > :where(img):where(:not(:last-child)),
.content-flow > :where(img):where(:not(:last-child)) {
  margin-bottom: 2.0625rem;
}
@media only screen and (min-width: 750px) {
  .content-root > :where(figure):where(:not(:last-child)),
  .content-flow > :where(figure):where(:not(:last-child)),
  .content-root > :where(picture):where(:not(:last-child)),
  .content-flow > :where(picture):where(:not(:last-child)),
  .content-root > :where(img):where(:not(:last-child)),
  .content-flow > :where(img):where(:not(:last-child)) {
    margin-bottom: 2.5rem;
  }
}
.content-root > :where(figure) iframe,
.content-root > :where(figure) video,
.content-root > :where(figure) img,
.content-flow > :where(figure) iframe,
.content-flow > :where(figure) video,
.content-flow > :where(figure) img,
.content-root > :where(picture) iframe,
.content-root > :where(picture) video,
.content-root > :where(picture) img,
.content-flow > :where(picture) iframe,
.content-flow > :where(picture) video,
.content-flow > :where(picture) img,
.content-root > :where(img) iframe,
.content-root > :where(img) video,
.content-root > :where(img) img,
.content-flow > :where(img) iframe,
.content-flow > :where(img) video,
.content-flow > :where(img) img {
  margin: auto;
  max-width: 100%;
}
.content-root > :where(figure) iframe,
.content-flow > :where(figure) iframe,
.content-root > :where(picture) iframe,
.content-flow > :where(picture) iframe,
.content-root > :where(img) iframe,
.content-flow > :where(img) iframe {
  border: 0;
}
.content-root > :where(figure:has(iframe)),
.content-flow > :where(figure:has(iframe)),
.content-root > :where(figure:has(video)),
.content-flow > :where(figure:has(video)) {
  aspect-ratio: 16/9;
}
.content-root > :where(figure:has(iframe)) iframe,
.content-root > :where(figure:has(iframe)) video,
.content-flow > :where(figure:has(iframe)) iframe,
.content-flow > :where(figure:has(iframe)) video,
.content-root > :where(figure:has(video)) iframe,
.content-root > :where(figure:has(video)) video,
.content-flow > :where(figure:has(video)) iframe,
.content-flow > :where(figure:has(video)) video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.youtube {
  position: relative;
}
.youtube .youtube__frame {
  aspect-ratio: 16/9;
}
.youtube .youtube__frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.youtube .youtube__cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.youtube .youtube__cover:before {
  line-height: 1;
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--icon-);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 2.1875rem;
  height: 2.1875rem;
  content: var(--icon-movie_play);
  color: var(--color-mono6);
  font-size: 2.1875rem;
  transform: translate(-50%, -50%);
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
@media only screen and (min-width: 750px) {
  .youtube .youtube__cover:before {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 6.25rem;
  }
}
.youtube .youtube__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.youtube .youtube__cover:hover:before {
  color: var(--color-primary);
}
.youtube figcaption {
  margin-top: 1.3125rem;
  display: block;
  line-height: 1.5;
  color: var(--color-mono5);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (min-width: 750px) {
  .youtube figcaption {
    margin-top: 2rem;
  }
}
.youtube.is-active .youtube__cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.post-type {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
@media only screen and (min-width: 750px) {
  .post-type {
    padding-top: 1.0625rem;
    padding-bottom: 0;
    padding-left: var(--padding);
    align-items: flex-start;
    justify-content: flex-start;
    justify-self: flex-start;
  }
}
.post-type img {
  transform-origin: bottom left;
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 750px) {
  .post-type img {
    transform: rotate(90deg) scale(1.4952380952);
  }
}
.post-container {
  padding-top: 2.3125rem;
}
@media only screen and (min-width: 750px) {
  .post-container {
    padding-top: 2.4375rem;
  }
}
.post-content {
  margin-bottom: 2.5625rem;
}
@media only screen and (min-width: 750px) {
  .post-content {
    margin-bottom: 3.625rem;
  }
}
.post-footer {
  padding-bottom: 6rem;
}
@media only screen and (min-width: 750px) {
  .post-footer {
    padding-bottom: 7.5rem;
  }
}
.post-header {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 750px) {
  .post-header {
    margin-bottom: 2.0625rem;
  }
}
.post-header .post-header__date {
  margin-bottom: 0.3125rem;
  display: block;
  color: var(--color-mono3);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-header .post-header__date {
    margin-bottom: 0.5rem;
  }
}
.post-header .post-header__title {
  padding-bottom: 0.9375rem;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .post-header .post-header__title {
    padding-bottom: 1rem;
  }
}
.post-header .post-header__title:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-primary);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--color-mono5-30);
  transform: scaleX(1);
}
.post-header:has(.post-header__meta) .post-header__meta {
  margin-bottom: 0.625rem;
  padding-top: 0.5625rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media only screen and (min-width: 750px) {
  .post-header:has(.post-header__meta) .post-header__meta {
    margin-bottom: 0.75rem;
    padding-top: 0.375rem;
  }
}
.post-header:has(.post-header__meta) .post-header__meta .post-header__date {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  line-height: 1;
  color: var(--color-foreground);
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-header:has(.post-header__meta) .post-header__meta .post-header__date {
    flex-direction: row;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    align-items: end;
  }
}
.post-header:has(.post-header__meta) .post-header__meta .post-header__date .md {
  line-height: 1;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}
.post-archive {
  margin-bottom: 1.4375rem;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .post-archive {
    margin-top: 0.5rem;
    padding-bottom: 0;
  }
}
.post-archive .post-archive__track {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  display: flex;
}
.post-archive .post-archive__track .post-archive__item {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  flex: 0 0 auto;
}
.post-archive .post-archive__track .post-archive__item .post-archive__item__link {
  padding: 0.4375rem 0.75rem;
  border-radius: 0.125rem;
  display: block;
  line-height: 1;
  color: var(--color-mono3);
  background-color: var(--color-mono2);
  font-weight: 700;
  text-decoration: none;
}
.post-archive .post-archive__track .post-archive__item.is-active .post-archive__item__link {
  color: var(--color-foreground);
  background-color: var(--color-primary);
}
.post-filter {
  margin-bottom: 3.125rem;
  padding-bottom: 0.125rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 750px) {
  .post-filter {
    margin-top: 0.5rem;
    padding-bottom: 0;
  }
}
.post-filter .post-filter__track {
  display: flex;
}
.post-filter .post-filter__track .post-filter__item {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
  flex: 0 0 auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.post-filter .post-filter__track .post-filter__item:nth-child(1) {
  margin-left: 0;
}
.post-filter .post-filter__track .post-filter__item .post-filter__item__link {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.post-filter .post-filter__track .post-filter__item .post-filter__item__link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-primary);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post-filter .post-filter__track .post-filter__item.is-active .post-filter__item__link:before {
  transform-origin: left;
  transform: scaleX(1);
}
.post-list {
  margin-top: -1rem;
  border-top: 1px solid var(--color-mono5-30);
  display: grid;
  grid-template-columns: min-content minmax(0, 1fr);
}
@media only screen and (min-width: 750px) {
  .post-list {
    margin-top: -1.25rem;
    padding-top: 0.3125rem;
    border-top-width: 0;
  }
}
.post-list .post-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  transition: grid-template-rows 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post-list .post-item .post-item__inner {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  overflow: hidden;
}
.post-list .post-item .post-item__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-mono5-30);
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  grid-row-gap: 0.4375rem;
  row-gap: 0.4375rem;
  grid-column-gap: 1.9375rem;
  -moz-column-gap: 1.9375rem;
       column-gap: 1.9375rem;
}
@media only screen and (min-width: 750px) {
  .post-list .post-item .post-item__content {
    padding-bottom: 1.4375rem;
    align-items: start;
    row-gap: 0.625rem;
    -moz-column-gap: 1.4375rem;
         column-gap: 1.4375rem;
  }
}
.post-list .post-item .post-item__content .post-item__date {
  position: relative;
  grid-row: span 2;
  align-self: stretch;
}
.post-list .post-item .post-item__content .post-item__date:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0.3125rem;
  width: 0.0625rem;
  background-color: var(--color-mono5-30);
}
@media only screen and (min-width: 750px) {
  .post-list .post-item .post-item__content .post-item__date:after {
    content: "";
  }
}
.post-list .post-item .post-item__content .post-item__date time {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  row-gap: 0.5rem;
  line-height: 1;
  color: var(--color-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-list .post-item .post-item__content .post-item__date time {
    padding-top: 0.4375rem;
    padding-right: 1.625rem;
    padding-left: 0.5rem;
    flex-direction: row;
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    align-items: end;
  }
}
.post-list .post-item .post-item__content .post-item__date time .md {
  margin-bottom: 0.125rem;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-list .post-item .post-item__content .post-item__date time .md {
    margin-bottom: auto;
    font-size: 1.375rem;
  }
}
.post-list .post-item .post-item__content .post-item__categories {
  grid-row: 1;
  grid-column: 2;
}
.post-list .post-item .post-item__content .post-item__title {
  grid-row: 2;
  grid-column: 2;
  line-height: 1.625;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-list .post-item .post-item__content .post-item__title {
    line-height: 1.8125;
  }
}
.post-list .post-item a.post-item__content {
  text-decoration: none;
}
.post-list .post-item a.post-item__content .post-item__title {
  text-decoration: underline;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), text-decoration-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post-list .post-item a.post-item__content:hover .post-item__title {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
.post-list .post-no-entry {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: none;
  grid-column: 1/-1;
  text-align: center;
}
.post-list.is-ready .post-no-entry {
  display: block;
}
.post-filter ~ .post-list .post-item,
.post-archive ~ .post-list .post-item {
  grid-template-rows: 0fr;
}
.post-filter ~ .post-list .post-item[data-filtered-by-year=true][data-filtered-by-tag=true],
.post-archive ~ .post-list .post-item[data-filtered-by-year=true][data-filtered-by-tag=true] {
  grid-template-rows: 1fr;
}
.post-filter ~ .post-list .post-item[data-filtered-by-year=true][data-filtered-by-tag=true] ~ .post-no-entry,
.post-archive ~ .post-list .post-item[data-filtered-by-year=true][data-filtered-by-tag=true] ~ .post-no-entry {
  display: none;
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content {
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem;
  row-gap: 0.4375rem;
  -moz-column-gap: 2.4375rem;
       column-gap: 2.4375rem;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content {
    padding-top: 1.5rem;
    padding-right: 0.5rem;
    grid-template-rows: auto auto 1fr;
    grid-template-columns: auto minmax(0, 1fr) 8.125rem;
    row-gap: 0.8125rem;
    -moz-column-gap: 1.4375rem;
         column-gap: 1.4375rem;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__date {
  padding-top: 0.375rem;
  grid-row: span 4;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__date {
    padding-top: 0;
    grid-row: span 3;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__date time {
  padding-right: 1.1875rem;
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__categories {
  margin-bottom: 0.3125rem;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__categories {
    margin-bottom: 0;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__categories .tags .tag {
  padding: 0.375rem 0.625rem 0.3125rem;
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__title {
  line-height: 1.6111111111;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__title {
    line-height: 1.6;
    font-size: 1.25rem;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt {
  margin-bottom: 0.3125rem;
  grid-row: 3;
  grid-column: 2;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt {
    margin-bottom: 0;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt > p {
  margin-bottom: 0.8125rem;
  line-height: 1.6;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt > p:first-child {
    padding-top: 0.125rem;
    line-height: 1.8125;
    font-size: 1rem;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt .buttons {
  margin-top: 0.3125rem;
  justify-content: flex-start;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt .buttons {
    margin-top: 0;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt .buttons .button .button__link {
  padding-top: 0.125rem;
  padding-bottom: 0.375rem;
  -moz-column-gap: 0.6875rem;
       column-gap: 0.6875rem;
  letter-spacing: 0;
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__excerpt .buttons .button .button__link:before {
  top: 0.4375em;
  font-size: 0.5rem;
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__thumbnail {
  margin-top: 0.75rem;
  grid-row: 4;
  grid-column: 2;
}
@media only screen and (min-width: 750px) {
  .post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__thumbnail {
    margin-top: 0;
    grid-row: 1/span 3;
    grid-column: 3;
  }
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__thumbnail figure {
  width: 8.125rem;
  aspect-ratio: 1/1;
  background-color: var(--color-mono5-20);
}
.post-list:has(.post-item__thumbnail) .post-item .post-item__content .post-item__thumbnail figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-list:has(.post-item__thumbnail) .post-item a.post-item__content:hover .post-item__excerpt .buttons .button .button__link:before {
  transform: translateX(25%);
}
.post-list:has(.post-item__thumbnail) .post-item a.post-item__content:hover .post-item__excerpt .buttons .button .button__link:after {
  transform-origin: left;
  transform: scaleX(1);
}
.post-list.post-list--discography {
  border-top-width: 0;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 3.25rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography {
    row-gap: 4.375rem;
    grid-template-columns: min-content minmax(0, 1fr);
  }
}
.post-list.post-list--discography .post-item {
  grid-template-rows: 1fr;
  grid-column: 1;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item {
    grid-column: span 2;
  }
}
.post-list.post-list--discography .post-item .post-item__inner {
  grid-column: 1;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__inner {
    grid-column: span 2;
  }
}
.post-list.post-list--discography .post-item .post-item__content {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
  row-gap: 0.8125rem;
  grid-column: 1;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content {
    padding-right: 0;
    grid-template-rows: auto;
    grid-template-columns: max-content minmax(0, 1fr);
    grid-column: span 2;
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__thumbnail {
  grid-row: auto;
  grid-column: auto;
  justify-self: center;
  width: 20rem;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__thumbnail figure {
  width: auto;
  aspect-ratio: 1/1;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 23.75rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info {
    align-items: flex-start;
    justify-content: flex-start;
    justify-self: flex-start;
    max-width: none;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date {
  margin-bottom: 0.5625rem;
  align-self: auto;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date {
    margin-bottom: 0.25rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date:after {
  content: none;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date time {
  flex-direction: row;
  row-gap: 0;
  color: var(--color-foreground);
  font-size: 1rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date time {
    padding-top: 0;
    padding: 0;
    font-size: 1.25rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date time > * {
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date time > * {
    font-size: 1.25rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__date time .md {
  margin-right: 0.1875em;
  font-weight: inherit;
  font-size: inherit;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__title {
  margin-bottom: 0.8125rem;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__title {
    margin-bottom: 1.0625rem;
    font-size: 1.25rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__title span {
  font-weight: 700;
  font-size: 1.75rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__title span {
    font-size: 2rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links {
    row-gap: 1.5625rem;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons .button .button__link {
  justify-content: center;
  letter-spacing: 0;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons.button--compact {
  justify-content: flex-start;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons.button--compact .button {
  width: 100%;
  max-width: 9.375rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons.button--compact .button {
    width: auto;
    max-width: none;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons.button--primary {
  justify-content: flex-start;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__links .buttons.button--primary .button {
    width: clamp(19.6875rem, 100%, 23.75rem);
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs {
  margin-top: 1.25rem;
  padding: 0.9375rem 1.4375rem 1.125rem;
  border: 0.0625rem solid var(--color-mono5-40);
  border-radius: 0.3125rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs {
    margin-top: 1.5625rem;
    padding-bottom: 0.8125rem;
    width: 100%;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs .post-item__songs__title {
  margin-bottom: 0.0625rem;
  line-height: 1.7857142857;
  color: var(--color-primary);
  font-size: 0.875rem;
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs ol {
  display: flex;
  flex-direction: column;
  row-gap: 0.125rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs ol {
    row-gap: 0;
  }
}
.post-list.post-list--discography .post-item .post-item__content .post-item__info .post-item__songs ol li {
  font-size: 0.875rem;
}
.post-list.post-list--compact {
  border-top-width: 0;
  grid-template-columns: minmax(0, 1fr);
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact {
    margin-top: -0.625rem;
    padding-top: 0;
    grid-template-columns: min-content minmax(0, 1fr);
  }
}
.post-list.post-list--compact .post-item {
  grid-column: 1;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact .post-item {
    grid-column: span 2;
  }
}
.post-list.post-list--compact .post-item .post-item__inner {
  grid-column: 1;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact .post-item .post-item__inner {
    grid-column: span 2;
  }
}
.post-list.post-list--compact .post-item .post-item__content {
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact .post-item .post-item__content {
    padding-top: 1.1875rem;
    padding-bottom: 1rem;
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
}
.post-list.post-list--compact .post-item .post-item__content .post-item__date {
  grid-row: auto;
  align-self: start;
}
.post-list.post-list--compact .post-item .post-item__content .post-item__date:after {
  content: none;
}
.post-list.post-list--compact .post-item .post-item__content .post-item__date time {
  flex-direction: row;
  row-gap: 0;
  color: var(--color-mono3);
  font-size: 1rem;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact .post-item .post-item__content .post-item__date time {
    padding-top: 0.4375rem;
    padding-right: 0;
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.post-list.post-list--compact .post-item .post-item__content .post-item__date time .md {
  margin-bottom: 0;
  font-weight: inherit;
  font-size: inherit;
}
@media only screen and (min-width: 750px) {
  .post-list.post-list--compact .post-item .post-item__content .post-item__date {
    margin-bottom: 0;
  }
}
.post-list.post-list--compact .post-item .post-item__content .post-item__title {
  grid-row: auto;
  grid-column: auto;
}
.tags {
  display: flex;
  gap: 0.25rem;
}
.tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.125rem;
  line-height: 1;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-foreground);
  background-color: var(--color-mono5-30);
  letter-spacing: 0;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  pointer-events: none;
  background-color: #000;
}
.bg .bg__track {
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg_sp.png) no-repeat 0 0/cover;
}
@media only screen and (min-width: 750px) {
  .bg .bg__track {
    background-image: url(../../assets/images/bg.png);
  }
}
header.header {
  position: sticky;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
header.header .header__content {
  padding: 0.9375rem 1.125rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 960px) {
  header.header .header__content {
    padding: 2rem 2.8125rem;
  }
}
header.header .header__logo {
  position: relative;
  z-index: 1;
  width: 3.625rem;
  aspect-ratio: 60/48;
  pointer-events: all;
}
@media only screen and (min-width: 960px) {
  header.header .header__logo {
    padding-top: 0.3125rem;
    width: 6.875rem;
  }
}
header.header .header__nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 960px) {
  header.header .header__nav {
    position: relative;
    height: auto;
    background: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
header.header .header__nav:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../../assets/images/menu_sp_bg.png) no-repeat 0 0/cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity var(--duration-slow) cubic-bezier(0.165, 0.84, 0.44, 1), transform var(--duration-slow) cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 960px) {
  header.header .header__nav:before {
    content: none;
  }
}
header.header .header__nav .header__nav__track {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
}
header.header .header__nav .header__nav__items {
  padding-top: 5.75rem;
  padding-bottom: 5.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.0625rem;
}
@media only screen and (min-width: 960px) {
  header.header .header__nav .header__nav__items {
    padding-top: 0;
    padding-right: 0.9375rem;
    flex-direction: row;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
header.header .header__nav .header__nav__items .header__nav__item {
  line-height: 2;
  opacity: 0;
  transform: translateY(50%);
  transition: opacity var(--duration) cubic-bezier(0.165, 0.84, 0.44, 1), transform var(--duration) cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 960px) {
  header.header .header__nav .header__nav__items .header__nav__item {
    opacity: 1;
    transform: translateY(0);
  }
}
header.header .header__nav .header__nav__items .header__nav__item .header__nav__item__link {
  display: block;
  position: relative;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 960px) {
  header.header .header__nav .header__nav__items .header__nav__item .header__nav__item__link {
    line-height: 1.5;
    font-size: 0.875rem;
  }
}
header.header .header__nav .header__nav__items .header__nav__item .header__nav__item__link:before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-primary);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header.header .header__nav .header__nav__items .header__nav__item .header__nav__item__link:hover {
  color: var(--color-primary);
}
header.header .header__nav .header__nav__items .header__nav__item .header__nav__item__link:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}
header.header .header__nav .header__nav__items .header__nav__item.is-active .header__nav__item__link {
  color: var(--color-primary);
}
header.header .header__handle {
  position: absolute;
  right: 0;
  top: 0;
  width: 4.75rem;
  aspect-ratio: 76/48;
  pointer-events: all;
}
@media only screen and (min-width: 960px) {
  header.header .header__handle {
    display: none;
  }
}
header.header .header__handle .header__handle__button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
header.header .header__handle .header__handle__button:before, header.header .header__handle .header__handle__button:after {
  position: absolute;
  bottom: 50%;
  right: 1.25rem;
  left: 1.25rem;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-foreground);
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header.header .header__handle .header__handle__button:before {
  transform: translateY(-0.3125rem);
}
header.header .header__handle .header__handle__button:after {
  transform: translateY(0.3125rem);
}
header.header:not(.is-active) .header__handle .header__handle__button:hover:before {
  transform: translateY(-0.625rem);
}
header.header:not(.is-active) .header__handle .header__handle__button:hover:after {
  transform: translateY(0.625rem);
}
header.header.is-active .header__nav {
  opacity: 1;
  pointer-events: all;
}
header.header.is-active .header__nav:before {
  opacity: 1;
  transform: scale(1);
  transition-duration: var(--duration-slow), 20s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item {
  opacity: 1;
  transform: translateY(0);
  transition-duration: var(--duration-slow);
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(1) {
  transition-delay: 0.04s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(2) {
  transition-delay: 0.08s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(3) {
  transition-delay: 0.12s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(4) {
  transition-delay: 0.16s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(5) {
  transition-delay: 0.2s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(6) {
  transition-delay: 0.24s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(7) {
  transition-delay: 0.28s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(8) {
  transition-delay: 0.32s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(9) {
  transition-delay: 0.36s;
}
header.header.is-active .header__nav .header__nav__items .header__nav__item:nth-child(10) {
  transition-delay: 0.4s;
}
header.header.is-active .header__handle .header__handle__button:before {
  transform: rotate(45deg);
}
header.header.is-active .header__handle .header__handle__button:after {
  transform: rotate(-45deg);
}
header.header.is-active .header__handle .header__handle__button:hover:before, header.header.is-active .header__handle .header__handle__button:hover:after {
  background-color: var(--color-primary);
}
footer.footer {
  background: var(--color-mono1);
}
footer.footer .footer__content {
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 3.125rem;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__content {
    padding-top: 4.5rem;
    padding-bottom: 1.875rem;
    flex-direction: row;
    justify-content: center;
    row-gap: 4.5625rem;
  }
}
footer.footer .footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.4375rem;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__links {
    -moz-column-gap: 1.375rem;
         column-gap: 1.375rem;
    flex-direction: row;
  }
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__links .footer__links__sns {
    margin-right: 1.75rem;
    display: flex;
    align-items: center;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__title {
  margin-bottom: 0.125rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__links .footer__links__sns .footer__links__sns__title {
    margin-bottom: 0;
    padding-top: 0.125rem;
    font-weight: 500;
    font-size: 1.25rem;
  }
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__items {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__items .footer__links__sns__item {
  font-size: 3.125rem;
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__items .footer__links__sns__item .footer__links__sns__item__link {
  display: block;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__items .footer__links__sns__item .footer__links__sns__item__link [class^=icon-] {
  display: block;
}
footer.footer .footer__links .footer__links__sns .footer__links__sns__items .footer__links__sns__item .footer__links__sns__item__link:hover {
  color: var(--color-primary);
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__links .footer__links__contact {
    padding-bottom: 0.25rem;
    padding-left: 1.5rem;
    border-left: 1px solid #717171;
  }
}
footer.footer .footer__links .footer__links__contact .footer__links__contact__link {
  display: block;
  line-height: 1;
  font-size: 0.875rem;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__links .footer__links__contact .footer__links__contact__link {
    font-size: 1rem;
  }
}
footer.footer .footer__copyright {
  font-weight: 400;
  font-size: 0.875rem;
  color: #676767;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__copyright {
    flex: 1 0 100%;
    text-align: center;
  }
}
footer.footer .footer__copyright img {
  margin: auto;
  aspect-ratio: 108.75/19;
  width: 6.8125rem;
}
footer.footer .footer__share {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  position: fixed;
  bottom: 1.875rem;
  left: 0;
  z-index: 90;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__share {
    bottom: 3.125rem;
    row-gap: 1.3125rem;
  }
}
footer.footer .footer__share .footer__share__title {
  padding-left: 0.1875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.75rem;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__share .footer__share__title {
    padding-left: 0.25rem;
    row-gap: 0.5rem;
  }
}
footer.footer .footer__share .footer__share__title:before {
  position: relative;
  right: 0.125rem;
  width: 0.0625rem;
  height: 1.875rem;
  content: "";
  background-color: var(--color-mono4);
}
footer.footer .footer__share .footer__share__title img {
  width: 0.70625rem;
  aspect-ratio: 11.3/31.85;
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__share .footer__share__title img {
    width: 0.8125rem;
  }
}
footer.footer .footer__share .footer__share__items {
  display: flex;
  flex-direction: column;
  row-gap: 0.0625rem;
}
footer.footer .footer__share .footer__share__items .footer__share__item .footer__share__item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  aspect-ratio: 1/1;
  color: var(--color-background);
  background-color: var(--color-mono4);
  font-size: 1.875rem;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__share .footer__share__items .footer__share__item .footer__share__item__link {
    width: 2.5rem;
    font-size: 2.5rem;
  }
}
footer.footer .footer__share .footer__share__items .footer__share__item .footer__share__item__link:hover {
  color: var(--color-foreground);
  background-color: var(--color-primary);
}
footer.footer .footer__pagetop {
  padding-bottom: 0.0625rem;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1.875rem;
  right: 1rem;
  z-index: 90;
  width: 3.125rem;
  height: 3.125rem;
  color: var(--color-primary);
  font-size: 0.9375rem;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (min-width: 750px) {
  footer.footer .footer__pagetop {
    right: 1.875rem;
  }
}
footer.footer .footer__pagetop:hover {
  color: var(--color-background);
  background-color: var(--color-primary);
}
.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: display 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-behavior: allow-discrete;
}
.modal:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background: var(--color-mono1);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal .modal__content {
  padding-right: var(--padding);
  padding-left: var(--padding);
  width: 100%;
  max-width: 60rem;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal .modal__close {
  position: fixed;
  top: 0;
  right: 0;
  width: 6.25rem;
  height: 6.25rem;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
@media only screen and (min-width: 750px) {
  .modal .modal__close {
    width: 8.75rem;
    height: 8.75rem;
  }
}
.modal .modal__close:before, .modal .modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.375rem;
  height: 0.0625rem;
  content: "";
  background-color: var(--color-mono5);
  transition: background-color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal .modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal__close:hover:before, .modal .modal__close:hover:after {
  background-color: var(--color-primary);
}
.modal.is-active {
  display: flex;
}
.modal.is-active:before {
  opacity: 1;
}
@starting-style {
  .modal.is-active:before {
    opacity: 0;
  }
}
.modal.is-active .modal__content {
  opacity: 1;
  transform: scale(1);
}
@starting-style {
  .modal.is-active .modal__content {
    opacity: 0;
    transform: scale(1.02);
  }
}
.modal.is-active .modal__close {
  opacity: 1;
  pointer-events: all;
}
@starting-style {
  .modal.is-active .modal__close {
    opacity: 0;
  }
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
.main {
  min-height: 100vh;
  overflow: hidden;
}
@media only screen and (min-width: 750px) {
  .main .layout {
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    max-width: 73.75rem;
    align-items: start;
  }
}
.content-root {
  padding-right: var(--padding);
  padding-left: var(--padding);
}
.content-root > *:not(.content-full) {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
}
.content-full {
  margin-right: calc(var(--padding) * -1);
  margin-left: calc(var(--padding) * -1);
  max-width: none;
}
.content-flow.is-border {
  border: 0.0625rem solid var(--color-mono5-40);
  border-radius: 0.3125rem;
  padding: 1.0625rem 1.1875rem 1.25rem;
}
@media only screen and (min-width: 750px) {
  .content-flow.is-border {
    padding: 1.5rem 1.875rem 1.5625rem;
  }
}
.content-flow:where(:not(:first-child)) {
  margin-top: 1.4375rem;
}
@media only screen and (min-width: 750px) {
  .content-flow:where(:not(:first-child)) {
    margin-top: 2rem;
  }
}
.content-flow:where(:not(:last-child)) {
  margin-bottom: 1.4375rem;
}
@media only screen and (min-width: 750px) {
  .content-flow:where(:not(:last-child)) {
    margin-bottom: 2rem;
  }
}
h2 + .content-flow:not(#any) {
  margin-top: -0.4375rem;
}
@media only screen and (min-width: 750px) {
  h2 + .content-flow:not(#any) {
    margin-top: -1rem;
  }
}
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
@media only screen and (min-width: 750px) {
  .sp-only {
    display: none;
  }
}
.pc-only {
  display: none;
}
@media only screen and (min-width: 750px) {
  .pc-only {
    display: revert;
  }
}
.align-left {
  margin-right: auto;
}
.align-center {
  margin-right: auto;
  margin-left: auto;
}
.align-right {
  margin-left: auto;
}
.align-full {
  margin-right: calc(var(--padding) * -1);
  margin-left: calc(var(--padding) * -1);
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.main:has(.home-mv:first-child) {
  margin-top: -1.75rem;
}
@media only screen and (min-width: 960px) {
  .main:has(.home-mv:first-child) {
    margin-top: -4.6875rem;
  }
}
.home-mv {
  margin-bottom: -10.9333333333vw;
}
@media only screen and (min-width: 750px) {
  .home-mv {
    margin-bottom: -5vw;
  }
}
.home-mv .home-mv__cover {
  margin-right: calc(var(--padding) * -1);
  padding-left: 2.6666666667vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover {
    padding-left: 2.7777777778vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__image {
  grid-row: 1;
  grid-column: 1;
}
.home-mv .home-mv__cover .home-mv__cover__image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-mv .home-mv__cover .home-mv__cover__content {
  margin-right: auto;
  margin-left: auto;
  padding: 18.1333333333vw 8.5333333333vw 12.5333333333vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  max-width: 298.6666666667vw;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__content {
    padding: 11.1805555556vw 4.0277777778vw 5.9027777778vw;
    max-width: 77.7777777778vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__artist {
  padding-right: 4.2666666667vw;
  justify-self: end;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__artist {
    padding-right: 1.8055555556vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__artist figure {
  width: 12.5333333333vw;
  aspect-ratio: 103/271;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__artist figure {
    width: 7.1527777778vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__artist figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-mv .home-mv__cover .home-mv__cover__headline {
  margin-right: -8.5333333333vw;
  margin-left: -8.5333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: end;
  grid-row: 2;
  grid-column: 1;
  row-gap: 4.5333333333vw;
  position: relative;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__headline {
    margin-right: -2.2222222222vw;
    margin-left: -2.2222222222vw;
    row-gap: 1.7361111111vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__headline h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2vw;
  line-height: 1;
  font-family: var(--font-jp-min);
  font-weight: 500;
  font-size: 4.2666666667vw;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__headline h2 {
    row-gap: 1.7361111111vw;
    font-size: 2.2222222222vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__headline h2 span {
  line-height: 1;
  font-weight: 700;
  font-size: 9.8666666667vw;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__headline h2 span {
    font-size: 5.5555555556vw;
  }
}
.home-mv .home-mv__cover .home-mv__cover__headline p {
  line-height: 1;
  font-family: var(--font-jp-min);
  font-weight: 500;
  font-size: 5.3333333333vw;
}
@media only screen and (min-width: 750px) {
  .home-mv .home-mv__cover .home-mv__cover__headline p {
    font-size: 1.6666666667vw;
  }
}
.home-news {
  padding-top: 25.3333333333vw;
  padding-bottom: 4.375rem;
  background: url(../../assets/images/news_bg_sp.png) no-repeat center/cover;
}
@media only screen and (min-width: 750px) {
  .home-news {
    padding-top: 11.0416666667vw;
    padding-bottom: 5.3125rem;
    background-image: url(../../assets/images/news_bg_pc.png);
  }
}
.home-news > .content-root > .content-flow {
  max-width: 70rem;
}
@media only screen and (min-width: 750px) {
  .home-news > .content-root > .content-flow {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-columns: auto minmax(0, 1fr);
    grid-column-gap: 8rem;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
}
.home-news h2 {
  margin-bottom: 2.5625rem;
  padding: 0;
  background: transparent;
}
@media only screen and (min-width: 750px) {
  .home-news h2 {
    margin-bottom: 2.125rem;
    padding-top: 0.3125rem;
  }
}
.home-news h2 img {
  margin: auto;
}
.home-news .post-list {
  margin-bottom: 1.8125rem;
}
@media only screen and (min-width: 750px) {
  .home-news .post-list {
    grid-row: span 2;
  }
}
.home-news .post-list .post-item .post-item__content {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom-width: 0;
  row-gap: 0.1875rem;
}
@media only screen and (min-width: 750px) {
  .home-news .post-list .post-item .post-item__content {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    align-items: center;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}
.home-news .post-list .post-item .post-item__content .post-item__date time {
  color: var(--color-foreground);
  font-weight: 700;
  font-size: 0.75rem;
}
@media only screen and (min-width: 750px) {
  .home-news .post-list .post-item .post-item__content .post-item__date time {
    padding-top: 0.4375rem;
    font-size: 0.875rem;
  }
}
.home-news .post-list .post-item .post-item__content .post-item__date time > * {
  line-height: 1.5;
}
@media only screen and (min-width: 750px) {
  .home-news .post-list .post-item .post-item__content .post-item__date time > * {
    line-height: 1.5;
  }
}
.home-news .post-list .post-item .post-item__content .post-item__title {
  line-height: 1.625;
}
@media only screen and (min-width: 750px) {
  .home-news > .buttons {
    grid-column: 1;
  }
}
.home-newrelease {
  padding-top: 3.6875rem;
  padding-bottom: 2.0625rem;
}
@media only screen and (min-width: 750px) {
  .home-newrelease {
    padding-top: 5.8125rem;
    padding-bottom: 5.3125rem;
  }
}
.home-newrelease .post-type {
  margin-right: auto;
  margin-left: auto;
  width: 15.4375rem;
  aspect-ratio: 370/51;
}
@media only screen and (min-width: 750px) {
  .home-newrelease .post-type {
    margin: 0;
    width: 15.4375rem;
  }
}
.home-newrelease .post-type img {
  width: 100%;
}
.home-newrelease .post-container {
  padding-top: 2.5625rem;
}
@media only screen and (min-width: 750px) {
  .home-newrelease .post-container {
    padding-top: 3.8125rem;
  }
}
.home-newrelease .post-container .post-list {
  margin-top: -0.625rem;
  padding-top: 0;
}
.home-video figure {
  aspect-ratio: 375/130;
}
.home-musicvideo {
  padding-top: 3.75rem;
  padding-bottom: 4.9375rem;
  background: url(../../assets/images/musicvideo_bg_sp.png) no-repeat top center/cover;
}
@media only screen and (min-width: 750px) {
  .home-musicvideo {
    padding-top: 5.9375rem;
    padding-bottom: 10rem;
    background-image: url(../../assets/images/musicvideo_bg_pc.png);
  }
}
.home-musicvideo .post-type {
  margin-right: auto;
  margin-left: auto;
  width: 15.375rem;
  aspect-ratio: 368/50;
}
@media only screen and (min-width: 750px) {
  .home-musicvideo .post-type {
    margin: 0;
    width: 15.25rem;
  }
}
.home-musicvideo .post-type img {
  width: 100%;
}
@media only screen and (min-width: 750px) {
  .home-musicvideo .post-container {
    padding-top: 3.125rem;
  }
}
.home-musicvideo .post-container .content-root > * {
  max-width: 50rem;
}
.home-musicvideo figure {
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 750px) {
  .home-musicvideo figure {
    margin-bottom: 2rem;
  }
}
.home-musicvideo p {
  line-height: 1.5;
  text-align: center;
}
.home-musicvideo .buttons {
  margin-top: 1.625rem;
}
@media only screen and (min-width: 750px) {
  .home-musicvideo .buttons {
    margin-top: 2.875rem;
  }
}
.home-biography {
  padding-top: 3.625rem;
  padding-bottom: 3.75rem;
}
@media only screen and (min-width: 750px) {
  .home-biography {
    padding-top: 5.25rem;
    padding-bottom: 11.4375rem;
    position: relative;
    overflow: hidden;
  }
}
.home-biography .post-type {
  margin-right: auto;
  margin-left: auto;
  width: 12.6875rem;
  aspect-ratio: 305/69;
}
@media only screen and (min-width: 750px) {
  .home-biography .post-type {
    margin: 0;
    position: relative;
    width: 12.125rem;
  }
}
.home-biography .post-type img {
  width: 100%;
}
.home-biography .post-container {
  padding-top: 1.5625rem;
}
@media only screen and (min-width: 750px) {
  .home-biography .post-container {
    padding-top: 8.4375rem;
  }
}
@media only screen and (min-width: 750px) and (min-width: 750px) {
  .home-biography .post-container {
    max-width: 25.625rem;
  }
}
.home-biography .home-biography__image {
  margin-bottom: 1.9375rem;
  padding-right: var(--padding);
  padding-left: var(--padding);
}
@media only screen and (min-width: 750px) {
  .home-biography .home-biography__image {
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 43.75vw;
  }
}
.home-biography .home-biography__image figure {
  width: 100%;
  height: 100%;
}
.home-biography .home-biography__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-biography .content-root {
  position: relative;
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
.home-biography .content-root .home-biography__content h3 {
  display: flex;
  flex-direction: column;
  row-gap: 0.875rem;
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content h3 {
    row-gap: 1.625rem;
  }
}
.home-biography .content-root .home-biography__content h3 img:first-child {
  margin-bottom: 0.4375rem;
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content h3 img:first-child {
    margin-left: 0.1875rem;
    width: 10.536875rem;
  }
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content h3 img:nth-child(2) {
    margin-left: 0.125rem;
    width: 7.25rem;
  }
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content h3 img:nth-child(3) {
    margin-left: -0.0625rem;
    width: 3rem;
  }
}
.home-biography .content-root .home-biography__content hr {
  margin-top: 1.9375rem;
  margin-bottom: 2.1875rem;
  border-width: 0;
  width: 2rem;
  height: 0.0625rem;
  background-color: var(--color-foreground);
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content hr {
    margin-top: 2.6875rem;
    margin-bottom: 2.25rem;
    margin-left: 0.125rem;
  }
}
.home-biography .content-root .home-biography__content p + hr {
  margin-top: 2.25rem;
  margin-bottom: 1.5625rem;
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content p + hr {
    margin-top: 2.875rem;
    margin-bottom: 1.5rem;
  }
}
.home-biography .content-root .home-biography__content .home-biography__sns {
  margin-left: -0.125rem;
  display: flex;
  -moz-column-gap: 1.1875rem;
       column-gap: 1.1875rem;
}
@media only screen and (min-width: 750px) {
  .home-biography .content-root .home-biography__content .home-biography__sns {
    margin-left: 0;
  }
}
.home-biography .content-root .home-biography__content .home-biography__sns .home-biography__sns__item .home-biography__sns__item__link {
  font-size: 2.375rem;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-biography .content-root .home-biography__content .home-biography__sns .home-biography__sns__item .home-biography__sns__item__link:hover {
  color: var(--color-primary);
}[data-astro-image] {
	width: 100%;
	height: auto;
	-o-object-fit: var(--fit);
	   object-fit: var(--fit);
	-o-object-position: var(--pos);
	   object-position: var(--pos);
	aspect-ratio: var(--w) / var(--h);
}
/* Styles for responsive layout */
[data-astro-image='responsive'] {
	max-width: calc(var(--w) * 1px);
	max-height: calc(var(--h) * 1px);
}
/* Styles for fixed layout */
[data-astro-image='fixed'] {
	width: calc(var(--w) * 1px);
	height: calc(var(--h) * 1px);
}
