@charset "UTF-8";
/* =============================
   Reset (Modern CSS Reset)
   ============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

:where(h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(input[type=number]) {
  appearance: textfield;
}

:where(input[type=number]::-webkit-inner-spin-button),
:where(input[type=number]::-webkit-outer-spin-button) {
  appearance: none;
  margin: 0;
}

:root {
  /* フォントサイズ */
  --fz-1: 1.5rem;
  --fz-2: 1.25rem;
  --fz-3: 1rem;
  --fz-4: 0.875rem;
  --fz-5: 0.75rem;
  /* レタースペーシング */
  --ls-1: 0.1rem;
  --ls-2: 0.05rem;
  --ls-3: 0.02rem;
  --ls-4: 0rem;
  --ls-5: -0.02rem;
}

p {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  margin: 0;
}

/* 2引数対応版 */
:root {
  /* スペーシング */
  --xs: 0.25rem;
  --sm: 0.5rem;
  --md: 1rem;
  --lg: 2rem;
  --xl: 4rem;
}

:root {
  --scale01: 5px;
  --scale02: 10px;
  --scale03: 15px;
  --scale04: 20px;
  --scale05: 25px;
  --scale06: 30px;
  --scale07: 35px;
  --scale08: 40px;
  --scale09: 45px;
  --scale10: 50px;
  --scale15: 75px;
  --scale20: 100px;
  --scale25: 125px;
  --scale30: 150px;
  --scale35: 175px;
  --scale40: 200px;
  --scale45: 225px;
  --scale50: 250px;
  --scale55: 275px;
  --scale60: 300px;
  --scale65: 325px;
  --scale70: 350px;
  --scale75: 375px;
  --scale80: 400px;
  --scale85: 425px;
  --scale90: 450px;
  --scale95: 475px;
  --scale100: 500px;
}

@media screen and (max-width: 950px) {
  :root {
    --scale01: 5px;
    --scale02: 10px;
    --scale03: 15px;
    --scale04: 20px;
    --scale05: 25px;
    --scale06: 30px;
    --scale07: 35px;
    --scale08: 40px;
    --scale09: 45px;
    --scale10: 50px;
    --scale15: 75px;
    --scale20: 100px;
    --scale25: 125px;
    --scale30: 150px;
    --scale35: 175px;
    --scale40: 200px;
    --scale45: 225px;
    --scale50: 250px;
    --scale55: 275px;
    --scale60: 300px;
    --scale65: 325px;
    --scale70: 350px;
    --scale75: 375px;
    --scale80: 400px;
    --scale85: 425px;
    --scale90: 450px;
    --scale95: 475px;
    --scale100: 500px;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --scale01: 1vw;
    --scale02: 2vw;
    --scale03: 3vw;
    --scale04: 4vw;
    --scale05: 5vw;
    --scale06: 6vw;
    --scale07: 7vw;
    --scale08: 8vw;
    --scale09: 9vw;
    --scale10: 10vw;
    --scale15: 15vw;
    --scale20: 20vw;
    --scale25: 25vw;
    --scale30: 30vw;
    --scale35: 35vw;
    --scale40: 40vw;
    --scale45: 45vw;
    --scale50: 50vw;
    --scale55: 55vw;
    --scale60: 60vw;
    --scale65: 65vw;
    --scale70: 70vw;
    --scale75: 75vw;
    --scale80: 80vw;
    --scale85: 85vw;
    --scale90: 90vw;
    --scale95: 95vw;
    --scale100: 100vw;
  }
}
/*
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
}
/* ------------------------------
Main Layout  
----------------------------- */
.l-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(100%, 950px);
  padding: 0;
  background: url("/img/commons/bg__textuer01.svg");
  box-shadow: 0px 5px 20px 0px rgba(48, 39, 19, 0.3);
  border-radius: 10px;
  position: absolute;
  top: var(--scale10);
  left: 50%;
  transform: translateX(-50%);
}

.l-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/commons/bg--noise2.svg");
  z-index: -1;
}

/* ------------------------------
Header Layout  
----------------------------- */
.l-header {
  width: 100%;
  background: url("/img/commons/bg__textuer01.svg");
  position: relative;
  border-radius: 10px;
}

/* ------------------------------
Body Layout  
----------------------------- */
.l-body {
  width: 100%;
  background: url("/img/commons/bg__textuer01.svg");
  position: relative;
}

