@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 Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
}
@media not all and (min-width: 641px) {
  :root {
    font-size: calc(1000 / (460 + var(--scrollBarWidth, 0)) * 1vw);
  }
}
@media screen and (min-width: 641px) {
  :root {
    font-size: 10px;
    font-weight: 500;
  }
}

body {
  letter-spacing: 0.02em;
  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(.winter2025) .kv .kv_title {
  opacity: 0;
}
:where(.winter2025) .kv .kv_title.isAnimationStarted {
  opacity: 1;
  transition: opacity 1s;
}
:where(.winter2025) .statement::after {
  opacity: 0.4;
  transform: scale(0.96);
  filter: blur(1.2266666667rem);
  transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}
:where(.winter2025) .statement.isAnimationStarted::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
:where(.winter2025) .playlist::after {
  opacity: 0.4;
  transform: scale(0.96);
  filter: blur(1.2266666667rem);
  transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}
:where(.winter2025) .playlist.isAnimationStarted::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
:where(.winter2025) .playlist .playlist_disc {
  transform: translate3d(0, -31.8933333333rem, 0) rotate(-90deg);
  transition: transform 0.8s cubic-bezier(0.42, 0, 0.58, 1);
}
:where(.winter2025) .playlist .playlist_disc .playlist_songs {
  opacity: 0;
  transition: opacity 0.8s 0.32s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
:where(.winter2025) .playlist .playlist_disc.isAnimationStarted {
  transform: translate3d(0, 0, 0) rotate(0);
}
:where(.winter2025) .playlist .playlist_disc.isAnimationStarted .playlist_songs {
  opacity: 1;
  animation: rotationRing 50s infinite linear;
}
:where(.winter2025) .movie::after {
  opacity: 0.4;
  transform: scale(0.96);
  filter: blur(1.2266666667rem);
  transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}
:where(.winter2025) .movie.isAnimationStarted::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

:where(.winter2025.teaser) .kv .kv_inner {
  opacity: 0;
}
:where(.winter2025.teaser) .kv .kv_inner.isAnimationStarted {
  opacity: 1;
  transition: opacity 1.4s;
}
:where(.winter2025.teaser) .kv .kv_title {
  opacity: 1;
}
:where(.winter2025.teaser) .bottomArea::after {
  opacity: 0.4;
  transform: scale(0.96);
  filter: blur(1.2266666667rem);
  transition: all 0.4s cubic-bezier(0.42, 0, 1, 1);
}
:where(.winter2025.teaser) .bottomArea.isAnimationStarted::after {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/**
 * Layout
 */
:where(.winter2025) {
  overflow-x: clip;
}
:where(.winter2025) .container {
  overflow: clip;
  position: relative;
  width: 46rem;
}
:where(.winter2025) .pcNavigation {
  display: none;
}
@media screen and (min-width: 641px) {
  :where(.winter2025) .wrapper {
    position: relative;
    display: grid;
    grid-template-areas: ". container .";
    grid-template-columns: 1fr 46rem 1fr;
  }
  :where(.winter2025) .container {
    grid-area: container;
    border-radius: 20px;
    border: 1px solid #FFF;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    margin-block: 60px;
    z-index: 1;
  }
  :where(.winter2025) .pcNavigation {
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100vw - var(--scrollBarWidthPx, 0px));
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 46rem 1fr;
    grid-template-rows: 30px 1fr 30px;
    grid-template-areas: "topBar topBar topBar" "leftSide . rightSide" "bottomBar bottomBar bottomBar";
    background: url("/winter-songs/2025/img/pc_bg.webp") no-repeat 50% 50%/cover;
  }
  :where(.winter2025) .pcNavigation::before, :where(.winter2025) .pcNavigation::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #000;
  }
  :where(.winter2025) .pcNavigation::before {
    top: 0;
    grid-area: topBar;
  }
  :where(.winter2025) .pcNavigation::after {
    bottom: 0;
    grid-area: bottomBar;
  }
  :where(.winter2025) .leftSide,
  :where(.winter2025) .rightSide {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  :where(.winter2025) .leftSide,
  :where(.winter2025) .rightSide {
    display: block;
    width: 100%;
    max-width: 609px;
  }
  :where(.winter2025) .leftSide {
    grid-area: leftSide;
    justify-self: end;
  }
  :where(.winter2025) .rightSide {
    grid-area: rightSide;
    justify-self: start;
  }
  :where(.winter2025) .leftSide {
    display: grid;
    align-content: start;
  }
  :where(.winter2025) .leftSide .leftSide_logo {
    position: relative;
    margin-top: 40px;
    margin-left: 40px;
    width: clamp(92px, calc(0.1710037175 * 100vh), 184px);
  }
  :where(.winter2025) .leftSide .leftSide_logo::after {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-color: #000;
    filter: blur(30px);
    opacity: 0.45;
  }
  :where(.winter2025) .leftSide .leftSide_title {
    justify-self: center;
    margin-top: clamp(16px, calc(0.029739777 * 100vh), 32px);
    width: clamp(154.5px, calc(0.2871747212 * 100vh), 309px);
    max-width: 100%;
  }
  :where(.winter2025) .leftSide .leftSide_navigation {
    margin-top: clamp(25px, calc(0.0464684015 * 100vh), 50px);
  }
  :where(.winter2025) .leftSide .leftSide_navigation_list {
    justify-self: center;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    row-gap: clamp(40px, calc(0.0743494424 * 100vh), 80px);
  }
  :where(.winter2025) .leftSide .leftSide_navigation_link {
    position: relative;
    font-size: clamp(10px, calc(0.0185873606 * 100vh), 20px);
    line-height: 1.6;
    letter-spacing: 0.3em;
    text-shadow: 0 0 clamp(5px, calc(0.0092936803 * 100vh), 10px) rgba(0, 0, 0, 0.5);
  }
  :where(.winter2025) .leftSide .leftSide_navigation_link::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - clamp(10.75px, calc(0.0199814126 * 100vh), 21.5px));
    left: clamp(-43px, calc(-0.0399628253 * 100vh), -21.5px);
    width: clamp(21.5px, calc(0.0399628253 * 100vh), 43px);
    height: clamp(21.5px, calc(0.0399628253 * 100vh), 43px);
    background-color: #FFF;
    mix-blend-mode: screen;
    background: url("/winter-songs/2025/img/leftSide_navigation_link_active.webp") no-repeat 50% 50%/contain;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.42, 0, 1, 1);
  }
}
@media screen and (min-width: 1150px) and (hover: hover) and (pointer: fine) {
  :where(.winter2025) .leftSide .leftSide_navigation_link:hover::before {
    opacity: 1;
  }
}
@media screen and (min-width: 1150px) {
  :where(.winter2025) .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(35px, calc(0.0650557621 * 100vh), 70px);
  }
  :where(.winter2025) .leftSide .leftSide_share_item {
    width: clamp(32.5px, calc(0.0604089219 * 100vh), 65px);
  }
  :where(.winter2025) .leftSide .leftSide_share_link {
    transform: scale(1);
    transition: 0.4s;
  }
}
@media screen and (min-width: 1150px) and (hover: hover) and (pointer: fine) {
  :where(.winter2025) .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(.winter2025) .rightSide .rightSide_playlist {
    margin-top: clamp(33px, calc(0.06133829 * 100vh), 66px);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  :where(.winter2025) .rightSide .rightSide_playlist_title {
    width: clamp(106px, calc(0.1970260223 * 100vh), 212px);
  }
  :where(.winter2025) .rightSide .rightSide_playlist_lead {
    margin-top: clamp(16px, calc(0.029739777 * 100vh), 32px);
    font-size: clamp(14px, calc(0.0260223048 * 100vh), 28px);
    line-height: 1.25;
    text-shadow: 0 0 clamp(5px, calc(0.0092936803 * 100vh), 10px) rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  :where(.winter2025) .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(.winter2025) .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(.winter2025) .rightSide .rightSide_playlist_link:hover {
    filter: contrast(1.1) drop-shadow(3px 3px 6px rgba(255, 255, 255, 0.5));
  }
}

/**
 * Pages
 */
:where(.winter2025) .header {
  pointer-events: none;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  width: 46rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
  height: 9.8133333333rem;
  padding-inline: 2.4533333333rem 0;
}
:where(.winter2025) .header .header_logo {
  pointer-events: auto;
  width: 11.8986666667rem;
}
:where(.winter2025) .header .drawer_button {
  pointer-events: auto;
  position: relative;
  width: 9.8133333333rem;
  height: 9.8133333333rem;
  z-index: 999;
}
:where(.winter2025) .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(.winter2025) .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(.winter2025) .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(.winter2025) .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(.winter2025) .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(.winter2025) .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(.winter2025) .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(.winter2025) .header .drawer {
  pointer-events: auto;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
@supports not (height: 1dvh) {
  :where(.winter2025) .header .drawer {
    height: 100vh;
  }
}
:where(.winter2025) .header .drawer .drawer_nav {
  max-height: 100dvh;
  height: 100%;
  display: grid;
  align-items: center;
}
@supports not (height: 1dvh) {
  :where(.winter2025) .header .drawer .drawer_nav {
    max-height: 100vh;
  }
}
:where(.winter2025) .header .drawer .drawer_list {
  position: relative;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 9.8133333333rem;
  padding-block: 4.9066666667rem;
}
:where(.winter2025) .header .drawer .navigation_item {
  font-size: 2.4533333333rem;
  line-height: 1;
  letter-spacing: 0.3em;
  line-height: 1.6;
  color: #FFF;
}
:where(.winter2025) .header .drawer .navigation_link {
  position: relative;
}
:where(.winter2025) .header .drawer .navigation_link::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2.4533333333rem);
  left: calc(0% - 4.9066666667rem);
  width: 4.9066666667rem;
  height: 4.9066666667rem;
  background-color: #FFF;
  mix-blend-mode: screen;
  background: url("/winter-songs/2025/img/leftSide_navigation_link_active.webp") no-repeat 50% 50%/contain;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.42, 0, 1, 1);
}
@media (hover: hover) and (pointer: fine) {
  :where(.winter2025) .header .drawer .navigation_link:hover::before {
    opacity: 1;
  }
}
:where(.winter2025) .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(.winter2025) .header .drawer[aria-hidden=true] .drawer_list {
  opacity: 0;
  transition: opacity 0.001s 0s cubic-bezier(0, 0, 0.58, 1);
}
:where(.winter2025) .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(.winter2025) .header .drawer[aria-hidden=false] .drawer_list {
  opacity: 1;
  transition: opacity 0.4s 0.1s cubic-bezier(0, 0, 0.58, 1);
}
:where(.winter2025) .kv {
  margin-top: -9.8133333333rem;
}
:where(.winter2025) .kv .kv_inner {
  position: relative;
}
:where(.winter2025) .kv .kv_title {
  position: absolute;
  top: 26.2506666667rem;
  left: -0.368rem;
  width: 48.6986666667rem;
  height: 17.7866666667rem;
  z-index: 2;
}
:where(.winter2025) .kv .kv_group {
  position: relative;
  width: 46rem;
  height: 38.5173333333rem;
}
:where(.winter2025) .kv .kv_copy {
  position: absolute;
}
:where(.winter2025) .kv .kv_group-1 .kv_copy {
  top: 10.7946666667rem;
  left: 4.9066666667rem;
  width: 1.5946666667rem;
  height: 17.296rem;
}
:where(.winter2025) .kv .kv_group-2 .kv_copy {
  top: 10.7946666667rem;
  right: 4.9066666667rem;
  width: 1.5946666667rem;
  height: 15.2106666667rem;
}
:where(.winter2025) .kv .kv_anchor {
  position: fixed;
  display: grid;
  place-items: center;
  bottom: 3.1893333333rem;
  left: 29.9306666667rem;
  width: 13.984rem;
  height: 14.1066666667rem;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
:where(.winter2025) .kv .kv_anchor::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("/winter-songs/2025/img/kv_anchor_circle.webp") no-repeat 50% 50%/contain;
  mix-blend-mode: screen;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  :where(.winter2025) .kv .kv_anchor:hover::before {
    transform: rotate(20deg);
  }
  :where(.winter2025) .kv .kv_anchor:hover .kv_anchor_text::before,
  :where(.winter2025) .kv .kv_anchor:hover .kv_anchor_arrow::before {
    transform: rotate(20deg);
  }
  :where(.winter2025) .kv .kv_anchor:hover .kv_anchor_arrow {
    transform: translateY(0.4906666667rem);
  }
}
:where(.winter2025) .kv .kv_anchor .kv_anchor_inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 12.2666666667rem;
  height: 12.2666666667rem;
}
:where(.winter2025) .kv .kv_anchor .kv_anchor_text,
:where(.winter2025) .kv .kv_anchor .kv_anchor_arrow {
  grid-row: 1/2;
  grid-column: 1/2;
  position: relative;
}
:where(.winter2025) .kv .kv_anchor .kv_anchor_text::before,
:where(.winter2025) .kv .kv_anchor .kv_anchor_arrow::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("/winter-songs/2025/img/kv_anchor_text_bg.webp") no-repeat 50% 50%/contain;
  transform: rotate(0deg);
  transition: transform 0.3s;
}
:where(.winter2025) .kv .kv_anchor .kv_anchor_text {
  -webkit-mask: url("/winter-songs/2025/img/kv_anchor_text.svg") no-repeat 50% 50%/contain;
  mask: url("/winter-songs/2025/img/kv_anchor_text.svg") no-repeat 50% 50%/contain;
}
:where(.winter2025) .kv .kv_anchor .kv_anchor_arrow {
  transform: translateY(0);
  transition: transform 0.3s;
  -webkit-mask: url("/winter-songs/2025/img/kv_anchor_arrow.svg") no-repeat 50% 50%/contain;
  mask: url("/winter-songs/2025/img/kv_anchor_arrow.svg") no-repeat 50% 50%/contain;
}
:where(.winter2025) .news {
  background: url("/winter-songs/2025/img/news_bg.webp") repeat-y 0 50%/cover;
}
:where(.winter2025) .news .news_inner {
  position: relative;
  z-index: 2;
  padding-inline: 4.9066666667rem;
  padding-block: 3.68rem;
}
:where(.winter2025) .news .news_heading {
  width: 10.7946666667rem;
}
:where(.winter2025) .news .news_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.84rem;
  row-gap: 1.84rem;
}
:where(.winter2025) .news .news_item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 1.472rem;
}
:where(.winter2025) .news .news_date {
  font-size: 1.472rem;
  line-height: 2;
}
:where(.winter2025) .news .news_lead {
  font-size: 1.7173333333rem;
  line-height: 1.7142857143;
}
:where(.winter2025) .statement {
  position: relative;
  background: url("/winter-songs/2025/img/statement_bg.webp") no-repeat 50% 0/cover;
}
:where(.winter2025) .statement::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/winter-songs/2025/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(.winter2025) .statement .statement_inner {
  position: relative;
  z-index: 2;
  padding-block: 12.512rem;
  padding-inline: 7.1146666667rem 4.9066666667rem;
}
:where(.winter2025) .statement .statement_paragraph {
  margin-top: 2.8213333333rem;
  font-size: 1.9626666667rem;
  line-height: 2.875;
}
:where(.winter2025) .statement .statement_copy {
  width: 31.1573333333rem;
}
:where(.winter2025) .playlist {
  position: relative;
  background: url("/winter-songs/2025/img/playlist_bg.webp") no-repeat 50% 0/cover;
}
:where(.winter2025) .playlist::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/winter-songs/2025/img/playlist_obg.webp") no-repeat 50% 50%/contain;
  top: -12.2666666667rem;
  left: -19.6266666667rem;
  width: 80.4693333333rem;
  height: 37.7813333333rem;
  mix-blend-mode: screen;
}
:where(.winter2025) .playlist .playlist_inner {
  position: relative;
  z-index: 1;
  padding-block: 11.2853333333rem 12.0213333333rem;
}
:where(.winter2025) .playlist .playlist_heading {
  width: 26.0053333333rem;
  margin-inline: auto;
}
:where(.winter2025) .playlist .playlist_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 6.1333333333rem;
  margin-top: 4.9066666667rem;
}
:where(.winter2025) .playlist .playlist_cover {
  position: relative;
  z-index: 2;
  width: 39.2533333333rem;
  margin-inline: auto;
  filter: drop-shadow(0.368rem 0.368rem 0.6133333333rem rgba(0, 0, 0, 0.3));
}
:where(.winter2025) .playlist .playlist_disc {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  width: 46rem;
  height: 44.16rem;
  margin-top: -10.0586666667rem;
  background: url("/winter-songs/2025/img/playlist_disc.webp") no-repeat 50% 0/cover;
  filter: drop-shadow(0.368rem 0.368rem 0.6133333333rem rgba(0, 0, 0, 0.3));
}
:where(.winter2025) .playlist .playlist_songs,
:where(.winter2025) .playlist .playlist_disc_contents {
  grid-row: 1/2;
  grid-column: 1/2;
}
:where(.winter2025) .playlist .playlist_songs {
  pointer-events: none;
}
:where(.winter2025) .playlist .playlist_disc_contents {
  width: 100%;
  height: 100%;
  padding-left: 1.2266666667rem;
  padding-top: 13.248rem;
}
:where(.winter2025) .playlist .playlist_disc_list {
  display: grid;
  grid-template-columns: 10.304rem 10.304rem;
  column-gap: 7.9733333333rem;
  align-content: center;
  justify-content: center;
  height: 22.08rem;
}
:where(.winter2025) .playlist .playlist_disc_link {
  display: block;
  width: 100%;
  height: 100%;
}
:where(.winter2025) .playlist .playlist_disc_item-amazon .playlist_disc_link {
  width: 10.304rem;
  height: 2.208rem;
}
:where(.winter2025) .playlist .playlist_disc_item-apple {
  margin-top: 0.2453333333rem;
}
:where(.winter2025) .playlist .playlist_disc_item-apple .playlist_disc_link {
  width: 6.624rem;
  height: 1.5946666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-awa {
  margin-top: 2.4533333333rem;
}
:where(.winter2025) .playlist .playlist_disc_item-awa .playlist_disc_link {
  width: 4.1706666667rem;
  height: 1.472rem;
}
:where(.winter2025) .playlist .playlist_disc_item-dhits {
  margin-top: 2.208rem;
}
:where(.winter2025) .playlist .playlist_disc_item-dhits .playlist_disc_link {
  width: 6.1333333333rem;
  height: 1.9626666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-kkbox {
  margin-top: 2.3306666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-kkbox .playlist_disc_link {
  width: 6.992rem;
  height: 1.472rem;
}
:where(.winter2025) .playlist .playlist_disc_item-line {
  margin-top: 2.208rem;
}
:where(.winter2025) .playlist .playlist_disc_item-line .playlist_disc_link {
  width: 9.8133333333rem;
  height: 1.7173333333rem;
}
:where(.winter2025) .playlist .playlist_disc_item-rakuten {
  margin-top: 2.576rem;
}
:where(.winter2025) .playlist .playlist_disc_item-rakuten .playlist_disc_link {
  width: 9.3226666667rem;
  height: 1.5946666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-spotify {
  margin-top: 2.0853333333rem;
}
:where(.winter2025) .playlist .playlist_disc_item-spotify .playlist_disc_link {
  width: 8.7093333333rem;
  height: 2.3306666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-trm {
  margin-top: 2.208rem;
}
:where(.winter2025) .playlist .playlist_disc_item-trm .playlist_disc_link {
  width: 10.1813333333rem;
  height: 1.5946666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-ytm {
  grid-column: 1/3;
  justify-items: center;
  margin-top: 2.208rem;
  margin-left: -2.208rem;
}
:where(.winter2025) .playlist .playlist_disc_item-ytm .playlist_disc_link {
  width: 6.8693333333rem;
  height: 1.472rem;
  margin-inline: auto;
}
:where(.winter2025) .playlist .playlist_disc_item-au {
  grid-column: 1/3;
  justify-self: center;
  margin-top: 2.4533333333rem;
  margin-left: -1.2266666667rem;
}
:where(.winter2025) .playlist .playlist_disc_item-au .playlist_disc_link {
  width: 21.0986666667rem;
  height: 0.9813333333rem;
  margin-inline: auto;
}
:where(.winter2025) .playlist .playlist_caution {
  margin-top: 7.36rem;
  text-align: center;
  color: #2A2A2A;
  font-size: 1.7173333333rem;
  letter-spacing: 0.08em;
  line-height: 1.2857142857;
}
:where(.winter2025) .bottomArea {
  background: url("/winter-songs/2025/img/bottomArea_bg.webp") no-repeat 50% 0/cover;
}
:where(.winter2025) .movie {
  position: relative;
}
:where(.winter2025) .movie::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/winter-songs/2025/img/movie_obg.webp") no-repeat 50% 50%/contain;
  top: -22.08rem;
  left: -16.56rem;
  width: 77.7706666667rem;
  height: 46.2453333333rem;
  mix-blend-mode: screen;
}
:where(.winter2025) .movie .movie_inner {
  position: relative;
  z-index: 1;
  padding-block: 12.2666666667rem 0;
}
:where(.winter2025) .movie .movie_heading {
  width: 20.8533333333rem;
  margin-inline: auto;
}
:where(.winter2025) .movie .movie_slider {
  margin-top: 5.3973333333rem;
  width: 46rem;
}
:where(.winter2025) .movie .movie_slide {
  display: grid;
  align-content: end;
  row-gap: 2.0853333333rem;
}
:where(.winter2025) .movie .movie_slide .movie_open {
  position: relative;
  transform: scale(0.84);
  transition: transform 0.4s;
}
:where(.winter2025) .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(.winter2025) .movie .movie_slide .movie_open.--comingsoon::before {
  display: none;
}
:where(.winter2025) .movie .movie_slide .movie_title {
  height: 2.6986666667rem;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 0.4s;
}
:where(.winter2025) .movie .movie_slide .movie_title > img {
  width: auto;
  height: 100%;
}
:where(.winter2025) .movie .movie_slide.is-active .movie_open {
  transform: scale(1);
}
:where(.winter2025) .movie .movie_slide.is-active .movie_title {
  opacity: 1;
}
:where(.winter2025) .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(.winter2025) .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(.winter2025) .movie .movie_arrow-next {
  transform: scaleX(-1);
}
:where(.winter2025) .movie .movie_pagination {
  display: flex;
  column-gap: 2.4533333333rem;
  margin-top: 8.9546666667rem;
}
:where(.winter2025) .movie .movie_page {
  width: 1.472rem;
  height: 1.472rem;
  background-color: #646464;
  border-radius: 50%;
}
:where(.winter2025) .movie .movie_page.is-active {
  background-color: #FFF;
}
:where(.winter2025) .interview .interview_inner {
  padding-block: 9.2rem 12.2666666667rem;
}
:where(.winter2025) .interview .interview_heading {
  width: 32.1386666667rem;
  margin-inline: auto;
}
:where(.winter2025) .interview .interview_open {
  position: relative;
  display: block;
  width: 36.8rem;
  margin-top: 3.68rem;
  margin-inline: auto;
}
:where(.winter2025) .interview .interview_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(.winter2025) .interview .interview_open.--comingsoon::before {
  display: none;
}
:where(.winter2025) .interview .interview_bottom {
  width: 32.9973333333rem;
  margin-top: 13.248rem;
  margin-inline: auto;
}
:where(.winter2025) .sns {
  background: rgba(255, 255, 255, 0.1);
}
:where(.winter2025) .sns .sns_inner {
  padding-block: 8.5866666667rem 41.0933333333rem;
}
:where(.winter2025) .sns .sns_heading {
  font-size: 2.944rem;
  line-height: 1.75;
  text-align: center;
}
:where(.winter2025) .sns .sns_lead {
  margin-top: 3.68rem;
  font-size: 1.9626666667rem;
  line-height: 1.5;
  text-align: center;
}
:where(.winter2025) .sns .sns_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  row-gap: 4.9066666667rem;
  margin-top: 4.9066666667rem;
}
:where(.winter2025) .sns .sns_item {
  width: 37.6586666667rem;
}
:where(.winter2025) .sns .sns_link {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  :where(.winter2025) .sns .sns_link:hover {
    transform: scale(1.04);
  }
}
:where(.winter2025) .sns .share {
  margin-top: 11.2853333333rem;
}
:where(.winter2025) .sns .share_copy {
  font-size: 2.944rem;
  line-height: 1.75;
  text-align: center;
}
:where(.winter2025) .sns .share_list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  column-gap: 3.68rem;
  margin-top: 3.68rem;
}
:where(.winter2025) .sns .share_item {
  width: 7.9733333333rem;
}
:where(.winter2025) .sns .share_link {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  :where(.winter2025) .sns .share_link:hover {
    transform: scale(1.04);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
  }
}
:where(.winter2025) .sns .share_description {
  margin-top: 3.68rem;
  font-size: 1.9626666667rem;
  line-height: 1.5;
  text-align: center;
}
:where(.winter2025) .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
:where(.winter2025) .footer .footer_inner {
  display: grid;
  justify-items: center;
  padding-bottom: 1.2266666667rem;
}
:where(.winter2025) .footer .footer_logo {
  display: block;
  width: 17.5413333333rem;
}
:where(.winter2025) .footer .footer_policy {
  display: inline-block;
  margin-top: 5.52rem;
  font-size: 1.7173333333rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
:where(.winter2025) .footer .footer_policy span:nth-of-type(2) {
  padding-left: 2em;
}
:where(.winter2025) .footer .footer_copyright small {
  display: block;
  margin-top: 2.6986666667rem;
  font-size: 1.472rem;
  line-height: 2;
  text-align: center;
}
:where(.winter2025) .modal {
  position: absolute;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
}
:where(.winter2025) .modal[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(.winter2025) .modal[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(.winter2025) .modal .modal_container {
  max-height: 100dvh;
  height: 100%;
  display: grid;
  align-items: center;
  overflow-y: auto;
  overflow-x: clip;
}
@supports not (height: 1dvh) {
  :where(.winter2025) .modal .modal_container {
    max-height: 100vh;
  }
}
:where(.winter2025) .modal .modal_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(.winter2025) .modal .modal_close {
  position: sticky;
  top: 0;
  z-index: 2;
  justify-self: end;
  width: 9.8133333333rem;
  height: 9.8133333333rem;
}
:where(.winter2025) .modal .movie_player_wrap {
  width: 41.216rem;
  aspect-ratio: 16/9;
}
:where(.winter2025) .modal .movie_player {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 641px) {
  :where(.winter2025) .header {
    display: none;
  }
  :where(.winter2025) .kv {
    margin-top: unset;
  }
  :where(.winter2025) .kv .kv_group-1 .kv_copy {
    top: 9.568rem;
  }
  :where(.winter2025) .kv .kv_anchor {
    display: none;
  }
}
:where(.winter2025).drawer-open .kv .kv_anchor {
  opacity: 0;
  visibility: hidden;
}

:where(.winter2025.teaser) .kv {
  height: 77.0346666667rem;
  background: url("/winter-songs/2025/img/teaser_kv_bg-sp.webp") no-repeat 50% 50%/cover;
}
:where(.winter2025.teaser) .kv .kv_inner {
  display: grid;
  justify-items: center;
  position: relative;
  padding-top: 19.6266666667rem;
}
:where(.winter2025.teaser) .kv .kv_title {
  position: relative;
  top: unset;
  left: unset;
  width: 41.3386666667rem;
  height: auto;
}
:where(.winter2025.teaser) .kv .kv_information {
  width: 22.5706666667rem;
  margin-top: 2.944rem;
}
:where(.winter2025.teaser) .kv .kv_lead {
  width: 42.1973333333rem;
  margin-top: 4.1706666667rem;
}
:where(.winter2025.teaser) .kv .kv_comingsoon {
  width: 26.496rem;
  margin-top: 2.4533333333rem;
}
:where(.winter2025.teaser) .playlist {
  background: url("/winter-songs/2025/img/teaser_playlist_bg.webp") no-repeat 50% 0/cover;
}
:where(.winter2025.teaser) .playlist::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/winter-songs/2025/img/teaser_playlist_obg.webp") no-repeat 50% 50%/contain;
  top: -14.352rem;
  left: -16.56rem;
  width: 76.6666666667rem;
  height: 32.752rem;
  mix-blend-mode: screen;
}
:where(.winter2025.teaser) .bottomArea {
  position: relative;
  background: url("/winter-songs/2025/img/teaser_bottomArea_bg.webp") no-repeat 50% 0/cover;
}
:where(.winter2025.teaser) .bottomArea::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/winter-songs/2025/img/teaser_bottomArea_obg.webp") no-repeat 50% 50%/contain;
  top: -16.56rem;
  left: -15.088rem;
  width: 78.1386666667rem;
  height: 33.9786666667rem;
  mix-blend-mode: screen;
}
:where(.winter2025.teaser) .bottomArea .bottomArea_title {
  width: 32.9973333333rem;
  padding-top: 11.776rem;
  margin-inline: auto;
}
:where(.winter2025.teaser) .sns {
  background: unset;
}
@media screen and (min-width: 641px) {
  :where(.winter2025.teaser) .kv {
    height: 92rem;
    background: url("/winter-songs/2025/img/teaser_kv_bg.webp") no-repeat 50% 50%/cover;
  }
  :where(.winter2025.teaser) .kv .kv_inner {
    padding-top: 29.44rem;
  }
  :where(.winter2025.teaser) .kv .kv_information {
    margin-top: 3.5573333333rem;
  }
  :where(.winter2025.teaser) .kv .kv_lead {
    display: none;
  }
  :where(.winter2025.teaser) .kv .kv_comingsoon {
    margin-top: 3.5573333333rem;
  }
  :where(.winter2025.teaser) .pcNavigation {
    background: url("/winter-songs/2025/img/teaser_pc_bg.webp") no-repeat 50% 50%/cover;
  }
}
@media screen and (min-width: 1150px) {
  :where(.winter2025.teaser) .leftSide .leftSide_title {
    justify-self: center;
    margin-top: clamp(90.5px, calc(0.1682156134 * 100vh), 181px);
    width: clamp(154.5px, calc(0.2871747212 * 100vh), 309px);
    max-width: 100%;
  }
  :where(.winter2025.teaser) .leftSide .leftSide_navigation {
    margin-top: clamp(30px, calc(0.0557620818 * 100vh), 60px);
  }
  :where(.winter2025.teaser) .leftSide .leftSide_share_list {
    margin-top: clamp(50px, calc(0.092936803 * 100vh), 100px);
  }
  :where(.winter2025.teaser) .rightSide .rightSide_playlist {
    margin-top: clamp(141.5px, calc(0.2630111524 * 100vh), 283px);
  }
}@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}