:root {
  --basic-font-size: 20px;
  --basic-line-height: 2;
  --color-text: #422c10;
  --color-primary: #8d0000;
  --color-bg: #422c10;
  --color-bg-light: #dfd4c8;
  --color-white: #fff;
  --color-black: #000;
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "Pirata One", cursive;
}
@media screen and (max-width: 767px) {
  :root {
    --basic-font-size: 16px;
    --basic-line-height: 1.7;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: var(--font-family);
  font-size: var(--basic-font-size);
  line-height: var(--basic-line-height);
  color: var(--color-text);
  background-color: var(--color-bg-light);
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  text-wrap: wrap;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

img,
iframe {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-default {
  padding-top: 96px;
}
@media screen and (max-width: 1023px) {
  .l-default {
    padding-top: 80px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 100;
  background-color: var(--color-white);
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 80px;
    background-color: none;
  }
  .l-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 0;
  }
  .l-header::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 4px;
    margin-top: -4px;
    background: transparent;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    z-index: -1;
    pointer-events: none;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding: 20px;
  }
}
.l-header__logo {
  position: relative;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 279px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-header__logo img {
    width: 184px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 80px);
    background-color: var(--color-white);
    overflow-y: auto;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .l-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__navList {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .l-header__navList {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__navItem {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-bg-light);
  }
}
.l-header__navLink {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 1023px) {
  .l-header__navLink {
    padding-left: 20px;
  }
}
.l-header__navLink::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-text);
  flex-shrink: 0;
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
}
.l-header__hamburgerIcon {
  position: relative;
  width: 36px;
  height: 30px;
}
.l-header__hamburgerOpen, .l-header__hamburgerClose {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.l-header__hamburgerOpen {
  width: 36px;
  height: 30px;
  opacity: 1;
}
.is-active .l-header__hamburgerOpen {
  opacity: 0;
}
.l-header__hamburgerClose {
  width: 22px;
  height: 22px;
  opacity: 0;
}
.is-active .l-header__hamburgerClose {
  opacity: 1;
}
.l-header__hamburgerText {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}

.l-homeHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
}
.l-homeHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}
.l-homeHeader__logo a {
  display: block;
}
.l-homeHeader__logo img {
  width: 279px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__logo img {
    width: 184px;
  }
}
.l-homeHeader__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__nav {
    gap: 10px;
  }
}
.l-homeHeader__navLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 220px;
  padding: 4px 8px;
  border-radius: 50px;
  background-color: rgba(66, 44, 16, 0.5);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-bg-light);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-homeHeader__navLink:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__navLink {
    display: none;
  }
}
.l-homeHeader__navLink img {
  flex-shrink: 0;
}
.l-homeHeader__navIcon {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__navIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-text);
    border: 0.54px solid rgba(223, 212, 200, 0.5);
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 1023px) and (any-hover: hover) {
  .l-homeHeader__navIcon:hover {
    opacity: 0.7;
  }
}

