@charset "UTF-8";
:root {
  --basic-font-size: 20px;
  --basic-line-height: 2;
  --color-text: #422c10;
  --color-text-light: #e5ddd3;
  --color-primary: #8d0000;
  --color-bg: #422c10;
  --color-bg-dark: #251708;
  --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]) {
  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;
  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: 999;
  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: 183px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-header__logo img {
    width: 151px;
  }
}
@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);
  }
}
@media screen and (max-width: 1023px) {
  .l-header__navItem--btn {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.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__navBtn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 180px;
  aspect-ratio: 180/53;
  background-image: url("../img/common/header-btn-bg.png");
  background-size: cover;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__navBtn {
    width: 336px;
    aspect-ratio: 336/53;
    background-image: url("../img/common/header-btn-bg-sp.png");
  }
}
@media screen and (max-width: 359px) {
  .l-header__navBtn {
    width: 89.3617021277vw;
    font-size: 4.7872340426vw;
  }
}
@media (any-hover: hover) {
  .l-header__navBtn:hover {
    opacity: 0.7;
  }
}
.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: 183px;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__logo img {
    width: 121px;
  }
}
.l-homeHeader__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
@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: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-text);
  padding: 1.8px;
  transition: opacity 0.3s;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (any-hover: hover) {
  .l-homeHeader__navIcon:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__navIcon {
    width: 36px;
    height: 36px;
    padding: 1.62px;
    box-shadow: none;
  }
}
.l-homeHeader__navIcon img {
  width: 100%;
  height: 100%;
  padding: 6px;
  border-radius: 50%;
  border: 0.6px solid rgba(223, 212, 200, 0.5);
  object-fit: none;
}
@media screen and (max-width: 1023px) {
  .l-homeHeader__navIcon img {
    padding: 5.4px;
    border: 0.54px solid rgba(223, 212, 200, 0.5);
  }
}

.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 {
  pointer-events: auto;
  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);
    pointer-events: none;
  }
}
@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;
  }
}
@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("../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;
}

.p-fv__btn {
  position: absolute;
  top: 84.1610738255%;
  right: 8.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.4444444444%;
  aspect-ratio: 280/78;
  background-image: url("../img/top/fv-btn-bg.png");
  background-size: cover;
  filter: drop-shadow(0px 4px 16px rgba(141, 0, 0, 0.25));
  font-size: 1.6666666667vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    position: fixed;
    z-index: 998;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    width: 74.4680851064%;
    background-image: url("../img/top/fv-btn-bg-sp.png");
    font-size: 6.3829787234vw;
  }
}
@media (any-hover: hover) {
  .p-fv__btn:hover {
    opacity: 0.7;
  }
}

@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("../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("../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-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;
  }
}

.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("../img/home/bg-home.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-home {
    background-image: url("../img/home/bg-home-sp.jpg");
  }
}
.p-home .l-wrapper {
  height: 100%;
}
.p-home .l-main {
  height: 100%;
}
.p-home .l-homeHeader__nav {
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .p-home .l-homeHeader__nav {
    gap: 10px;
  }
}
.p-home .l-homeHeader__navIcon {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-home .l-homeHeader__navIcon {
    display: flex;
  }
}
.p-home .l-homeHeader__navIcon--home {
  display: none;
}

.p-homeCharacter {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 1040px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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("../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: 767px) {
  .p-homePanel {
    max-width: 376px;
    aspect-ratio: 376/103;
    padding: 9px 20px 4px;
    background-image: url("../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: 767px) {
  .p-homeStatus {
    align-items: flex-start;
  }
}
.p-homeStatus__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .p-homeStatus__labelText {
    font-size: 16px;
    text-align: center;
  }
}
.p-homeStatus__labelText br {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-homeStatus__labelText br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .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("../img/home/status-value-bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-homeStatus__value {
    width: 100px;
    aspect-ratio: 100/54;
    background-image: url("../img/home/status-value-bg-sp.png");
  }
}
.p-homeStatus__value--sm {
  width: 98px;
  aspect-ratio: 98/64;
  background-image: url("../img/home/status-value-bg-sm.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-homeStatus__value--sm {
    width: 100px;
    aspect-ratio: 100/54;
    background-image: url("../img/home/status-value-bg-sp.png");
  }
}
.p-homeStatus__valueInner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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;
}

.p-record {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-bg-light);
  background-image: url("../img/home/bg-home.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-record {
    background-image: url("../img/home/bg-home-sp.jpg");
  }
}
.p-record .l-wrapper {
  height: 100%;
}
.p-record .l-main {
  height: 100%;
  overflow-y: auto;
}
.p-record .l-homeHeader .l-homeHeader__logo {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-record .l-homeHeader .l-homeHeader__logo {
    display: block;
  }
}
.p-record .p-homeCharacter {
  bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-record .p-homeCharacter {
    bottom: 10px;
  }
}
.p-record .p-homeCharacter__img {
  bottom: -60px;
}
@media screen and (max-width: 767px) {
  .p-record .p-homeCharacter__img {
    bottom: -115px;
  }
}