/* ------------------------------
Footer Layout  
----------------------------- */
.l-footer {
  width: 100%;
  background: url(/img/commons/bg__textuer01.svg);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ------------------------------
Navigation Layout  
----------------------------- */
.l-nav__trigger {
  position: fixed;
  top: var(--scale04);
  right: var(--scale03);
  width: var(--scale60);
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 0 var(--scale03);
}

.l-nav__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

/* ------------------------------ 
Audio Player Layout  
----------------------------- */
.l-audio {
  position: fixed;
  width: 950px;
  height: var(--scale10);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 950px) {
  .l-main {
    max-width: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .l-audio {
    width: 100vw;
  }
  .l-nav__trigger {
    position: fixed;
    top: var(--scale04);
    right: var(--scale03);
    width: var(--scale30);
    justify-items: center;
    align-items: flex-end;
    flex-direction: column;
    gap: var(--scale03) 0;
  }
}
@media screen and (max-width: 500px) {
  .l-main {
    padding: 0;
  }
  .l-nav__trigger {
    position: fixed;
    top: var(--scale04);
    right: 0;
    width: var(--scale30);
    justify-items: center;
    align-items: flex-end;
    flex-direction: column;
    gap: var(--scale02) 0;
  }
}
.c-button--top {
  width: var(--scale25);
  position: absolute;
  top: var(--scale10);
  left: var(--scale10);
  z-index: 10;
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--top:hover {
  filter: opacity(70%);
}
.c-button .c-button__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
}
.c-button .c-button__icon {
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: var(--scale05);
  vertical-align: middle;
  line-height: 1;
  font-weight: 300;
  color: rgb(15, 12, 5);
}
.c-button--inline .c-button__title, .c-button--inline .c-button__icon {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--inline:hover .c-button__title, .c-button--inline:hover .c-button__icon {
  color: rgb(220, 174, 86);
}
.c-button--splide .c-button__icon {
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: var(--scale08);
  vertical-align: middle;
  line-height: 1;
  font-weight: 300;
  color: rgb(15, 12, 5);
}
.c-button--listitem {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.c-button--listitem .c-button__title, .c-button--listitem .c-button__icon {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--listitem:hover .c-button__title, .c-button--listitem:hover .c-button__icon {
  color: rgb(220, 174, 86);
}
.c-button--listitem .c-button__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 600;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  display: inline-block;
}
.c-button--listitem .c-button__icon {
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: var(--scale05);
  vertical-align: middle;
  line-height: 1;
  font-weight: 300;
  color: rgb(15, 12, 5);
}
.c-button--gnav {
  width: var(--scale30);
  padding: 0 var(--scale02);
  background: rgb(244, 202, 123);
  border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 10px 1px rgba(48, 39, 19, 0.3);
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--gnav:hover {
  color: rgb(250, 246, 233);
  background-color: rgb(113, 89, 45);
}
.c-button--gnav .c-button__title, .c-button--gnav .c-button__icon {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--gnav:hover .c-button__title, .c-button--gnav:hover .c-button__icon {
  color: rgb(250, 246, 233);
}
.c-button--gnav .c-button__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  width: 100%;
  text-align: center;
}
.c-button--tags {
  border-radius: var(--scale05);
  display: flex;
  background: rgb(244, 202, 123);
  justify-content: space-between;
  align-items: center;
  padding: var(--scale01) var(--scale02);
  gap: var(--scale02);
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--tags:hover {
  color: rgb(250, 246, 233);
  background-color: rgb(113, 89, 45);
}
.c-button--tags .c-button__title {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--tags:hover .c-button__title {
  color: rgb(250, 246, 233);
}
.c-button--tags .c-button__counter {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  background: rgb(250, 246, 233);
  border-radius: 50%;
  min-width: var(--scale05);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: 0;
}
.c-button--modal .c-button__icon {
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: var(--scale10);
  vertical-align: middle;
  line-height: 1;
  font-weight: 300;
  color: rgb(15, 12, 5);
}
.c-button--songs {
  width: var(--scale30);
  padding: 0 var(--scale02);
  background: rgb(244, 202, 123);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--scale01);
  box-shadow: 0px 0px 5px 1px rgba(48, 39, 19, 0.3);
}
.c-button--sound {
  width: var(--scale08);
  height: var(--scale08);
  border-radius: 9999px;
  position: absolute;
  right: var(--scale03);
  top: var(--scale35);
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--sound:hover {
  background-color: rgb(250, 246, 233);
}
.c-button--sound img {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-button--sound:hover img {
  filter: opacity(70%);
}
.c-logo--footer {
  width: var(--scale25);
  position: absolute;
  top: 50%;
  left: calc(50% - var(--scale05));
  transform: translate(-50%, -50%);
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-logo--footer:hover {
  filter: opacity(70%);
}

.c-logo--instagram {
  width: var(--scale05);
  height: var(--scale05);
  cursor: pointer;
}
.c-logo--instagram object {
  width: var(--scale05);
  height: var(--scale05);
}

.c-badge--capsule {
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
}
.c-badge__text {
  border-top-left-radius: var(--scale05);
  border-bottom-left-radius: var(--scale05);
  padding: 0 var(--scale02);
  background: rgb(150, 119, 59);
  color: rgb(250, 246, 233);
}
.c-badge__counter {
  border-top-right-radius: var(--scale05);
  border-bottom-right-radius: var(--scale05);
  padding: 0 var(--scale02);
  background: rgb(250, 246, 233);
  color: rgb(150, 119, 59);
  border: 1px solid rgb(150, 119, 59);
}

@media screen and (max-width: 500px) {
  .c-button--gnav {
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }
}

@media screen and (max-width: 950px) {
  .c-button--top {
    width: var(--scale20);
    position: absolute;
    top: var(--scale05);
    left: var(--scale05);
    z-index: 10;
  }
  .c-button--sound {
    top: var(--scale25);
  }
  .c-logo--footer {
    width: var(--scale25);
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto;
    transform: translate(0%, 0%);
  }
}
@media screen and (max-width: 500px) {
  .c-button--top {
    width: var(--scale25);
    position: absolute;
    top: auto;
    bottom: var(--scale05);
    left: var(--scale15);
    z-index: 10;
  }
  .c-button--sound {
    top: var(--scale40);
  }
  .c-button--gnav {
    width: var(--scale10);
    padding: var(--scale02) var(--scale03);
    background: rgb(244, 202, 123);
    border-radius: 0px;
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 10px 1px rgba(48, 39, 19, 0.3);
  }
  .c-button--gnav .c-button__title {
    display: none;
  }
}
.c-card {
  position: relative;
}
.c-card__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-2);
  font-weight: 400;
  color: rgb(15, 12, 5);
}
.c-card__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 700;
  line-height: 1.2;
  color: rgb(242, 191, 95);
}
.c-card__tags {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(124, 98, 49);
}
.c-card__badge {
  position: absolute;
  top: var(--scale03);
  left: var(--scale03);
}
.c-card--banner-lg {
  width: var(--scale80);
  aspect-ratio: 16/9;
}
.c-card--banner-lg .c-card__thumb {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-card--banner-lg:hover .c-card__thumb {
  filter: opacity(70%);
}
.c-card--banner-lg .c-card__thumb {
  border-radius: var(--scale02);
  aspect-ratio: 16/9;
}
.c-card--banner-lg .c-card__body {
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: var(--scale02);
  border-bottom-right-radius: var(--scale02);
  background: rgba(150, 119, 59, 0.8);
  backdrop-filter: blur(3px);
  padding: var(--scale02) var(--scale03);
}
.c-card--banner-lg .c-card__title {
  display: inline-block;
  color: rgb(250, 246, 233);
}
.c-card--banner-lg .c-card__subtitle {
  display: inline-block;
  color: rgb(250, 246, 233);
}
.c-card--banner-sm {
  width: var(--scale50);
  aspect-ratio: 16/9;
}
.c-card--banner-sm .c-card__thumb {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-card--banner-sm:hover .c-card__thumb {
  filter: opacity(70%);
}
.c-card--banner-sm .c-card__thumb {
  border-radius: var(--scale02);
}
.c-card--banner-sm .c-card__badge {
  position: absolute;
  top: var(--scale02);
  right: var(--scale02);
}
.c-card--banner-sm .c-card__body {
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: var(--scale02);
  border-bottom-right-radius: var(--scale02);
  padding: var(--scale01) var(--scale02);
  background: rgba(150, 119, 59, 0.8);
  backdrop-filter: blur(3px);
}
.c-card--banner-sm .c-card__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-3);
  font-weight: 400;
  color: rgb(15, 12, 5);
  display: inline-block;
  color: rgb(250, 246, 233);
}
.c-card--banner-sm .c-card__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  color: rgb(15, 12, 5);
  display: inline-block;
  color: rgb(250, 246, 233);
}
.c-card--banner-songs {
  width: var(--scale80);
}
.c-card--banner-songs .c-card__thumb {
  border-radius: var(--scale02);
  margin-bottom: 0;
}
.c-card--banner-songs .c-card__body {
  width: 100%;
  padding: var(--scale01) var(--scale02) var(--scale02);
}
.c-card--banner-songs .c-card__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(124, 98, 49);
  color: rgb(220, 174, 86);
  margin-bottom: var(--scale02);
  font-weight: 900;
}
.c-card--banner-songs .c-card__footer {
  border-top: dashed 1px rgb(150, 119, 59);
  border-bottom: solid 1px rgb(150, 119, 59);
  padding: var(--scale02) 0;
  margin-bottom: var(--scale02);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-card--songs {
  border-bottom: 1px solid rgb(150, 119, 59);
  margin-bottom: var(--scale05);
  padding-bottom: var(--scale05);
}
.c-card--songs:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-card--songs .c-card__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-2);
  font-weight: 400;
  color: rgb(15, 12, 5);
}
.c-card--songs .c-card__subtitle {
  margin-bottom: var(--scale03);
}
.c-card--songs .c-card__footer {
  display: grid;
  grid-template-columns: auto var(--scale30);
  gap: var(--scale05);
  align-items: start;
}
.c-card--songs .c-card__tags a {
  transition: color 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}
.c-card--songs .c-card__tags a:hover {
  color: rgb(220, 174, 86);
}
.c-card--songs .c-card__button {
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 950px) {
  .c-card--banner-songs {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .c-card--banner-songs {
    width: 100%;
    margin-bottom: var(--scale10);
  }
  .c-card--banner-lg {
    width: var(--scale90);
  }
  .c-card--banner-sm {
    width: 250px;
  }
  .c-card--songs .c-card__footer {
    align-items: flex-end;
  }
}
.inputRange {
  appearance: none;
  width: 5px;
  height: 150px;
  border-radius: 9999px;
  background: linear-gradient(0deg, #71592d 30%, #f6d392 30%);
  writing-mode: vertical-rl;
  direction: rtl;
  cursor: pointer;
}

/* ツマミ：Chrome, Safari, Edge用 */
.inputRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #f2bf5f;
  box-shadow: none;
}

/* ツマミ：Firefox用 */
.inputRange::-moz-range-thumb {
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #f2bf5f;
  box-shadow: none;
}

.c-copylight {
  padding: var(--lg) 0;
}

.js-hero__img {
  position: relative;
  overflow: hidden;
}

.js-hero__img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 211, 146, 0.5);
  z-index: 3; /* imgより上、テキストなどより下に調整 */
  pointer-events: none; /* 画像操作を邪魔しない */
}

.js-hero__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s;
  display: block;
  opacity: 0.9;
  pointer-events: none;
}

.js-hero__img img.active {
  opacity: 0.9;
  z-index: 2;
}

.js-hero__img img.inactive {
  opacity: 0;
  z-index: 1;
}

/* 1: 1列目から3列分、1行目から2行分 */
.js-hero__img01 {
  grid-column: 1/span 3;
  grid-row: 1/span 2;
}

/* 2: 4列目から6列分、1行目から4行分 */
.js-hero__img02 {
  grid-column: 4/span 6;
  grid-row: 1/span 4;
}

/* 3: 10列目から3列分、1行目から2行分 */
.js-hero__img03 {
  grid-column: 10/span 3;
  grid-row: 1/span 2;
}

/* 4: 1列目から3列分、3行目から4行分 */
.js-hero__img04 {
  grid-column: 1/span 3;
  grid-row: 3/span 4;
}

/* 5: 10列目から3列分、3行目から2行分 */
.js-hero__img05 {
  grid-column: 10/span 3;
  grid-row: 3/span 2;
}

/* 6: 4列目から3列分、5行目から2行分 */
.js-hero__img06 {
  grid-column: 4/span 3;
  grid-row: 5/span 2;
}

/* 7: 7列目から6列分、5行目から4行分 */
.js-hero__img07 {
  grid-column: 7/span 6;
  grid-row: 5/span 4;
}

/* 8: 1列目から4列分、7行目から3行分 */
.js-hero__img08 {
  grid-column: 1/span 4;
  grid-row: 7/span 3;
}

/* 9: 5列目から2列分、7行目から3行分 */
.js-hero__img09 {
  grid-column: 5/span 2;
  grid-row: 7/span 3;
}

/* 10: 7列目から2列分、9行目から3行分 */
.js-hero__img10 {
  grid-column: 7/span 2;
  grid-row: 9/span 3;
}

/* 11: 9列目から4列分、9行目から3行分 */
.js-hero__img11 {
  grid-column: 9/span 4;
  grid-row: 9/span 3;
}

/* 12: 1列目から2列分、10行目から3行分 */
.js-hero__img12 {
  grid-column: 1/span 2;
  grid-row: 10/span 3;
}

/* 13: 3列目から4列分、10行目から3行分 */
.js-hero__img13 {
  grid-column: 3/span 4;
  grid-row: 10/span 3;
}

/* 14: 7列目から2列分、12行目から1行分 */
.js-hero__img14 {
  grid-column: 7/span 2;
  grid-row: 12/span 1;
}

/* 15: 9列目から4列分、12行目から1行分 */
.js-hero__img15 {
  grid-column: 9/span 4;
  grid-row: 12/span 1;
}

.js-splide__track {
  margin: 0 var(--scale10);
}

.js-splide__arrow--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.js-splide__arrow--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.js-splide__slide {
  display: flex;
  flex-direction: column;
  gap: var(--scale10) 0;
}

.js-marquee {
  position: relative;
  overflow: hidden; /* 必要な幅に調整 */
  white-space: nowrap;
}

.js-marquee__inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

@media screen and (max-width: 950px) {
  .js-splide__slide {
    gap: var(--scale05) 0;
  }
}
@media screen and (max-width: 500px) {
  .js-splide__slide {
    gap: var(--scale10) 0;
  }
  .js-splide__track {
    margin: 0 var(--scale05);
  }
}
.c-list--gnav li {
  padding: var(--scale02) 0;
  border-bottom: 1px solid rgb(150, 119, 59);
}
.c-list--gnav li:last-of-type {
  border: none;
}
.c-list--notes li {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  padding: var(--scale01);
  border-bottom: 1px solid rgb(150, 119, 59);
}
.c-list--notes li:last-of-type {
  border: none;
}
.c-list--sub {
  overflow: hidden;
  height: 0;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-list--sub.open {
  height: var(--sublist-height, 0px);
}
.c-list--sub li {
  border-bottom: 1px dashed rgb(150, 119, 59);
  padding-left: 1rem;
}
.c-list__credit--group, .c-list__links--group {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
}
.c-list__credit--group li, .c-list__links--group li {
  margin-bottom: var(--scale02);
}
.c-list__credit--indiv, .c-list__links--indiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
}
.c-list__credit--indiv li, .c-list__links--indiv li {
  margin-bottom: var(--scale02);
}
.c-list__credit--refer, .c-list__links--refer {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
}
.c-list__credit--refer li, .c-list__links--refer li {
  margin-bottom: var(--scale04);
}

.c-table--meta {
  border-collapse: separate; /* または collapse も可 */
  border-spacing: 0;
  width: 100%;
  text-align: left;
}
.c-table--meta tr:last-child th, .c-table--meta tr:last-child td {
  border-bottom: none;
}
.c-table--meta th {
  border-right: 1px solid rgb(150, 119, 59);
  border-bottom: 1px dashed rgb(150, 119, 59);
  width: var(--scale30);
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  font-weight: bold;
  padding-right: var(--scale05);
}
.c-table--meta td {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  padding: var(--scale05) 0 var(--scale05) var(--scale05);
  border-bottom: 1px dashed rgb(150, 119, 59);
}

.c-pagination {
  text-align: center;
  margin: 2rem 0;
}
.c-pagination__list {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 600;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  list-style: none;
  display: inline-flex;
  gap: var(--scale05);
  padding: 0;
  margin: 0;
}
.c-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--scale04);
  height: var(--scale04);
  color: rgb(15, 12, 5);
  text-decoration: none;
  text-decoration: none;
  border-radius: 4px;
}
.c-pagination__link--current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--scale04);
  height: var(--scale04);
  color: rgb(250, 246, 233);
  text-decoration: none;
  border-radius: 4px;
  background: rgb(150, 119, 59);
  pointer-events: none;
}

