@charset "UTF-8";

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-red: #dc2120;
  --color-red-dark: #950000;
  --color-gold-dark: #937533;
  --color-gold-light: #e1d6bd;
  --color-border-1: #3d2020;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  scrollbar-gutter: stable;
  scroll-padding-top: 3.375rem;

  @media (min-width: 768px) {
    scroll-padding-top: 5.625rem;
  }
}

html *,
html *::before,
html *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-block-size: 100svh;
  background-color: #310601;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.p-honnoji {
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--color-black);
  max-width: 100%;
}

.is-sans {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.is-yakuhan {
  font-family: 'YakuHanJP', sans-serif;
  font-weight: 400;
}

.is-image-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  line-height: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
}

.p-honnoji__main {
  position: relative;
  overflow: clip;
  z-index: 1;
}

.p-honnoji__video_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.p-honnoji-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}

.p-honnoji-nav-toggle {
  appearance: none;
  margin: 0;
  display: block;
  padding: 0;
  outline: none;
  cursor: pointer;
  border: none;
  line-height: 1;
  aspect-ratio: 84 / 54;
  width: 5.25em;
  background-color: rgba(149, 0, 0, 0.95);
  position: relative;
  transition: opacity 0.2s ease-out, background-color 0.2s linear;
  z-index: 150;
  font-size: 1em;

  @media (min-width: 768px) {
    width: 8.75em;
  }
}

.p-honnoji-nav-toggle:hover {
  opacity: 0.7;
}

.p-honnoji-nav-toggle.is-opened {
  background: rgba(149, 0, 0, 0);
}

.p-honnoji-nav-toggle::before,
.p-honnoji-nav-toggle::after {
  content: '';
  display: block;
  width: 3.125em;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.2s linear;

  @media (min-width: 768px) {
    width: 5.25em;
    height: 2px;
  }
}

.p-honnoji-nav-toggle::before {
  transform: translate(-50%, -0.25em);

  @media (min-width: 768px) {
    transform: translate(-50%, -0.375em);
  }
}

.p-honnoji-nav-toggle::after {
  transform: translate(-50%, 0.25em);

  @media (min-width: 768px) {
    transform: translate(-50%, 0.375em);
  }
}

.p-honnoji-nav-toggle.is-opened::before {
  transform: translate(-50%, -50%) rotate(20deg);
}

.p-honnoji-nav-toggle.is-opened::after {
  transform: translate(-50%, 50%) rotate(-20deg);
}

.p-honnoji-nav {
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms linear, visibility 300ms linear;
}

.p-honnoji-nav.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-honnoji-nav__inner {
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 6.75em 1.25em 2em;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.8) rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  row-gap: 3.75em;

  @media (min-width: 768px) {
    padding-top: 5.625em;
    row-gap: 6.875em;
    justify-content: safe center;
  }
}

.p-honnoji-nav__inner::-webkit-scrollbar {
  width: 0.625em;
}

.p-honnoji-nav__inner::-webkit-scrollbar-track {
  border-radius: 0.3125em;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-honnoji-nav__inner::-webkit-scrollbar-thumb {
  border-radius: 0.3125em;
  background-color: rgba(255, 255, 255, 0.8);
}

.p-honnoji-nav-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2.5em;
  row-gap: 3.75em;
  max-width: 12em;
  direction: rtl;

  > li {
    flex-shrink: 0;
    width: 1em;
    font-size: 1.125em;
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.2;
    font-feature-settings: 'vert' on;
  }

  a {
    color: inherit;
    transition: opacity 0.2s ease-out;
    text-decoration: none;

    &:hover {
      opacity: 0.7;
    }
  }

  @media (min-width: 768px) {
    flex-wrap: nowrap;
    width: 47.5em;
    max-width: 100%;
    column-gap: clamp(2em, 9.11458333vw, 5em);

    > li {
      font-size: 1.5625em;
    }
  }
}

