@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    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;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

br.u-br-sp {
  display: none;
}

br.u-br-pc {
  display: block;
}

@media (max-width: 767px) {
  br.u-br-sp {
    display: block;
  }
  br.u-br-pc {
    display: none;
  }
}
.c-btn {
  padding: 0.875rem 3.75rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 3.125rem;
  background-color: #fff;
}

.c-btn.c-btn--black {
  color: #fff;
  background-color: #000;
}

body {
  background: #02070b;
}

.p-page {
  overflow: clip;
}

.p-global-menu__toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 30;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.p-global-menu__toggle-lines,
.p-global-menu__toggle-lines::before,
.p-global-menu__toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.28);
          box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.28);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  content: "";
}

.p-global-menu__toggle-lines {
  position: relative;
}

.p-global-menu__toggle-lines::before {
  position: absolute;
  top: -0.38rem;
  left: 0;
}

.p-global-menu__toggle-lines::after {
  position: absolute;
  top: 0.38rem;
  left: 0;
}

.p-global-menu__backdrop {
  position: fixed;
  top: 0;
  right: 24rem;
  bottom: 0;
  width: min(100vw, 14rem);
  z-index: 28;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.p-global-menu__drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 29;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 24rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f7faf4;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

.p-global-menu__drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 106, 71, 0)), color-stop(52%, rgba(27, 106, 71, 0)), color-stop(78%, rgba(27, 106, 71, 0.08)), to(rgba(27, 106, 71, 0.16)));
  background: linear-gradient(180deg, rgba(27, 106, 71, 0) 0%, rgba(27, 106, 71, 0) 52%, rgba(27, 106, 71, 0.08) 78%, rgba(27, 106, 71, 0.16) 100%);
  pointer-events: none;
}

.p-global-menu__close {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: 1.35rem 0.75rem 0 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: #2b8a6d;
  cursor: pointer;
}

.p-global-menu__close::before,
.p-global-menu__close::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
}

.p-global-menu__close::before {
  -webkit-transform: translateY(1px) rotate(45deg);
          transform: translateY(1px) rotate(45deg);
}

.p-global-menu__close::after {
  -webkit-transform: translateY(-1px) rotate(-45deg);
          transform: translateY(-1px) rotate(-45deg);
}

.p-global-menu__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 2rem 1.5rem 2.5rem;
}

.p-global-menu__content {
  width: 100%;
}

.p-global-menu__nav,
.p-global-menu__subnav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.p-global-menu__nav {
  margin-top: 2rem;
}

.p-global-menu__subnav {
  margin-top: 3.75rem;
}

.p-global-menu__item + .p-global-menu__item {
  margin-top: 1.35rem;
}

.p-global-menu__subnav .p-global-menu__item + .p-global-menu__item {
  margin-top: 0.95rem;
}

.p-global-menu__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #2f2f2f;
  text-decoration: none;
}

.p-global-menu__subnav .p-global-menu__link {
  font-size: 0.95rem;
}

.p-global-menu__brand img {
  display: block;
  width: min(100%, 9.5rem);
  height: auto;
  margin: 0 auto;
}

.p-global-menu__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 40%;
  margin-top: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .p-global-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open .p-global-menu__drawer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body.is-menu-open .p-global-menu__toggle {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-global-menu__toggle {
    top: 1.35rem;
    right: 1.5rem;
  }
  .p-global-menu__backdrop {
    right: 30rem;
    width: 18rem;
  }
  .p-global-menu__drawer {
    width: 30rem;
  }
  .p-global-menu__inner {
    padding: 2.5rem 3rem 3rem;
  }
  .p-global-menu__subnav {
    margin-top: 4.5rem;
  }
}
.p-fv {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 1.5rem;
}

.p-fv__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 4.5rem;
}

.p-fv__logo {
  width: min(100%, 18.75rem);
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translateY(1rem) scale(0.9);
          transform: translateY(1rem) scale(0.9);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.1s ease;
  transition: opacity 0.8s ease, -webkit-transform 1.1s ease;
  transition: opacity 0.8s ease, transform 1.1s ease;
  transition: opacity 0.8s ease, transform 1.1s ease, -webkit-transform 1.1s ease;
}

.p-fv__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 301/225;
  height: auto;
}

.is-loaded .p-fv__logo {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

@media screen and (min-width: 768px) {
  .p-fv__logo {
    width: min(100%, 18.75rem);
  }
}
.p-immersive {
  position: relative;
}

.p-immersive__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  margin-bottom: -100svh;
  isolation: isolate;
  pointer-events: none;
}

.p-immersive__bg,
.p-immersive__overlay {
  position: absolute;
  inset: 0;
}

.p-immersive__bg {
  background: url("../images/アセット 1.jpg") center center/cover no-repeat;
  opacity: 0;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: opacity 1.5s ease 0.55s, -webkit-transform 2.4s ease 0.55s;
  transition: opacity 1.5s ease 0.55s, -webkit-transform 2.4s ease 0.55s;
  transition: opacity 1.5s ease 0.55s, transform 2.4s ease 0.55s;
  transition: opacity 1.5s ease 0.55s, transform 2.4s ease 0.55s, -webkit-transform 2.4s ease 0.55s;
}

.p-immersive__overlay {
  background: none;
}

.is-loaded .p-immersive__bg {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.p-story {
  position: relative;
  min-height: 100svh;
  color: #fff;
  --story-progress: 0;
}

.p-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 6, 10, 0.06)), color-stop(18%, rgba(1, 6, 10, 0.12)), color-stop(36%, rgba(1, 6, 10, calc(0.16 + var(--story-progress, 0) * 0.28))), color-stop(70%, rgba(1, 6, 10, calc(0.34 + var(--story-progress, 0) * 0.34))), to(rgba(1, 6, 10, calc(0.5 + var(--story-progress, 0) * 0.26))));
  background: linear-gradient(180deg, rgba(1, 6, 10, 0.06) 0%, rgba(1, 6, 10, 0.12) 18%, rgba(1, 6, 10, calc(0.16 + var(--story-progress, 0) * 0.28)) 36%, rgba(1, 6, 10, calc(0.34 + var(--story-progress, 0) * 0.34)) 70%, rgba(1, 6, 10, calc(0.5 + var(--story-progress, 0) * 0.26)) 100%);
  pointer-events: none;
}

.p-story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100svh;
  padding: 5rem 1.5rem;
}

.p-story__panel {
  width: min(100%, 31.51046875rem);
  max-width: 31.51046875rem;
  min-height: 29.6751rem;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.p-story__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 24.78115rem);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.125;
  letter-spacing: 0.02em;
  opacity: 1;
}

.p-story__copy p {
  margin: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.p-story__copy p + p {
  margin-top: 1.5rem;
}

.p-story__paragraph--first {
  opacity: clamp(0, (var(--story-progress, 0) - 0.3) / 0.22, 1);
}

.p-story__paragraph--second {
  opacity: clamp(0, (var(--story-progress, 0) - 0.46) / 0.22, 1);
}

.p-story__paragraph--third {
  opacity: clamp(0, (var(--story-progress, 0) - 0.62) / 0.22, 1);
}

.p-story__title {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0;
  font-size: 2.1875rem;
  font-weight: 200;
  opacity: clamp(0, (var(--story-progress, 0) - 0.26) / 0.18, 1);
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

@media screen and (max-width: 767px) {
  .p-story {
    min-height: auto;
  }
  .p-story__inner {
    min-height: 100svh;
    padding: 3rem 2.25rem 2rem;
  }
  .p-story__panel {
    width: min(100%, 22rem);
    min-height: auto;
    padding-right: 3.4rem;
  }
  .p-story__copy {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 1rem;
    font-size: 0.89rem;
    line-height: 2.3;
  }
  .p-story__paragraph {
    margin: 0;
    white-space: nowrap;
  }
  .p-story__paragraph--second {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    opacity: clamp(0, (var(--story-progress, 0) - 0.3) / 0.22, 1);
  }
  .p-story__paragraph--first {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    opacity: clamp(0, (var(--story-progress, 0) - 0.46) / 0.22, 1);
  }
  .p-story__paragraph--third {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    opacity: clamp(0, (var(--story-progress, 0) - 0.62) / 0.22, 1);
  }
  .p-story__title {
    top: -5.5rem;
    right: 70px;
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-story__inner {
    padding: 7rem 2rem;
  }
  .p-story__panel {
    width: min(100%, 31.51046875rem);
    min-height: 29.6751rem;
  }
}
.p-opening {
  position: relative;
  min-height: 100svh;
  margin-bottom: 0;
  color: #fff;
  --opening-progress: 0;
  --bridge-parallax-y: 0px;
}

.p-opening::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/アセット 1.jpg") center center/cover no-repeat;
  -webkit-transform: translate3d(0, var(--bridge-parallax-y, 0px), 0) scale(1.04);
          transform: translate3d(0, var(--bridge-parallax-y, 0px), 0) scale(1.04);
  pointer-events: none;
  z-index: -1;
}

.p-opening::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 6, 10, 0.72)), color-stop(38%, rgba(1, 6, 10, calc(0.72 + var(--opening-progress, 0) * 0.06))), to(rgba(1, 6, 10, calc(0.78 + var(--opening-progress, 0) * 0.14))));
  background: linear-gradient(180deg, rgba(1, 6, 10, 0.72) 0%, rgba(1, 6, 10, calc(0.72 + var(--opening-progress, 0) * 0.06)) 38%, rgba(1, 6, 10, calc(0.78 + var(--opening-progress, 0) * 0.14)) 100%);
  pointer-events: none;
  z-index: 0;
}

.p-opening__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem 0;
}

.p-opening__date {
  margin: 0;
  padding: 1rem 0;
  font-family: "Noto Serif JP", serif;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0;
  font-size: 2.1875rem;
  line-height: 1.75;
  font-weight: 200;
  opacity: clamp(0.14, (var(--opening-progress, 0) - 0.62) / 0.2, 1);
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

@media screen and (max-width: 767px) {
  .p-opening {
    margin-bottom: 0;
  }
  .p-opening__date {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-opening__inner {
    padding-bottom: 0;
  }
  .p-opening__date {
    padding: 1.5rem 0;
  }
}
.p-opening-event {
  position: relative;
  z-index: 5;
  --opening-panel-progress: 0;
  --opening-page-gap: 6.25rem;
  --opening-copy-gap: 2.75rem;
  --opening-media-height: 42rem;
  --opening-media-top-space: 0;
  --opening-copy-offset-left: 7%;
  --opening-page-bottom-space: 5.625rem;
  --opening-pc-canvas-width: 1506px;
}

.p-opening-event__sticky {
  position: relative;
  isolation: isolate;
}

.p-opening-event__heading-track {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 80%;
  z-index: 3;
  pointer-events: none;
}

.p-opening-event__sticky::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100svh;
  z-index: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 6, 10, 0)), color-stop(40%, rgba(1, 6, 10, 0.08)), color-stop(80%, rgba(1, 6, 10, 0.54)), to(rgba(1, 6, 10, 0.84)));
  background: linear-gradient(180deg, rgba(1, 6, 10, 0) 0%, rgba(1, 6, 10, 0.08) 40%, rgba(1, 6, 10, 0.54) 80%, rgba(1, 6, 10, 0.84) 100%);
  pointer-events: none;
}

.p-opening-event__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: auto;
  overflow: visible;
}

.p-opening-event__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#dae5db), to(#ffffff));
  background: linear-gradient(180deg, #dae5db 0%, #ffffff 100%);
  border-radius: 5.4375rem 5.4375rem 0 0;
  -webkit-box-shadow: 0 24px 80px rgba(4, 9, 14, 0.28);
          box-shadow: 0 24px 80px rgba(4, 9, 14, 0.28);
}

.p-opening-event__media-image {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  clip-path: inset(0 0 calc((1 - var(--opening-media-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-opening-event__media-image--sp {
  display: none;
}

.p-opening-event__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--opening-media-progress, 0)) * 100%) 0);
  will-change: clip-path;
  pointer-events: none;
}

.p-line-image {
  display: block;
  width: 110%;
  height: 110%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-opening-event__line .p-line-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-line-image--sp {
  display: none;
}

.p-opening-event__line .p-line-image--pc {
  display: block;
}

.p-opening-event__line .p-line-image--sp {
  display: none;
}

.js-opening-fade {
  opacity: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.js-opening-fade.is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-opening-event__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(2, auto);
  row-gap: 0;
  padding-top: 6.25rem;
  padding-bottom: var(--opening-page-bottom-space);
  overflow: visible;
}

.p-opening-event__page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: auto;
  padding-bottom: 0;
}

.p-opening-event__page--second {
  padding-top: 60px;
}

.p-opening-event__media-group {
  position: relative;
  width: 100%;
  min-height: var(--opening-media-height);
  height: var(--opening-media-height);
}

.p-opening-event__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  background: transparent;
  -webkit-mask-image: url("../images/photo-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/photo-mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.p-opening-event__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--opening-photo-delay, 0s);
  transition: opacity 0.7s ease var(--opening-photo-delay, 0s);
}

.p-opening-event__page--first .p-opening-event__photo--main,
.p-opening-event__page--second .p-opening-event__photo--main {
  top: 8%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --opening-photo-delay: 0.18s;
}

.p-opening-event__page--first .p-opening-event__photo--top-left,
.p-opening-event__page--second .p-opening-event__photo--top-left {
  top: 5%;
  left: 5%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --opening-photo-delay: 0.08s;
}

.p-opening-event__page--first .p-opening-event__photo--mid-left,
.p-opening-event__page--second .p-opening-event__photo--mid-left {
  top: 16%;
  left: 6%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --opening-photo-delay: 0.28s;
}

.p-opening-event__page--first .p-opening-event__photo--mid-right,
.p-opening-event__page--second .p-opening-event__photo--mid-right {
  top: 26%;
  right: -6%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --opening-photo-delay: 0.38s;
}

.p-opening-event__page--first .p-opening-event__photo--mid-left {
  top: 42%;
  left: -1%;
  width: 16.5%;
}

.p-opening-event__page--second .p-opening-event__photo--top-left {
  top: 42%;
}

.p-opening-event__page--second .p-opening-event__photo--mid-left {
  top: 5%;
  left: -1%;
  right: auto;
  width: 16.5%;
}

.p-opening-event__page--first .p-opening-event__photo--mid-right {
  top: 44%;
}

.p-opening-event__page--second .p-opening-event__photo--mid-right {
  top: 47%;
  right: -6%;
  left: auto;
}

.p-opening-event__heading {
  position: sticky;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(19rem, 100vw - 3rem);
  margin-left: auto;
  margin-right: clamp(1rem, 14vw, 14%);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.95rem;
}

.p-opening-event__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.75rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #22786f;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-opening-event__title span {
  display: inline;
}

.p-opening-event__lead {
  margin: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.942;
  letter-spacing: 0;
  color: #333333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-opening-event__lead--sp {
  display: none;
}

.p-opening-event__lead--pc {
  display: block;
  padding-top: 5rem;
}

.p-opening-event__block {
  position: relative;
  z-index: 3;
  width: min(24rem, 36vw);
  margin-top: 0;
  margin-left: var(--opening-copy-offset-left);
  --opening-block-fade-y: 1.5rem;
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(var(--opening-block-fade-y));
          transform: translateY(var(--opening-block-fade-y));
  -webkit-transition: opacity 0.7s ease var(--opening-block-delay, 0.2s), -webkit-transform 0.9s ease var(--opening-block-delay, 0.2s);
  transition: opacity 0.7s ease var(--opening-block-delay, 0.2s), -webkit-transform 0.9s ease var(--opening-block-delay, 0.2s);
  transition: opacity 0.7s ease var(--opening-block-delay, 0.2s), transform 0.9s ease var(--opening-block-delay, 0.2s);
  transition: opacity 0.7s ease var(--opening-block-delay, 0.2s), transform 0.9s ease var(--opening-block-delay, 0.2s), -webkit-transform 0.9s ease var(--opening-block-delay, 0.2s);
}

.p-opening-event__block--first {
  --opening-block-delay: 0.32s;
}

.p-opening-event__block--second {
  --opening-block-delay: 0.42s;
}

.p-opening-event__block-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1.35;
  color: #22786f;
  white-space: nowrap;
}

.p-opening-event__block-text {
  margin: 1.4rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  white-space: nowrap;
}

.p-opening-event__page--first .p-opening-event__block-title {
  font-size: 1.5625rem;
}

.p-opening-event__page--second .p-opening-event__block-title {
  font-size: 1.375rem;
}

.p-opening-event__page--first .p-opening-event__block-text,
.p-opening-event__page--second .p-opening-event__block-text {
  margin-top: 1.25rem;
}

.p-opening-event__accent {
  position: absolute;
  width: 13.7331375rem;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.8s ease var(--opening-accent-delay, 0s), -webkit-transform 1s ease var(--opening-accent-delay, 0s);
  transition: opacity 0.8s ease var(--opening-accent-delay, 0s), -webkit-transform 1s ease var(--opening-accent-delay, 0s);
  transition: opacity 0.8s ease var(--opening-accent-delay, 0s), transform 1s ease var(--opening-accent-delay, 0s);
  transition: opacity 0.8s ease var(--opening-accent-delay, 0s), transform 1s ease var(--opening-accent-delay, 0s), -webkit-transform 1s ease var(--opening-accent-delay, 0s);
}

.p-opening-event__accent img,
.p-opening-event__accent .p-accent-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-opening-event__accent .p-accent-image--pc {
  display: block;
}

.p-opening-event__accent .p-accent-image--sp {
  display: none;
}

.p-opening-event__accent--top-right {
  top: 20%;
  right: 4%;
  --opening-accent-delay: 0.12s;
}

.p-opening-event__accent--mid-left {
  top: 54%;
  left: 15%;
  --opening-accent-delay: 0.3s;
}

.p-opening-event__accent--bottom-right {
  top: 82%;
  right: 20%;
  --opening-accent-delay: 0.46s;
}