.p-recordBoard {
  width: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.p-recordBoard__img {
  position: relative;
  max-width: 560px;
}
.p-recordBoard__img img {
  width: 100%;
  height: auto;
}

.p-recordBoard__medalBox {
  position: absolute;
  top: 28.2142857143%;
  left: 14.2857142857%;
  width: 73.0357142857%;
  height: 48.6904761905%;
  display: grid;
  gap: 0.7334963325% 0.7334963325%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}

.p-recordBoard__medal {
  width: 100%;
}
.p-recordBoard__medal img {
  width: 100%;
  height: auto;
}

.p-stageSelect {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-bg-light);
}
.p-stageSelect .l-wrapper {
  height: 100%;
}
.p-stageSelect .l-main {
  height: 100%;
}
.p-stageSelect .l-homeHeader .l-homeHeader__logo {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-stageSelect .l-homeHeader .l-homeHeader__logo {
    display: block;
  }
}
.p-stageSelect .p-homeCharacter {
  position: absolute;
  bottom: 60px;
  max-width: 100%;
  width: 100%;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .p-stageSelect .p-homeCharacter {
    bottom: 115px;
    padding: 0;
  }
}
.p-stageSelect .p-homeCharacter__img {
  bottom: -60px;
}
@media screen and (max-width: 767px) {
  .p-stageSelect .p-homeCharacter__img {
    bottom: -115px;
  }
}

.p-stageSelectPage {
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage {
    flex-direction: column;
  }
}

.p-stageSelectPage__content {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("../img/stage-select/bg-stage-select.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__content {
    background-image: url("../img/stage-select/bg-stage-select-sp.jpg");
  }
}

.p-stageSelectPage__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 244px;
  background: var(--color-bg);
  box-shadow: -4px 0 8px 0 rgba(0, 0, 0, 0.5);
  padding: 40px 16px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    max-width: 376px;
    width: 100%;
    aspect-ratio: 376/103;
    padding: 9px 9px 4px;
    background: transparent;
    background-image: url("../img/home/status-bar-bg-sp.png");
    background-size: cover;
    box-shadow: none;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.6));
    overflow: visible;
  }
}

.p-stageSelectPage__menuHead {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 212/64;
  padding: 0 12px;
  background-image: url("../img/stage-select/stage-select-title-bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuHead {
    aspect-ratio: 358/33;
    background-image: url("../img/stage-select/stage-select-title-bg-sp.png");
  }
}

.p-stageSelectPage__menuHeadInner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuHeadInner {
    gap: 4px;
  }
}

.p-stageSelectPage__menuHeadNumber {
  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: 767px) {
  .p-stageSelectPage__menuHeadNumber {
    font-size: 24px;
  }
}

.p-stageSelectPage__menuHeadUnit {
  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: 767px) {
  .p-stageSelectPage__menuHeadUnit {
    font-size: 12px;
    width: 13px;
    height: 17px;
  }
}

.p-stageSelectPage__menuBody {
  flex: 1;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid rgba(223, 212, 200, 0.5);
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuBody {
    padding: 0;
    border-radius: 0;
    border: none;
    overflow: auto;
  }
}

.p-stageSelectPage__menuBodyInner {
  border-radius: 4px;
  border: 1px solid var(--color-bg-light);
  background: var(--color-bg-dark);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 32px 11px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuBodyInner {
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    gap: 8px;
  }
}

.p-stageSelectPage__menuItem {
  width: 100%;
  aspect-ratio: 180/51;
  background-image: url("../img/stage-select/stage-select-link-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuItem {
    white-space: nowrap;
    width: 100px;
    aspect-ratio: 100/37;
    background-image: url("../img/stage-select/stage-select-link-bg-sp.png");
    font-size: 20px;
    filter: drop-shadow(0px 2.87123px 5.74246px rgba(0, 0, 0, 0.5));
  }
}
.p-stageSelectPage__menuItem.is-locked {
  pointer-events: none;
  opacity: 0.7;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-stageSelectPage__menuItem.is-locked {
    font-size: 10px;
  }
}

.p-stageSelectModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}
.p-stageSelectModal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.p-stageSelectModal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.is-open .p-stageSelectModal__bg {
  opacity: 1;
}