.p-honnoji-button-list-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25em;

  > li {
    width: 100%;
  }

  @media (min-width: 768px) {
    flex-direction: row;
    column-gap: 1.875em;

    > li {
      width: calc(50% - 0.9375em);
      max-width: 23.75em;
    }
  }
}

.p-honnoji-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25em;
  height: 4.25rem;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  background: url(../img/arrow_01.svg) no-repeat right 0.9375rem center / 0.625rem auto, linear-gradient(93deg, #8a0f0f 0%, #e50b0b 99.74%);
  box-shadow: 0 0.3125rem 30px 0 rgba(160, 18, 18, 0.8);
  position: relative;
  transition: opacity 0.2s ease-out;

  &:hover {
    opacity: 0.7;
  }

  @media (min-width: 768px) {
    font-size: 1.75em;
    height: 5.9375rem;
    background-position: right 2.375rem center, 0 0;
    background-size: 0.9375rem auto, 100% 100%;
    box-shadow: 0 0.9375rem 30px 0 rgba(160, 18, 18, 0.8);
  }
}

.p-honnoji-mv {
  margin: 0 auto 5.5em;
  max-width: 1440px;
  position: relative;
  padding: 6.5em 1.25em 0;

  @media (min-width: 768px) {
    margin-bottom: 2.5rem;
    padding: 4.125em 3.75em 0;
  }
}

.p-honnoji-mv__title {
  font-size: 1em;
  aspect-ratio: 413 / 462;
  margin: 0 auto 1.75em;
  width: 17.1875em;
  background-image: url(../img/mv_title.svg);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1.5s ease-out, transform 1.5s ease-in-out;

  @media (min-width: 768px) {
    width: 25.8125em;
    margin-bottom: 0;
  }

  .is-active & {
    opacity: 1;
    transform: scale(1);
  }
}

.p-honnoji-mv__text1 {
  margin: 0 auto;
  aspect-ratio: 164 / 39;
  width: 10.25em;
  background-image: url(../img/mv_author__sp.svg);
  opacity: 0;
  transition: opacity 1s ease-out;
  transition-delay: 1.5s;

  .is-active & {
    opacity: 1;
  }

  @media (min-width: 768px) {
    aspect-ratio: 58 / 239;
    width: 3.625em;
    margin-inline: 0;
    position: absolute;
    top: 11.9375em;
    left: calc(50% - 20em);
    background-image: url(../img/mv_author__pc.svg);
  }
}

.p-honnoji-mv__text2 {
  margin: 0 auto 3.875em;
  aspect-ratio: 422 / 31;
  width: 17.5625em;
  background-image: url(../img/mv_text_1.svg);
  opacity: 0;
  transition: opacity 1s ease-out;
  transition-delay: 1.5s;

  .is-active & {
    opacity: 1;
  }

  @media (min-width: 768px) {
    margin-bottom: 5.9375em;
    width: 26.375em;
  }
}

.p-honnoji-mv__text3 {
  margin: 4.0625em auto 0 0;
  aspect-ratio: 353 / 113;
  width: 15em;
  background-image: url(../img/mv_text_2.svg);
  opacity: 0;
  transition: opacity 1s ease-out;
  transition-delay: 1.5s;

  .is-active & {
    opacity: 1;
  }

  @media (min-width: 768px) {
    width: 22.0625em;
    margin-top: 1em;
  }
}

.p-honnoji-fixed {
  width: 25.64102564vw;
  max-width: 6.25em;
  position: fixed;
  bottom: 0.9375em;
  right: 0.9375em;
  z-index: 100;
  opacity: 0;
  transition: opacity 1s ease-out;
  transition-delay: 2s;

  .is-active & {
    opacity: 1;
  }

  @media (min-width: 768px) {
    width: 11.25em;
    max-width: 100%;
    right: 2em;
    bottom: 2em;
  }
}

.p-honnoji-preorder {
  display: block;
  transition: opacity 0.2s ease-out;
  aspect-ratio: 1 / 1;
  width: 100%;
  background-image: url(../img/fixed_btn.png);
}

