*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: inherit;
  font: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

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

:root {
  --color-black: #000;
  --color-text: #000;
  --gradient-main: linear-gradient(135deg, #e60012 0%, #c50c27 10%, #802856 35%, #493e7b 57%, #214d95 76%, #0857a5 91%, #005bac 100%);
  --font-ja: source-han-sans-japanese, sans-serif;
  --font-en-akhand: akhand, sans-serif;
  --font-en-condensed: helvetica-neue-lt-pro-cond, sans-serif;
}

html {
  min-width: 320px;
  background: #000;
  font-size: min(2.5vw, 32px);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  background: #000;
  color: #fff;
  font-family: var(--font-ja);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 700;
}
body.is-modal-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

::-moz-selection {
  background: #e60012;
  color: #fff;
}

::selection {
  background: #e60012;
  color: #fff;
}

@media (min-width: 1280px) {
  body {
    background-color: #000;
    background-image: url("../images/main-bg.webp");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
  }
}
@-webkit-keyframes fv-in {
  from {
    opacity: 0;
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fv-in {
  from {
    opacity: 0;
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.is-js [data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease var(--reveal-delay), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  transition: opacity 0.8s ease var(--reveal-delay), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  transition: opacity 0.8s ease var(--reveal-delay), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  transition: opacity 0.8s ease var(--reveal-delay), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}
.is-js [data-reveal][data-reveal=up] {
  -webkit-transform: translate3d(0, 2rem, 0);
          transform: translate3d(0, 2rem, 0);
}
.is-js [data-reveal][data-reveal=left] {
  -webkit-transform: translate3d(4rem, 0, 0);
          transform: translate3d(4rem, 0, 0);
}
.is-js [data-reveal][data-reveal=right] {
  -webkit-transform: translate3d(-4rem, 0, 0);
          transform: translate3d(-4rem, 0, 0);
}
.is-js [data-reveal][data-reveal=clip] {
  clip-path: inset(0 49% 0 49%);
}
.is-js [data-reveal].is-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.is-js [data-reveal].is-show[data-reveal=clip] {
  clip-path: inset(0 0 0 0);
}

.is-loaded .p-fv__visual {
  -webkit-animation: fv-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: fv-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::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;
  }
  .is-js [data-reveal] {
    opacity: 1;
    clip-path: none;
    -webkit-transform: none;
            transform: none;
  }
}
.l-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  overflow: hidden;
  background: #000;
}

.c-section-title {
  position: relative;
  z-index: 5;
  width: 8.5625rem;
  height: 3.875rem;
  margin-inline: auto;
  background: url("../images/title-ornament.svg") center/contain no-repeat;
  color: #fff;
  font-family: var(--font-en-akhand);
  font-size: 1.78125rem;
  font-weight: 700;
  line-height: 3.875rem;
  text-align: center;
  text-shadow: 0 0 0.4375rem #000;
}

.c-stage-title {
  position: relative;
  z-index: 5;
  width: 26.875rem;
  aspect-ratio: 1301/256;
  margin-inline: auto;
  background: url("../images/title-bg.webp") center/100% 100% no-repeat;
  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;
  line-height: 0;
}
.c-stage-title img {
  height: 2.41875rem;
}

.c-gradient-heading {
  display: grid;
  place-items: center;
  background: var(--gradient-main);
}

.c-frame {
  position: relative;
  aspect-ratio: 23/12;
}
.c-frame::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 111.122244489%;
  aspect-ratio: 1109/612;
  background: url("../images/frame-image.webp") center/100% 100% no-repeat;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
.c-frame__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-gradient-frame {
  --gradient-frame-width: max(1px, 0.0625rem);
  position: relative;
}
.c-gradient-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: var(--gradient-frame-width) solid transparent;
  -o-border-image: var(--gradient-main) 1;
     border-image: var(--gradient-main) 1;
  pointer-events: none;
  content: "";
}

.c-movie {
  position: relative;
  display: block;
  width: 29.0625rem;
  aspect-ratio: 16/9;
  margin-inline: auto;
  background: #000;
}
.c-movie__poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-filter: drop-shadow(0 0 0.3125rem rgba(0, 0, 0, 0.75));
          filter: drop-shadow(0 0 0.3125rem rgba(0, 0, 0, 0.75));
}
.c-movie:hover .c-movie__play, .c-movie:focus-visible .c-movie__play {
  -webkit-transform: translate(-50%, -50%) scale(1.12);
          transform: translate(-50%, -50%) scale(1.12);
}
.c-movie:focus-visible {
  outline: 0.1875rem solid #fff;
  outline-offset: 0.3125rem;
}

.c-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.c-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.c-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.c-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 1080px);
}
.c-lightbox__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  color: #fff;
  font-family: var(--font-en-condensed);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}