.p-stageSelectModal__dialog {
  position: relative;
  padding: 2px;
  border-radius: 6px;
  border: 1px solid var(--color-text);
  background-color: rgb(223, 212, 200);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.is-open .p-stageSelectModal__dialog {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__dialog {
    max-width: 336px;
    width: calc(100% - 40px);
  }
}

.p-stageSelectModal__dialogInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 62px 48px;
  border-radius: 4px;
  border: 1px solid rgba(66, 44, 16, 0.5);
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__dialogInner {
    gap: 16px;
    padding: 16px 36px 24px;
  }
}

.p-stageSelectModal__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__title {
    font-size: 16px;
  }
}

.p-stageSelectModal__buttons {
  max-width: 390px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__buttons {
    gap: 24px;
  }
}

.p-stageSelectModal__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 180px;
  aspect-ratio: 180/53;
  background-image: url("../img/stage-select/modal-btn-bg.png");
  background-size: cover;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__button {
    width: 118px;
    aspect-ratio: 118/47;
    background-image: url("../img/stage-select/modal-btn-bg-sp.png");
    font-size: 14px;
  }
}
@media screen and (max-width: 359px) {
  .p-stageSelectModal__button {
    width: 31.3829787234vw;
    font-size: 3.7234042553vw;
  }
}
@media (any-hover: hover) {
  .p-stageSelectModal__button:hover {
    opacity: 0.7;
  }
}
.p-stageSelectModal__button--sub {
  background-image: url("../img/stage-select/modal-subbtn-bg.png");
  color: var(--color-text);
  width: 162px;
  aspect-ratio: 162/53;
}
@media screen and (max-width: 767px) {
  .p-stageSelectModal__button--sub {
    background-image: url("../img/stage-select/modal-subbtn-bg-sp.png");
    width: 118px;
    aspect-ratio: 118/47;
  }
}
@media screen and (max-width: 359px) {
  .p-stageSelectModal__button--sub {
    width: 31.3829787234vw;
    font-size: 3.7234042553vw;
  }
}

.p-story {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-story {
    padding-top: 50px;
  }
}

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

.p-challenge {
  background-image: url(../img/beginner/challenge-bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-challenge {
    background-image: url(../img/beginner/challenge-bg-sp.jpg);
  }
}

.p-challenge__inner {
  max-width: 935px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 767px) {
  .p-challenge__inner {
    padding: 30px 20px;
  }
}

.p-challenge__title {
  width: fit-content;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-challenge__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

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

.p-challenge__btnWrapper {
  margin-top: 32px;
}

.p-challenge__btnHead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 8px;
  color: var(--color-bg-light);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-challenge__btnHead {
    font-size: 13px;
    text-align: right;
    padding-right: 20px;
  }
}

.p-challenge__btn {
  display: flex;
  gap: 16px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 248px;
  width: 100%;
  padding: 16px 32px;
  background-color: var(--color-bg-light);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-challenge__btn {
    margin: 0 0 0 auto;
    max-width: 196px;
    padding: 4px 20px;
    font-size: 15px;
  }
}
.p-challenge__btn img {
  flex-shrink: 0;
  width: 6px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-challenge__btn img {
    width: 5px;
  }
}
@media (any-hover: hover) {
  .p-challenge__btn:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-character {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-character__content {
  position: relative;
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
  border-bottom: 2px solid rgba(66, 44, 16, 0.2);
}
@media screen and (max-width: 767px) {
  .p-character__content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding: 0;
    border-bottom: none;
  }
}
.p-character__content:first-child {
  padding-top: 0;
}

.p-character__contentTextBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.p-character__contentText {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 16px;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-character__contentText {
    font-size: 16px;
    line-height: 1.7;
    grid-template-columns: 52px 1fr;
    gap: 8px;
  }
}

.p-character__name {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-character__name {
    font-size: 18px;
  }
}

.p-character__contentImg {
  margin-right: -52px;
}
@media screen and (max-width: 767px) {
  .p-character__contentImg {
    margin-right: 0;
    order: -1;
  }
}
.p-character__contentImg img {
  width: 100%;
  height: auto;
}

.p-help__inner {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.p-404__inner {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.p-404__message {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-404__message {
    font-size: 16px;
  }
}

.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: 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;
  }
}

.c-btn__wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-btn__wrapper {
    margin-top: 40px;
  }
}

.c-btn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 504px;
  width: 100%;
  aspect-ratio: 504/117;
  background-image: url("../img/common/btn-bg.png");
  background-size: cover;
  filter: drop-shadow(0px 4px 16px rgba(141, 0, 0, 0.25));
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-bg-light);
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 280px;
    aspect-ratio: 280/105;
    background-image: url("../img/common/btn-bg-sp.png");
  }
}
@media screen and (max-width: 359px) {
  .c-btn {
    font-size: 6.3829787234vw;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}
.c-btn span {
  font-size: 18px;
}
@media screen and (max-width: 359px) {
  .c-btn span {
    font-size: 4.2553191489vw;
  }
}

.c-pageHead {
  height: 240px;
  background-image: url("../img/common/page-head-bg.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-pageHead {
    height: 160px;
    background-image: url("../img/common/page-head-bg-sp.jpg");
  }
}

.c-pageHead__inner {
  max-width: 976px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.c-pageHead__title {
  color: var(--color-bg-light);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-pageHead__title {
    font-size: 28px;
  }
}

.c-localNav {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .c-localNav {
    margin-bottom: 40px;
  }
}

.c-localNav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-localNav__list {
    flex-direction: column;
    gap: 24px;
  }
}

.c-localNav__item a {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .c-localNav__item a {
    font-size: 16px;
  }
}
.c-localNav__item a img {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .c-localNav__item a img {
    width: 32px;
    height: 32px;
  }
}

.c-faq__cat {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-faq__cat {
    margin-top: 40px;
  }
}
.c-faq__cat:first-child {
  margin-top: 0;
}

.c-faq__catTitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-faq__catTitle {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.c-faq__catLead {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-faq__catLead {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.c-faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-faq__list {
    gap: 16px;
  }
}

.c-faq__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 2px solid rgba(66, 44, 16, 0.2);
}
@media screen and (max-width: 767px) {
  .c-faq__item {
    gap: 8px;
  }
}
.c-faq__item.is-open .c-faq__question::after {
  transform: translateY(-50%) rotate(0);
  opacity: 0;
}

.c-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 64px 0 16px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-faq__question {
    gap: 8px;
    padding: 0 26px 0 8px;
  }
}
.c-faq__question::before, .c-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--color-bg);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-faq__question::before, .c-faq__question::after {
    right: 0;
    width: 18px;
    height: 2px;
  }
}
.c-faq__question::after {
  transform: translateY(-50%) rotate(90deg);
}