.p-audio--player {
  padding: var(--scale03) var(--scale10);
  display: flex;
  justify-content: space-between;
  height: var(--scale15);
  background: url("/img/commons/bg__textuer01.svg");
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-audio--player::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: var(--scale10);
  right: var(--scale10);
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
@media (max-width: 500px) {
  .p-audio--player::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
.p-audio--player::before {
  top: 0;
}

.p-audio__play {
  border-right: 1px solid rgb(150, 119, 59);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: var(--scale05);
}
.p-audio__info {
  border-right: 1px solid rgb(150, 119, 59);
  padding: 0 var(--scale05);
  width: var(--scale70);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
  -ms-overflow-style: none;
}
.p-audio__info::-webkit-scrollbar {
  display: none;
}
.p-audio__info .p-audio__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-3);
  font-weight: 400;
  color: rgb(15, 12, 5);
  display: inline;
}
.p-audio__info .p-audio__caption {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  color: rgb(15, 12, 5);
  display: inline;
  padding: 0 var(--scale02);
}
.p-audio__info .p-audio__tags {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 700;
  color: rgb(15, 12, 5);
  display: inline;
}
.p-audio__progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 1px solid rgb(150, 119, 59);
  padding: 0 var(--scale05);
  gap: var(--scale02);
}
.p-audio__progress .p-audio__current, .p-audio__progress .p-audio__duration {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(124, 98, 49);
}
.p-audio__progress .p-audio__progress-bar {
  width: var(--scale30);
  height: 5px;
  background: rgb(242, 191, 95);
}
.p-audio__progress .p-audio__progress-bar::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: rgb(150, 119, 59);
  border-radius: 2.5px;
  transition: width 0.2s linear;
}
.p-audio__control {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  gap: var(--scale05);
}
.p-audio__volume--popup, .p-audio__notes--popup {
  display: none;
  position: absolute;
  bottom: calc(100% + var(--scale02));
  right: 0%;
  transform: auto;
  background: rgb(250, 240, 217);
  border-radius: var(--scale02);
  padding: var(--scale02);
  z-index: 10;
  touch-action: none; /* モバイルのパン／ズームを無効化 */
}
.p-audio__volume--popup.active, .p-audio__notes--popup.active {
  display: block;
  animation: fade-in-bottom 0.3s;
}
.p-audio__volume--popup.closing, .p-audio__notes--popup.closing {
  animation: fade-out-bottom 0.3s forwards;
}
.p-audio__notes--popup {
  width: var(--scale40);
}