.c-lightbox__close span {
  font-family: sans-serif;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 0.7;
}
.c-lightbox__close:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.3125rem;
}
.c-lightbox__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  -webkit-box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.55);
          box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.55);
}

.c-page-top {
  position: fixed;
  right: max(0.875rem, (100vw - 1280px) / 2 + 0.875rem);
  bottom: 0.875rem;
  z-index: 100;
  width: 5.375rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(calc(100% + 1.5rem));
          transform: translateY(calc(100% + 1.5rem));
  -webkit-filter: drop-shadow(0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.45));
          filter: drop-shadow(0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.45));
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.45s, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s ease, visibility 0s linear 0.45s, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.c-page-top.is-show:hover, .c-page-top.is-show:focus-visible {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}
.c-page-top:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.25rem;
  border-radius: 50%;
}

.c-braket--a, .c-braket--b {
  display: inline-block;
  width: 0.4em;
  height: 1em;
  background: url(../images/braket.svg) center top no-repeat;
  background-size: contain;
  margin-inline: 0.075em;
}
.c-braket--b {
  vertical-align: -0.1em;
}
.c-braket--a {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  vertical-align: -0.1em;
}

.p-fv {
  position: relative;
  z-index: 10;
  background: #000;
}
.p-fv__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1670;
  overflow: hidden;
}
.p-fv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv__bn-link {
  position: absolute;
  top: 0.625rem;
  right: 0.6875rem;
  z-index: 2;
  width: 5.5rem;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-fv__bn-link:hover, .p-fv__bn-link:focus-visible {
  opacity: 0.72;
}
.p-fv__bn-link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.1875rem;
}
.p-fv__date {
  position: absolute;
  right: 0;
  bottom: 0.6875rem;
  left: 0;
  z-index: 2;
  font-size: 2.390625rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: center;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.65);
}
.p-fv__reservation {
  height: 3.125rem;
  background: linear-gradient(135deg, rgb(255, 252, 219) 0%, rgb(255, 247, 153) 50%, rgb(232, 185, 31) 100%);
  color: #000;
  font-size: 2rem;
  line-height: 3.125rem;
  letter-spacing: -0.045em;
  text-align: center;
}
.p-fv__date, .p-fv__reservation {
  font-family: helvetica-neue-lt-pro-cond, source-han-sans-japanese, sans-serif;
  font-style: italic;
  font-weight: 900;
}
.p-fv__date .year, .p-fv__reservation .year {
  font-size: 1.2em;
}
.p-fv__date .date, .p-fv__reservation .date {
  font-size: 1.35em;
}
.p-fv__date small, .p-fv__reservation small {
  font-size: 0.75em;
}

.p-movie {
  position: relative;
  z-index: 8;
  padding: 2.5rem 0 3.125rem;
  background: #000;
}

.p-activity {
  position: relative;
  z-index: 6;
}
.p-activity__item {
  position: relative;
  width: 100%;
}
.p-activity__item--01, .p-activity__item--03 {
  aspect-ratio: 1920/1130;
}
.p-activity__item--02 {
  aspect-ratio: 1920/1126;
}
.p-activity__item--01 {
  margin-top: -0.9375rem;
}
.p-activity__item--02 {
  z-index: 2;
  margin-top: -4.5rem;
}
.p-activity__item--03 {
  z-index: 3;
  margin-top: -4.6875rem;
}
.p-activity__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.p-activity__text, .p-activity__frame {
  position: absolute;
  z-index: 2;
}
.p-activity__item--01 .p-activity__text {
  top: 7.8125rem;
  left: 1.5625rem;
  width: 17.75rem;
}
.p-activity__item--02 .p-activity__text {
  top: 7.8125rem;
  right: 2.1875rem;
  width: 12.1875rem;
}
.p-activity__item--03 .p-activity__text {
  top: 5.9375rem;
  left: 1.5625rem;
  width: 18.8125rem;
}
.p-activity__frame {
  top: 15.625rem;
  left: 2.8125rem;
  width: 16.25rem;
}

.p-story {
  position: relative;
  z-index: 4;
  margin-top: -5.6875rem;
}
.p-story__intro {
  position: relative;
  padding-block: 9.0625rem 8.125rem;
  background: url("../images/bg01.webp") center/100% 100% no-repeat;
}
.p-story__scroll {
  position: relative;
  width: 35.25rem;
  aspect-ratio: 1694/665;
  margin-inline: auto;
  background: url("../images/story-bg00.webp") center/100% 100% no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
}
.p-story__scroll p {
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.p-story-stage {
  position: relative;
  z-index: 5;
  width: 100%;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.p-story-stage--01, .p-story-stage--03 {
  aspect-ratio: 1920/1415;
}
.p-story-stage--02 {
  aspect-ratio: 1920/1411;
}
.p-story-stage--01 {
  margin-top: -5.625rem;
  background-image: url("../images/story-bg01.webp");
}
.p-story-stage--02 {
  margin-top: -0.4375rem;
  background-image: url("../images/story-bg02.webp");
}
.p-story-stage--03 {
  margin-top: -0.4375rem;
  background-image: url("../images/story-bg03.webp");
}
.p-story-stage__title {
  position: absolute;
  top: -1.125rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 23.75rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-story-stage__title img {
  height: 1.9375rem;
  margin-left: 1.5625rem;
}
.p-story-stage__image, .p-story-stage__content {
  position: absolute;
}
.p-story-stage__content {
  width: 16.875rem;
  overflow-x: visible;
  text-align: center;
}
.p-story-stage__catch img {
  display: inline;
  height: 3.625rem;
  width: auto;
  max-width: 9999px;
}
.p-story-stage__line {
  border: none;
  display: block;
  width: 100%;
  height: 0.375rem;
  background: url(../images/line.svg) center center no-repeat;
  background-size: contain;
  margin: 0.9375rem auto;
}
.p-story-stage__description {
  font-size: 0.8125rem;
  font-weight: 900;
  line-height: 1.575;
  text-align: center;
}
.p-story-stage:has(.c-movie) .p-story-stage__description {
  font-size: 0.75rem;
}
.p-story-stage__image {
  width: 16.25rem;
}
.p-story-stage__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
.p-story-stage__point p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-story-stage__point img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 3.4375rem;
}
.p-story-stage--01 .p-story-stage__content, .p-story-stage--03 .p-story-stage__content {
  top: 5.125rem;
  right: 1.5625rem;
}
.p-story-stage--01 .p-story-stage__image, .p-story-stage--03 .p-story-stage__image {
  top: 15.9375rem;
  left: 2.8125rem;
}
.p-story-stage--02 .p-story-stage__content {
  top: 5.4375rem;
  left: 1.5625rem;
}
.p-story-stage--02 .p-story-stage__image {
  top: 15.9375rem;
  right: 2.8125rem;
}
.p-story-stage--02 .p-story-stage__point {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-story-stage__movie {
  width: 100%;
  margin-block: 0.625rem;
}

.p-rank {
  position: relative;
  z-index: 2;
  margin-top: -5.625rem;
  padding: 5rem 0 2.1875rem;
}
.p-rank::before, .p-rank::after {
  content: "";
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
}
.p-rank::before {
  height: 64.375rem;
  top: 0;
  background: url("../images/bg02.webp") center top no-repeat;
  background-size: cover;
}
.p-rank::after {
  height: 40rem;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.p-rank__arrow {
  width: 5.375rem;
  margin: 0 auto 0.9375rem;
}
.p-rank__title {
  width: 26.875rem;
  margin-bottom: 2.0625rem;
}
.p-rank__title img {
  height: 2.40625rem;
}
.p-rank__main {
  width: 20.625rem;
  margin: 0 auto 2.8125rem;
}
.p-rank__viewport {
  width: 100%;
  height: 15.8125rem;
  overflow: hidden;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}
.p-rank__viewport:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-rank__viewport:focus-visible {
  outline: 0.1875rem solid #fff;
  outline-offset: -0.1875rem;
}
.p-rank__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.125rem;
  -webkit-transform: translate3d(calc(var(--slide-index) * -29.625rem), 0, 0);
          transform: translate3d(calc(var(--slide-index) * -29.625rem), 0, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 6.625rem;
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.p-rank__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26.5rem;
          flex: 0 0 26.5rem;
  width: 26.5rem;
  --gradient-frame-width: max(1px, 0.0625rem);
  position: relative;
  z-index: 1;
}
.p-rank__slide::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: var(--gradient-frame-width) solid transparent;
  -o-border-image: var(--gradient-main) 1;
     border-image: var(--gradient-main) 1;
  pointer-events: none;
  content: "";
}
.p-rank__slide img {
  width: 100%;
  pointer-events: none;
}
.p-rank__text {
  width: 35.3125rem;
  margin: 1.25rem auto 0;
}

.p-experience {
  position: relative;
  z-index: 4;
  padding-top: 3.125rem;
}
.p-experience__sheet {
  position: relative;
  width: 35.1875rem;
  aspect-ratio: 1688/3739;
  margin-inline: auto;
  background: url("../images/experience-bg.webp") center/100% 100% no-repeat;
  padding-top: 6.5625rem;
}
.p-experience__title {
  width: 21.25rem;
  height: 4.6875rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
  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;
  line-height: 0;
}
.p-experience__title img {
  height: 2.40625rem;
}
.p-experience__title::before, .p-experience__title::after {
  content: "";
  width: 100%;
  height: 0.4375rem;
  background: url(../images/line.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
.p-experience__title::before {
  top: 0;
}
.p-experience__title::after {
  bottom: 0;
}
.p-experience__step {
  width: 21.25rem;
  margin: 0.9375rem auto;
  line-height: 0;
}
.p-experience__step-title {
  width: 13rem;
  margin: 0 auto 0.625rem;
  --reveal-delay: 80ms;
}
.p-experience__step-image {
  margin-inline: auto;
  --reveal-delay: 220ms;
}
.p-experience__step-arrow {
  width: 100%;
  margin-inline: auto;
  --reveal-delay: 240ms;
}
.p-experience__step--01 .p-experience__step-image {
  width: 12.5rem;
  margin-block: 1.3125rem 1.6875rem;
}
.p-experience__step--02 .p-experience__step-image {
  width: 8.0625rem;
  margin-block: 1.1875rem 0.9375rem;
}
.p-experience__step--03 .p-experience__step-image {
  width: 21.0625rem;
  margin-block: 1.4375rem 1.75rem;
}
.p-experience__step--04 .p-experience__step-image {
  width: 19.875rem;
  margin-top: 1.25rem;
}

.p-recommend {
  position: relative;
  z-index: 5;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow-x: hidden;
  margin-top: 3.125rem;
  padding-block: 0.625rem;
  line-height: 0;
}
.p-recommend::before {
  content: "";
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  background: var(--gradient-main);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -10.625rem;
}
.p-recommend__panel {
  width: auto;
  height: 60rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/recommend-image04.webp) center bottom -0.625rem no-repeat #fff;
  background-size: 40rem auto;
  text-align: center;
  padding-block: 4.375rem 15rem;
  margin-left: -10rem;
  overflow: hidden;
}
.p-recommend__title, .p-recommend__people, .p-recommend__text {
  position: relative;
  z-index: 2;
}
.p-recommend__title {
  width: 25.375rem;
  margin-inline: auto;
}
.p-recommend__people {
  position: relative;
  width: 31.875rem;
  height: 29.6875rem;
  margin: 1.5625rem auto 2.1875rem;
}
.p-recommend__person {
  position: absolute;
  width: 13.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: auto;
}
.p-recommend__person-image {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-recommend__person-image::before {
  content: "";
  width: calc(100% + 0.25rem);
  height: auto;
  aspect-ratio: 1/1;
  background: var(--gradient-main);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: -0.125rem;
  left: -0.125rem;
}
.p-recommend__person figcaption img {
  height: 1.375rem;
  margin-inline: auto;
}
.p-recommend__person--01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  --reveal-delay: 80ms;
  top: 0;
  left: 0;
  right: 0;
}
.p-recommend__person--02 {
  --reveal-delay: 180ms;
  bottom: 0;
  left: 0;
}
.p-recommend__person--03 {
  --reveal-delay: 280ms;
  bottom: 0;
  right: 0;
}
.p-recommend__text {
  width: 22.3125rem;
  margin-inline: auto;
}

.p-shop {
  position: relative;
  z-index: 6;
  margin: 3.75rem auto;
  width: 34.375rem;
  padding: 0 0.125rem 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#e60012), color-stop(10%, #c50c27), color-stop(35%, #802856), color-stop(57%, #493e7b), color-stop(76%, #214d95), color-stop(91%, #0857a5), to(#005bac));
  background: linear-gradient(90deg, #e60012 0%, #c50c27 10%, #802856 35%, #493e7b 57%, #214d95 76%, #0857a5 91%, #005bac 100%);
}
.p-shop__heading {
  width: 100%;
  height: 3.75rem;
  background: none;
  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;
}
.p-shop__heading img {
  width: 12.5rem;
}
.p-shop__card {
  width: 100%;
  padding: 2.25rem;
  background: #fff;
  color: #000;
  text-align: center;
}
.p-shop__name {
  width: 13.6875rem;
  margin-inline: auto;
}
.p-shop__image {
  width: 100%;
  margin: 1.25rem auto;
}
.p-shop__address {
  margin-top: 0.6875rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
}
.p-shop__link {
  display: block;
  width: 29.75rem;
  margin: 3.125rem auto 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-shop__link:hover, .p-shop__link:focus-visible {
  opacity: 0.72;
}
.p-shop__link:focus-visible {
  outline: 0.1875rem solid #0099d8;
  outline-offset: 0.25rem;
}

.p-footer {
  position: relative;
  z-index: 5;
  padding-block: 2.5rem;
  background: #000;
  text-align: center;
}
.p-footer__op-link, .p-footer__bn-link {
  display: block;
  margin-inline: auto;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.p-footer__op-link:hover, .p-footer__op-link:focus-visible, .p-footer__bn-link:hover, .p-footer__bn-link:focus-visible {
  opacity: 0.72;
}
.p-footer__op-link:focus-visible, .p-footer__bn-link:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.25rem;
}
.p-footer__op-link {
  width: 20.375rem;
}
.p-footer__copyright {
  margin-top: 2.5rem;
  font-size: 0.6625rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
.p-footer__bn-link {
  width: 11rem;
  margin-top: 2.5625rem;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}/*# sourceMappingURL=style.css.map */