@charset "UTF-8";
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #fff;
}

body.is-active {
  overflow: hidden;
}
@media screen and (min-width: px) {
  body.is-active {
    overflow: auto;
  }
}

@media screen and (min-width: px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*
 * Modern CSS Reset (2024 Updated Version)
 * Based on modern-css-reset with additional optimizations
 */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  font-weight: normal;
  font-weight: initial;
  margin: 0;
  padding: 0;
}

/* List reset */
ul,
ol {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: 100dvh;
  /* Modern viewport height */
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Link reset */
a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Modern image handling */
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Aspect ratio support */
img[style*=aspect-ratio] {
  height: 100%;
}

/* Form element reset */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/* Modern button reset */
button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
}

/* Smooth scrolling with fallback */
/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Details and summary reset */
summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* Modern hover states */
@media (any-hover: hover) {
  a,
  button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}
/* Touch device optimization */
@media (hover: none) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}
/* Modern focus styles */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Modern scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, .3) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 4px;
}

/* Prevent image drag and select */
img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Fix for iOS tap highlight */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Modern text selection */
::-moz-selection {
  background-color: rgba(0, 0, 0, .1);
}
::selection {
  background-color: rgba(0, 0, 0, .1);
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .l-inner {
    max-width: 30rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-hamburger {
    height: 1.1875rem;
    width: 1.9375rem;
    z-index: 800;
  }
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
    visibility: hidden;
  }
}

.c-hamburger__box {
  width: 100%;
  display: inline-block;
  position: relative;
  height: 100%;
}

.c-hamburger__line {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #222;
  display: inline-block;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-hamburger__line:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}

.c-hamburger__line:nth-child(3) {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 0;
  top: auto;
  top: initial;
}