.p-audio__control > div {
  position: relative;
}

@media screen and (max-width: 950px) {
  .p-audio--player {
    padding: var(--scale03) 0;
    display: flex;
    justify-content: space-between;
    height: var(--scale15);
    background: url("/img/commons/bg__textuer01.svg");
    /* 第2引数がfalseのときだけ、in系は最後の線を消す */
    /* out系はモバイルで自動的に縮める */
  }
  .p-audio--player::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgb(150, 119, 59);
  }
  .p-audio--player::before {
    top: 0;
  }
  .p-audio__play {
    border-right: 1px solid rgb(150, 119, 59);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--scale05);
  }
  .p-audio__info {
    border-right: 1px solid rgb(150, 119, 59);
    padding: 0 var(--scale05);
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    white-space: nowrap;
    -ms-overflow-style: none;
  }
  .p-audio__info::-webkit-scrollbar {
    display: none;
  }
  .p-audio__progress {
    display: none;
  }
  .p-audio__control {
    padding: 0 var(--scale05);
  }
  .p-audio__notes--popup {
    left: auto;
    right: 0;
    transform: none;
  }
  .p-audio__notes--popup {
    width: var(--scale40);
  }
}
.p-header p {
  margin-bottom: var(--scale05);
}
.p-header blockquote {
  padding: var(--scale05);
  margin-bottom: var(--scale05);
  background: rgba(249, 222, 173, 0.3);
  border-radius: var(--scale02);
}
.p-header q {
  padding: var(--scale02);
  margin-bottom: var(--scale02);
  background: rgba(249, 222, 173, 0.3);
  border-radius: var(--scale02);
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  font-weight: bolder;
}
.p-header cite {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  font-weight: bolder;
}
.p-header img {
  margin-bottom: var(--scale05);
}
.p-header__img {
  width: 100%;
  height: var(--scale40);
  border-radius: var(--scale02) var(--scale02) 0 0;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
.p-header__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-1);
  font-weight: 500;
  line-height: 1.2;
  color: rgb(15, 12, 5);
}
.p-header__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 700;
  line-height: 1.2;
  color: rgb(242, 191, 95);
  margin-top: var(--scale01);
}
.p-header__badge {
  position: absolute;
  left: var(--scale05);
  top: var(--scale05);
}
.p-header__grid--hero {
  width: 950px;
  margin: var(--scale10) auto 0;
  display: grid;
  grid-template-columns: var(--scale50) auto;
  gap: 0 var(--scale10);
  padding: 0 var(--scale10);
  position: relative;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-header__grid--hero::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: var(--scale10);
  right: var(--scale10);
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
@media (max-width: 500px) {
  .p-header__grid--hero::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
.p-header__grid--hero .p-header__body {
  position: relative;
  padding-right: var(--scale05);
  border-right: solid 1px rgb(150, 119, 59);
  margin-bottom: var(--scale10);
}
.p-header__grid--songs {
  padding: 0 var(--scale10);
  position: relative;
  margin: var(--scale10) auto 0;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-header__grid--songs::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: var(--scale10);
  right: var(--scale10);
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
@media (max-width: 500px) {
  .p-header__grid--songs::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
.p-header__songs {
  display: grid;
  grid-template-columns: auto var(--scale50);
  padding-bottom: var(--scale05);
  margin-bottom: var(--scale05);
  position: relative;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-header__songs::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgb(150, 119, 59) 0, rgb(150, 119, 59) var(--scale02), transparent var(--scale02), transparent var(--scale03));
}
.p-header__songs:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-header__songs:last-of-type::before {
  content: none;
}
.p-header__songs .p-header__body {
  border-right: none;
}
.p-header__songs .p-header__tags {
  padding-top: var(--scale02);
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(124, 98, 49);
}
.p-header__songs--version {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-2);
  font-weight: 400;
  color: rgb(15, 12, 5);
  padding-left: var(--scale02);
}
.p-header__lead {
  margin-bottom: var(--scale10);
}
.p-header__footer {
  grid-column: span 2/span 2;
  border-top: dashed 1px rgb(150, 119, 59);
  padding: var(--scale05) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-header__pager {
  grid-column: span 2/span 2;
  border-top: dashed 1px rgb(150, 119, 59);
  padding: var(--scale05) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 950px) {
  .p-header__img {
    border-radius: 0;
  }
  .p-header__grid--hero {
    width: auto;
    display: grid; /* 維持 */
    grid-template: none; /* rows/cols/areas を一括初期化 */
    grid-auto-flow: row; /* 既定へ */
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    /* 余白と整列のリセット */
    gap: 0; /* (= row-gap:0; column-gap:0) */
    justify-items: normal; /* (= stretch 相当) */
    align-items: normal; /* (= stretch 相当) */
    justify-content: normal; /* (= start 相当) */
    align-content: normal; /* (= start 相当) */
  }
  .p-header__grid--hero .p-header__body {
    border-right: none;
    margin-bottom: var(--scale05);
  }
  .p-header__header, .p-header__content, .p-header__body, .p-header__lead, .p-header__pager, .p-header__footer {
    grid-column: 1/-1;
    margin-left: 0;
    margin-right: 0;
    border-right: none;
    grid-row: auto;
  }
}
@media screen and (max-width: 500px) {
  .p-header__grid--hero {
    padding: 0 var(--scale05) 0;
  }
}
.p-modal {
  display: none;
  position: relative;
}
.p-modal.is-open {
  display: block;
}
.p-modal__overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  position: fixed;
}
.p-modal__container {
  width: 90vw;
  height: 80%;
  margin: 0 auto;
  padding-top: var(--scale20);
  border-bottom-left-radius: var(--scale02);
  border-bottom-right-radius: var(--scale02);
  background: rgb(250, 246, 233);
  overflow-y: auto;
}
.p-modal__close {
  position: absolute;
  top: var(--scale02);
  right: var(--scale02);
}
.p-modal__animation[aria-hidden=false] .p-modal__container {
  animation: slide-in-top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.p-modal__animation[aria-hidden=true] .p-modal__container {
  animation: slide-out-top 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.p-modal__animation[aria-hidden=false] .p-modal__overlay {
  animation: fade-in 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s both;
}
.p-modal__animation[aria-hidden=true] .p-modal__overlay {
  animation: fade-out 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@media screen and (max-width: 500px) {
  .p-modal__container .c-button--inline {
    margin-bottom: var(--scale05);
  }
  .p-modal__container .p-section__content {
    margin-bottom: var(--scale05);
  }
}
.p-section {
  margin: var(--scale10) auto var(--scale10);
  padding-bottom: var(--scale10);
  position: relative;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-section::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: var(--scale10);
  right: var(--scale10);
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
@media (max-width: 500px) {
  .p-section::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
.p-section h2 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-2);
  font-weight: 700;
  color: rgb(15, 12, 5);
  margin-bottom: var(--scale02);
}
.p-section h3 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 500;
  color: rgb(15, 12, 5);
  font-weight: 700;
  margin-bottom: var(--scale02);
}
.p-section h4 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 500;
  color: rgb(15, 12, 5);
  margin-bottom: var(--scale01);
}
.p-section blockquote {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  padding: var(--scale05);
  margin-bottom: var(--scale05);
  background: rgba(249, 222, 173, 0.3);
  border-radius: var(--scale02);
}
.p-section q {
  display: inline-block;
  padding: var(--scale02);
  margin: var(--scale02) 0;
  background: rgba(249, 222, 173, 0.3);
  border-radius: var(--scale02);
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  font-weight: bolder;
}
.p-section cite {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-5);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--ls-2);
  color: rgb(15, 12, 5);
  font-weight: bolder;
}
.p-section img {
  margin-bottom: var(--scale05);
}
.p-section__title {
  font-family: "RocknRoll One", sans-serif;
  font-size: var(--fz-1);
  font-weight: 500;
  line-height: 1.2;
  color: rgb(15, 12, 5);
}
.p-section__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz-3);
  font-weight: 700;
  line-height: 1.2;
  color: rgb(242, 191, 95);
}
.p-section__header {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/span 2;
  padding-right: var(--scale05);
  border-right: solid 1px rgb(150, 119, 59);
}
.p-section__content {
  grid-column: 2/3;
  grid-row: 1/2;
}
.p-section__content p {
  margin-bottom: var(--scale05);
}
.p-section__pager {
  grid-column: span 2/span 2;
  border-top: dashed 1px rgb(150, 119, 59);
  padding: var(--scale05) 0 0;
  margin: var(--scale10) var(--scale10) -25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-section__footer {
  grid-column: 2/3;
  grid-row: 2/3;
  border-top: dashed 1px rgb(150, 119, 59);
  padding-top: var(--scale02);
  margin-top: var(--scale02);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-section__grid--search {
  width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--scale50) auto;
  gap: 0 var(--scale10);
  padding: 0 var(--scale10) var(--scale10);
  margin-bottom: var(--scale10);
  position: relative;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-section__grid--search::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: var(--scale10);
  right: var(--scale10);
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
@media (max-width: 500px) {
  .p-section__grid--search::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
.p-section__grid--search .p-section__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--scale03);
}
.p-section__grid--menu {
  width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--scale50) auto;
  gap: 0 var(--scale10);
  padding: 0 var(--scale10);
  margin-bottom: var(--scale05);
}
.p-section__grid--menu .p-section__footer {
  padding-top: var(--scale02);
  margin-top: 0;
  justify-content: space-between;
}
.p-section__grid--head {
  display: grid;
  grid-template-columns: var(--scale50) auto;
  gap: 0 var(--scale10);
  padding: 0 var(--scale10);
}
.p-section__grid--songs {
  display: grid;
  grid-template-columns: var(--scale80) auto;
  gap: var(--scale10);
  padding: 0 var(--scale10);
}
.p-section__grid--list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--scale10);
  padding: 0 var(--scale10);
}
.p-section__grid--splide {
  margin: var(--scale10) 0 0;
}
.p-section__grid--footer {
  display: grid;
  grid-template-columns: var(--scale50) auto;
  gap: 0 var(--scale10);
  padding: 0 var(--scale10) var(--scale10);
}
.p-section__grid--footer .p-section__footer {
  padding-top: var(--scale02);
  margin-top: 0;
  justify-content: space-between;
}

