@charset "UTF-8";
/**
 * Foundation
 */
/* Breakpoints */
/* Size */
/* Font */
/* Color */
/* Easing */
/* Default */
/* In */
/* Out */
/* In Out */
/* line-heightを返す */
/* カラーコードのシャープマークを削除して返す */
/* 
  レスポンシブ（以上）
*/
/* 
  レスポンシブ（未満）
*/
/* ホバー */
/* 疑似要素（絶対配置） */
/* aタグのサイズを親要素に合わせる */
/* clearfix */
/* a11y-css-resetから引用 
  https://github.com/mike-engel/a11y-css-reset
*/
/* destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in iOS.
     * 3. Remove gray overlay on links for iOS.
     */
html {
  line-height: 1;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
     * Remove the margin in all browsers.
     */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
}

/**
     * Render the `main` element consistently in IE.
     */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
     * Remove the gray background on active links in IE 10.
     */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
     * Prevent vertical alignment issues.
     */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
     * Reset form fields to make them styleable
     */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
     * Reset radio and checkbox appearance to preserve their look in iOS.
     */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * Correct the inability to style clickable types in iOS and Safari.
     */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
     * Remove the inner border and padding in Firefox.
     */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
     * Restore the focus styles unset by the previous rule.
     */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Remove arrow in IE10 & IE11
     */
select::-ms-expand {
  display: none;
}

/**
     * Remove padding
     */
option {
  padding: 0;
}

/**
     * Reset to invisible
     */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  vertical-align: baseline;
}

/**
     * Remove the default vertical scrollbar in IE 10+.
     */