.p-honnoji-preorder:hover {
  opacity: 0.7;
}

.p-honnoji-catch-01 {
  margin: 0 auto;
  max-width: 100%;
  aspect-ratio: 544 / 127;
  background-image: url(../img/catch_01.svg);
  width: 18.75rem;

  @media (min-width: 768px) {
    margin-top: 5.5rem;
    width: 34rem;
  }
}

.p-honnoji-bg-01 {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 10%, #000 100%);
  padding: 2.375rem 0 5.8125rem;

  @media (min-width: 768px) {
    padding-top: 10.75rem;
    padding-bottom: 10.9375rem;
  }
}

.p-honnoji-group-01 {
  margin: 4.0625rem auto 0;
  width: calc(100% - 2rem);
  max-width: 30.625rem;
  border-top: 2px solid var(--color-border-1);
  border-bottom: 2px solid var(--color-border-1);
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
  padding-bottom: 2.625rem;

  @media (min-width: 768px) {
    margin-top: 6rem;
    max-width: 62.5rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-honnoji-date-01 {
  margin: 0;
  aspect-ratio: 1 / 1;
  max-width: 5.625rem;
  width: 23.07692308vw;
  background-image: url(../img/release_date.svg);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);

  @media (min-width: 768px) {
    max-width: 10rem;
    top: -2.5rem;
    right: calc(50% - 20.375rem);
    transform: translateY(0);
  }
}

.p-honnoji-title-01 {
  text-align: center;
  color: var(--color-gold-light);
  line-height: 1.5;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.875rem;

  @media (min-width: 768px) {
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
  }
}

.p-honnoji-button-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.25rem;

  > li {
    width: 100%;
  }

  @media (min-width: 768px) {
    flex-direction: row;
    column-gap: 1.875rem;

    > li {
      width: calc(50% - 0.9375rem);
    }
  }
}

.p-honnoji-link-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 2.375rem auto 0;
  text-decoration: none;
  padding-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--color-gold-light);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease-out;

  &::after {
    content: '';
    display: block;
    aspect-ratio: 1 / 1;
    width: 1em;
    flex-shrink: 0;
    background: url(../img/arrow_02_gold.svg) no-repeat center / contain;
  }

  &:hover {
    opacity: 0.7;
  }

  @media (min-width: 768px) {
    font-size: 1.125rem;
    margin-top: 4.0625rem;
  }
}

.p-honnoji-bg-02 {
  background: linear-gradient(180deg, #060101 0%, #310601 22.6%, #460902 48.08%, #520a01 75%, #4a0901 100%);
  padding-bottom: 11.75rem;

  @media (min-width: 768px) {
    padding-bottom: 21.125rem;
    margin-top: -10rem;
  }
}

.p-honnoji-bg-02__content {
  isolation: isolate;
  margin-inline: auto;
  max-width: 75rem;
}

.p-honnoji-bg-02__content + .p-honnoji-bg-02__content {
  margin-top: 3.125rem;

  @media (min-width: 768px) {
    margin-top: 7.5rem;
  }
}

.p-honnoji-title-02 {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2.625rem;
  margin: 0 0 1.875rem;
  color: var(--color-gold-dark);

  &.no-margin {
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    font-size: 5rem;
  }
}

.p-honnoji-clouds-wrap {
  padding-top: 4.3125rem;
  position: relative;
  view-timeline-name: --parent-scroller-element;
  margin-bottom: 3.125rem;

  @media (min-width: 768px) {
    margin-bottom: 7.5rem;
    padding-top: 28.9375rem;
  }
}

.p-honnoji-clouds {
  aspect-ratio: 880 / 440;
  width: 55rem;
  background: url(../img/clouds__sp.png) no-repeat center / contain;
  pointer-events: none;
  animation-timeline: --parent-scroller-element;
  animation-duration: 1ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-name: clouds;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);

  @media (min-width: 768px) {
    aspect-ratio: 2356 / 933;
    width: 147.25rem;
    background-image: url(../img/clouds__pc.png);
  }
}

@keyframes clouds {
  from {
    top: 6rem;
  }

  to {
    top: -6rem;
  }
}

.p-honnoji-video {
  margin: 0 auto 2.5rem;
  width: calc(100% - 2.5rem);
  max-width: 62.5rem;
  position: relative;
  aspect-ratio: 16 / 9;
  background: url(../img/movie_poster.jpg) no-repeat center / contain;

  iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}

.p-honnoji-play {
  transition: opacity 0.2s ease-out;
  display: block;
  width: 3.5rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  @media (min-width: 768px) {
    width: 10rem;
  }
}

.p-honnoji-cards {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 24.375rem;

  @media (min-width: 768px) {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 3.33333333%;
  }
}

.p-honnoji-cards__card {
  position: relative;
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.p-honnoji-cards__card.is-visible {
  opacity: 1;
}

.p-honnoji-coming-soon1 {
  text-align: center;
  font-size: 1.25rem;
  margin: 3em 0 5em;
  color: var(--color-gold-light);
}

@media (min-width: 768px) {
  .p-honnoji-cards__card:nth-child(2) {
    transition-delay: 0.5s;
  }

  .p-honnoji-cards__card:nth-child(3) {
    transition-delay: 1s;
  }

  .p-honnoji-coming-soon1 {
    font-size: 2.375rem;
  }
}

.p-honnoji-cards__card.is-card-01 {
  aspect-ratio: 252 / 306;
  background-image: url(../img/card_01__sp.png);
  width: 64.61538462%;
  margin-left: -1rem;
  margin-right: auto;
  z-index: 3;

  @media (min-width: 391px) {
    margin-left: -1rem;
  }

  @media (min-width: 768px) {
    aspect-ratio: 361 / 451;
    background-image: url(../img/card_01__pc.png);
    width: 30.08333333%;
    margin: 0;
  }
}

.p-honnoji-cards__card.is-card-02 {
  aspect-ratio: 249 / 304;
  background-image: url(../img/card_02__sp.png);
  width: 63.84615385%;
  margin-right: -5.38461538vw;
  margin-top: -40vw;
  margin-left: auto;
  z-index: 2;

  @media (min-width: 391px) {
    margin-right: -1.3125rem;
    margin-top: -9.75rem;
  }

  @media (min-width: 768px) {
    aspect-ratio: 354 / 446;
    background-image: url(../img/card_02__pc.png);
    width: 29.5%;
    margin: 5.25rem 0 0;
  }
}

.p-honnoji-cards__card.is-card-03 {
  aspect-ratio: 218 / 276;
  background-image: url(../img/card_03__sp.png);
  width: 55.8974359%;
  margin-left: 3.07692308vw;
  margin-top: -13.33333333vw;
  margin-right: auto;
  z-index: 1;

  @media (min-width: 391px) {
    margin-left: 0.75rem;
    margin-top: -3.25rem;
  }

  @media (min-width: 768px) {
    aspect-ratio: 372 / 458;
    background-image: url(../img/card_03__pc.png);
    width: 31%;
    margin: 0;
  }
}

.p-honnoji-news {
  margin: 1.875rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 75rem;
  width: calc(100% - 2.5rem);

  > li {
    border-bottom: 1px solid var(--color-gold-light);
    padding-block: 1.5625rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;

    &:first-child {
      border-top: 1px solid var(--color-gold-light);
    }
  }

  @media (min-width: 768px) {
    margin-top: 3.125rem;

    > li {
      padding: 1.875rem 2.5rem;
      flex-direction: row;
      column-gap: 1.5625rem;
      align-items: flex-start;
    }
  }
}

.p-honnoji-news__head {
  margin: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  column-gap: 0.625rem;

  @media (min-width: 768px) {
    font-size: 1.125rem;
    width: 10.625rem;
    flex-shrink: 0;
    justify-content: space-between;
  }
}

.p-honnoji-news__date {
  color: var(--color-gold-light);
}

.p-honnoji-news__new {
  color: var(--color-red);
  text-transform: uppercase;
}

.p-honnoji-news__text {
  margin: 0;
  color: var(--color-gold-light);

  a {
    color: inherit;
    text-decoration: underline;

    &:hover {
      text-decoration: none;
    }
  }

  @media (min-width: 768px) {
    font-size: 1.125rem;
  }
}

.p-honnoji-bg-03 {
  position: relative;
  margin-top: -1.875rem;
  margin-bottom: 1.875rem;

  @media (min-width: 768px) {
    margin-top: 3.875rem;
    margin-bottom: 2.6875rem;
  }
}

.p-honnoji-bg-03::before {
  content: '';
  display: block;
  width: 100%;
  height: 10rem;
  position: absolute;
  left: 0;
  top: -4.875rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(32, 4, 4, 0) 0%, #100202 30.68%, #040000 84.13%, rgba(0, 0, 0, 0) 100%);

  @media (min-width: 768px) {
    top: -14.375rem;
    height: 21.25rem;
  }
}

.p-honnoji-bg-03__content {
  isolation: isolate;
  margin-inline: auto;
  width: calc(100% - 2.5rem);
  max-width: 75rem;
}

.p-honnoji-bg-03__content + .p-honnoji-bg-03__content {
  margin-top: 5rem;

  @media (min-width: 768px) {
    margin-top: 12.5rem;
  }
}

.p-honnoji-epilogue {
  border: 2px solid var(--color-border-1);
  background: rgba(26, 2, 2, 0.7);
  padding: 2.375rem 1.25rem;

  @media (min-width: 768px) {
    padding: 6.75rem clamp(2rem, 10.41666667vw, 7.8125rem);
  }
}

.p-honnoji-epilogue__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;

  > dt {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    display: flex;
    align-items: center;
    row-gap: 0.3125rem;
    flex-wrap: wrap;

    > span {
      display: inline-block;
      padding: 0 0.625rem 0.25rem;
      background-color: var(--color-red-dark);
      flex-shrink: 0;
    }
  }

  > dd {
    margin: 0;
  }

  p {
    margin: 0;
    line-height: 1.7;
    color: var(--color-gold-light);
  }

  p + p {
    margin-top: 1.7em;
  }

  @media (min-width: 768px) {
    > dt {
      font-size: 2.25rem;
    }

    p {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1200px) {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2rem;

    > dt {
      flex-direction: column;
      align-items: flex-start;
      row-gap: 0.3125rem;
    }

    > dd {
      width: 37.5rem;
      flex-shrink: 0;
    }
  }
}

.p-honnoji-epilogue__item + .p-honnoji-epilogue__item {
  margin-top: 2.5rem;

  @media (min-width: 768px) {
    margin-top: 7.5rem;
  }
}

.p-honnoji-link-02 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 15rem;
  margin: 2.5rem auto 0;
  text-decoration: none;
  color: var(--color-white);
  column-gap: 0.3125rem;
  height: 3.75rem;
  border: 1px solid currentColor;
  font-size: 1rem;
  transition: opacity 0.2s ease-out;

  &::after {
    content: '';
    display: block;
    aspect-ratio: 1 / 1;
    width: 1.25rem;
    flex-shrink: 0;
    background: url(../img/arrow_02_white.svg) no-repeat center / contain;
  }

  &:hover {
    opacity: 0.7;
  }

  @media (min-width: 768px) {
    font-size: 1.125rem;
    margin-top: 4rem;

    &::after {
      width: 1.375rem;
    }
  }
}