.p-genre__item,
.p-credit__item {
  position: relative;
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
  padding-bottom: var(--scale02);
  margin-bottom: var(--scale05);
}
.p-genre__item::before,
.p-credit__item::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
.p-genre__item:last-of-type,
.p-credit__item:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-genre__item:last-of-type::before,
.p-credit__item:last-of-type::before {
  content: none;
}
.p-genre__item--last,
.p-credit__item--last {
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-genre__item--last::before,
.p-credit__item--last::before {
  content: none;
}
.p-genre__link,
.p-credit__link {
  border-top: dashed 1px rgb(150, 119, 59);
  padding: var(--scale02) 0 0;
  text-align: right;
}

.js-accordion .p-section__content {
  max-height: 240px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s cubic-bezier(0.6, 0.4, 0, 1);
}
.js-accordion .p-section__content--expanded {
  max-height: none;
  transition: max-height 0.6s cubic-bezier(0.6, 0.4, 0, 1);
}
.js-accordion .p-section__content-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: url("/img/commons/bg__textuer01.svg") repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}

.p-section--tagcloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--scale03);
  /* 第2引数がfalseのときだけ、in系は最後の線を消す */
  /* out系はモバイルで自動的に縮める */
}
.p-section--tagcloud::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgb(150, 119, 59);
}
.p-section--tagcloud:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-section--tagcloud:last-of-type::before {
  content: none;
}