/* ハンバーガーメニューがアクティブ時のスタイル */
.c-hamburger.is-active .c-hamburger__line--1 {
  -webkit-transform: translateY(8px) translateX(-50%) rotate(45deg);
          transform: translateY(8px) translateX(-50%) rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line--2 {
  opacity: 0;
}

.c-hamburger.is-active .c-hamburger__line--3 {
  -webkit-transform: translateY(-8px) translateX(-50%) rotate(-45deg);
          transform: translateY(-8px) translateX(-50%) rotate(-45deg);
}

@media screen and (max-width: 767.98px) {
  .p-artwork {
    padding-block: 6rem 8.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork {
    padding-block: 11.875rem 9.5625rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-artwork__inner {
    max-width: none;
    max-width: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork__inner {
    max-width: 83.125rem;
  }
}

.p-artwork__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .p-artwork__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork__head {
    gap: 1.25rem;
  }
}

.p-artwork__title {
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-artwork__title {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork__title {
    font-size: 3.125rem;
  }
}

.p-artwork__text {
  position: relative;
  font-weight: 500;
  padding-inline: 0.5625rem 0.625rem;
  background-color: #e9ff42;
}
@media screen and (max-width: 767.98px) {
  .p-artwork__text {
    font-size: 1rem;
    line-height: 1.5625;
    width: 8.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork__text {
    width: 7.8125rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-artwork__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background-color: #222;
}

.p-artwork__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 5px;
  background-color: #222;
}

.p-artwork__items {
  gap: 1.0625rem;
}
@media screen and (max-width: 767.98px) {
  .p-artwork__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5rem 1.0625rem;
    margin-top: 1.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 39.4375rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 663px) {
  .p-artwork__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-artwork__items {
    display: grid;
    gap: 4.375rem 1.0625rem;
    margin-top: 3.75rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-artwork-item {
  width: 100%;
  max-width: 19.1875rem;
}
.c-artwork-item__img {
  width: 100%;
}
.c-artwork-item__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 307/auto;
}

.c-artwork-item__info {
  margin-top: 0.625rem;
}
.c-artwork-item__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.c-artwork-item__info-item:not(:first-child) {
  margin-top: 0.625rem;
}

.c-artwork-item__info-title {
  height: 100%;
  line-height: 2.0833333333;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #222;
  text-align: center;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .c-artwork-item__info-title {
    width: 4.625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-artwork-item__info-title {
    min-width: 4.625rem;
  }
}

.c-artwork-item__info-text {
  line-height: 1.6875;
  font-size: 1rem;
  font-weight: 500;
}
.c-artwork-item__info-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.c-artwork-item__info-link::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #222;
  border-radius: 50%;
}

.c-artwork-item__info-link span {
  text-decoration: underline;
  text-underline-offset: 10px;
  font-weight: 500;
  -webkit-text-decoration-color: #222;
          text-decoration-color: #222;
  text-decoration-thickness: 1px;
}

.p-footer {
  width: 100%;
  background: #f0f0f0;
  overflow: hidden;
}
.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.625rem;
}
.p-footer__nav-link {
  line-height: 1;
  display: block;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767.98px) {
  .p-footer__nav-link {
    padding-block: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav-link {
    padding-block: 1.875rem;
  }
}

.p-footer__copy {
  background-color: #222;
  text-align: center;
  line-height: 1;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767.98px) {
  .p-footer__copy {
    padding-block: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    padding-block: 1.125rem;
  }
}

.p-footer__copy-text {
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-footer__copy-text {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__copy-text {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 767.98px) {
  .p-fv {
    min-height: calc(100vh - 6.1875rem);
    padding-bottom: 1.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv {
    min-height: calc(100vh - 7.8125rem);
  }
}
@media screen and (min-width: 768px) and (max-height: 832px) {
  .p-fv {
    height: 100%;
    margin-bottom: 6.25rem;
  }
}

.p-fv__inner {
  position: relative;
  height: 100%;
}
.p-fv__main {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-fv__main {
    padding-top: 8.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__main {
    padding-top: 16.125rem;
    padding-bottom: 12.5rem;
  }
}

.p-fv__head {
  width: 100%;
}
.p-fv__title {
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 767.98px) {
  .p-fv__title {
    font-size: 3.125rem;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 6.25rem;
    line-height: 1;
  }
}

.p-fv__title-highlight {
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-fv__title-highlight {
    font-size: 4.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__title-highlight {
    font-size: 9.375rem;
  }
}

.p-fv__title-highlight::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  background-color: #e9ff42;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .p-fv__title-highlight::before {
    height: 1.25rem;
    bottom: 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__title-highlight::before {
    height: 1.25rem;
    bottom: 1.25rem;
  }
}

.p-fv__title-highlight--1::before {
  left: 57.5%;
}

.p-fv__title-highlight--2::before {
  width: 97.5%;
  left: 51.5%;
}

.p-fv__title-ls {
  letter-spacing: -0.12em;
}

.p-fv__title-ls2 {
  letter-spacing: -0.02em;
}

.p-fv__title-ls3 {
  letter-spacing: 0.02em;
}

.p-fv__body {
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-fv__body {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__body {
    margin-top: 3.375rem;
  }
}

.p-fv__text {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .p-fv__text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    font-size: 1.25rem;
  }
}

.p-fv__line {
  margin-inline: auto;
  background: url(../images/pc/fv-line.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767.98px) {
  .p-fv__line {
    margin-top: 1rem;
    width: 0.75rem;
    -webkit-animation: line 2s infinite;
            animation: line 2s infinite;
    height: 3.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__line {
    margin-top: 1.875rem;
    width: 0.9375rem;
    -webkit-animation: line 1.5s ease-in-out infinite;
            animation: line 1.5s ease-in-out infinite;
    height: 5rem;
  }
}

@-webkit-keyframes line {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes line {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.p-fv__btn {
  margin-top: 1.4375rem;
}
.p-fv__btn a {
  position: relative;
  display: block;
  background: linear-gradient(45deg, #e9ff42, #e0f731);
  border-radius: 0.625rem;
  margin-inline: auto;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  width: 18.75rem;
  line-height: 6;
  font-size: 1rem;
}
.p-fv__btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #080808;
  border-radius: 10px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-fv__btn a:hover {
  opacity: 1;
}
.p-fv__btn a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-fv__btn a span {
  color: #222;
  position: relative;
  z-index: 4;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.p-fv__btn a span:hover {
  color: #fff;
}

.p-fv__btn a:hover span {
  color: #fff;
}

.p-header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .p-header {
    padding-block: 1.25rem;
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .p-header {
    padding-block: 1.875rem;
  }
}

.p-header__inner {
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: 1.5625rem;
    max-width: 83.375rem;
  }
}

.p-header__logo {
  display: block;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .p-header__logo {
    width: 8.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 11.5rem;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 184/59;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .p-header__nav.is-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    z-index: 100;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav-list {
    margin-top: 7.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.p-header__nav-item {
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav-item {
    border-radius: 0;
    background-color: #fff;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-item {
    border-right: 1px solid #080808;
    border-radius: 10px 0 0 10px;
    background-color: #222;
  }
}

@media screen and (max-width: 767.98px) {
  .p-header__nav-item.is-active,
  .p-header__nav-item:hover {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-item.is-active,
  .p-header__nav-item:hover {
    border-radius: 10px 0 0 10px;
    background: linear-gradient(to bottom, #e9ff42 0, #e9ff42 calc(100% - 3px), transparent calc(100% - 3px));
  }
}

@media screen and (max-width: 767.98px) {
  .p-header__nav-item:hover {
    background: #222;
  }
}

.p-header__nav-item:nth-child(2) {
  border-radius: 0rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:nth-child(3) {
    border-radius: 0 10px 10px 0;
  }
}

.p-header__nav-item.is-active::before,
.p-header__nav-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0, transparent calc(100% - 3px), #080808 calc(100% - 3px));
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav-item.is-active::before,
  .p-header__nav-item:hover::before {
    display: none;
  }
}

.p-header__nav-item:nth-child(2).is-active::before {
  border-radius: 0rem;
}

.p-header__nav-item:last-child {
  border-right: none;
}

.p-header__nav-item:nth-child(3) span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}

.p-header__nav-item:nth-child(3) span::before {
  content: "";
  display: block;
  width: 9px;
  height: 7px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav-item:nth-child(3) span::before {
    background: url(../images/pc/blank-black.webp) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-item:nth-child(3) span::before {
    background: url(../images/pc/blank-icon.webp) no-repeat center center/contain;
  }
}

@media screen and (max-width: 767.98px) {
  .p-header__nav-item:nth-child(3) .p-header__nav-link:hover span::before {
    background: url(../images/pc/black-yellow.webp) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-item:nth-child(3) .p-header__nav-link:hover span::before {
    background: url(../images/pc/blank-black.webp) no-repeat center center/contain;
  }
}

.p-header__nav-link {
  display: block;
  font-weight: 500;
  z-index: 3;
  position: relative;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-header__nav-link {
    width: 100%;
    color: #222;
    padding-block: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-link {
    color: #fff;
    padding: 1.25rem 1.875rem;
  }
}
.p-header__nav-link:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-header__nav-item.is-active .p-header__nav-link,
  .p-header__nav-item:hover .p-header__nav-link {
    color: #222;
  }
}

@media screen and (max-width: 767.98px) {
  .p-header__nav-item:hover .p-header__nav-link {
    color: #e9ff42;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav-item:hover .p-header__nav-link {
    color: #222;
  }
}

.p-main {
  position: relative;
}

.p-main__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: top left;
  background-repeat: repeat;
  background: url(../images/pc/bg.webp);
}
@media screen and (max-width: 767.98px) {
  .p-main__bg {
    background-size: 750px auto;
  }
}
@media screen and (min-width: 768px) {
  .p-main__bg {
    background-size: 1648px auto;
  }
}

body {
  position: relative;
  overflow-x: hidden;
}

.p-modal {
  display: none;
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .3);
  z-index: 1100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.p-modal__content {
  margin-inline: auto;
  text-align: center;
  color: #fff;
  background-color: #222;
}
@media screen and (max-width: 767.98px) {
  .p-modal__content {
    width: 92%;
    max-width: 25rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding-bottom: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__content {
    margin-top: 24%;
    width: 100%;
    margin-top: 21.125rem;
    max-width: 43.125rem;
    padding-bottom: 2.5rem;
  }
}

.p-modal__head {
  border-bottom: 1px solid #000;
}
.p-modal__title {
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .p-modal__title {
    font-size: 1.25rem;
    line-height: 2.85;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__title {
    font-size: 1rem;
    line-height: 3.5625;
  }
}

.p-modal__body {
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .p-modal__body {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__body {
    margin-top: 2.5rem;
  }
}

.p-modal__body-text {
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-modal__body-text {
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__body-text {
    line-height: 1.6;
  }
}

.p-modal__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .p-modal__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__btns {
    margin-top: 2.5rem;
    gap: 1.875rem;
  }
}

.p-modal__btn {
  border: 3px solid #000;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  min-width: 12.5rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  line-height: 3.125;
}
.p-modal__btn span {
  position: relative;
  z-index: 1;
}

.p-modal__btn:hover {
  opacity: 1;
}

.p-modal__btn::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 100%;
  height: 100%;
  background-color: #e9ff42;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-modal__btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-modal__btn span {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.p-modal__btn:hover span {
  color: #222;
}

.p-page-top {
  cursor: pointer;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  width: 5.75rem;
  height: 3.3125rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#cbdf32), color-stop(13%, #e9ff42), to(#e9ff42));
  background: linear-gradient(to top, #cbdf32 0%, #e9ff42 13%, #e9ff42 100%);
  border-radius: 0.625rem 0.625rem 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 200;
}
@media screen and (max-width: 767.98px) {
  .p-page-top {
    width: 7.4375rem;
    height: 4.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-page-top {
    width: 5.75rem;
    height: 3.3125rem;
  }
}

.p-page-top__link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .p-page-top__link {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-page-top__link {
    font-size: 0.8125rem;
  }
}

.p-page-top__link:hover {
  opacity: 1;
}

.p-test {
  background: url(../assets/images/common/dummy.jpg) no-repeat top center/cover;
}

@media screen and (max-width: 767.98px) {
  .u-desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