.p-honnoji-characters {
  margin: 0.625rem auto 0;
  max-width: 60rem;

  @media (min-width: 768px) {
    margin-top: 0;
  }
}

.p-honnoji-modal-open {
  appearance: none;
  display: block;
  background: none;
  border: none;
  margin: 0 0 0.625rem auto;
  padding: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
  font-size: 1rem;
  width: 1.875rem;
  line-height: 1;

  &:hover {
    opacity: 0.7;
  }

  @media (min-width: 768px) {
    width: 2.5rem;
    margin-bottom: 1.75rem;
  }
}

.p-honnoji-characters__image {
  line-height: 1;
  margin: 0;
}

.p-honnoji-modal {
  position: fixed;
  z-index: 600;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 3.375rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;

  &.is-active {
    opacity: 1;
    visibility: visible;
  }

  @media (min-width: 768px) {
    padding: 5.625rem 0 0;
  }
}

.p-honnoji-modal-close {
  appearance: none;
  display: block;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s ease-out;
  font-size: 1rem;
  width: 5.25rem;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;

  &:hover {
    opacity: 0.7;
  }

  @media (min-width: 768px) {
    width: 8.75rem;
  }
}

.p-honnoji-modal__image {
  margin: 0;
  line-height: 1;
}

.p-honnoji-modal__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: safe center;
  justify-content: center;
  overflow-y: auto;
  padding: 0 1.25rem 2rem;

  @media (min-width: 768px) {
    padding-inline: clamp(2rem, 8.33333333vw, 7.5rem);
  }
}

.p-honnoji-bg-04 {
  background: linear-gradient(180deg, rgba(6, 1, 1, 0) -1.56%, #1c0401 3.88%, #310601 21.39%, #460902 47.27%, #520a01 74.61%, #4a0901 100%);
  padding: 6.25rem 0 6.6875rem;

  @media (min-width: 768px) {
    padding-top: 9.75rem;
    padding-bottom: 25.9375rem;
    position: relative;

    &::before,
    &::after {
      content: '';
      display: block;
      aspect-ratio: 1 / 1;
      width: 29.3125rem;
      background: url(../img/grid.png) no-repeat center / contain;
      mix-blend-mode: multiply;
      position: absolute;
      pointer-events: none;
    }

    &::before {
      left: calc(50% - 52.75rem);
      top: 23.75rem;
    }

    &::after {
      left: calc(50% + 18.375rem);
      top: 68.375rem;
    }
  }
}

.p-honnoji-bg-04__content {
  margin-inline: auto;
  width: calc(100% - 2.5rem);
  max-width: 75rem;
  position: relative;
  z-index: 10;
}

.p-honnoji-bg-04__content + .p-honnoji-bg-04__content {
  margin-top: 2.5rem;

  @media (min-width: 768px) {
    margin-top: 6.25rem;
  }
}

.p-honnoji-comment {
  margin: 1.875rem auto 0;
  max-width: 46.875rem;

  p {
    margin: 0;
    color: var(--color-gold-light);
    font-size: 1.125rem;
    line-height: 2;
  }

  p + p {
    margin-top: 2em;
  }

  @media (min-width: 768px) {
    margin-top: 3.125rem;

    p {
      font-size: 1.375rem;
    }
  }
}

.p-honnoji-author {
  background-color: rgba(0, 0, 0, 0.6);
  margin: 3.125rem auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  padding: 1.5625rem;

  @media (min-width: 768px) {
    margin-top: 6.25rem;
    flex-direction: row;
    align-items: flex-start;
    column-gap: clamp(2rem, 8.33333333vw, 6.25rem);
    padding: 4.0625rem clamp(2rem, 8.33333333vw, 6.25rem);
  }
}

.p-honnoji-author__image {
  line-height: 1;
  margin: 0;

  @media (min-width: 768px) {
    width: clamp(11.25rem, 36%, 22.5rem);
    flex-shrink: 0;
  }
}

.p-honnoji-author__body {
  margin: 0;

  > dt {
    margin: 0 0 1.125rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);

    > span {
      display: inline-block;
      background-color: var(--color-red-dark);
      padding: 0 0.625rem 0.25rem;
    }
  }

  > dd {
    margin: 0;
  }

  p {
    margin: 0;
    color: var(--color-gold-light);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    margin-top: 1.375rem;

    > dt {
      font-size: 3.1875rem;
      margin-bottom: 2.1875rem;
    }

    p {
      font-size: 1.125rem;
    }
  }
}