@media screen and (max-width: 950px) {
  .p-section {
    margin: var(--scale10) auto var(--scale05);
    padding-bottom: var(--scale05);
  }
  .p-section__grid--head, .p-section__grid--footer, .p-section__grid--search, .p-section__grid--menu {
    display: grid;
    grid-template: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    gap: 0;
    justify-items: normal;
    align-items: normal;
    justify-content: normal;
    align-content: normal;
  }
  .p-section__grid--songs {
    grid-template-columns: 1fr 1fr;
  }
  .p-section__grid--search, .p-section__grid--menu {
    width: 90vw;
  }
  .p-section__header, .p-section__content, .p-section__footer {
    grid-column: 1/-1;
    margin-left: 0;
    margin-right: 0;
    border-right: none;
    grid-row: auto;
  }
  .p-section__header {
    margin-bottom: var(--scale05);
  }
  .p-section__content {
    padding-top: var(--scale0);
  }
  .p-section__pager {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .p-section {
    margin: var(--scale05) auto var(--scale10);
    /* 第2引数がfalseのときだけ、in系は最後の線を消す */
    /* out系はモバイルで自動的に縮める */
  }
  .p-section::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: var(--scale10);
    right: var(--scale10);
    bottom: 0;
    height: 1px;
    background: rgb(150, 119, 59);
  }
}
@media screen and (max-width: 500px) and (max-width: 500px) {
  .p-section::before {
    left: var(--scale05);
    right: var(--scale05);
  }
}
@media screen and (max-width: 500px) {
  .p-section__grid--head, .p-section__grid--footer, .p-section__grid--search, .p-section__grid--menu, .p-section__grid--songs, .p-section__grid--splide {
    padding: 0 var(--scale05);
  }
  .p-section__grid--songs {
    display: grid;
    grid-template: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-auto-rows: auto;
    gap: 0;
    justify-items: normal;
    align-items: normal;
    justify-content: normal;
    align-content: normal;
  }
  .p-section__pager {
    margin: 0 var(--scale05);
  }
}
.p-toppage__hero {
  width: 650px;
  height: 550px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 0px;
  margin: var(--scale10) var(--scale10) auto auto;
}
.p-toppage__title {
  position: absolute;
  right: var(--scale20);
  top: var(--scale20);
  z-index: 10;
}
.p-toppage__title img {
  width: var(--scale35);
}
.p-toppage__read {
  position: absolute;
  width: var(--scale30);
  left: var(--scale30);
  top: var(--scale15);
  z-index: 10;
}