textarea {
  overflow: auto;
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the outline style in Safari.
     */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
     * Clickable labels
     */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/*
     * Remove outline for editable content.
     */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
     * Add the correct display in IE 10+.
     */
template {
  display: none;
}

/**
     * Add the correct display in IE 10.
     */
[hidden] {
  display: none;
}

/**
    * Remove dialog UA Style
    */
:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  padding: unset;
  margin: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

:root {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  color: #3E3E3E;
  scrollbar-gutter: stable;
}
@media not all and (min-width: 641px) {
  :root {
    font-size: 2.1739130435vw;
  }
}
@media screen and (min-width: 641px) {
  :root {
    font-size: 10px;
  }
}

body {
  letter-spacing: 0;
  overscroll-behavior: none;
  background-color: #FFF;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  outline: 0;
  vertical-align: bottom;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
}

@media not all and (min-width: 641px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .sp {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

@media print {
  body {
    display: none;
  }
}
/**
 * Base Element
 */
@keyframes scrollDown {
  0% {
    background-position: 0 100%;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  20%, 80% {
    opacity: 1;
  }
}
@keyframes rotationRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:where(.spring2026) .kv .kv_title {
  opacity: 0;
  filter: blur(0.2453333333rem);
  transition: opacity 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .kv .kv_anchor {
  opacity: 1;
  transition: opacity 0.4s 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
:where(.spring2026) .kv.isAnimationStarted .kv_title {
  opacity: 2;
  filter: blur(0);
}
:where(.spring2026) .kv.isAnimationStarted .kv_anchor {
  opacity: 1;
}
:where(.spring2026) .playlist .playlist_songs::before {
  opacity: 0;
  transform: translate3d(0, -7.36rem, 0) scaleY(0.3);
  transform-origin: top;
  transition: opacity 0.5s 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.7s 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
:where(.spring2026) .playlist .playlist_songs .playlist_songs_lead {
  opacity: 0;
  transition: opacity 0.6s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
:where(.spring2026) .playlist .playlist_songs .playlist_songs_item {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center;
  transition: opacity 0.4s 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.4s 0.6s cubic-bezier(0.61, 1, 0.868, 0.954);
}
:where(.spring2026) .playlist .playlist_songs.isAnimationStarted::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleY(1);
}
:where(.spring2026) .playlist .playlist_songs.isAnimationStarted .playlist_songs_lead {
  opacity: 1;
}
:where(.spring2026) .playlist .playlist_songs.isAnimationStarted .playlist_songs_item {
  opacity: 1;
  transform: scale(1);
}
:where(.spring2026) .playlist .playlist_material {
  opacity: 0;
  filter: blur(2.4533333333rem);
  transition: opacity 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 1.3s cubic-bezier(0.61, 1, 0.868, 0.954), filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
:where(.spring2026) .playlist .playlist_material.--fromLeft {
  transform: translate3d(-9.8133333333rem, -9.8133333333rem, 0) rotate(50deg);
}
:where(.spring2026) .playlist .playlist_material.--fromRight {
  transform: translate3d(9.8133333333rem, -9.8133333333rem, 0) rotate(50deg);
}
:where(.spring2026) .playlist .playlist_material.--delay-1 {
  transition-delay: 0.01s;
}
:where(.spring2026) .playlist .playlist_material.--delay-2 {
  transition-delay: 0.11s;
}
:where(.spring2026) .playlist .playlist_material.--delay-3 {
  transition-delay: 0.21s;
}
:where(.spring2026) .playlist .playlist_material.--delay-4 {
  transition-delay: 0.31s;
}
:where(.spring2026) .playlist .playlist_material.--delay-5 {
  transition-delay: 0.41s;
}
:where(.spring2026) .playlist .playlist_material.--delay-6 {
  transition-delay: 0.51s;
}
:where(.spring2026) .playlist .playlist_material.isAnimationStarted {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  filter: blur(0);
}
:where(.spring2026) .news .news_heading,
:where(.spring2026) .news .news_list {
  opacity: 0;
  filter: blur(0.2453333333rem);
  transform: translate3d(0, 4.9066666667rem, 0);
}
:where(.spring2026) .news .news_heading {
  transition: opacity 0.6s 0.01s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .news .news_list {
  transition: opacity 0.6s 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .news.isAnimationStarted .news_heading,
:where(.spring2026) .news.isAnimationStarted .news_list {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
:where(.spring2026) .story .story_heading,
:where(.spring2026) .story .character {
  opacity: 0;
  filter: blur(0.2453333333rem);
  transform: translate3d(0, 7.36rem, 0);
}
:where(.spring2026) .story .story_heading {
  transition: opacity 0.6s 0.01s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .story .character {
  transition: opacity 0.6s 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .story.isAnimationStarted .story_heading,
:where(.spring2026) .story.isAnimationStarted .character {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
:where(.spring2026) .story .background .background_heading,
:where(.spring2026) .story .background .background_inner {
  opacity: 0;
  filter: blur(0.2453333333rem);
  transform: translate3d(0, 7.36rem, 0);
}
:where(.spring2026) .story .background .background_heading {
  transition: opacity 0.6s 0.01s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .story .background .background_inner {
  transition: opacity 0.6s 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .story .background.isAnimationStarted .background_heading,
:where(.spring2026) .story .background.isAnimationStarted .background_inner {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
:where(.spring2026) .movieContents .movie,
:where(.spring2026) .movieContents .character,
:where(.spring2026) .movieContents .chapter,
:where(.spring2026) .movieContents .making,
:where(.spring2026) .movieContents .movieContents_logo {
  opacity: 0;
  filter: blur(0.2453333333rem);
  transform: translate3d(0, 4.9066666667rem, 0);
  transition: opacity 0.6s 0.01s cubic-bezier(0.55, 0.085, 0.68, 0.53), filter 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s 0.01s cubic-bezier(0.165, 0.84, 0.44, 1);
}
:where(.spring2026) .movieContents.isAnimationStarted .movie,
:where(.spring2026) .movieContents.isAnimationStarted .character,
:where(.spring2026) .movieContents.isAnimationStarted .chapter,
:where(.spring2026) .movieContents.isAnimationStarted .making,
:where(.spring2026) .movieContents.isAnimationStarted .movieContents_logo {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

/**
 * Layout
 */
:where(.spring2026) {
  overflow-x: clip;
}
:where(.spring2026) .container {
  overflow: clip;
  position: relative;
}
:where(.spring2026) .pcNavigation {
  display: none;
}
@media screen and (min-width: 641px) {
  :where(.spring2026) .container {
    width: 46rem;
  }
  :where(.spring2026) .wrapper {
    width: 100vw;
    position: relative;
    display: grid;
    grid-template-areas: ". container .";
    grid-template-columns: 1fr 46rem 1fr;
  }
  :where(.spring2026) .container {
    grid-area: container;
    margin-block: 40px;
    z-index: 1;
  }
  :where(.spring2026) .pcNavigation {
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 46rem 1fr;
    grid-template-areas: "leftSide . rightSide";
    background: url("/spring-songs/2026/img/pc_bg.webp") no-repeat 50% 50%/cover;
  }
  :where(.spring2026) .leftSide,
  :where(.spring2026) .rightSide {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  :where(.spring2026) .leftSide,
  :where(.spring2026) .rightSide {
    display: block;
    width: 100%;
    max-width: 609px;
  }
  :where(.spring2026) .leftSide {
    grid-area: leftSide;
    justify-self: end;
  }
  :where(.spring2026) .rightSide {
    grid-area: rightSide;
    justify-self: start;
  }
  :where(.spring2026) .leftSide {
    display: grid;
    align-content: start;
  }
  :where(.spring2026) .leftSide .leftSide_logo {
    position: relative;
    margin-top: 40px;
    margin-left: 40px;
    width: clamp(92px, calc(0.1710037175 * 100vh), 184px);
  }
  :where(.spring2026) .leftSide .leftSide_title {
    justify-self: center;
    margin-top: clamp(29px, calc(0.0539033457 * 100vh), 58px);
    width: clamp(147.5px, calc(0.2741635688 * 100vh), 295px);
    max-width: 100%;
  }
  :where(.spring2026) .leftSide .leftSide_navigation {
    margin-top: clamp(30px, calc(0.0557620818 * 100vh), 60px);
  }
  :where(.spring2026) .leftSide .leftSide_navigation_list {
    justify-self: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    row-gap: clamp(42.5px, calc(0.0789962825 * 100vh), 85px);
  }
  :where(.spring2026) .leftSide .leftSide_navigation_link {
    display: block;
    height: clamp(10px, calc(0.0185873606 * 100vh), 20px);
    opacity: 1;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.58, 1);
  }
  :where(.spring2026) .leftSide .leftSide_navigation_link > img {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1150px) and (hover: hover) and (pointer: fine) {
  :where(.spring2026) .leftSide .leftSide_navigation_link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1150px) {
  :where(.spring2026) .leftSide .leftSide_share_list {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, auto);
    column-gap: clamp(15px, calc(0.0278810409 * 100vh), 30px);
    margin-top: clamp(42.5px, calc(0.0789962825 * 100vh), 85px);
  }
  :where(.spring2026) .leftSide .leftSide_share_item {
    width: clamp(32.5px, calc(0.0604089219 * 100vh), 65px);
  }
  :where(.spring2026) .leftSide .leftSide_share_link {
    transform: scale(1);
    transition: 0.4s;
  }
}
@media screen and (min-width: 1150px) and (hover: hover) and (pointer: fine) {
  :where(.spring2026) .leftSide .leftSide_share_link:hover {
    transform: scale(1.04);
    filter: drop-shadow(3px 3px 6px rgba(255, 255, 255, 0.5));
  }
}
@media screen and (min-width: 1150px) {
  :where(.spring2026) .rightSide .rightSide_playlist {
    margin-top: clamp(48px, calc(0.0892193309 * 100vh), 96px);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  :where(.spring2026) .rightSide .rightSide_playlist_title {
    width: clamp(113px, calc(0.2100371747 * 100vh), 226px);
  }
  :where(.spring2026) .rightSide .rightSide_playlist_lead {
    margin-top: clamp(20px, calc(0.0371747212 * 100vh), 40px);
    font-size: clamp(14px, calc(0.0260223048 * 100vh), 28px);
    line-height: 1.25;
    text-align: center;
  }
  :where(.spring2026) .rightSide .rightSide_playlist_contents {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: clamp(15px, calc(0.0278810409 * 100vh), 30px);
    margin-top: clamp(20px, calc(0.0371747212 * 100vh), 40px);
  }
  :where(.spring2026) .rightSide .rightSide_playlist_link {
    display: block;
    width: clamp(103px, calc(0.1914498141 * 100vh), 206px);
    filter: contrast(1) drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
    transition: all 0.2s cubic-bezier(0.42, 0, 1, 1);
  }
}
@media screen and (min-width: 1150px) and (hover: hover) and (pointer: fine) {
  :where(.spring2026) .rightSide .rightSide_playlist_link:hover {
    filter: contrast(1.1) drop-shadow(3px 3px 6px rgba(255, 255, 255, 0.5));
  }
}

/**
 * Pages
 */
:where(.spring2026) .header {
  pointer-events: none;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  height: 9.8133333333rem;
  padding-inline: 2.4533333333rem 0;
}
:where(.spring2026) .header::before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.25;
}
:where(.spring2026) .header .header_logo {
  pointer-events: auto;
  width: 11.8986666667rem;
}
:where(.spring2026) .header .drawer_button {
  pointer-events: auto;
  position: relative;
  width: 9.8133333333rem;
  height: 9.8133333333rem;
  z-index: 999;
}
:where(.spring2026) .header .drawer_button[aria-expanded=false] .drawer_button_bar-1 {
  margin-top: -2.0853333333rem;
  transform: rotate(0deg);
  transition: all 0.2s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button[aria-expanded=false] .drawer_button_bar-2 {
  margin-top: -0.1226666667rem;
  opacity: 1;
  transition: opacity 0.3s 0.3s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button[aria-expanded=false] .drawer_button_bar-3 {
  margin-top: 1.84rem;
  transform: rotate(0deg);
  transition: all 0.2s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button[aria-expanded=true] .drawer_button_bar-1 {
  transform: rotate(45deg);
  transition: all 0.3s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button[aria-expanded=true] .drawer_button_bar-2 {
  opacity: 0;
  transition: opacity 0.2s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button[aria-expanded=true] .drawer_button_bar-3 {
  transform: rotate(-45deg);
  transition: all 0.3s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer_button_bar {
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: calc(50% - 2.4533333333rem);
  display: block;
  width: 4.9066666667rem;
  height: 2px;
  background-color: #fff;
}
:where(.spring2026) .header .drawer {
  pointer-events: auto;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
:where(.spring2026) .header .drawer .drawer_nav {
  max-height: 100vh;
  max-height: 100dvh;
  height: 100%;
  display: grid;
  align-items: center;
}
:where(.spring2026) .header .drawer .drawer_list {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 10.4266666667rem;
  padding-block: 4.9066666667rem;
}
:where(.spring2026) .header .drawer .navigation_link {
  display: block;
  height: 2.4533333333rem;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer .navigation_link > img {
  width: auto;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  :where(.spring2026) .header .drawer .navigation_link:hover {
    opacity: 0.7;
  }
}
:where(.spring2026) .header .drawer[aria-hidden=true] {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.01s 0.5s linear, opacity 0.2s 0.11s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer[aria-hidden=true] .drawer_list {
  opacity: 0;
  transition: opacity 0.001s 0s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.3s 0.01s linear, opacity 0.3s 0.01s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .header .drawer[aria-hidden=false] .drawer_list {
  opacity: 1;
  transition: opacity 0.4s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .kv {
  margin-top: -9.8133333333rem;
  height: 92rem;
  background: url("/spring-songs/2026/img/kv.webp") no-repeat 50% 50%/cover;
}
:where(.spring2026) .kv .kv_inner {
  display: grid;
  justify-items: center;
  row-gap: 2.6986666667rem;
  padding-top: 45.1413333333rem;
}
:where(.spring2026) .kv .kv_title {
  width: 37.6586666667rem;
}
:where(.spring2026) .kv .kv_anchor {
  z-index: 999;
  position: fixed;
  bottom: 3.0666666667rem;
  left: 6.5013333333rem;
  width: 32.9973333333rem;
  height: 8.5866666667rem;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53), visibility 0.2s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
:where(.spring2026) .kv .kv_anchor.--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(11.6533333333rem);
}
:where(.spring2026) .kv .kv_anchor img {
  filter: brightness(1) drop-shadow(0.368rem 0.368rem 0.736rem rgba(0, 0, 0, 0.5));
  transition: filter cubic-bezier(0, 0, 0.58, 1) 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  :where(.spring2026) .kv .kv_anchor:hover img {
    filter: brightness(0.8) drop-shadow(0.368rem 0.368rem 0.736rem rgba(0, 0, 0, 0.5));
  }
}
:where(.spring2026) .playlist {
  position: relative;
  background: url("/spring-songs/2026/img/playlist_bg.webp") no-repeat 50% 0/cover;
  overflow: hidden;
}
:where(.spring2026) .playlist .playlist_inner {
  position: relative;
  z-index: 1;
  padding-block: 8.5866666667rem 6.1333333333rem;
}
:where(.spring2026) .playlist .playlist_heading {
  width: 27.7226666667rem;
  margin-inline: auto;
}
:where(.spring2026) .playlist .playlist_list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.1333333333rem;
  margin-top: 6.3786666667rem;
}
:where(.spring2026) .playlist .playlist_item {
  width: 41.0933333333rem;
}
:where(.spring2026) .playlist .playlist_cover {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0.368rem 0.368rem 0.6133333333rem rgba(0, 0, 0, 0.3));
}
:where(.spring2026) .playlist .playlist_songs {
  position: relative;
  z-index: 1;
  margin-top: -1.2266666667rem;
  padding: 3.1893333333rem 1.7173333333rem 3.68rem;
}
:where(.spring2026) .playlist .playlist_songs::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.6133333333rem;
  box-shadow: 0 0.368rem 0.736rem rgba(0, 0, 0, 0.1);
}
:where(.spring2026) .playlist .playlist_songs_lead {
  position: relative;
  font-size: 2.0853333333rem;
  line-height: 1.5882352941;
  font-weight: 500;
  text-align: center;
}
:where(.spring2026) .playlist .playlist_songs_lead span {
  padding-inline: 0.2em;
  background: linear-gradient(0deg, #F2D0DC calc(100% - 1em), transparent calc(100% - 1em));
}
:where(.spring2026) .playlist .playlist_songs_list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.84rem;
  justify-items: center;
  align-items: center;
  margin-top: 1.84rem;
}
:where(.spring2026) .playlist .playlist_songs_item {
  width: 100%;
  height: 4.9066666667rem;
}
:where(.spring2026) .playlist .playlist_songs_link {
  display: grid;
  justify-items: center;
  align-items: center;
  height: 4.9066666667rem;
  background-color: #fff;
  border-radius: 0.368rem;
  box-shadow: 0 0.368rem 0.736rem rgba(0, 0, 0, 0.16);
}
:where(.spring2026) .playlist .playlist_songs_item-amazon .playlist_songs_link img {
  width: 14.1066666667rem;
}
:where(.spring2026) .playlist .playlist_songs_item-apple .playlist_songs_link img {
  width: 11.6533333333rem;
}
:where(.spring2026) .playlist .playlist_songs_item-awa .playlist_songs_link img {
  width: 5.6426666667rem;
}
:where(.spring2026) .playlist .playlist_songs_item-dhits .playlist_songs_link img {
  width: 8.3413333333rem;
}
:where(.spring2026) .playlist .playlist_songs_item-kkbox .playlist_songs_link img {
  width: 9.568rem;
}
:where(.spring2026) .playlist .playlist_songs_item-line .playlist_songs_link img {
  width: 13.3706666667rem;
}
:where(.spring2026) .playlist .playlist_songs_item-rakuten .playlist_songs_link img {
  width: 12.6346666667rem;
}
:where(.spring2026) .playlist .playlist_songs_item-spotify .playlist_songs_link img {
  width: 11.776rem;
}
:where(.spring2026) .playlist .playlist_songs_item-ytm {
  grid-column: 1/3;
}
:where(.spring2026) .playlist .playlist_songs_item-ytm .playlist_songs_link {
  margin-inline: auto;
  width: 17.9093333333rem;
}
:where(.spring2026) .playlist .playlist_songs_item-ytm .playlist_songs_link img {
  width: 9.4453333333rem;
}
:where(.spring2026) .playlist .playlist_songs_item-au {
  grid-column: 1/3;
}
:where(.spring2026) .playlist .playlist_songs_item-au .playlist_songs_link {
  margin-inline: auto;
  width: 32.6293333333rem;
}
:where(.spring2026) .playlist .playlist_songs_item-au .playlist_songs_link img {
  width: 28.5813333333rem;
}
:where(.spring2026) .playlist .playlist_caution {
  margin-top: 8.5866666667rem;
  text-align: center;
  color: #2A2A2A;
  font-size: 1.7173333333rem;
  letter-spacing: 0.08em;
  line-height: 1.2857142857;
}
:where(.spring2026) .playlist .playlist_materials {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
:where(.spring2026) .playlist .playlist_material_observerTarget_wrap {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(8, 1fr);
}
:where(.spring2026) .playlist .playlist_material {
  position: absolute;
}
:where(.spring2026) .playlist .playlist_material span {
  display: block;
  width: 100%;
  height: 100%;
}
:where(.spring2026) .playlist .playlist_material-1 {
  top: 0.736rem;
  right: 4.1706666667rem;
  width: 6.8693333333rem;
  height: 4.416rem;
}
:where(.spring2026) .playlist .playlist_material-1 span {
  background: url("/spring-songs/2026/img/playlist_material-1.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-2 {
  top: 11.5306666667rem;
  left: 1.7173333333rem;
  width: 6.1333333333rem;
  height: 3.9253333333rem;
}
:where(.spring2026) .playlist .playlist_material-2 span {
  background: url("/spring-songs/2026/img/playlist_material-2.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-3 {
  top: 15.088rem;
  right: 3.312rem;
  width: 7.8506666667rem;
  height: 4.784rem;
}
:where(.spring2026) .playlist .playlist_material-3 span {
  background: url("/spring-songs/2026/img/playlist_material-3.webp") no-repeat 50% 50%/contain;
  transform: rotate(9deg);
}
:where(.spring2026) .playlist .playlist_material-4 {
  top: 16.192rem;
  left: 6.256rem;
  width: 6.1333333333rem;
  height: 3.8026666667rem;
}
:where(.spring2026) .playlist .playlist_material-4 span {
  background: url("/spring-songs/2026/img/playlist_material-4.webp") no-repeat 50% 50%/contain;
  transform: rotate(7deg);
}
:where(.spring2026) .playlist .playlist_material-5 {
  top: 30.0533333333rem;
  right: -0.6133333333rem;
  width: 9.4453333333rem;
  height: 6.3786666667rem;
}
:where(.spring2026) .playlist .playlist_material-5 span {
  background: url("/spring-songs/2026/img/playlist_material-5.webp") no-repeat 50% 50%/contain;
  transform: rotate(-15deg);
}
:where(.spring2026) .playlist .playlist_material-6 {
  top: 48.6986666667rem;
  left: 0;
  width: 7.6053333333rem;
  height: 4.9066666667rem;
}
:where(.spring2026) .playlist .playlist_material-6 span {
  background: url("/spring-songs/2026/img/playlist_material-6.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-7 {
  top: 102.0586666667rem;
  right: 0;
  width: 6.992rem;
  height: 4.2933333333rem;
}
:where(.spring2026) .playlist .playlist_material-7 span {
  background: url("/spring-songs/2026/img/playlist_material-7.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-8 {
  top: 105.3706666667rem;
  left: -0.6133333333rem;
  width: 8.3413333333rem;
  height: 5.7653333333rem;
}
:where(.spring2026) .playlist .playlist_material-8 span {
  background: url("/spring-songs/2026/img/playlist_material-8.webp") no-repeat 50% 50%/contain;
  transform: rotate(-29deg);
}
:where(.spring2026) .playlist .playlist_material-9 {
  top: 118.7413333333rem;
  left: 4.1706666667rem;
  width: 6.8693333333rem;
  height: 4.416rem;
}
:where(.spring2026) .playlist .playlist_material-9 span {
  background: url("/spring-songs/2026/img/playlist_material-9.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-10 {
  top: 124.2613333333rem;
  right: 0;
  width: 6.8693333333rem;
  height: 4.416rem;
}
:where(.spring2026) .playlist .playlist_material-10 span {
  background: url("/spring-songs/2026/img/playlist_material-10.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-11 {
  top: 132.848rem;
  left: 0;
  width: 6.992rem;
  height: 4.2933333333rem;
}
:where(.spring2026) .playlist .playlist_material-11 span {
  background: url("/spring-songs/2026/img/playlist_material-11.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-12 {
  top: 166.336rem;
  left: 0.4906666667rem;
  width: 6.992rem;
  height: 5.0293333333rem;
}
:where(.spring2026) .playlist .playlist_material-12 span {
  background: url("/spring-songs/2026/img/playlist_material-12.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-13 {
  top: 169.8933333333rem;
  right: -1.104rem;
  width: 5.2746666667rem;
  height: 4.2933333333rem;
}
:where(.spring2026) .playlist .playlist_material-13 span {
  background: url("/spring-songs/2026/img/playlist_material-13.webp") no-repeat 50% 50%/contain;
  transform: rotate(70deg);
}
:where(.spring2026) .playlist .playlist_material-14 {
  top: 202.1546666667rem;
  right: 3.312rem;
  width: 5.2746666667rem;
  height: 4.2933333333rem;
}
:where(.spring2026) .playlist .playlist_material-14 span {
  background: url("/spring-songs/2026/img/playlist_material-14.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-15 {
  top: 217.6106666667rem;
  left: -1.9626666667rem;
  width: 11.04rem;
  height: 7.6053333333rem;
}
:where(.spring2026) .playlist .playlist_material-15 span {
  background: url("/spring-songs/2026/img/playlist_material-15.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-16 {
  bottom: 112.8533333333rem;
  right: 0;
  width: 7.6053333333rem;
  height: 6.256rem;
}
:where(.spring2026) .playlist .playlist_material-16 span {
  background: url("/spring-songs/2026/img/playlist_material-16.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-17 {
  bottom: 81.9413333333rem;
  right: -0.2453333333rem;
  width: 8.2186666667rem;
  height: 5.888rem;
}
:where(.spring2026) .playlist .playlist_material-17 span {
  background: url("/spring-songs/2026/img/playlist_material-17.webp") no-repeat 50% 50%/contain;
  transform: rotate(23deg);
}
:where(.spring2026) .playlist .playlist_material-18 {
  bottom: 61.3333333333rem;
  left: -3.0666666667rem;
  width: 13.1253333333rem;
  height: 8.096rem;
}
:where(.spring2026) .playlist .playlist_material-18 span {
  background: url("/spring-songs/2026/img/playlist_material-18.webp") no-repeat 50% 50%/contain;
  transform: rotate(-208deg);
}
:where(.spring2026) .playlist .playlist_material-19 {
  bottom: 30.0533333333rem;
  right: -0.736rem;
  width: 8.2186666667rem;
  height: 5.2746666667rem;
}
:where(.spring2026) .playlist .playlist_material-19 span {
  background: url("/spring-songs/2026/img/playlist_material-19.webp") no-repeat 50% 50%/contain;
  transform: rotate(18deg);
}
:where(.spring2026) .playlist .playlist_material-20 {
  bottom: 17.1733333333rem;
  left: 2.6986666667rem;
  width: 5.2746666667rem;
  height: 4.2933333333rem;
}
:where(.spring2026) .playlist .playlist_material-20 span {
  background: url("/spring-songs/2026/img/playlist_material-20.webp") no-repeat 50% 50%/contain;
  transform: rotate(70deg);
}
:where(.spring2026) .playlist .playlist_material-21 {
  bottom: 15.456rem;
  right: 4.9066666667rem;
  width: 11.04rem;
  height: 7.6053333333rem;
}
:where(.spring2026) .playlist .playlist_material-21 span {
  background: url("/spring-songs/2026/img/playlist_material-21.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-22 {
  bottom: 3.5573333333rem;
  right: 0.736rem;
  width: 6.8693333333rem;
  height: 4.416rem;
}
:where(.spring2026) .playlist .playlist_material-22 span {
  background: url("/spring-songs/2026/img/playlist_material-22.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .playlist .playlist_material-23 {
  bottom: 0.8586666667rem;
  left: 1.472rem;
  width: 6.8693333333rem;
  height: 4.416rem;
}
:where(.spring2026) .playlist .playlist_material-23 span {
  background: url("/spring-songs/2026/img/playlist_material-23.webp") no-repeat 50% 50%/contain;
}
:where(.spring2026) .news {
  background: url("/spring-songs/2026/img/news_bg.webp") no-repeat 0 calc(100% + 9.8133333333rem)/cover;
}
:where(.spring2026) .news .news_inner {
  padding-inline: 4.9066666667rem;
  padding-block: 4.6613333333rem;
}
:where(.spring2026) .news .news_heading {
  width: 15.5786666667rem;
}
:where(.spring2026) .news .news_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 3.68rem;
  row-gap: 1.84rem;
  padding-left: 0.6133333333rem;
}
:where(.spring2026) .news .news_item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 1.472rem;
}
:where(.spring2026) .news .news_date {
  font-size: 1.472rem;
  line-height: 2;
}
:where(.spring2026) .news .news_lead {
  font-size: 1.7173333333rem;
  line-height: 1.7142857143;
}
:where(.spring2026) .story {
  background: linear-gradient(180deg, #BFD7DF 0%, #E1EBF2 20%, #FAF0F0 80%, #F4CBD9 100%);
}
:where(.spring2026) .story .story_inner {
  padding-block: 3.4346666667rem 6.992rem;
}
:where(.spring2026) .story .story_heading {
  width: 35.696rem;
  margin-left: 0.9813333333rem;
  mix-blend-mode: screen;
}
:where(.spring2026) .story .character {
  margin-top: 1.84rem;
}
:where(.spring2026) .story .character .character_heading {
  width: 20.3626666667rem;
  margin-inline: auto;
}
:where(.spring2026) .story .character .character_slider {
  margin-top: -0.9813333333rem;
  width: 100%;
}
:where(.spring2026) .story .character .character_slide {
  padding: 2.4533333333rem;
}
:where(.spring2026) .story .character .character_slide .character_slide_inner {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.6133333333rem;
  box-shadow: 0 0.368rem 0.736rem rgba(0, 0, 0, 0.1);
  padding: 2.4533333333rem;
}
:where(.spring2026) .story .character .character_slide .character_name {
  font-size: 1.9626666667rem;
  line-height: 1.25;
  font-weight: 500;
}
:where(.spring2026) .story .character .character_slide .character_description {
  margin-top: 1.2266666667rem;
  font-size: 1.9626666667rem;
  line-height: 1.4375;
}
:where(.spring2026) .story .character .character_slide .character_description span {
  display: block;
}
:where(.spring2026) .story .character .character_slide .character_description span + span {
  margin-top: 1em;
}
:where(.spring2026) .story .character .character_slide.is-active .movie_open {
  transform: scale(1);
}
:where(.spring2026) .story .character .character_slide.is-active .movie_title {
  transform: translateY(0);
  opacity: 1;
}
:where(.spring2026) .story .character .character_arrows {
  margin-top: -40.48rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  column-gap: 39.2533333333rem;
  position: relative;
  pointer-events: none;
}
:where(.spring2026) .story .character .character_arrow {
  pointer-events: auto;
  width: 1.7173333333rem;
  height: 3.4346666667rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28.906' height='54.026'%3E%3Cpath fill='none' stroke='%233E3E3E' stroke-width='2' d='m28.205.713-26.778 26.3 26.778 26.3' data-name='パス 10438'/%3E%3C/svg%3E") no-repeat 50% 50%/contain;
}
:where(.spring2026) .story .character .character_arrow-next {
  transform: scaleX(-1);
}
:where(.spring2026) .story .background {
  display: grid;
  margin-top: 37.7813333333rem;
}
:where(.spring2026) .story .background .background_heading {
  justify-self: end;
  width: 34.3466666667rem;
  margin-right: 1.5946666667rem;
  mix-blend-mode: screen;
}
:where(.spring2026) .story .background .background_inner {
  display: grid;
  margin-top: -6.3786666667rem;
  padding-inline: 2.4533333333rem;
}
:where(.spring2026) .story .background .background_paragraph {
  position: relative;
  font-size: 1.9626666667rem;
  line-height: 2.125;
}
:where(.spring2026) .story .background .background_paragraph span {
  display: block;
}
:where(.spring2026) .story .background .background_paragraph span + span {
  margin-top: 2.0853333333rem;
}
:where(.spring2026) .story .background .background_logo {
  justify-self: end;
  width: 20.24rem;
  margin-top: 4.9066666667rem;
}
:where(.spring2026) .statement {
  position: relative;
  background: url("/spring-songs/2026/img/statement_bg.webp") no-repeat 50% 0/cover;
}
:where(.spring2026) .statement::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/spring-songs/2026/img/statement_obg.webp") no-repeat 50% 50%/contain;
  top: -16.4373333333rem;
  left: -20.24rem;
  width: 76.176rem;
  height: 42.1973333333rem;
  mix-blend-mode: screen;
}
:where(.spring2026) .statement .statement_inner {
  position: relative;
  z-index: 2;
  padding-block: 12.512rem;
  padding-inline: 7.1146666667rem 4.9066666667rem;
}
:where(.spring2026) .statement .statement_paragraph {
  margin-top: 2.8213333333rem;
  font-size: 1.9626666667rem;
  line-height: 2.875;
}
:where(.spring2026) .statement .statement_copy {
  width: 31.1573333333rem;
}
:where(.spring2026) .movieContents {
  background: url("/spring-songs/2026/img/movieContents_bg.webp") no-repeat 50% 0/cover;
}
:where(.spring2026) .movie .movie_inner {
  padding-block: 8.5866666667rem 0;
}
:where(.spring2026) .movie .movie_heading {
  width: 19.3813333333rem;
  margin-inline: auto;
}
:where(.spring2026) .movie .movie_slider {
  margin-top: 5.888rem;
  width: 100%;
}
:where(.spring2026) .movie .movie_slide {
  display: grid;
  align-content: end;
  row-gap: 2.0853333333rem;
}
:where(.spring2026) .movie .movie_slide .movie_open {
  position: relative;
  transform: scale(0.88);
  transition: transform 0.4s;
}
:where(.spring2026) .movie .movie_slide .movie_open::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.84rem);
  left: calc(50% - 1.5946666667rem);
  width: 3.312rem;
  height: 3.8026666667rem;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
}
:where(.spring2026) .movie .movie_slide .movie_open.--comingsoon {
  pointer-events: none;
}
:where(.spring2026) .movie .movie_slide .movie_open.--comingsoon::before {
  display: none;
}
:where(.spring2026) .movie .movie_slide .movie_title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.3306666667rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 0;
  transform: translateY(1.7173333333rem);
  transition: opacity 0.4s, transform 0.6s;
}
:where(.spring2026) .movie .movie_slide .movie_title > img {
  width: auto;
  height: 100%;
}
:where(.spring2026) .movie .movie_slide.is-active .movie_open {
  transform: scale(1);
}
:where(.spring2026) .movie .movie_slide.is-active .movie_title {
  transform: translateY(0);
  opacity: 1;
}
:where(.spring2026) .movie .movie_arrows {
  margin-top: -13.4933333333rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  column-gap: 35.328rem;
  position: relative;
  pointer-events: none;
}
:where(.spring2026) .movie .movie_arrow {
  pointer-events: auto;
  width: 3.1893333333rem;
  height: 6.3786666667rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28.906' height='54.026'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m28.205.713-26.778 26.3 26.778 26.3' data-name='パス 10438'/%3E%3C/svg%3E") no-repeat 50% 50%/contain;
}
:where(.spring2026) .movie .movie_arrow-next {
  transform: scaleX(-1);
}
:where(.spring2026) .movie .movie_pagination {
  display: flex;
  column-gap: 2.4533333333rem;
  margin-top: 8.3413333333rem;
}
:where(.spring2026) .movie .movie_page {
  width: 1.472rem;
  height: 1.472rem;
  background-color: #CBCBCB;
  border-radius: 50%;
}
:where(.spring2026) .movie .movie_page.is-active {
  background-color: #FFF;
}
:where(.spring2026) .chapter .chapter_inner {
  padding-block: 8.096rem 0;
  padding-inline: 2.4533333333rem;
}
:where(.spring2026) .chapter .chapter_heading {
  width: 15.7013333333rem;
  margin-inline: auto;
}
:where(.spring2026) .chapter .chapter_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.4533333333rem;
  margin-top: 1.472rem;
}
:where(.spring2026) .chapter .chapter_button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.6133333333rem;
  box-shadow: 0 0.368rem 0.736rem rgba(0, 0, 0, 0.1);
  padding: 1.84rem 3.1893333333rem 1.84rem 2.208rem;
  font-size: 1.9626666667rem;
  line-height: 1.25;
  font-weight: 500;
}
:where(.spring2026) .chapter .chapter_button::after {
  content: "";
  display: block;
  pointer-events: auto;
  width: 1.7173333333rem;
  height: 3.4346666667rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28.906' height='54.026'%3E%3Cpath fill='none' stroke='%233E3E3E' stroke-width='2' d='m28.205.713-26.778 26.3 26.778 26.3' data-name='パス 10438'/%3E%3C/svg%3E") no-repeat 50% 50%/contain;
  transform: scaleX(-1);
}
:where(.spring2026) .chapter .chapter_button.--comingsoon {
  pointer-events: none;
  background-color: rgba(203, 203, 203, 0.3);
}
:where(.spring2026) .making .making_inner {
  padding-block: 8.5866666667rem 0;
}
:where(.spring2026) .making .making_heading {
  width: 24.1653333333rem;
  margin-inline: auto;
}
:where(.spring2026) .making .making_open {
  position: relative;
  display: block;
  width: 36.1866666667rem;
  margin-top: 4.2933333333rem;
  margin-inline: auto;
}
:where(.spring2026) .making .making_open::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.84rem);
  left: calc(50% - 1.5946666667rem);
  width: 3.312rem;
  height: 3.8026666667rem;
  background-color: #fff;
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
}
:where(.spring2026) .making .making_open.--comingsoon {
  pointer-events: none;
}
:where(.spring2026) .making .making_open.--comingsoon::before {
  display: none;
}
:where(.spring2026) .making .interview_bottom {
  width: 32.9973333333rem;
  margin-top: 13.248rem;
  margin-inline: auto;
}
:where(.spring2026) .movieContents_logo {
  width: 24.1653333333rem;
  padding-block: 6.256rem 8.2186666667rem;
  margin-inline: auto;
}
:where(.spring2026) .sns {
  background: url("/spring-songs/2026/img/sns_bg.webp") no-repeat 50% 0/cover;
}
:where(.spring2026) .sns .sns_inner {
  padding-block: 11.5306666667rem 39.2533333333rem;
}
:where(.spring2026) .sns .sns_heading {
  font-size: 2.944rem;
  line-height: 1.75;
  text-align: center;
}
:where(.spring2026) .sns .sns_lead {
  margin-top: 3.68rem;
  font-size: 1.9626666667rem;
  line-height: 1.5;
  text-align: center;
}
:where(.spring2026) .sns .sns_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  row-gap: 4.9066666667rem;
  margin-top: 4.9066666667rem;
}
:where(.spring2026) .sns .sns_item {
  width: 37.6586666667rem;
}
:where(.spring2026) .sns .sns_link {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  :where(.spring2026) .sns .sns_link:hover {
    transform: scale(1.04);
  }
}
:where(.spring2026) .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
:where(.spring2026) .footer .footer_inner {
  display: grid;
  justify-items: center;
  padding-bottom: 2.4533333333rem;
}
:where(.spring2026) .footer .footer_logo {
  display: block;
  width: 17.5413333333rem;
}
:where(.spring2026) .footer .footer_policy {
  display: inline-block;
  margin-top: 5.52rem;
  font-size: 1.7173333333rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
:where(.spring2026) .footer .footer_policy span:nth-of-type(2) {
  padding-left: 2em;
}
:where(.spring2026) .footer .footer_copyright small {
  display: block;
  margin-top: 2.6986666667rem;
  font-size: 1.472rem;
  line-height: 2;
  text-align: center;
}
:where(.spring2026) .movieModal {
  position: absolute;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
}
:where(.spring2026) .movieModal[aria-hidden=true] {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.01s 0.5s linear, opacity 0.2s 0.11s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .movieModal[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s 0.01s linear, opacity 0.2s 0.01s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .movieModal .movieModal_container {
  max-height: 100vh;
  max-height: 100dvh;
  height: 100%;
  display: grid;
  align-items: center;
  overflow-y: auto;
  overflow-x: clip;
}
:where(.spring2026) .movieModal .movieModal_inner {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-rows: 9.8133333333rem 1fr;
  width: 100%;
  row-gap: 10.4266666667rem;
  margin-inline: auto;
  padding-block: 4.9066666667rem;
  margin-top: -20.24rem;
}
:where(.spring2026) .movieModal .movieModal_close {
  position: sticky;
  top: 0;
  z-index: 2;
  justify-self: end;
  width: 9.8133333333rem;
  height: 9.8133333333rem;
  display: grid;
  justify-items: center;
  align-items: center;
}
:where(.spring2026) .movieModal .movieModal_close::before, :where(.spring2026) .movieModal .movieModal_close::after {
  content: "";
  display: block;
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 6.8693333333rem;
  height: 0.2453333333rem;
  background-color: #FFF;
}
:where(.spring2026) .movieModal .movieModal_close::before {
  transform: rotate(45deg);
}
:where(.spring2026) .movieModal .movieModal_close::after {
  transform: rotate(-45deg);
}
:where(.spring2026) .movieModal .movieModal_player_wrap {
  width: 41.216rem;
  aspect-ratio: 16/9;
}
:where(.spring2026) .movieModal .movieModal_player {
  width: 100%;
  height: 100%;
}
:where(.spring2026) .chapterModal {
  position: absolute;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: clip;
  height: calc(100vh - 5.888rem);
  height: calc(100dvh - 5.888rem);
  margin: 2.944rem 1.7173333333rem;
  scrollbar-gutter: stable;
  background-color: #fff;
  border-radius: 0.6133333333rem;
  scrollbar-color: #dadada transparent;
}
:where(.spring2026) .chapterModal::-webkit-scrollbar {
  background-color: transparent;
}
:where(.spring2026) .chapterModal::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border: 3px solid transparent;
  border-radius: 10px;
  background-clip: content-box;
}
:where(.spring2026) .chapterModal[aria-hidden=true] {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.01s 0.5s linear, opacity 0.2s 0.01s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .chapterModal[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s 0.01s linear, opacity 0.2s 0.01s cubic-bezier(0, 0, 0.58, 1);
}
:where(.spring2026) .chapterModal .chapterModal_inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
}
:where(.spring2026) .chapterModal .chapterModal_inner::before, :where(.spring2026) .chapterModal .chapterModal_inner::after {
  content: "";
  display: block;
  position: sticky;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  grid-column: 1/-1;
}
:where(.spring2026) .chapterModal .chapterModal_inner::before {
  top: 0;
  grid-row: 1/2;
  height: 3.4346666667rem;
}
:where(.spring2026) .chapterModal .chapterModal_inner::after {
  bottom: 0;
  grid-row: 3/4;
  height: 4.9066666667rem;
}
:where(.spring2026) .chapterModal .chapterModal_close {
  position: sticky;
  top: 0;
  z-index: 2;
  justify-self: end;
  grid-column: 1/-1;
  grid-row: 1/4;
  width: 9.8133333333rem;
  height: 9.8133333333rem;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: #fff;
}
:where(.spring2026) .chapterModal .chapterModal_close::before, :where(.spring2026) .chapterModal .chapterModal_close::after {
  content: "";
  display: block;
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 6.8693333333rem;
  height: 0.2453333333rem;
  background-color: #3E3E3E;
}
:where(.spring2026) .chapterModal .chapterModal_close::before {
  transform: rotate(45deg);
}
:where(.spring2026) .chapterModal .chapterModal_close::after {
  transform: rotate(-45deg);
}
:where(.spring2026) .chapterModal .chapterModal_wrap {
  grid-column: 1/-1;
  grid-row: 2/3;
  padding: 0 1.7173333333rem 0 3.4346666667rem;
}
:where(.spring2026) .chapterModal .chapterModal_heading {
  font-size: 1.9626666667rem;
  line-height: 1.25;
  font-weight: 500;
}
:where(.spring2026) .chapterModal .chapterModal_content {
  margin-top: 3.4346666667rem;
  font-size: 1.9626666667rem;
  line-height: 1.4375;
}
:where(.spring2026) .chapterModal .chapterModal_content span {
  display: block;
}
:where(.spring2026) .chapterModal .chapterModal_content span + span {
  margin-top: 1em;
}
@media screen and (min-width: 641px) {
  :where(.spring2026) .header {
    display: none;
  }
  :where(.spring2026) .kv {
    margin-top: unset;
  }
  :where(.spring2026) .kv .kv_anchor {
    display: none;
  }
}
:where(.spring2026).drawer-open .kv .kv_anchor {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.001s;
}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}