.p-honnoji-title-03 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.75rem;
  color: var(--color-gold-dark);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2.5rem;

  > span {
    display: block;
    flex-shrink: 0;
  }

  &::before,
  &::after {
    content: '';
    display: block;
    height: 0.625rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    margin-bottom: 3.75rem;
    font-size: 3.75rem;
    column-gap: 2.8125rem;
  }
}

.p-honnoji-special {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;

  a {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    color: inherit;

    &:hover {
      opacity: 0.7;
    }
  }

  @media (min-width: 768px) {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 2.1875rem;
    column-gap: 2.1875rem;
    align-items: flex-start;
    justify-content: center;

    > li {
      width: 21.25rem;
      flex-shrink: 0;
    }
  }
}

.p-honnoji-special__image {
  display: block;
}

.p-honnoji-special__text {
  margin-top: 0.9375rem 0 0;
  color: var(--color-white);
  font-size: 1rem;

  @media (min-width: 768px) {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-honnoji-bg-05 {
  background: linear-gradient(180deg, rgba(29, 4, 1, 0) 0%, #1d0401 5.23%, #020000 92.31%, rgba(0, 0, 0, 0) 100%);
  padding: 6.25rem 0 3.75rem;
  margin-top: -5rem;

  @media (min-width: 768px) {
    padding-top: 10rem;
    padding-bottom: 8.75rem;
    margin-top: -21.5rem;
    position: relative;
  }
}

.p-honnoji-makimono {
  height: 33rem;
  background: url(../img/parchment.png) no-repeat -1.5rem top / auto 100%;
  padding: 3.4375rem 0 0 2rem;
  margin-inline: auto;
  width: 100%;
  max-width: 123.5625rem;

  @media (min-width: 768px) {
    height: 48.3125rem;
    background-position: left top;
    padding-top: 8.75rem;
    padding-left: 4.6875rem;
  }
}

.p-honnoji-reviews {
  overflow-x: auto;
}

.p-honnoji-reviews .simplebar-track {
  background: transparent;
  width: 17.5rem;
  left: 50%;
  transform: translateX(-50%);

  @media (min-width: 768px) {
    width: 31.25rem;
  }
}

.p-honnoji-reviews .simplebar-track.simplebar-horizontal {
  height: 0.9375rem;

  @media (min-width: 768px) {
    height: 1.5rem;
  }
}

.p-honnoji-reviews .simplebar-track::before {
  content: '';
  display: block;
  height: 2px;
  width: calc(100% - 2rem);
  background: var(--color-red-dark);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  @media (min-width: 768px) {
    width: calc(100% - 4.125rem);
  }
}

.p-honnoji-reviews .simplebar-scrollbar {
  height: 0.9375rem;

  @media (min-width: 768px) {
    height: 1.5rem;
  }
}

.p-honnoji-reviews .simplebar-scrollbar::before {
  background: var(--color-red-dark);
  border-radius: 50%;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 0.9375rem;
  height: 0.9375rem;
  transform: translate(-50%, -50%);
  opacity: 1;

  @media (min-width: 768px) {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-honnoji-reviews__track {
  padding: 0 1rem 3rem 2rem;

  @media (min-width: 768px) {
    padding-left: 4.25rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
  }
}

.p-honnoji-reviews__list {
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  column-gap: 1rem;

  > li {
    aspect-ratio: 255 / 316;
    width: 15.9375rem;
    flex-shrink: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(194, 186, 155, 0.3) 100%);
    padding: 0.5rem 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0.5rem;
  }

  @media (min-width: 768px) {
    column-gap: 2rem;

    > li {
      aspect-ratio: 382 / 415;
      width: 23.875rem;
      padding-inline: 1.5625rem;
    }
  }
}

.p-honnoji-reviews__copy {
  margin: 0;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;

  @media (min-width: 768px) {
    font-size: 1.125rem;
  }
}

.p-honnoji-reviews__author {
  width: 100%;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--color-red-dark);
  text-align: right;

  > span {
    display: block;
    font-size: 0.625rem;
  }

  @media (min-width: 768px) {
    font-size: 1.125rem;

    > span {
      font-size: 0.875rem;
    }
  }
}

.p-honnoji-group-02 {
  margin: 6.25rem auto 0;
  width: calc(100% - 2rem);
  max-width: 30.625rem;
  border-top: 2px solid var(--color-border-1);
  border-bottom: 2px solid var(--color-border-1);
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;

  @media (min-width: 768px) {
    margin-top: 7.5rem;
    max-width: 62.5rem;
    padding-top: 5rem;
    padding-bottom: 3.75rem;
  }
}

.p-honnoji-book {
  position: relative;
  margin: 0 auto 2.5rem;
  width: 17.875rem;

  @media (min-width: 768px) {
    width: 43rem;
  }
}

.p-honnoji-book__image {
  margin: 0;
  line-height: 1;
  width: 11.3125rem;

  @media (min-width: 768px) {
    margin-inline: auto;
    width: 15rem;
  }
}

.p-honnoji-book__label1 {
  margin: 0;
  aspect-ratio: 1 / 1;
  width: 5.625rem;
  background-image: url(../img/label_text_01.svg);
  position: absolute;
  right: 0;
  bottom: 6.25rem;

  @media (min-width: 768px) {
    width: 10rem;
    bottom: 6.5625rem;
  }
}

.p-honnoji-book__label2 {
  margin: 0;
  aspect-ratio: 1 / 1;
  width: 5.625rem;
  background-image: url(../img/release_date.svg);
  position: absolute;
  right: 0;
  bottom: 0;

  @media (min-width: 768px) {
    width: 10rem;
    bottom: -4.5rem;
  }
}

.p-honnoji-share {
  margin-top: 3.75rem;
}

.p-honnoji-title-04 {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin: 0 0 2.625rem;

  @media (min-width: 768px) {
    font-size: 2rem;
    margin-bottom: 3.625rem;
  }
}

.p-honnoji-share__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.875rem;

  > li {
    flex-shrink: 0;
    width: 3.75rem;
    line-height: 1;
  }

  button {
    appearance: none;
    font-size: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    line-height: 1;
    display: block;
    transition: opacity 0.2s ease-out;
    position: relative;

    &:hover {
      opacity: 0.7;
    }
  }

  a {
    display: block;
    transition: opacity 0.2s ease-out;

    &:hover {
      opacity: 0.7;
    }
  }

  @media (min-width: 768px) {
    column-gap: 3.75rem;

    > li {
      width: 6.25rem;
    }
  }
}

.p-honnoji-share__list button.is-success::after {
  content: 'URLをコピーしました！';
  white-space: nowrap;
  display: block;
  width: fit-content;
  font-size: 0.625em;
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-red-dark);
  padding: 0.3125em;
  border-radius: 0.1875em;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -110%);
}

.p-honnoji-footer {
  margin-top: 10rem;
  padding-bottom: 4rem;

  @media (min-width: 768px) {
    margin-top: 12.5rem;
  }
}

.p-honnoji-footer__logo {
  margin: 0 auto;
  line-height: 1;
  width: 11.25rem;

  @media (min-width: 768px) {
    width: 15rem;
  }
}

.p-honnoji-footer__copyright {
  text-align: center;
  color: var(--color-white);
  margin: 1rem 0 0;
  font-size: 0.75rem;

  @media (min-width: 768px) {
    font-size: 0.8125rem;
  }
}