.l-homeSidemenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 160px;
  height: 100vh;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu {
    width: 100%;
  }
}
.l-homeSidemenu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background-color: rgba(66, 44, 16, 0.5);
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__bg {
    width: 100vw;
    background-color: rgba(37, 23, 8, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
.l-homeSidemenu__toggle {
  position: absolute;
  top: 90px;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 71px;
  padding: 10px 20px 20px;
  background-color: rgba(66, 44, 16, 0.5);
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__toggle {
    right: auto;
    left: 0;
    top: 70px;
  }
}
.l-homeSidemenu__toggleClose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-homeSidemenu__toggleCloseIcon {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
}
.l-homeSidemenu__toggleCloseText {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
  margin-top: -6px;
}
.l-homeSidemenu__toggleOpen {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  white-space: nowrap;
}
.l-homeSidemenu__toggleOpenText {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
}
.l-homeSidemenu__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
  padding-top: 220px;
  width: 160px;
  height: 100%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__nav {
    width: 140px;
    gap: 10px;
    padding-top: 170px;
  }
}
.l-homeSidemenu__item {
  width: 100%;
}
.l-homeSidemenu__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 10px;
  background-color: var(--color-text);
  border-radius: 0 50px 50px 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-homeSidemenu__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__link {
    padding: 40px 10px 10px;
  }
}
.l-homeSidemenu__linkText {
  position: relative;
  z-index: 1;
  width: 120px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-bg-light);
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__linkText {
    font-size: 14px;
  }
}
.l-homeSidemenu__linkTexture {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: auto;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__linkTexture {
    width: 53px;
    top: -8px;
  }
}
.l-homeSidemenu__itemLocked {
  width: 100%;
  position: relative;
}
.l-homeSidemenu__lockedLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 10px;
  background-color: var(--color-text);
  border-radius: 0 50px 50px 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__lockedLink {
    padding: 40px 10px 10px;
  }
}
.l-homeSidemenu__lockedText {
  position: relative;
  z-index: 1;
  width: 120px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  color: #131312;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__lockedText {
    font-size: 14px;
  }
}
.l-homeSidemenu__lockedTexture {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 70px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__lockedTexture {
    width: 53px;
    height: 50px;
    top: -8px;
  }
}
.l-homeSidemenu__lockedBadge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  -webkit-text-stroke: 3px var(--color-text);
  paint-order: stroke fill;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__lockedBadge {
    font-size: 30px;
    width: 30px;
    height: 42px;
  }
}
.l-homeSidemenu__cta {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--color-primary);
  border-radius: 0 50px 50px 0;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .l-homeSidemenu__cta:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__cta {
    width: 140px;
    padding: 10px;
    bottom: auto;
    top: 485px;
  }
}
.l-homeSidemenu__ctaText {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-bg-light);
}
.l-homeSidemenu__ctaText img {
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu__ctaText {
    font-size: 14px;
  }
}
.l-homeSidemenu.is-closed {
  transform: translateX(-120px);
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu.is-closed {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu.is-closed .l-homeSidemenu__bg {
    opacity: 0;
    pointer-events: none;
  }
}
.l-homeSidemenu.is-closed .l-homeSidemenu__nav {
  transform: translateX(-60px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu.is-closed .l-homeSidemenu__nav {
    transform: translateX(-155px);
  }
}
.l-homeSidemenu.is-closed .l-homeSidemenu__toggleClose {
  display: none;
}
.l-homeSidemenu.is-closed .l-homeSidemenu__toggleOpen {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu:not(.is-closed) .l-homeSidemenu__bg {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-homeSidemenu:not(.is-closed) .l-homeSidemenu__toggle {
    background-color: var(--color-text);
  }
}

.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  margin-top: 120px;
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
  }
}
.l-footer__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-bg-light);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__title {
    font-size: 16px;
  }
}
.l-footer__credit {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-bg-light);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__credit {
    font-size: 9px;
  }
}

.l-wrapper {
  overflow: clip;
}

.l-content {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .l-content {
    padding: 40px 0 0;
  }
}

.l-section {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 40px 0 0;
  }
}
.l-section:first-child {
  padding-top: 0;
}
.l-section p:not([class]) {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-section p:not([class]) {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
  }
}
.l-section p:not([class]) + p:not([class]) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-section p:not([class]) + p:not([class]) {
    margin-top: 16px;
  }
}

.l-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-section__innerNarrow {
  max-width: 936px;
  margin: 0 auto;
}

.p-top {
  background-image: url("/assets/img/common/bg-pattern.png");
  background-size: 100% auto;
  background-repeat: repeat;
}

.p-fv {
  position: relative;
}
.p-fv img {
  width: 100%;
  height: auto;
}

.p-fv__title {
  position: absolute;
  bottom: 5.3691275168%;
  left: 50%;
  transform: translateX(-50%);
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    bottom: 16.6666666667%;
    width: 79.7872340426%;
  }
}
.p-fv__title img {
  width: 100%;
  height: auto;
}

.p-fv__text {
  position: absolute;
  top: 70.2013422819%;
  right: 5.2083333333%;
  width: 25.6944444444%;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    top: auto;
    bottom: 0.3174603175%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 95.7446808511%;
  }
}
.p-fv__text img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-mission {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.p-mission img {
  width: 100%;
  height: auto;
}

.p-mission__title {
  margin-left: -3px;
  margin-bottom: -25px;
  width: 43.9423076923%;
}
@media screen and (max-width: 767px) {
  .p-mission__title {
    margin-left: 0;
    margin-bottom: -2.808988764%;
    padding-left: 5.585106383%;
    width: 60.9042553191%;
  }
}
.p-mission__title svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.p-game {
  position: relative;
}

.p-game__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 520px;
}
@media screen and (max-width: 767px) {
  .p-game__img {
    right: -20px;
    width: 220px;
  }
}
.p-game__img img {
  width: 100%;
  height: auto;
}

.p-about {
  position: relative;
  padding: 50px 52px;
  background-image: url("/assets/img/top/about-bg.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 30px 20px;
    background-image: url("/assets/img/top/about-bg-sp.jpg");
  }
}

.p-about__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-about__text {
  color: var(--color-bg-light);
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
  }
}

.p-about__btn {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 20px;
  background-color: var(--color-bg-light);
  border-radius: 4px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-about__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-about__btn {
    font-size: 15px;
  }
}
.p-about__btn img {
  width: 6px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .p-about__btn img {
    width: 5px;
    height: 10px;
  }
}

.p-newsList__item {
  border-top: 1px solid var(--color-text);
}
.p-newsList__item:last-child {
  border-bottom: 1px solid var(--color-text);
}

.p-newsList__link {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-newsList__link {
    padding: 24px 0;
  }
}
@media (any-hover: hover) {
  .p-newsList__link:hover {
    opacity: 0.7;
  }
}

.p-newsList__head {
  position: absolute;
  top: 0;
  left: 0;
}

.p-newsList__new {
  display: block;
  padding: 2px 16px;
  background-color: var(--color-text);
  color: var(--color-bg-light);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.p-newsList__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-newsList__body {
    gap: 0;
  }
}

.p-newsList__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .p-newsList__date {
    font-size: 12px;
  }
}

.p-newsList__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-newsList__title {
    font-size: 16px;
  }
}

.p-home {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-bg-light);
  background-image: url("/assets/img/home/bg-home.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-home {
    background-image: url("/assets/img/home/bg-home-sp.jpg");
  }
}
.p-home .l-wrapper {
  height: 100%;
}
.p-home .l-main {
  height: 100%;
}

.p-homeCharacter {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 1040px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-homeCharacter {
    bottom: 115px;
  }
}
.p-homeCharacter__img {
  pointer-events: none;
  position: absolute;
  bottom: -110px;
  right: 0;
  z-index: -1;
  width: 270px;
}
@media screen and (max-width: 1023px) {
  .p-homeCharacter__img {
    bottom: -115px;
    width: 165px;
  }
}
.p-homeCharacter__img img {
  width: 100%;
  height: auto;
}

.p-homeNews {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-homeNews {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 305px;
    width: calc(100% - 70px);
    height: 40px;
    padding: 4px 16px;
    margin: 0 0 0 15px;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: rgba(223, 212, 200, 0.7);
    border: 1px solid var(--color-bg);
    border-radius: 100px;
  }
}
.p-homeNews__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-bg);
  flex-shrink: 0;
}
.p-homeNews__body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.p-homeNews__label {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 26px;
}
.p-homeNews__label img {
  width: 100%;
  height: auto;
}
.p-homeNews__labelText {
  position: absolute;
  top: -5px;
  left: 20px;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-primary);
}
.p-homeNews__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.p-homeNews__date {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-primary);
}
.p-homeNews__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-homeBalloon {
  position: relative;
  margin-left: auto;
  max-width: 519px;
  width: 100%;
  padding: 2px;
  background-color: rgba(223, 212, 200, 0.8);
  border: 1px solid var(--color-bg);
  border-radius: 6px;
}
@media screen and (max-width: 1023px) {
  .p-homeBalloon {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.p-homeBalloon__inner {
  min-height: 114px;
  padding: 10px 16px;
  border: 1px solid rgba(66, 44, 16, 0.5);
  border-radius: 4px;
}
@media screen and (max-width: 1023px) {
  .p-homeBalloon__inner {
    min-height: 68px;
    padding: 4px 10px;
  }
}
.p-homeBalloon__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 1023px) {
  .p-homeBalloon__text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-homeBalloon::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  border-color: var(--color-bg) transparent transparent transparent;
}
@media screen and (max-width: 1023px) {
  .p-homeBalloon::after {
    bottom: 8px;
    right: 10px;
    border-width: 8px 7px 0 7px;
  }
}

.p-homePanel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 1040px;
  width: 100%;
  aspect-ratio: 1040/97;
  padding: 8px 20px 20px;
  background-image: url("/assets/img/home/status-bar-bg.png");
  background-size: cover;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.6));
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-homePanel {
    max-width: 376px;
    aspect-ratio: 376/103;
    padding: 9px 20px 4px;
    background-image: url("/assets/img/home/status-bar-bg-sp.png");
  }
}

.p-homeStatus {
  max-width: 870px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus {
    align-items: flex-start;
  }
}
.p-homeStatus__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__item {
    flex-direction: column-reverse;
    gap: 4px;
  }
}
.p-homeStatus__label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-homeStatus__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__dot {
    display: none;
  }
}
.p-homeStatus__labelText {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__labelText {
    font-size: 16px;
    text-align: center;
  }
}
.p-homeStatus__labelText br {
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__labelText br {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__labelText span {
    display: block;
    font-size: 10px;
  }
}
.p-homeStatus__value {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 100/64;
  padding: 8px 12px;
  background-image: url("/assets/img/home/status-value-bg.png");
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__value {
    width: 100px;
    aspect-ratio: 100/54;
    background-image: url("/assets/img/home/status-value-bg-sp.png");
  }
}
.p-homeStatus__value--sm {
  width: 98px;
  aspect-ratio: 98/64;
  background-image: url("/assets/img/home/status-value-bg-sm.png");
  background-size: cover;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__value--sm {
    width: 100px;
    aspect-ratio: 100/54;
    background-image: url("/assets/img/home/status-value-bg-sp.png");
  }
}
.p-homeStatus__valueInner {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__valueInner {
    justify-content: center;
  }
}
.p-homeStatus__valueNumber {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-bg-light);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__valueNumber {
    font-size: 38px;
  }
}
.p-homeStatus__valueUnit {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-bg-light);
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
  width: 24px;
  height: 33px;
}
@media screen and (max-width: 1023px) {
  .p-homeStatus__valueUnit {
    font-size: 20px;
    height: 27px;
  }
}

.p-homeChapter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .p-homeChapter {
    padding-bottom: 50px;
  }
}
.p-homeChapter__slider {
  width: 100%;
  padding: 0 200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1365px) {
  .p-homeChapter__slider {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeChapter__slider {
    padding: 0 20px 20px;
  }
}
.p-homeChapter__item a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-homeChapter__item a:hover {
    opacity: 0.7;
  }
}
.p-homeChapter .swiper-slide-shadow-left,
.p-homeChapter .swiper-slide-shadow-right {
  display: none;
}
.p-homeChapter__arrows {
  position: absolute;
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 1365px) {
  .p-homeChapter__arrows {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-homeChapter__arrows {
    top: auto;
    bottom: 5px;
    transform: translate(-50%, 0);
    justify-content: center;
  }
}
.p-homeChapter__arrow {
  all: unset;
  cursor: pointer;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-homeChapter__arrow {
    width: 30px;
    height: 30px;
  }
}
.p-homeChapter__arrow::after {
  content: none;
}
.p-homeChapter__arrow.swiper-button-disabled {
  box-shadow: none;
  opacity: 0.2;
  cursor: default;
}
.p-homeChapter__arrow img {
  width: 100%;
  height: 100%;
}
.p-homeChapter__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.p-homeChapter__img img {
  width: 100%;
  height: auto;
}

.c-sectionTitle {
  width: calc(100% + 128px);
  margin: 0 -64px 40px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    width: 100%;
    margin: 0 0 20px;
  }
}

.c-sectionTitle__icon {
  width: 116px;
  height: 153px;
  flex-shrink: 0;
}
.c-sectionTitle__icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__icon {
    width: 60px;
    height: 96px;
  }
}

.c-sectionTitle__text {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__text {
    gap: 0;
  }
}

.c-sectionTitle__en {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 72px;
  line-height: 1.18;
  color: var(--color-primary);
  height: 85px;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__en {
    font-size: 46px;
    line-height: 1.5;
    height: 63px;
  }
}

.c-sectionTitle__line {
  width: -moz-max-content;
  width: max-content;
  height: 2px;
  margin-left: -1px;
}
.c-sectionTitle__line img {
  width: 100%;
  height: auto;
}

.c-sectionTitle__ja {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__ja {
    padding-top: 5px;
    font-size: 18px;
  }
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-clear {
  overflow: hidden !important;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-bold {
  font-weight: bold;
}

.u-text-center {
  text-align: center;
}

.u-text-center-spLeft {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-center-spLeft {
    text-align: left;
  }
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}/*# sourceMappingURL=style.css.map */