.c-faq__questionContent {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-faq__questionContent {
    font-size: 16px;
    line-height: 2;
  }
}

.c-faq__questionIcon {
  flex-shrink: 0;
  font-family: var(--font-family-en);
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-faq__questionIcon {
    font-size: 24px;
  }
}

.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.c-faq__answerContent {
  padding: 32px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-faq__answerContent {
    padding: 16px;
    line-height: 1.7;
  }
}
.c-faq__answerContent > * {
  margin-top: 16px;
}
.c-faq__answerContent > *:first-child {
  margin-top: 0;
}
.c-faq__answerContent * {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-faq__answerContent * {
    line-height: 1.7;
  }
}
.c-faq__answerContent ul li {
  color: var(--color-primary);
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.c-faq__descList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  counter-reset: faq-ol-counter;
}
@media screen and (max-width: 767px) {
  .c-faq__descList {
    gap: 32px;
  }
}
.c-faq__descList > li {
  position: relative;
  counter-increment: faq-ol-counter;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-faq__descList > li {
    padding-left: 26px;
  }
}
.c-faq__descList > li::before {
  content: counter(faq-ol-counter) ". ";
  position: absolute;
  top: -2px;
  left: 0;
  font-family: var(--font-family-en);
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-faq__descList > li::before {
    font-size: 24px;
  }
}
.c-faq__descList > li * {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.c-faq__descList > li h2,
.c-faq__descList > li h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-faq__descList > li h2,
  .c-faq__descList > li h3 {
    font-size: 16px;
  }
}

.c-faq__descListBox.c-faq__descListBox {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .c-faq__descListBox.c-faq__descListBox {
    padding: 16px 8px;
  }
}
.c-faq__descListBox.c-faq__descListBox * {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-faq__descListBox.c-faq__descListBox * {
    font-size: 16px;
  }
}
.c-faq__descListBox.c-faq__descListBox strong {
  font-weight: 700;
}
.c-faq__descListBox.c-faq__descListBox li {
  position: relative;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .c-faq__descListBox.c-faq__descListBox li {
    padding-left: 24px;
  }
}
.c-faq__descListBox.c-faq__descListBox li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.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;
}

.u-key.u-key {
  box-sizing: content-box;
  position: relative;
  z-index: 0;
  display: inline-block;
  vertical-align: baseline;
  color: var(--color-text-light);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  padding: 3px 8px 5px;
  margin: 0 2px;
  background: var(--color-primary);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .u-key.u-key {
    font-size: 16px;
  }
}
.u-key.u-key::after {
  content: "";
  border-radius: 7px;
  border: 2px solid var(--color-text-light);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