.p-opening-event.is-visible .p-opening-event__accent {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.p-opening-event.is-visible .p-opening-event__block {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  --opening-block-fade-y: 0px;
}

.p-opening-event__photo img.is-visible {
  opacity: 1;
  --photo-reveal-y: 0px;
}

@media screen and (max-width: 767px) {
  .p-opening-event {
    margin-top: -2.5rem;
  }
  .p-opening-event__sticky::before {
    display: none;
  }
  .p-opening-event__heading-track {
    position: relative;
    inset: auto;
    height: auto;
    -webkit-transform: none;
            transform: none;
    padding: 0 1rem 0;
  }
  .p-opening-event__heading {
    position: relative;
    top: auto;
    width: min(100% - 2rem, 19rem);
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.85rem;
    margin-inline: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-opening-event__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 30px;
    white-space: nowrap;
  }
  .p-opening-event__title span {
    display: block;
  }
  .p-opening-event__title-line::before {
    content: "　";
  }
  .p-opening-event__lead {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 15rem;
    font-size: 0.95rem;
    line-height: 2.25;
    letter-spacing: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .p-opening-event__lead--pc {
    display: none;
  }
  .p-opening-event__lead--sp {
    display: block;
  }
  .p-opening-event__inner {
    min-height: auto;
    -webkit-transform: none;
            transform: none;
    padding-bottom: 9px;
  }
  .p-opening-event__media {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .p-opening-event__media-image {
    clip-path: none;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .p-opening-event__media-image--pc {
    display: none;
  }
  .p-opening-event__media-image--sp {
    display: block;
  }
  .p-opening-event__content {
    display: block;
    padding: 2.8rem 0 0;
  }
  .p-opening-event__page {
    display: block;
    min-height: 47.5rem;
    padding: 0 1rem;
  }
  .p-opening-event__page--first {
    min-height: calc(46rem - 10px);
  }
  .p-opening-event__media-group {
    min-height: 0;
    height: auto;
    aspect-ratio: 179/248;
  }
  .p-opening-event__page--second .p-opening-event__media-group {
    margin-bottom: 61px;
  }
  .p-opening-event__page--first .p-opening-event__media-group {
    margin-top: 24px;
    margin-bottom: 64px;
  }
  .p-opening-event__page + .p-opening-event__page {
    margin-top: -1.5rem;
  }
  .p-opening-event__photo {
    position: absolute;
  }
  .p-opening-event__page--first .p-opening-event__photo--main,
  .p-opening-event__page--second .p-opening-event__photo--main {
    top: 24.5%;
    left: 50%;
    width: 120%;
    aspect-ratio: 425/375.69;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-opening-event__page--first .p-opening-event__photo--top-left,
  .p-opening-event__page--second .p-opening-event__photo--top-left {
    top: 4.6%;
    left: -6.8%;
    width: 33%;
    aspect-ratio: 135/113.13;
  }
  .p-opening-event__page--first .p-opening-event__photo--mid-left,
  .p-opening-event__page--second .p-opening-event__photo--mid-left {
    top: 85%;
    left: -6.8%;
    right: auto;
    width: 39%;
    aspect-ratio: 134.73/112.9;
  }
  .p-opening-event__page--first .p-opening-event__photo--mid-right,
  .p-opening-event__page--second .p-opening-event__photo--mid-right {
    top: 19.3%;
    right: -6.8%;
    left: auto;
    width: 33%;
    aspect-ratio: 135/113.13;
  }
  .p-opening-event__block,
  .p-opening-event__block--first,
  .p-opening-event__block--second {
    position: absolute;
    left: 50%;
    width: min(100% - 2rem, 19rem);
    margin-left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-opening-event.is-visible .p-opening-event__block {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
  .p-opening-event__block-title {
    font-size: 22px;
    white-space: normal;
    line-height: 1.8;
  }
  .p-opening-event__block-text {
    margin-top: 0rem;
    font-size: 0.95rem;
    line-height: 2.25;
    white-space: normal;
  }
  .p-opening-event__page--first .p-opening-event__block-text,
  .p-opening-event__page--second .p-opening-event__block-text {
    margin-top: 0;
  }
  .p-opening-event__accent {
    display: block;
    width: 4.75rem;
  }
  .p-opening-event__accent .p-accent-image--pc {
    display: none;
  }
  .p-opening-event__accent .p-accent-image--sp {
    display: block;
  }
  .p-opening-event__accent--top-right {
    top: 7rem;
    right: 0.35rem;
  }
  .p-opening-event__accent--mid-left {
    top: 27.5rem;
    left: 0.15rem;
    width: 4rem;
  }
  .p-opening-event__accent--bottom-right {
    top: 48rem;
    right: 0.5rem;
    width: 3.75rem;
  }
  .p-opening-event__line {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    pointer-events: none;
  }
  .p-opening-event__line img {
    display: block;
  }
  .p-line-image--pc {
    display: none;
  }
  .p-line-image--sp {
    display: block;
  }
  .p-opening-event__line .p-line-image--pc {
    display: none;
  }
  .p-opening-event__line .p-line-image--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-opening-event {
    margin-top: -10svh;
  }
  .p-opening-event__sticky {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .p-opening-event__content {
    width: var(--opening-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
  }
  .p-opening-event__page,
  .p-opening-event__media-group {
    width: 100%;
  }
  .p-opening-event__sticky::before {
    display: none;
  }
  .p-opening-event__heading-track {
    width: var(--opening-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
    margin-top: 100px;
  }
  .p-opening-event__page--first .p-opening-event__photo--main,
  .p-opening-event__page--second .p-opening-event__photo--main {
    top: 2.875rem;
    left: 29%;
    width: 40%;
  }
  .p-opening-event__page--first .p-opening-event__photo--top-left,
  .p-opening-event__page--second .p-opening-event__photo--top-left {
    top: 2.125rem;
    left: 4%;
    width: 12%;
  }
  .p-opening-event__page--first .p-opening-event__photo--mid-left,
  .p-opening-event__page--second .p-opening-event__photo--mid-left {
    top: 24.8rem;
    left: -5%;
    width: 14%;
  }
  .p-opening-event__page--first .p-opening-event__photo--mid-right,
  .p-opening-event__page--second .p-opening-event__photo--mid-right {
    top: 10.5rem;
    right: -5%;
    width: 14%;
  }
  .p-opening-event__media-group {
    min-height: clamp(34rem, 42vw, 42rem);
    height: clamp(34rem, 42vw, 42rem);
    margin-top: var(--opening-media-top-space);
  }
  .p-opening-event__heading {
    top: 100px;
    max-width: min(19rem, 100vw - 3rem);
    margin-right: clamp(1rem, 15vw, 15%);
    gap: 1.15rem;
  }
  .p-opening-event__block,
  .p-opening-event__page--first .p-opening-event__block--first,
  .p-opening-event__page--second .p-opening-event__block--second {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 0;
  }
  .p-opening-event__accent--top-right {
    top: 5%;
    right: 5%;
  }
  .p-opening-event__accent--mid-left {
    top: 54%;
    left: 15%;
  }
  .p-opening-event__accent--bottom-right {
    top: 84%;
    right: 20%;
  }
  .p-opening-event__page--second .p-opening-event__photo--top-left {
    top: 26.525rem;
    left: 7%;
  }
  .p-opening-event__page--second .p-opening-event__photo--mid-left {
    top: 2.5rem;
    left: -3%;
    right: auto;
  }
  .p-opening-event__page--second .p-opening-event__photo--mid-right {
    top: 25.1875rem;
    right: -5%;
    left: auto;
  }
  .p-opening-event__page--first .p-opening-event__photo--mid-right {
    top: 18.875rem;
  }
}
.js-fade-image {
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1s ease;
  transition: opacity 0.8s ease, -webkit-transform 1s ease;
  transition: opacity 0.8s ease, transform 1s ease;
  transition: opacity 0.8s ease, transform 1s ease, -webkit-transform 1s ease;
  will-change: opacity, transform;
}

.js-fade-image.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-spring,
.p-summer,
.p-autumn,
.p-winter {
  position: relative;
  background: #fff;
  --season-page-gap: 6.25rem;
  --season-copy-gap: 2.75rem;
  --season-media-height: 42rem;
  --season-media-top-space: 0;
  --season-page-min-height: 48.25rem;
  --season-copy-offset-left: 8%;
  --season-page-bottom-space: 5.625rem;
  --season-pc-canvas-width: 1506px;
  --season-sp-canvas-width: 376px;
}

.p-left {
  padding-left: 10px;
}

.p-spring__hero,
.p-summer__hero,
.p-autumn__hero,
.p-winter__hero {
  position: sticky;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.p-spring__hero img,
.p-summer__hero img,
.p-autumn__hero img,
.p-winter__hero img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  background: #fff;
}

.p-season-title {
  position: absolute;
  z-index: 2;
  top: calc(50% - 4.5rem);
  left: 50%;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 0.25rem 1.25rem rgba(4, 9, 14, 0.28);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.p-season-title__jp,
.p-season-title__en {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1;
}

.p-season-title__jp {
  font-size: 82px;
}

.p-season-title__en {
  margin-top: 1.875rem;
  font-size: 20px;
  letter-spacing: 0.18em;
}

.p-spring__sticky,
.p-summer__sticky,
.p-autumn__sticky,
.p-winter__sticky {
  position: relative;
  z-index: 1;
  margin-top: -10svh;
}

.p-spring-panel__photo,
.p-summer-panel__photo,
.p-autumn-panel__photo,
.p-winter-panel__photo {
  background: transparent;
  -webkit-mask-image: url("../images/photo-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/photo-mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.p-season-heading-track {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 80%;
  z-index: 5;
  pointer-events: none;
  -webkit-transform: none;
          transform: none;
  will-change: auto;
}

.p-season-heading-track--sp {
  display: none;
}

.p-season-heading {
  position: sticky;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(20rem, 100vw - 3rem);
  margin-left: auto;
  margin-right: clamp(1rem, 14vw, 14%);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.85rem;
  opacity: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.7s ease 0.1s;
  transition: opacity 0.7s ease 0.1s;
}

.p-season-heading__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  gap: 0.65rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: center;
      align-self: center;
}

.p-season-heading__body--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-season-heading__title {
  margin: 0;
  -ms-flex-item-align: center;
      align-self: center;
  font-family: "Noto Serif JP", serif;
  font-size: 7.8333rem;
  font-weight: 200;
  line-height: 1;
  color: var(--season-heading-color, #22786f);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-season-heading__lead {
  margin: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-season-heading--spring {
  --season-heading-color: #f9b7e3;
}

.p-season-heading--summer {
  --season-heading-color: #b8e8fd;
}

.p-season-heading--autumn {
  --season-heading-color: #f9c0a5;
}

.p-season-heading--winter {
  --season-heading-color: #dec2f7;
}

.p-spring__panel,
.p-summer__panel,
.p-autumn__panel,
.p-winter__panel {
  position: relative;
  z-index: 4;
  width: 100%;
  aspect-ratio: var(--season-panel-ratio, 1366/1642);
  margin-left: 0;
  margin-right: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: 0 24px 80px rgba(4, 9, 14, 0.2);
          box-shadow: 0 24px 80px rgba(4, 9, 14, 0.2);
  overflow: hidden;
  will-change: auto;
}

.p-spring__panel-bg,
.p-summer__panel-bg,
.p-autumn__panel-bg,
.p-winter__panel-bg {
  position: absolute;
  inset: 0;
}

.p-season-panel-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.p-season-panel-bg-image--sp {
  display: none;
}

.p-spring-panel__line .p-line-image,
.p-summer-panel__line .p-line-image,
.p-autumn-panel__line .p-line-image,
.p-winter-panel__line .p-line-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-spring-panel__line .p-line-image--pc,
.p-summer-panel__line .p-line-image--pc,
.p-autumn-panel__line .p-line-image--pc,
.p-winter-panel__line .p-line-image--pc {
  display: block;
}

.p-spring-panel__line .p-line-image--sp,
.p-summer-panel__line .p-line-image--sp,
.p-autumn-panel__line .p-line-image--sp,
.p-winter-panel__line .p-line-image--sp {
  display: none;
}

.p-season-panel__content,
.p-spring-panel__content,
.p-summer-panel__content,
.p-autumn-panel__content,
.p-winter-panel__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.p-spring-panel__accent .p-accent-image--pc,
.p-summer-panel__accent .p-accent-image--pc,
.p-autumn-panel__accent .p-accent-image--pc,
.p-winter-panel__accent .p-accent-image--pc {
  display: block;
}

.p-spring-panel__accent .p-accent-image--sp,
.p-summer-panel__accent .p-accent-image--sp,
.p-autumn-panel__accent .p-accent-image--sp,
.p-winter-panel__accent .p-accent-image--sp {
  display: none;
}

.p-season-panel__page,
.p-spring-panel__page,
.p-summer-panel__page,
.p-autumn-panel__page,
.p-winter-panel__page {
  position: absolute;
  inset: 0;
}

.p-spring-panel__media-group,
.p-summer-panel__media-group,
.p-autumn-panel__media-group,
.p-winter-panel__media-group {
  position: relative;
  width: 100%;
  min-height: var(--season-media-height);
  height: var(--season-media-height);
}

.p-spring.is-visible .p-season-heading,
.p-summer.is-visible .p-season-heading,
.p-autumn.is-visible .p-season-heading,
.p-winter.is-visible .p-season-heading {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 767px) {
  .p-left {
    padding-left: 0;
  }
  .p-season-title {
    display: block;
    top: 32%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .p-spring__hero,
  .p-summer__hero,
  .p-autumn__hero,
  .p-winter__hero {
    position: sticky;
    top: 0;
    height: clamp(14rem, 36svh, 18rem);
    min-height: clamp(14rem, 36svh, 18rem);
  }
  .p-spring__hero img,
  .p-summer__hero img,
  .p-autumn__hero img,
  .p-winter__hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .p-season-title__jp {
    font-size: 50px;
  }
  .p-season-title__en {
    font-size: 12px;
  }
  .p-spring__sticky,
  .p-summer__sticky,
  .p-autumn__sticky,
  .p-winter__sticky {
    margin-top: -5.5rem;
  }
  .p-season-heading-track {
    position: relative;
    inset: auto;
    height: auto;
    -webkit-transform: none;
            transform: none;
    padding: 34px 1rem 0;
    z-index: 3;
  }
  .p-season-heading-track--pc {
    display: none;
  }
  .p-season-heading-track--sp {
    display: block;
  }
  .p-season-heading {
    position: relative;
    top: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: min(100%, 19rem);
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.85rem;
    margin-inline: auto;
  }
  .p-season-heading__body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    max-width: 15rem;
    gap: 0.4rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .p-season-heading__body--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-season-heading__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 76px;
    line-height: 1;
  }
  .p-season-heading__lead {
    font-size: 0.95rem;
    line-height: 2.25;
    letter-spacing: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  .p-spring__panel,
  .p-summer__panel,
  .p-autumn__panel,
  .p-winter__panel {
    aspect-ratio: var(--season-panel-ratio-sp, 376/1644);
    min-height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: hidden;
  }
  .p-spring__panel-bg,
  .p-summer__panel-bg,
  .p-autumn__panel-bg,
  .p-winter__panel-bg {
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(10%, transparent), color-stop(10%, #fff), to(#fff));
    background: linear-gradient(to bottom, transparent 0, transparent 10%, #fff 10%, #fff 100%);
  }
  .p-season-panel-bg-image {
    width: 100%;
    height: auto;
    -o-object-position: center top;
       object-position: center top;
  }
  .p-season-panel-bg-image--pc {
    display: none;
  }
  .p-season-panel-bg-image--sp {
    display: block;
  }
  .p-spring-panel__content,
  .p-summer-panel__content,
  .p-autumn-panel__content,
  .p-winter-panel__content {
    position: relative;
    inset: 0;
    display: block;
    width: var(--season-sp-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--sp-canvas-scale, 1);
    min-height: 100%;
    padding: 2.2rem 0 0;
  }
  .p-spring-panel__page,
  .p-summer-panel__page,
  .p-autumn-panel__page,
  .p-winter-panel__page {
    position: relative;
    inset: auto;
    display: block;
    min-height: 46rem;
    padding: 0 1rem;
    margin-top: 60px;
  }
  .p-spring-panel__page--first,
  .p-summer-panel__page--first,
  .p-autumn-panel__page--first,
  .p-winter-panel__page--first {
    margin-top: 10px;
  }
  .p-spring-panel__media-group,
  .p-summer-panel__media-group,
  .p-autumn-panel__media-group,
  .p-winter-panel__media-group {
    min-height: 31rem;
    height: auto;
    aspect-ratio: 179/248;
  }
  .p-spring-panel__page--first .p-spring-panel__media-group,
  .p-spring-panel__page--second .p-spring-panel__media-group,
  .p-summer-panel__page--first .p-summer-panel__media-group,
  .p-summer-panel__page--second .p-summer-panel__media-group,
  .p-autumn-panel__page--first .p-autumn-panel__media-group,
  .p-autumn-panel__page--second .p-autumn-panel__media-group,
  .p-winter-panel__page--first .p-winter-panel__media-group,
  .p-winter-panel__page--second .p-winter-panel__media-group {
    height: auto !important;
    min-height: 31rem !important;
  }
  .p-spring-panel__page--second,
  .p-summer-panel__page--second,
  .p-autumn-panel__page--second,
  .p-winter-panel__page--second {
    padding-top: 0 !important;
  }
  .p-spring-panel__page + .p-spring-panel__page,
  .p-summer-panel__page + .p-summer-panel__page,
  .p-autumn-panel__page + .p-autumn-panel__page,
  .p-winter-panel__page + .p-winter-panel__page {
    margin-top: 0;
  }
  .p-spring-panel__photo,
  .p-summer-panel__photo,
  .p-autumn-panel__photo,
  .p-winter-panel__photo {
    position: absolute;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--main,
  .p-spring-panel__page--second .p-spring-panel__photo--main,
  .p-summer-panel__page--first .p-summer-panel__photo--main,
  .p-summer-panel__page--second .p-summer-panel__photo--main,
  .p-autumn-panel__page--first .p-autumn-panel__photo--main,
  .p-autumn-panel__page--second .p-autumn-panel__photo--main,
  .p-winter-panel__page--first .p-winter-panel__photo--main,
  .p-winter-panel__page--second .p-winter-panel__photo--main {
    top: 24.5% !important;
    left: 50% !important;
    width: 120% !important;
    aspect-ratio: 425/375.69 !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--top-left,
  .p-spring-panel__page--second .p-spring-panel__photo--top-left,
  .p-summer-panel__page--first .p-summer-panel__photo--top-left,
  .p-summer-panel__page--second .p-summer-panel__photo--top-left,
  .p-autumn-panel__page--first .p-autumn-panel__photo--top-left,
  .p-autumn-panel__page--second .p-autumn-panel__photo--top-left,
  .p-winter-panel__page--first .p-winter-panel__photo--top-left,
  .p-winter-panel__page--second .p-winter-panel__photo--top-left {
    top: 4.6% !important;
    left: -6.8% !important;
    right: auto !important;
    width: 33% !important;
    aspect-ratio: 135/113.13 !important;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--mid-left,
  .p-spring-panel__page--second .p-spring-panel__photo--mid-left,
  .p-summer-panel__page--first .p-summer-panel__photo--mid-left,
  .p-summer-panel__page--second .p-summer-panel__photo--mid-left,
  .p-autumn-panel__page--first .p-autumn-panel__photo--mid-left,
  .p-autumn-panel__page--second .p-autumn-panel__photo--mid-left,
  .p-winter-panel__page--first .p-winter-panel__photo--mid-left,
  .p-winter-panel__page--second .p-winter-panel__photo--mid-left {
    top: 85% !important;
    left: -6.8% !important;
    right: auto !important;
    width: 39% !important;
    aspect-ratio: 134.73/112.9 !important;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--mid-right,
  .p-spring-panel__page--second .p-spring-panel__photo--mid-right,
  .p-summer-panel__page--first .p-summer-panel__photo--mid-right,
  .p-summer-panel__page--second .p-summer-panel__photo--mid-right,
  .p-autumn-panel__page--first .p-autumn-panel__photo--mid-right,
  .p-autumn-panel__page--second .p-autumn-panel__photo--mid-right,
  .p-winter-panel__page--first .p-winter-panel__photo--mid-right,
  .p-winter-panel__page--second .p-winter-panel__photo--mid-right {
    top: 19.3% !important;
    right: -6.8% !important;
    left: auto !important;
    width: 33% !important;
    aspect-ratio: 135/113.13 !important;
  }
  .p-spring-panel__copy,
  .p-summer-panel__copy,
  .p-autumn-panel__copy,
  .p-winter-panel__copy {
    position: absolute;
    top: calc(33rem + 20px) !important;
    right: auto;
    bottom: auto;
    left: 50% !important;
    width: min(100% - 2rem, 19rem) !important;
    margin: 10px auto 0;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .p-spring-panel__copy-title,
  .p-summer-panel__copy-title,
  .p-autumn-panel__copy-title,
  .p-winter-panel__copy-title {
    font-size: 1.55rem !important;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-break: strict;
  }
  .p-spring-panel__copy-text,
  .p-summer-panel__copy-text,
  .p-autumn-panel__copy-text,
  .p-winter-panel__copy-text {
    margin-top: 0rem !important;
    font-size: 0.95rem !important;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    line-height: 2.25;
  }
  .p-spring-panel__accent,
  .p-summer-panel__accent,
  .p-autumn-panel__accent,
  .p-winter-panel__accent {
    display: block;
  }
  .p-spring-panel__accent .p-accent-image--pc,
  .p-summer-panel__accent .p-accent-image--pc,
  .p-autumn-panel__accent .p-accent-image--pc,
  .p-winter-panel__accent .p-accent-image--pc {
    display: none;
  }
  .p-spring-panel__accent .p-accent-image--sp,
  .p-summer-panel__accent .p-accent-image--sp,
  .p-autumn-panel__accent .p-accent-image--sp,
  .p-winter-panel__accent .p-accent-image--sp {
    display: block;
  }
  .p-spring-panel__line,
  .p-summer-panel__line,
  .p-autumn-panel__line,
  .p-winter-panel__line {
    inset: 0;
    height: 100%;
    overflow: hidden;
  }
  .p-spring-panel__line .p-line-image--pc,
  .p-summer-panel__line .p-line-image--pc,
  .p-autumn-panel__line .p-line-image--pc,
  .p-winter-panel__line .p-line-image--pc {
    display: none;
  }
  .p-spring-panel__line .p-line-image--sp,
  .p-summer-panel__line .p-line-image--sp,
  .p-autumn-panel__line .p-line-image--sp,
  .p-winter-panel__line .p-line-image--sp {
    display: block;
  }
  /*===================================
   * font-size
  ===================================*/
  .t-22 {
    font-size: 1.375rem !important;
  }
}
@media screen and (min-width: 768px) {
  .p-spring__sticky,
  .p-summer__sticky,
  .p-autumn__sticky,
  .p-winter__sticky {
    width: var(--season-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
  }
  .p-spring__panel,
  .p-summer__panel,
  .p-autumn__panel,
  .p-winter__panel {
    aspect-ratio: auto;
  }
  .p-spring__sticky,
  .p-summer__sticky,
  .p-autumn__sticky,
  .p-winter__sticky {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .p-spring-panel__content,
  .p-summer-panel__content,
  .p-autumn-panel__content,
  .p-winter-panel__content {
    position: relative;
    inset: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: var(--season-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
    padding-top: 6.25rem;
    padding-bottom: var(--season-page-bottom-space);
  }
  .p-spring-panel__page,
  .p-summer-panel__page,
  .p-autumn-panel__page,
  .p-winter-panel__page {
    position: relative;
    inset: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    min-height: auto;
    width: 100%;
    padding-bottom: 0;
  }
  .p-spring-panel__media-group,
  .p-summer-panel__media-group,
  .p-autumn-panel__media-group,
  .p-winter-panel__media-group {
    width: 100%;
    margin-top: var(--season-media-top-space);
  }
  .p-spring-panel__copy,
  .p-summer-panel__copy,
  .p-autumn-panel__copy,
  .p-winter-panel__copy {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: min(19rem, 26vw) !important;
    margin-top: 0;
    margin-left: var(--season-copy-offset-left);
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  .p-season-heading-track {
    width: var(--season-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
    -webkit-transform: none;
            transform: none;
    margin-top: 100px;
  }
  .p-season-heading {
    top: 100px;
    max-width: min(20rem, 100vw - 3rem);
    margin-right: clamp(1rem, 15vw, 15%);
    gap: 1rem;
  }
  .p-season-heading__body {
    gap: 0.9rem;
  }
  .p-spring__panel,
  .p-summer__panel,
  .p-autumn__panel,
  .p-winter__panel {
    -webkit-transform: none;
            transform: none;
  }
}
.p-spring {
  --season-panel-ratio: 1606 / 1587;
  --season-panel-ratio-sp: 376 / 1737;
  --season-media-height: 37.5rem;
  --season-page-min-height: 43.75rem;
}

.p-spring-panel__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
}

.p-spring-panel__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--spring-photo-delay, 0s);
  transition: opacity 0.7s ease var(--spring-photo-delay, 0s);
}

.p-spring-panel__page--first .p-spring-panel__photo--main,
.p-spring-panel__photo--main {
  top: 10%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --spring-photo-delay: 0.18s;
}

.p-spring-panel__page--first .p-spring-panel__photo--top-left,
.p-spring-panel__photo--top-left {
  top: 25%;
  left: -1%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --spring-photo-delay: 0.08s;
}

.p-spring-panel__page--first .p-spring-panel__photo--mid-left,
.p-spring-panel__photo--mid-left {
  top: 8%;
  left: 6%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --spring-photo-delay: 0.28s;
}

.p-spring-panel__page--first .p-spring-panel__photo--mid-right,
.p-spring-panel__photo--mid-right {
  top: 22%;
  right: -2%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --spring-photo-delay: 0.38s;
}

.p-spring-panel__page--first .p-spring-panel__copy,
.p-spring-panel__copy {
  position: absolute;
  z-index: 3;
  width: min(19rem, 26vw);
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
}

.p-spring-panel__page--second .p-spring-panel__photo--main {
  top: 56%;
  left: 29%;
  width: 40%;
}

.p-spring-panel__page--second .p-spring-panel__photo--top-left {
  top: 58%;
  right: -1%;
  left: auto;
  width: 11%;
}

.p-spring-panel__page--second .p-spring-panel__photo--mid-left {
  top: 80%;
  right: -2%;
  left: auto;
  width: 12%;
}

.p-spring-panel__page--second .p-spring-panel__photo--mid-right {
  top: 62%;
  left: -2%;
  right: auto;
  width: 12%;
}

.p-spring-panel__page--second .p-spring-panel__copy {
  width: min(19rem, 26vw);
}

.p-spring-panel__copy-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0625rem;
  font-weight: 200;
  line-height: 1.35;
  color: #f08ac0;
  white-space: nowrap;
}

.p-spring-panel__copy-text {
  margin: 1.4rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  white-space: nowrap;
}

.p-spring-panel__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  -webkit-transition: opacity 0.8s ease var(--spring-accent-delay, 0s), -webkit-transform 1s ease var(--spring-accent-delay, 0s);
  transition: opacity 0.8s ease var(--spring-accent-delay, 0s), -webkit-transform 1s ease var(--spring-accent-delay, 0s);
  transition: opacity 0.8s ease var(--spring-accent-delay, 0s), transform 1s ease var(--spring-accent-delay, 0s);
  transition: opacity 0.8s ease var(--spring-accent-delay, 0s), transform 1s ease var(--spring-accent-delay, 0s), -webkit-transform 1s ease var(--spring-accent-delay, 0s);
}

.p-spring-panel__accent img,
.p-spring-panel__line img:not(.p-line-image) {
  display: block;
  width: 100%;
  height: 100%;
}

.p-spring-panel__accent--top-right {
  top: 6%;
  right: 6%;
  width: 10rem;
  --spring-accent-delay: 0.12s;
}

.p-spring-panel__accent--center {
  top: 48%;
  left: 14%;
  width: 8rem;
  --spring-accent-delay: 0.26s;
}

.p-spring-panel__accent--bottom-left {
  left: 15%;
  bottom: 20%;
  right: auto;
  width: 5rem;
  --spring-accent-delay: 0.38s;
}

.p-spring-panel__accent--bottom-right {
  right: 17%;
  bottom: 5%;
  left: auto;
  width: 4rem;
  --spring-accent-delay: 0.5s;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}

.p-spring-panel__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--spring-line-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-spring-panel__line img:not(.p-line-image) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-spring.is-visible .p-spring-panel__copy,
.p-spring.is-visible .p-spring-panel__accent {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.p-spring.is-visible .p-spring-panel__photo img {
  opacity: 1;
  --photo-reveal-y: 0px;
}

@media screen and (max-width: 767px) {
  .p-spring-panel__page--first .p-spring-panel__media-group {
    margin-top: 49px;
  }
  .p-spring-panel__page--first .p-spring-panel__copy-title {
    font-size: 1.5625rem !important;
  }
  .p-spring-panel__page--second .p-spring-panel__copy-title {
    font-size: 1.375rem !important;
  }
  .p-spring__panel {
    height: calc(461.9680851064vw - 31px);
    min-height: calc(461.9680851064vw - 31px);
  }
  .p-spring-panel__page--first {
    min-height: calc(46rem - 60px);
  }
  .p-spring-panel__accent {
    display: block;
    z-index: 1;
  }
  .p-spring-panel__accent--bottom-left {
    display: none;
  }
  .p-spring-panel__accent--top-right {
    top: 13rem;
    right: 4.5rem;
    width: 7.5rem;
  }
  .p-spring-panel__accent--center {
    top: 55rem;
    left: 13.5rem;
    width: 7.5rem;
  }
  .p-spring-panel__accent--bottom-left {
    left: 0.75rem;
    bottom: 12rem;
    width: 2.25rem;
  }
  .p-spring-panel__accent--bottom-right {
    right: 0.75rem;
    bottom: 9.5rem;
    width: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-spring-panel__page--second {
    padding-top: 57px;
  }
  .p-spring-panel__page--first .p-spring-panel__media-group {
    height: calc(var(--season-media-height) - 30px);
    min-height: calc(var(--season-media-height) - 30px);
  }
  .p-spring-panel__page--second .p-spring-panel__media-group {
    height: calc(var(--season-media-height) - 82px);
    min-height: calc(var(--season-media-height) - 82px);
  }
  .p-spring-panel__page--first .p-spring-panel__photo--main {
    top: 3.25rem;
    left: 29%;
    width: 40%;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--top-left {
    top: 22rem;
    left: -1%;
    width: 12%;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--mid-left {
    top: 3rem;
    left: 5%;
    width: 14%;
  }
  .p-spring-panel__page--first .p-spring-panel__photo--mid-right {
    top: 11.25rem;
    right: -2%;
    width: 13%;
  }
  .p-spring-panel__page--second .p-spring-panel__photo--main {
    top: 2.5rem;
    left: 29%;
    width: 40%;
  }
  .p-spring-panel__page--second .p-spring-panel__photo--top-left {
    top: 3.75rem;
    right: 1%;
    left: auto;
    width: 12%;
  }
  .p-spring-panel__page--second .p-spring-panel__photo--mid-left {
    top: 26.25rem;
    right: -2;
    left: auto;
    width: 14%;
  }
  .p-spring-panel__page--second .p-spring-panel__photo--mid-right {
    top: 7.5rem;
    left: -2%;
    right: auto;
    width: 14%;
  }
}
.p-summer {
  --season-panel-ratio: 1606 / 1587;
  --season-panel-ratio-sp: 376 / 1716;
}

.p-summer-panel__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
}

.p-summer-panel__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--summer-photo-delay, 0s);
  transition: opacity 0.7s ease var(--summer-photo-delay, 0s);
}

.p-summer-panel__page--first .p-summer-panel__photo--main,
.p-summer-panel__photo--main {
  top: 10%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --summer-photo-delay: 0.18s;
}

.p-summer-panel__page--first .p-summer-panel__photo--top-left,
.p-summer-panel__photo--top-left {
  top: 26%;
  left: 6%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --summer-photo-delay: 0.08s;
}

.p-summer-panel__page--first .p-summer-panel__photo--mid-left,
.p-summer-panel__photo--mid-left {
  top: 8%;
  left: -2%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --summer-photo-delay: 0.28s;
}

.p-summer-panel__page--first .p-summer-panel__photo--mid-right,
.p-summer-panel__photo--mid-right {
  top: 26%;
  right: -2%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --summer-photo-delay: 0.38s;
}

.p-summer-panel__page--first .p-summer-panel__copy,
.p-summer-panel__copy {
  position: absolute;
  z-index: 3;
  width: min(19rem, 26vw);
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
}

.p-summer-panel__page--second .p-summer-panel__photo--main {
  top: 56%;
  left: 29%;
  width: 40%;
}

.p-summer-panel__page--second .p-summer-panel__photo--top-left {
  top: 83%;
  right: 2%;
  left: auto;
  width: 11%;
}

.p-summer-panel__page--second .p-summer-panel__photo--mid-left {
  top: 56%;
  right: -2%;
  left: auto;
  width: 12%;
}

.p-summer-panel__page--second .p-summer-panel__photo--mid-right {
  top: 74%;
  left: 2%;
  right: auto;
  width: 12%;
}

.p-summer-panel__page--second .p-summer-panel__copy {
  width: min(19rem, 26vw);
}

.p-summer-panel__copy-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0625rem;
  font-weight: 200;
  line-height: 1.35;
  color: #17a0d8;
  white-space: nowrap;
}

.p-summer-panel__copy-text {
  margin: 0.65rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
}

.p-summer-panel__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  -webkit-transition: opacity 0.8s ease var(--summer-accent-delay, 0s), -webkit-transform 1s ease var(--summer-accent-delay, 0s);
  transition: opacity 0.8s ease var(--summer-accent-delay, 0s), -webkit-transform 1s ease var(--summer-accent-delay, 0s);
  transition: opacity 0.8s ease var(--summer-accent-delay, 0s), transform 1s ease var(--summer-accent-delay, 0s);
  transition: opacity 0.8s ease var(--summer-accent-delay, 0s), transform 1s ease var(--summer-accent-delay, 0s), -webkit-transform 1s ease var(--summer-accent-delay, 0s);
}

.p-summer-panel__accent img,
.p-summer-panel__line img:not(.p-line-image) {
  display: block;
  width: 100%;
  height: 100%;
}

.p-summer-panel__accent--top-right {
  top: 5%;
  right: 4%;
  width: 9rem;
  --summer-accent-delay: 0.1s;
}

.p-summer-panel__accent--top-left {
  top: 5%;
  left: 14%;
  width: 9rem;
  --summer-accent-delay: 0.18s;
}

.p-summer-panel__accent--first-main-right-bottom {
  top: 34%;
  right: 18%;
  width: 8rem;
  --summer-accent-delay: 0.26s;
}

.p-summer-panel__accent--second-main-right-top {
  top: 52%;
  right: 18%;
  width: 8rem;
  --summer-accent-delay: 0.34s;
}

.p-summer-panel__accent--second-main-left-top {
  top: 55%;
  left: 19%;
  width: 8rem;
  --summer-accent-delay: 0.42s;
}

.p-summer-panel__accent--second-main-left-bottom {
  top: 76%;
  left: 16%;
  width: 8rem;
  --summer-accent-delay: 0.5s;
}

.p-summer-panel__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--summer-line-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-summer-panel__line img:not(.p-line-image) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-summer.is-visible .p-summer-panel__copy,
.p-summer.is-visible .p-summer-panel__accent {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.p-summer.is-visible .p-summer-panel__photo img {
  opacity: 1;
  --photo-reveal-y: 0px;
}

@media screen and (max-width: 767px) {
  .p-summer-panel__page--first .p-summer-panel__media-group {
    margin-top: 56px;
  }
  .p-summer-panel__page--first .p-summer-panel__copy-title {
    font-size: 1.375rem !important;
  }
  .p-summer-panel__page--second .p-summer-panel__copy-title {
    font-size: 1.5625rem !important;
  }
  .p-summer__panel {
    height: calc(456.3829787234vw - 10px);
    min-height: calc(456.3829787234vw - 10px);
  }
  .p-summer-panel__page--first {
    min-height: calc(46rem + 10px);
  }
  .p-summer-panel__page--first .p-summer-panel__copy-text,
  .p-summer-panel__page--second .p-summer-panel__copy-text {
    margin-top: 5px !important;
  }
  .p-summer-panel__accent {
    display: block;
    z-index: 1;
  }
  .p-summer-panel__accent--second-main-right-top,
  .p-summer-panel__accent--second-main-left-top,
  .p-summer-panel__accent--second-main-left-bottom {
    display: none;
  }
  .p-summer-panel__accent--top-right {
    top: 7rem;
    right: 0.5rem;
    width: 3.75rem;
  }
  .p-summer-panel__accent--top-left {
    top: 7rem;
    left: 0.5rem;
    width: 3.75rem;
  }
  .p-summer-panel__accent--first-main-right-bottom {
    top: 21rem;
    right: 0.75rem;
    width: 3rem;
  }
  .p-summer-panel__accent--second-main-right-top {
    top: 47rem;
    right: 0.75rem;
    width: 3rem;
  }
  .p-summer-panel__accent--second-main-left-top {
    top: 52rem;
    left: 0.5rem;
    width: 3rem;
  }
  .p-summer-panel__accent--second-main-left-bottom {
    top: 68rem;
    left: 0.75rem;
    width: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-summer-panel__page--first .p-summer-panel__media-group {
    height: calc(var(--season-media-height) - 53px);
    min-height: calc(var(--season-media-height) - 53px);
  }
  .p-summer-panel__page--second {
    padding-top: 52px;
  }
  .p-summer-panel__page--second .p-summer-panel__media-group {
    height: calc(var(--season-media-height) - 150px);
    min-height: calc(var(--season-media-height) - 150px);
  }
  .p-summer-panel__page--first .p-summer-panel__photo--main {
    top: 3.6875rem;
    left: 29%;
    width: 40%;
  }
  .p-summer-panel__page--first .p-summer-panel__photo--top-left {
    top: 25.1875rem;
    left: 7%;
    width: 12%;
  }
  .p-summer-panel__page--first .p-summer-panel__photo--mid-left {
    top: 3.375rem;
    left: -2%;
    width: 14%;
  }
  .p-summer-panel__page--first .p-summer-panel__photo--mid-right {
    top: 14.6875rem;
    right: -2%;
    width: 14%;
  }
  .p-summer-panel__page--second .p-summer-panel__photo--main {
    top: 2.875rem;
    left: 29%;
    width: 40%;
  }
  .p-summer-panel__page--second .p-summer-panel__photo--top-left {
    top: 33.625rem;
    right: 4%;
    left: auto;
    width: 12%;
  }
  .p-summer-panel__page--second .p-summer-panel__photo--mid-left {
    top: 3.375rem;
    right: -2%;
    left: auto;
    width: 14%;
  }
  .p-summer-panel__page--second .p-summer-panel__photo--mid-right {
    top: 10.125rem;
    left: 3%;
    right: auto;
    width: 14%;
  }
}
.p-autumn {
  --season-panel-ratio: 1606 / 1587;
  --season-panel-ratio-sp: 376 / 1644;
}

.p-autumn-panel__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
}

.p-autumn-panel__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--autumn-photo-delay, 0s);
  transition: opacity 0.7s ease var(--autumn-photo-delay, 0s);
}

.p-autumn-panel__page--first .p-autumn-panel__photo--main,
.p-autumn-panel__photo--main {
  top: 10%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --autumn-photo-delay: 0.18s;
}

.p-autumn-panel__page--first .p-autumn-panel__photo--top-left,
.p-autumn-panel__photo--top-left {
  top: 8%;
  left: 8%;
  width: 14%;
  aspect-ratio: 253/212;
  --autumn-photo-delay: 0.08s;
}

.p-autumn-panel__page--first .p-autumn-panel__photo--mid-left,
.p-autumn-panel__photo--mid-left {
  top: 26%;
  left: -2%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --autumn-photo-delay: 0.28s;
}

.p-autumn-panel__page--first .p-autumn-panel__photo--mid-right,
.p-autumn-panel__photo--mid-right {
  top: 24%;
  right: -2%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --autumn-photo-delay: 0.38s;
}

.p-autumn-panel__page--first .p-autumn-panel__copy,
.p-autumn-panel__copy {
  position: absolute;
  z-index: 3;
  width: min(19rem, 26vw);
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
}

.p-autumn-panel__page--second .p-autumn-panel__photo--main {
  top: 56%;
  left: 29%;
  width: 40%;
}

.p-autumn-panel__page--second .p-autumn-panel__photo--top-left {
  top: 54%;
  right: -1%;
  left: auto;
  width: 12%;
}

.p-autumn-panel__page--second .p-autumn-panel__photo--mid-left {
  top: 62%;
  left: -1%;
  right: auto;
  width: 14%;
}

.p-autumn-panel__page--second .p-autumn-panel__photo--mid-right {
  top: 83%;
  right: 0;
  left: auto;
  width: 11%;
}

.p-autumn-panel__page--second .p-autumn-panel__copy {
  width: min(19rem, 26vw);
}

.p-autumn-panel__copy-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0625rem;
  font-weight: 200;
  line-height: 1.35;
  color: #ee8752;
  white-space: nowrap;
}

.p-autumn-panel__copy-text {
  margin: 0.65rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  white-space: nowrap;
}

.p-autumn-panel__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  -webkit-transition: opacity 0.8s ease var(--autumn-accent-delay, 0s), -webkit-transform 1s ease var(--autumn-accent-delay, 0s);
  transition: opacity 0.8s ease var(--autumn-accent-delay, 0s), -webkit-transform 1s ease var(--autumn-accent-delay, 0s);
  transition: opacity 0.8s ease var(--autumn-accent-delay, 0s), transform 1s ease var(--autumn-accent-delay, 0s);
  transition: opacity 0.8s ease var(--autumn-accent-delay, 0s), transform 1s ease var(--autumn-accent-delay, 0s), -webkit-transform 1s ease var(--autumn-accent-delay, 0s);
}

.p-autumn-panel__accent img,
.p-autumn-panel__line img:not(.p-line-image) {
  display: block;
  width: 100%;
  height: 100%;
}

.p-autumn-panel__accent--top-right {
  top: 5%;
  right: 4%;
  width: 9rem;
  --autumn-accent-delay: 0.1s;
}

.p-autumn-panel__accent--second-main-left-top {
  top: 58%;
  left: 18%;
  width: 6rem;
  --autumn-accent-delay: 0.24s;
}

.p-autumn-panel__accent--second-main-right-bottom {
  top: 86%;
  right: 20%;
  width: 4rem;
  --autumn-accent-delay: 0.38s;
}

.p-autumn-panel__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--autumn-line-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-autumn-panel__line img:not(.p-line-image) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-autumn.is-visible .p-autumn-panel__copy,
.p-autumn.is-visible .p-autumn-panel__accent {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.p-autumn.is-visible .p-autumn-panel__photo img {
  opacity: 1;
  --photo-reveal-y: 0px;
}

@media screen and (max-width: 767px) {
  .p-autumn-panel__page--first .p-autumn-panel__media-group {
    margin-top: 43px;
    margin-bottom: 3px;
  }
  .p-autumn-panel__page--second .p-autumn-panel__media-group {
    margin-top: 7px;
  }
  .p-autumn-panel__page--first .p-autumn-panel__copy-title {
    font-size: 1.5625rem !important;
  }
  .p-autumn-panel__page--second .p-autumn-panel__copy-title {
    font-size: 1.375rem !important;
  }
  .p-autumn__panel {
    height: calc(437.2340425532vw + 33px);
    min-height: calc(437.2340425532vw + 33px);
  }
  .p-autumn-panel__page--first {
    min-height: calc(46rem - 64px);
  }
  .p-autumn-panel__accent {
    display: block;
    z-index: 1;
  }
  .p-autumn-panel__accent--top-right {
    top: 13rem;
    right: 4.5rem;
    width: 6.3rem;
  }
  .p-autumn-panel__accent--second-main-left-top {
    top: 57rem;
    left: 16.5rem;
    width: 6.3rem;
  }
  .p-autumn-panel__accent--second-main-right-bottom {
    top: 95rem;
    right: 1.75rem;
    width: 6.3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-autumn__panel {
    aspect-ratio: auto;
  }
  .p-autumn-panel__page--first .p-autumn-panel__media-group {
    height: calc(var(--season-media-height) - 120px);
    min-height: calc(var(--season-media-height) - 120px);
  }
  .p-autumn-panel__page--second .p-autumn-panel__media-group {
    height: calc(var(--season-media-height) - 152px);
    min-height: calc(var(--season-media-height) - 152px);
  }
  .p-autumn-panel__page--second {
    padding-top: 49px;
  }
  .p-autumn-panel__page--first .p-autumn-panel__photo--main {
    top: 3.6875rem;
    left: 29%;
    width: 40%;
  }
  .p-autumn-panel__page--first .p-autumn-panel__photo--top-left {
    top: 3.375rem;
    left: 9%;
    width: 12%;
  }
  .p-autumn-panel__page--first .p-autumn-panel__photo--mid-left {
    top: 21rem;
    left: -2%;
    width: 12%;
  }
  .p-autumn-panel__page--first .p-autumn-panel__photo--mid-right {
    top: 10.125rem;
    right: -2%;
    width: 12%;
  }
  .p-autumn-panel__page--second .p-autumn-panel__photo--main {
    top: 2.875rem;
    left: 29%;
    width: 40%;
  }
  .p-autumn-panel__page--second .p-autumn-panel__photo--top-left {
    top: 2.5rem;
    right: -3;
    left: auto;
    width: 12%;
  }
  .p-autumn-panel__page--second .p-autumn-panel__photo--mid-left {
    top: 8.375rem;
    left: -1%;
    right: auto;
    width: 14%;
  }
  .p-autumn-panel__page--second .p-autumn-panel__photo--mid-right {
    top: 33.625rem;
    right: 1%;
    left: auto;
    width: 12%;
  }
}
.p-winter {
  --season-panel-ratio: 1606 / 1587;
  --season-panel-ratio-sp: 376 / 1791;
}

.p-winter-panel__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
}

.p-winter-panel__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--winter-photo-delay, 0s);
  transition: opacity 0.7s ease var(--winter-photo-delay, 0s);
}

.p-winter-panel__page--first .p-winter-panel__photo--main,
.p-winter-panel__photo--main {
  top: 10%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --winter-photo-delay: 0.18s;
}

.p-winter-panel__page--first .p-winter-panel__photo--top-left,
.p-winter-panel__photo--top-left {
  top: 30%;
  left: 6%;
  width: 14%;
  aspect-ratio: 211.2043/176.9867;
  --winter-photo-delay: 0.08s;
}

.p-winter-panel__page--first .p-winter-panel__photo--mid-left,
.p-winter-panel__photo--mid-left {
  top: 8%;
  left: -2%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --winter-photo-delay: 0.28s;
}

.p-winter-panel__page--first .p-winter-panel__photo--mid-right,
.p-winter-panel__photo--mid-right {
  top: 26%;
  right: -2%;
  width: 16.5%;
  aspect-ratio: 253/212;
  --winter-photo-delay: 0.38s;
}

.p-winter-panel__page--first .p-winter-panel__copy,
.p-winter-panel__copy {
  position: absolute;
  z-index: 3;
  width: min(19rem, 26vw);
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
}

.p-winter-panel__page--second .p-winter-panel__photo--main {
  top: 56%;
  left: 29%;
  width: 40%;
}

.p-winter-panel__page--second .p-winter-panel__photo--top-left {
  top: 58%;
  left: 6%;
  right: auto;
  width: 11%;
}

.p-winter-panel__page--second .p-winter-panel__photo--mid-left {
  top: 72%;
  left: -1%;
  width: 12%;
}

.p-winter-panel__page--second .p-winter-panel__photo--mid-right {
  top: 66%;
  right: -2%;
  width: 12%;
}

.p-winter-panel__page--second .p-winter-panel__copy {
  width: min(19rem, 26vw);
}

.p-winter-panel__copy-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0625rem;
  font-weight: 200;
  line-height: 1.35;
  color: #b886f0;
  white-space: nowrap;
}

.p-winter-panel__copy-text {
  margin: 0.65rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.25;
  color: #333333;
  white-space: nowrap;
}

.p-winter-panel__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  -webkit-transition: opacity 0.8s ease var(--winter-accent-delay, 0s), -webkit-transform 1s ease var(--winter-accent-delay, 0s);
  transition: opacity 0.8s ease var(--winter-accent-delay, 0s), -webkit-transform 1s ease var(--winter-accent-delay, 0s);
  transition: opacity 0.8s ease var(--winter-accent-delay, 0s), transform 1s ease var(--winter-accent-delay, 0s);
  transition: opacity 0.8s ease var(--winter-accent-delay, 0s), transform 1s ease var(--winter-accent-delay, 0s), -webkit-transform 1s ease var(--winter-accent-delay, 0s);
}

.p-winter-panel__accent img,
.p-winter-panel__line img:not(.p-line-image) {
  display: block;
  width: 100%;
  height: 100%;
}

.p-winter-panel__accent--top-right {
  top: 5%;
  right: 4%;
  width: 9rem;
  --winter-accent-delay: 0.1s;
}

.p-winter-panel__accent--top-left {
  top: 5%;
  left: 4%;
  width: 9rem;
  --winter-accent-delay: 0.18s;
}

.p-winter-panel__accent--mid-right {
  top: 34%;
  right: 6%;
  width: 8rem;
  --winter-accent-delay: 0.28s;
}

.p-winter-panel__accent--bottom-left {
  top: 78%;
  left: 6%;
  width: 8rem;
  --winter-accent-delay: 0.38s;
}

.p-winter-panel__accent--bottom-right {
  top: 82%;
  right: 8%;
  width: 8rem;
  --winter-accent-delay: 0.48s;
}

.p-winter-panel__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--winter-line-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-winter-panel__line img:not(.p-line-image) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-winter.is-visible .p-winter-panel__copy,
.p-winter.is-visible .p-winter-panel__accent {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.p-winter.is-visible .p-winter-panel__photo img {
  opacity: 1;
  --photo-reveal-y: 0px;
}

@media screen and (max-width: 767px) {
  .p-winter-panel__page--first .p-winter-panel__media-group {
    margin-top: 43px;
  }
  .p-winter-panel__page--second .p-winter-panel__media-group {
    margin-top: 14px;
    margin-bottom: 3px;
  }
  .p-winter-panel__page--first .p-winter-panel__copy-title {
    font-size: 1.375rem !important;
  }
  .p-winter-panel__page--second .p-winter-panel__copy-title {
    font-size: 1.25rem !important;
  }
  .p-winter__panel {
    height: calc(476.329787234vw + 20px);
    min-height: calc(476.329787234vw + 20px);
  }
  .p-winter-panel__page--first {
    min-height: calc(46rem + 15px);
  }
  .p-winter-panel__page--first .p-winter-panel__copy--first {
    margin-top: 5px;
  }
  .p-winter-panel__page--second .p-winter-panel__copy--second {
    margin-top: 5px;
  }
  .p-winter-panel__copy-title {
    line-height: 1.85 !important;
  }
  .p-winter-panel__accent {
    display: block;
    z-index: 1;
  }
  .p-winter-panel__accent--top-right {
    top: 13rem;
    right: 6.5rem;
    width: 7.75rem;
  }
  .p-winter-panel__accent--top-left {
    top: 7rem;
    left: 0.5rem;
    width: 3.75rem;
  }
  .p-winter-panel__accent--mid-right {
    top: 58rem;
    right: 1.75rem;
    width: 8rem;
  }
  .p-winter-panel__accent--bottom-left {
    top: 57rem;
    left: 0.5rem;
    width: 3rem;
  }
  .p-winter-panel__accent--bottom-right {
    top: 94rem;
    right: 3.75rem;
    width: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-winter-panel__page--second {
    padding-top: 48px;
  }
  .p-winter-panel__page--first .p-winter-panel__media-group {
    height: calc(var(--season-media-height) - 120px);
    min-height: calc(var(--season-media-height) - 120px);
  }
  .p-winter-panel__page--second .p-winter-panel__media-group {
    height: calc(var(--season-media-height) - 150px);
    min-height: calc(var(--season-media-height) - 150px);
  }
  .p-winter-panel__page--first .p-winter-panel__photo--main {
    top: 3.6875rem;
    left: 29%;
    width: 40%;
  }
  .p-winter-panel__page--first .p-winter-panel__photo--top-left {
    top: 21rem;
    left: 5%;
    width: 12%;
  }
  .p-winter-panel__page--first .p-winter-panel__photo--mid-left {
    top: 4.625rem;
    left: -2%;
    width: 14%;
  }
  .p-winter-panel__page--first .p-winter-panel__photo--mid-right {
    top: 16.8125rem;
    right: -2%;
    width: 12%;
    aspect-ratio: 211.2043/176.9867;
  }
  .p-winter-panel__page--second .p-winter-panel__photo--main {
    top: 2.875rem;
    left: 29%;
    width: 40%;
  }
  .p-winter-panel__page--second .p-winter-panel__photo--top-left {
    top: 4.1875rem;
    left: 5%;
    right: auto;
    width: 12%;
  }
  .p-winter-panel__page--second .p-winter-panel__photo--mid-left {
    top: 16.8125rem;
    left: -1%;
    width: 14%;
  }
  .p-winter-panel__page--second .p-winter-panel__photo--mid-right {
    top: 16.8125rem;
    right: -2%;
    width: 12%;
    aspect-ratio: 211.2043/176.9867;
  }
}
.p-finale {
  position: relative;
  z-index: 5;
  --finale-progress: 0;
  --finale-panel-ratio: 1367 / 909;
  --finale-panel-ratio-sp: 376 / 941;
  --finale-page-gap: 6.25rem;
  --finale-copy-gap: 2.75rem;
  --finale-media-height: 42rem;
  --finale-media-top-space: 0;
  --finale-copy-offset-left: 7%;
  --finale-pc-canvas-width: 1506px;
  --finale-sp-canvas-width: 376px;
}

.p-finale__intro {
  position: sticky;
  top: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50svh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 26svh;
  pointer-events: none;
}

.p-finale__intro-mark {
  text-align: center;
  color: #fff;
  text-shadow: 0 0.18rem 0.8rem rgba(4, 9, 14, 0.16);
  opacity: clamp(0, 1 - (var(--finale-line-progress, 0) - 0.5) / 0.1, 1);
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.p-finale__intro-jp,
.p-finale__intro-en {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1;
}

.p-finale__intro-jp {
  font-size: 52px;
}

.p-finale__intro-en {
  margin-top: 1rem;
  font-size: 20px;
  letter-spacing: 0.2em;
}

.p-finale__sticky {
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.p-finale__heading-track {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 65%;
  z-index: 3;
  pointer-events: none;
  -webkit-transform: none;
          transform: none;
  will-change: auto;
}

.p-finale__heading-track--sp {
  display: none;
}

.p-finale__heading-track--pc {
  display: block;
}

.p-finale__heading {
  position: sticky;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(19rem, 100vw - 3rem);
  margin-left: auto;
  margin-right: clamp(1rem, 14vw, 14%);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.95rem;
  opacity: 0;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.7s ease 0.1s;
  transition: opacity 0.7s ease 0.1s;
}

.p-finale__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.75rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #22786f;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-finale__title span {
  display: inline;
}

.p-finale__lead {
  margin: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.942;
  letter-spacing: 0;
  color: #333333;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-finale__block {
  position: relative;
  z-index: 3;
  width: min(24rem, 36vw);
  margin-top: 0;
  margin-left: var(--finale-copy-offset-left);
  color: #333333;
  opacity: 0;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  -webkit-transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s;
  transition: opacity 0.7s ease 0.32s, transform 0.9s ease 0.32s, -webkit-transform 0.9s ease 0.32s;
}

.p-finale__block-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1.35;
  color: #22786f;
  white-space: nowrap;
}

.p-finale__block-text {
  margin: 0.65rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  white-space: nowrap;
}

.p-finale__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: var(--finale-panel-ratio, 1367/909);
  -webkit-box-shadow: 0 24px 80px rgba(4, 9, 14, 0.2);
          box-shadow: 0 24px 80px rgba(4, 9, 14, 0.2);
  overflow: hidden;
}

.p-finale__panel-bg {
  position: absolute;
  inset: 0;
}

.p-finale__panel-bg-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center 0;
     object-position: center 0;
}

.p-finale__panel-bg-image--sp {
  display: none;
}

.p-finale__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.p-finale__page {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 0;
}

.p-finale__media-group {
  position: relative;
  width: 100%;
  min-height: calc(var(--finale-media-height) - 110px);
  height: calc(var(--finale-media-height) - 110px);
}

.p-finale__photo {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  background: transparent;
  -webkit-mask-image: url("../images/photo-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/photo-mask.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.p-finale__photo img {
  --photo-parallax-y: 0px;
  --photo-reveal-y: 1.5rem;
  --photo-parallax-scale: 1.12;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
          transform: translate3d(0, calc(var(--photo-reveal-y) + var(--photo-parallax-y)), 0) scale(var(--photo-parallax-scale));
  -webkit-transition: opacity 0.7s ease var(--finale-photo-delay, 0s);
  transition: opacity 0.7s ease var(--finale-photo-delay, 0s);
}

.p-finale__photo--main {
  top: 8%;
  left: 29%;
  width: 40%;
  aspect-ratio: 594/405;
  --finale-photo-delay: 0.18s;
}

.p-finale__photo--top-left {
  top: 5%;
  left: 5%;
  width: 12%;
  aspect-ratio: 211.2043/176.9867;
  --finale-photo-delay: 0.08s;
}

.p-finale__photo--mid-left {
  top: 42%;
  left: -1%;
  width: 14%;
  aspect-ratio: 253/212;
  --finale-photo-delay: 0.28s;
}

.p-finale__photo--mid-right {
  top: 44%;
  right: -6%;
  width: 12%;
  aspect-ratio: 211.2043/176.9867;
  --finale-photo-delay: 0.38s;
}

.p-finale__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(2rem) scale(0.92);
          transform: translateY(2rem) scale(0.92);
  -webkit-transition: opacity 0.8s ease var(--finale-accent-delay, 0s), -webkit-transform 1s ease var(--finale-accent-delay, 0s);
  transition: opacity 0.8s ease var(--finale-accent-delay, 0s), -webkit-transform 1s ease var(--finale-accent-delay, 0s);
  transition: opacity 0.8s ease var(--finale-accent-delay, 0s), transform 1s ease var(--finale-accent-delay, 0s);
  transition: opacity 0.8s ease var(--finale-accent-delay, 0s), transform 1s ease var(--finale-accent-delay, 0s), -webkit-transform 1s ease var(--finale-accent-delay, 0s);
}

.p-finale__accent img,
.p-finale__accent .p-accent-image {
  display: block;
  width: 100%;
  height: auto;
}

.p-finale__accent .p-accent-image--pc {
  display: block;
}

.p-finale__accent .p-accent-image--sp {
  display: none;
}

.p-finale__line picture,
.p-finale__line img:not(.p-line-image) {
  display: block;
  width: 100%;
  height: 100%;
}

.p-finale__accent--top-right {
  top: 20%;
  right: 11%;
  width: 9rem;
  --finale-accent-delay: 0.16s;
}

.p-finale__accent--bottom-left {
  top: 65%;
  left: 8%;
  width: 8rem;
  --finale-accent-delay: 0.34s;
}

.p-finale__line {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc((1 - var(--finale-line-progress, 0)) * 100%) 0);
  will-change: clip-path;
}

.p-finale__line .p-line-image--pc {
  display: block;
}

.p-finale__line .p-line-image {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 110%;
  height: 110%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-finale__line .p-line-image--sp {
  display: none;
}

.p-finale__line img:not(.p-line-image) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-finale.is-visible .p-finale__heading,
.p-finale.is-visible .p-finale__block,
.p-finale.is-visible .p-finale__accent {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-finale__photo img.is-visible {
  opacity: 1;
  --photo-reveal-y: 0px;
}

.p-finale__photo.p-finale__photo--main img {
  -o-object-position: 20% -40px;
     object-position: 20% -40px;
  --photo-parallax-scale: 1.8;
}

@media screen and (max-width: 767px) {
  .p-finale__intro {
    position: sticky;
    top: 0;
    min-height: 28svh;
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-finale__intro-jp {
    font-size: 3.2rem;
  }
  .p-finale__intro-en {
    margin-top: 0.45rem;
    font-size: 0.95rem;
  }
  .p-finale__sticky {
    margin-top: 0;
  }
  .p-finale__heading-track {
    position: relative;
    inset: auto;
    height: auto;
    -webkit-transform: none;
            transform: none;
    padding: 35px 1rem 0;
    z-index: 3;
    top: auto;
  }
  .p-finale__heading-track--pc {
    display: none !important;
  }
  .p-finale__heading-track--sp {
    display: block !important;
  }
  .p-finale__heading {
    position: relative;
    top: auto;
    width: min(100% - 2rem, 19rem);
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.85rem;
    margin-inline: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-finale__panel-bg-image--pc {
    display: none;
  }
  .p-finale__panel-bg-image--sp {
    display: block;
  }
  .p-finale__title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 30px;
    white-space: nowrap;
  }
  .p-finale__title span {
    display: block;
  }
  .p-finale__title-line::before {
    content: "　";
  }
  .p-finale__lead {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 15rem;
    font-size: 0.95rem;
    line-height: 2.25;
    letter-spacing: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-top: 0;
  }
  .p-finale__panel {
    position: relative;
    aspect-ratio: var(--finale-panel-ratio-sp, var(--finale-panel-ratio, 1367/909));
    min-height: calc(250.2659574468vw + 24px);
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: hidden;
    margin-top: 0;
  }
  .p-finale__panel-bg {
    position: absolute;
    inset: 0;
  }
  .p-finale__panel-bg-image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 0;
       object-position: center 0;
  }
  .p-finale__panel-bg-image--pc {
    display: none;
  }
  .p-finale__panel-bg-image--sp {
    display: block;
  }
  .p-finale__content {
    position: relative;
    z-index: 2;
    margin-top: 0;
    width: var(--finale-sp-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--sp-canvas-scale, 1);
    padding: 0 0 1.25rem;
  }
  .p-finale__page {
    position: relative;
    inset: auto;
    display: block;
    padding: 0 1rem;
    margin-top: 0;
  }
  .p-finale__media-group {
    min-height: 31rem;
  }
  .p-finale__photo--main {
    top: 24.5%;
    left: 50%;
    width: 120%;
    aspect-ratio: 425/375.69;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-finale__photo--top-left {
    top: 6.5%;
    left: -6.8%;
    right: auto;
    width: 33%;
    aspect-ratio: 135/113.13;
  }
  .p-finale__photo--mid-left {
    top: 85%;
    left: -6.8%;
    right: auto;
    width: 39%;
    aspect-ratio: 134.73/112.9;
  }
  .p-finale__photo--mid-right {
    top: 19.3%;
    right: -6.8%;
    left: auto;
    width: 33%;
    aspect-ratio: 135/113.13;
  }
  .p-finale__block {
    position: absolute;
    top: 33rem;
    left: 50%;
    width: min(100% - 2rem, 19rem);
    margin-left: 0;
    -webkit-transform: translateX(-50%) translateY(1.5rem);
            transform: translateX(-50%) translateY(1.5rem);
  }
  .p-finale__page .p-finale__block {
    top: calc(33rem + 94px);
  }
  .p-finale__block-title {
    font-size: 1.375rem;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  .p-finale__block-text {
    margin-top: 0rem;
    font-size: 0.98rem;
    max-width: 100%;
    line-height: 2.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  .p-finale.is-visible .p-finale__block {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-finale__accent {
    display: block;
    width: 4.5rem;
    z-index: 1;
  }
  .p-finale__accent .p-accent-image--pc {
    display: none;
  }
  .p-finale__accent .p-accent-image--sp {
    display: block;
  }
  .p-finale__accent--top-right {
    top: 0.5rem;
    right: 0.35rem;
    width: 10rem;
  }
  .p-finale__accent--bottom-left {
    top: 30.5rem;
    left: 15.35rem;
    width: 10rem;
  }
  .p-finale__line {
    inset: 0;
    height: 100%;
    overflow: hidden;
  }
  .p-finale__line .p-line-image--pc {
    display: none;
  }
  .p-finale__line .p-line-image--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-finale {
    min-height: auto;
  }
  .p-finale__sticky {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .p-finale__content {
    position: relative;
    inset: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: var(--finale-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .p-finale__lead {
    padding-top: 5rem;
  }
  .p-finale__intro-mark {
    min-width: 16rem;
  }
  .p-finale__heading-track {
    width: var(--finale-pc-canvas-width);
    max-width: none;
    margin-inline: auto;
    zoom: var(--pc-canvas-scale, 1);
    -webkit-transform: none;
            transform: none;
    margin-top: 100px;
  }
  .p-finale__heading {
    top: 100px;
    max-width: min(19rem, 100vw - 3rem);
    margin-right: clamp(1rem, 15vw, 15%);
    gap: 1.15rem;
  }
  .p-finale__media-group {
    width: 100%;
    margin-top: var(--finale-media-top-space);
  }
  .p-finale__page {
    position: relative;
    inset: auto;
    width: 100%;
    padding-bottom: 0;
  }
  .p-finale__block {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: 0;
  }
  .p-finale__accent--top-right {
    top: 6%;
    right: 4%;
    width: 15rem;
  }
  .p-finale__accent--bottom-left {
    top: 45%;
    left: 5%;
    width: 15rem;
  }
  .p-finale__panel {
    aspect-ratio: auto;
  }
  .p-finale__photo--main {
    top: 3.6875rem;
    left: 29%;
    width: 40%;
  }
  .p-finale__photo--top-left {
    top: 21rem;
    left: 5%;
    width: 12%;
  }
  .p-finale__photo--mid-left {
    top: 4.625rem;
    left: -2%;
    width: 14%;
  }
  .p-finale__photo--mid-right {
    top: 16.8125rem;
    right: -2%;
    width: 12%;
    aspect-ratio: 211.2043/176.9867;
  }
}
.p-outro {
  position: relative;
  min-height: 100svh;
  color: #fff;
  --outro-progress: 0;
}

.p-outro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 5rem 1.5rem;
}

.p-outro__mark {
  opacity: clamp(0.14, (var(--outro-progress, 0) - 0.58) / 0.2, 1);
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.p-outro__text {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 0.25rem 1.25rem rgba(4, 9, 14, 0.28);
}

.p-outro--first .p-outro__text {
  letter-spacing: 0;
  font-size: 25px;
  line-height: 1.75;
}

.p-outro--second .p-outro__text {
  font-size: 25px;
}

.p-outro__mark--thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-outro__inner {
    padding: 7rem 2rem;
  }
  .p-outro--first .p-outro__text {
    font-size: 2.1875rem;
  }
  .p-outro--second .p-outro__text {
    font-size: 2.1875rem;
  }
}
.p-ending {
  position: relative;
  --ending-overlay-progress: 0;
  --ending-copy-progress: 0;
}

.p-ending__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.p-ending__phase--bg {
  height: 80svh;
}

.p-ending__phase--copy {
  height: 100svh;
}

.p-ending__bg,
.p-ending__filter,
.p-ending__inner {
  position: absolute;
  inset: 0;
}

.p-ending__bg img,
.p-ending__filter img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-ending__filter {
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 63, 52, 0)), color-stop(42%, rgba(0, 63, 52, 0.3)), to(rgba(0, 63, 52, 0.92)));
  background: linear-gradient(180deg, rgba(0, 63, 52, 0) 0%, rgba(0, 63, 52, 0.3) 42%, rgba(0, 63, 52, 0.92) 100%);
  opacity: clamp(0, var(--ending-overlay-progress, 0), 1);
  pointer-events: none;
}

.p-ending__filter img {
  display: none;
}

.p-ending__inner {
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0.3rem;
}

.p-ending__copy {
  width: min(100%, 41rem);
  color: #fff;
  text-align: center;
  opacity: clamp(0, (var(--ending-copy-progress, 0) - 0.18) / 0.34, 1);
}

.p-ending__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.8125rem;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0;
}

.p-ending__text {
  margin: 1.5rem auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1667rem;
  white-space: nowrap;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-ending__copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-inline: auto;
  }
  .p-ending__title {
    font-size: 1.875rem;
    line-height: 1;
    text-align: center;
  }
  .p-ending__text {
    margin-top: 2.25rem;
    margin-inline: auto;
    display: inline-block;
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 0.95rem;
    line-height: 2.25rem;
    white-space: nowrap;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-ending__copy {
    width: min(100%, 48rem);
    margin-top: 5rem;
  }
}
.p-sponsors {
  position: relative;
  z-index: 6;
  background: #fff;
  padding: 4rem 0 5rem;
}

.p-sponsors__inner {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
}

.p-sponsor-block + .p-sponsor-block {
  margin-top: 4.5rem;
}

.p-sponsor-block__header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.p-sponsor-block__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}

.p-sponsor-block__title-text--pc {
  display: inline;
}

.p-sponsor-block__title-text--sp {
  display: none;
}

.p-sponsor-grid {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
  width: 100%;
}

.p-sponsor-grid--2,
.p-sponsor-grid--3 {
  grid-template-columns: 1fr;
}

.p-sponsor-grid--4,
.p-sponsor-grid--5 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.p-sponsor-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(156, 163, 175, 0.08);
  padding: 1.5rem;
  text-align: center;
}

.p-sponsor-card--lg {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-sponsor-card__logo {
  display: block;
  width: 100%;
  max-height: 4rem;
  margin: 0 auto 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sponsor-card__logo--sm {
  max-height: 2.5rem;
  margin-bottom: 0.5rem;
}

.p-sponsor-card__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
}

.p-sponsor-card__name--lg {
  font-size: 1rem;
  font-weight: 700;
}

.p-sponsor-card__link {
  position: absolute;
  inset: 0;
}

.p-sponsor-block__action {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.p-sponsor-block__button {
  display: block;
  width: 100%;
  aspect-ratio: 344/109;
  text-decoration: none;
}

.p-sponsor-block__button-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sponsor-block__button-image--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-sponsor-block__title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .p-sponsor-block__title-text--sp {
    display: inline;
  }
  .p-sponsor-block__title-text--pc {
    display: none;
  }
  .p-sponsor-block__button-image--pc {
    display: none;
  }
  .p-sponsor-block__button-image--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-sponsors {
    padding: 5rem 0 6rem;
  }
  .p-sponsors__inner {
    width: min(100% - 4rem, 80rem);
  }
  .p-sponsor-block__header {
    margin-bottom: 1.5rem;
    padding-left: 0;
  }
  .p-sponsor-block__action {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
  }
  .p-sponsor-block__button {
    width: 100%;
    aspect-ratio: 480/110;
  }
  .p-sponsor-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .p-sponsor-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .p-sponsor-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .p-sponsor-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.p-footer {
  position: relative;
  z-index: 6;
  background: #fff;
  color: #333333;
  overflow: hidden;
}

.p-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/アセット footer_filter.png") center top/cover no-repeat;
  pointer-events: none;
}

.p-footer__inner,
.p-footer__bar {
  position: relative;
  z-index: 1;
}

.p-footer__inner {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  padding: 3.5rem 0 4.25rem;
  text-align: center;
}

.p-footer__nav,
.p-footer__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-footer__subnav {
  margin-top: 1rem;
}

.p-footer__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-footer__subnav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.p-footer__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__item + .p-footer__item::before {
  content: "|";
  margin-right: 1rem;
  color: #4b5563;
}

.p-footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  text-decoration: none;
}

.p-footer__link:hover {
  opacity: 0.7;
}

.p-footer__brand {
  margin-top: 3rem;
}

.p-footer__brand img {
  display: block;
  width: min(100%, 11rem);
  height: auto;
  margin: 0 auto;
}

.p-footer__bar {
  background: -webkit-gradient(linear, left top, right top, from(#17653c), to(#2d7b52));
  background: linear-gradient(90deg, #17653c 0%, #2d7b52 100%);
  padding: 0.55rem 1rem;
  text-align: center;
}

.p-footer__copyright {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8333rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-footer__brand img {
    width: min(100%, 7.7rem);
  }
  .p-footer__nav,
  .p-footer__subnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
  }
  .p-footer__item + .p-footer__item::before {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    width: min(100% - 4rem, 80rem);
    padding: 4.5rem 0 5rem;
  }
  .p-footer__nav {
    gap: 0.75rem 1.25rem;
  }
  .p-footer__subnav {
    margin-top: 1.25rem;
  }
  .p-footer__link {
    font-size: 1.0625rem;
  }
  .p-footer__brand {
    margin-top: 3.75rem;
  }
  .p-footer__brand img {
    width: 12.5rem;
  }
}