@media screen and (max-width: 950px) {
  .p-toppage__hero {
    width: min(70%, 650px);
  }
  .p-toppage__read {
    position: absolute;
    width: var(--scale30);
    left: var(--scale15);
    top: var(--scale15);
    z-index: 10;
  }
}
@media screen and (max-width: 500px) {
  .p-toppage__hero {
    width: 70vw;
    margin: var(--scale05) var(--scale05) auto auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(12, 1fr);
  }
  .p-toppage__title {
    right: var(--scale10);
    top: var(--scale20);
  }
  .p-toppage__read {
    position: absolute;
    width: var(--scale30);
    left: var(--scale05);
    top: var(--scale10);
    z-index: 10;
  }
  .js-hero__img01 {
    grid-column: span 2/span 2;
    grid-row: span 3/span 3;
  }
  .js-hero__img02 {
    grid-column: span 4/span 4;
    grid-row: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 4;
  }
  .js-hero__img03 {
    grid-row: span 3/span 3;
    grid-column-start: 3;
    grid-row-start: 1;
  }
  .js-hero__img04 {
    grid-row: span 3/span 3;
    grid-column-start: 4;
    grid-row-start: 1;
  }
  .js-hero__img05 {
    grid-column: span 2/span 2;
    grid-row: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 10;
  }
  .js-hero__img06 {
    grid-row: span 3/span 3;
    grid-column-start: 1;
    grid-row-start: 7;
  }
  .js-hero__img07 {
    grid-row: span 3/span 3;
    grid-column-start: 2;
    grid-row-start: 7;
  }
  .js-hero__img08 {
    grid-row: span 6/span 6;
    grid-column-start: 4;
    grid-row-start: 7;
  }
  .js-hero__img09 {
    grid-row: span 6/span 6;
    grid-column-start: 3;
    grid-row-start: 7;
  }
  .js-hero__img10,
  .js-hero__img11,
  .js-hero__img12,
  .js-hero__img13,
  .js-hero__img14,
  .js-hero__img15 {
    display: none;
  }
}
.u-iconfont {
  font-family: "Material Symbols Rounded", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */