:root {
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-en: "Josefin Sans", system-ui, sans-serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-text: #222;
  --color-brand: #e21a1a;
  --color-white: #fff;
  --color-yellow-highlight: #ffe945;
  --color-gray-ui: #f5f5f5;
  --space-unit: 1rem;
}

html {
  font-size: 2.5vw;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media (min-width: 1600px) {
  html {
    font-size: 11.4285714286px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 7.5rem;
    overflow-x: hidden;
    max-width: 100vw;
  }
}

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

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 100%;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 100vh;
  background-image: url("../assets/images/common/bg-cross.jpg");
  background-size: 1.4rem 1.4rem;
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

p {
  line-height: 1.8;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

figure {
  padding: 0;
  margin: 0;
}

picture {
  display: block;
}

label {
  cursor: pointer;
}

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

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

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

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

button {
  background-color: none;
  border: none;
  border-radius: none;
  cursor: pointer;
}

html.js.is-loading {
  overflow: hidden;
}
html.js.is-loading body {
  overflow: hidden;
}

.page-loader {
  display: none;
}

html.js.is-loading .page-loader {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #fff;
  pointer-events: all;
}

html.js.is-loading.is-loading--hide .page-loader {
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.js main section {
    opacity: 0;
    transform: translateY(1.2rem);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }
  html.js main section.is-inview {
    opacity: 1;
    transform: none;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 150;
  background-color: transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 140rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 4rem;
  min-height: 10rem;
}
.header__brand {
  display: block;
  color: #222;
}
.header__logo {
  display: block;
  max-width: 20rem;
  width: 100%;
  height: auto;
}
.header__toggle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 6rem;
  height: 1.6rem;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.header__toggle-line {
  display: block;
  height: 1px;
  background-color: #222;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggle-line:nth-child(2) {
  width: 80%;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 2rem;
    min-height: 7rem;
  }
  .header__logo {
    max-width: 16rem;
  }
  .header__toggle {
    width: 5rem;
    height: 1.4rem;
  }
}

body.is-drawer-open .header__toggle-line:nth-child(1) {
  transform: translateY(0.75rem) rotate(15deg);
}
body.is-drawer-open .header__toggle-line:nth-child(2) {
  opacity: 0;
}
body.is-drawer-open .header__toggle-line:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-15deg);
}
@media (max-width: 767px) {
  body.is-drawer-open .header__toggle-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(15deg);
  }
  body.is-drawer-open .header__toggle-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-15deg);
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.65s;
}
.drawer--open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.drawer__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 51.6rem;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer--open .drawer__panel {
  transform: translateX(0);
}
.drawer__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 3.2rem 4rem;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 25.6rem;
}
.drawer__item {
  width: 100%;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.drawer--open .drawer__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.drawer--open .drawer__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}
.drawer--open .drawer__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.53s;
}
.drawer--open .drawer__item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}
.drawer--open .drawer__item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.71s;
}
.drawer--open .drawer__item:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.drawer--open .drawer__item:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.89s;
}
.drawer:not(.drawer--open) .drawer__item {
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}
.drawer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  text-align: center;
  color: #222;
}
.drawer__link-en {
  font-family: "Cormorant", serif;
  font-size: 2.6rem;
  font-weight: 400;
}
.drawer__link-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.drawer__link--current {
  color: #f04956;
}
@media (max-width: 767px) {
  .drawer__panel {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }
  .drawer__nav {
    padding: 7rem 2rem 3rem;
  }
  .drawer__list {
    gap: 3.2rem;
  }
  .drawer__link-en {
    font-size: 2.2rem;
  }
  .drawer__link-ja {
    font-size: 1.1rem;
  }
}

body.is-drawer-open {
  padding-right: var(--body-scrollbar-gutter, 0);
  overflow: hidden;
}

body.is-drawer-open .header,
body.is-drawer-open .drawer {
  padding-right: var(--body-scrollbar-gutter, 0);
}

.statement {
  position: relative;
  background-color: #fff;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
}
.statement__inner {
  position: relative;
  width: 100%;
}
.statement__media {
  position: relative;
  padding-top: 9rem;
}
@media (max-width: 767px) {
  .statement__media {
    padding-top: 21rem;
  }
}
.statement__splash {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 36rem;
  height: auto;
}
@media (max-width: 767px) {
  .statement__splash {
    width: 36rem;
    left: auto;
    right: 0;
    transform: none;
    display: none;
  }
}
.statement__piano {
  position: relative;
  display: block;
  margin-left: auto;
  width: 140rem;
  max-width: 100%;
}
@media (min-width: 1800px) {
  .statement__piano {
    width: 75vw;
  }
}
@media (min-width: 768px) {
  .statement__piano {
    margin-top: 15rem;
  }
}
@media (max-width: 767px) {
  .statement__piano {
    margin-top: 16rem;
  }
}
.statement__text {
  position: absolute;
  z-index: 2;
  top: 17rem;
  left: 14rem;
}
@media (max-width: 767px) {
  .statement__text {
    max-width: 100%;
    top: 7rem;
    left: 2.4rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1800px) {
  .statement__text {
    left: calc((100% - 1600px) / 2);
  }
}
.statement__title-ja {
  margin: 0 0 1.1rem;
  margin-left: -10rem;
  padding: 0;
}
@media (max-width: 767px) {
  .statement__title-ja {
    margin-top: 2rem;
    margin-left: 0;
    text-align: center;
  }
}
.statement__title-ja-img {
  display: block;
  width: 69rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .statement__title-ja-img {
    width: calc(100% - 1rem);
  }
}
.statement__title-en {
  margin: -3rem 0 1.4rem;
  padding: 0;
  font-family: Cormorant, serif;
  font-size: 4rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .statement__title-en {
    font-size: 2.6rem;
  }
}
.statement__lead {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .statement__lead {
    font-size: 1.4rem;
  }
}
.statement__lead-body {
  font-size: 1.3rem;
  margin-top: 2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .statement {
    min-height: 37.5rem;
  }
}

.story {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: #222;
}
.story--intro {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .story--intro {
    margin-top: 0;
    padding-bottom: 6rem;
  }
}
.story__deco {
  position: absolute;
  width: 22.5rem;
  left: 0;
  bottom: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .story__deco {
    width: 13rem;
    bottom: auto;
    top: 32rem;
    z-index: 0;
  }
}
.story__inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 116rem;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}
.story__bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.story__bubble {
  position: absolute;
  display: block;
  height: auto;
  opacity: 1;
  transform: none;
  transform-origin: center;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: no-preference) {
  .story__bubble {
    opacity: 0;
    transform: translateY(1.6rem) scale(0.72);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .story__bubble.is-inview {
    animation: story-bubble-pop 2.1s ease-out forwards;
  }
}
.story__bubble--1 {
  width: 17.6rem;
  top: -10rem;
  right: -5rem;
}
@media (max-width: 767px) {
  .story__bubble--1 {
    top: -10rem;
    right: -5rem;
    width: 14rem;
  }
}
.story__bubble--2 {
  width: 13.2rem;
  top: 24rem;
  left: -10rem;
}
@media (max-width: 767px) {
  .story__bubble--2 {
    top: 24rem;
    left: -2rem;
    width: 8rem;
  }
}
.story__bubble--3 {
  width: 19.1rem;
  top: 65rem;
  right: -6rem;
}
@media (max-width: 767px) {
  .story__bubble--3 {
    top: 50rem;
    right: -3rem;
    width: 12rem;
  }
}
.story__bubble--4 {
  width: 15.3rem;
  left: -6rem;
  top: 100rem;
}
@media (max-width: 767px) {
  .story__bubble--4 {
    top: 90rem;
    left: -4rem;
    width: 10rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .story__bubble--2.is-inview {
    animation-delay: 0.22s;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .story__bubble--3.is-inview {
    animation-delay: 0.38s;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .story__bubble--4.is-inview {
    animation-delay: 0.55s;
  }
}
.story__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .story__intro {
    flex-direction: column-reverse;
    gap: 26.6rem;
  }
}
@media (min-width: 768px) {
  .story__intro-media {
    width: calc(100% - 54rem);
  }
}
.story__intro-body {
  max-width: 100%;
}
.story__title-en {
  font-family: Cormorant, serif;
  font-size: 6.4rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .story__title-en {
    margin-bottom: 1.8rem;
    font-size: 4rem;
    letter-spacing: 0.1rem;
  }
}
.story__lead {
  width: 50rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.5rem;
}
.story__lead + .story__lead {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .story__lead + .story__lead {
    margin-top: 4rem;
  }
}
.story__middle-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  gap: 6.3rem;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .story__middle-content {
    max-width: 100%;
    flex-direction: column;
    gap: 6rem;
  }
}
.story--middle {
  padding-top: 18rem;
}
@media (max-width: 767px) {
  .story--middle {
    padding-top: 0rem;
  }
}
.story__middle-content-image {
  width: 72rem;
}
@media (max-width: 767px) {
  .story__middle-content-image {
    width: 30rem;
    position: relative;
    z-index: 1;
    align-self: flex-start;
  }
}
.story__middle-content-text {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  position: relative;
  width: 49.7rem;
}
@media (max-width: 767px) {
  .story__middle-content-text {
    gap: 4rem;
    width: 100%;
  }
}
.story__middle-content-text p {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .story__middle-content-text p {
    padding-inline: 2rem;
  }
}
.story__middle-content-deco {
  position: absolute;
  width: 38.5rem;
  right: 0;
  top: -14rem;
}
@media (max-width: 767px) {
  .story__middle-content-deco {
    width: 19rem;
    top: -5rem;
  }
}
.story__content {
  width: 49rem;
  position: relative;
  z-index: 2;
  padding-bottom: 60rem;
  max-width: 100%;
}
.story__subhead {
  margin: 0 0 3rem;
  font-family: Cormorant, serif;
  font-size: 3rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .story__subhead {
    margin-bottom: 1rem;
    font-size: 2.2rem;
  }
}
.story__body {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .story__body {
    margin-bottom: 2rem;
  }
}
.story__p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.story__media {
  width: 75rem;
  position: sticky;
  top: 12rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .story__media {
    position: static;
    width: 100%;
    margin-top: 2.4rem;
  }
}
.story__piano {
  display: block;
  width: 100%;
  height: auto;
}
.story__bottom-content {
  position: relative;
  padding-top: 18rem;
  padding-bottom: 15rem;
  padding-inline: 46.5rem 25rem;
}
@media (min-width: 1800px) {
  .story__bottom-content {
    padding-inline: 25vw;
  }
}
@media (max-width: 767px) {
  .story__bottom-content {
    padding: 0 2rem;
    margin-top: 20rem;
  }
}
.story__bottom-content p {
  font-size: 1.5rem;
}
.story__bottom-content-deco {
  position: absolute;
  width: 33rem;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .story__bottom-content-deco {
    width: 19rem;
    top: -16rem;
  }
}

@keyframes story-bubble-pop {
  0% {
    opacity: 0;
    transform: translateY(1.6rem) scale(0.72);
  }
  28% {
    opacity: 0.9;
    transform: translateY(0) scale(1);
  }
  72% {
    opacity: 1;
    transform: translateY(-0.4rem) scale(1.04);
  }
  100% {
    opacity: 0;
    transform: translateY(-1.8rem) scale(1.24);
  }
}
.artist {
  position: relative;
  padding-block: 26rem 37rem;
  background: linear-gradient(to bottom, transparent 40rem, #FFEEEE 40rem, #FFEEEE calc(100% - 40rem), transparent calc(100% - 40rem));
}
@media (max-width: 767px) {
  .artist {
    padding-block: 12rem 20rem;
    margin-top: 7rem;
    background: linear-gradient(to bottom, transparent 12rem, #FFEEEE 12rem, #FFEEEE calc(100% - 12rem), transparent calc(100% - 12rem));
  }
}
.artist::before {
  content: "";
  display: block;
  width: 100%;
  height: 48rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../assets/images/artist-before.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
.artist::after {
  content: "";
  display: block;
  width: 100%;
  height: 68rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../assets/images/artist-after.png);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.artist__inner {
  width: 116rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .artist__inner {
    padding-inline: 2rem;
    width: 100%;
  }
}
.artist__heading {
  font-size: 5rem;
  font-family: Cormorant, serif;
  font-weight: normal;
  line-height: 1;
}
@media (max-width: 767px) {
  .artist__heading {
    font-size: 4.8rem;
  }
}
.artist__heading-sub {
  font-family: Cormorant, serif;
  font-weight: normal;
  line-height: 1;
  font-size: 2.3rem;
  margin-block: 2rem 2.5rem;
  display: block;
}
@media (max-width: 767px) {
  .artist__heading-sub {
    font-size: 2rem;
  }
}
.artist__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 2.7rem;
}
@media (max-width: 767px) {
  .artist__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.artist__grid-item--content {
  padding-left: 1rem;
  font-size: 1.5rem;
  letter-spacing: 2;
  align-self: center;
}
@media (max-width: 767px) {
  .artist__grid-item--content {
    margin-block: 3rem 1rem;
    padding-left: 0;
  }
}
.artist__grid-item-title {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Cormorant, serif;
  font-weight: normal;
  margin-bottom: 2rem;
}
.artist__grid-content {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .artist__grid-content {
    align-items: center;
  }
}
.artist__grid-content-image {
  width: 15rem;
}

.collaboration {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 107.1rem;
  background-color: #fff;
  color: #222;
}
@media (max-width: 767px) {
  .collaboration {
    min-height: 0;
    padding-bottom: 0;
    margin-top: 4rem;
  }
}
.collaboration__deco {
  position: absolute;
  width: 48.8rem;
  z-index: 0;
  top: -20rem;
  right: 2rem;
}
@media (max-width: 767px) {
  .collaboration__deco {
    width: 19rem;
    right: 0;
    top: -14rem;
  }
}
.collaboration__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  min-height: 107.1rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .collaboration__visual {
    position: relative;
    top: auto;
    left: auto;
    min-height: 0;
    height: auto;
  }
}
.collaboration__piano-cover {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 70.1rem;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .collaboration__piano-cover {
    width: 36rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.js .collaboration__piano-cover {
    opacity: 1;
    transition: opacity 1.5s ease-out;
  }
}
.collaboration__visual:has(.collaboration__piano.is-inview) .collaboration__piano-cover {
  opacity: 0;
}
.collaboration__piano {
  display: block;
  position: relative;
  z-index: 0;
  width: auto;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .collaboration__piano {
    width: 36rem;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.collaboration__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: min(100% - 8rem, 116rem);
  min-height: 107.1rem;
  margin-inline: auto;
  padding-top: 0;
  padding-bottom: 9.6rem;
}
@media (max-width: 767px) {
  .collaboration__inner {
    display: block;
    width: min(100% - 4rem, 116rem);
    min-height: 0;
    margin-inline: auto;
    padding-top: 4.3rem;
    padding-bottom: 2rem;
  }
}
.collaboration__content {
  box-sizing: border-box;
  width: 100%;
  max-width: 51rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .collaboration__content {
    max-width: 100%;
  }
}
.collaboration__header {
  margin: 0 0 8rem;
  padding: 0;
}
@media (max-width: 767px) {
  .collaboration__header {
    margin-bottom: 2.6rem;
  }
}
.collaboration__title-en {
  margin: 0;
  padding: 0;
  font-family: Cormorant, serif;
  font-size: clamp(4.8rem, 6.4vw, 9rem);
  font-weight: 400;
  color: #222;
  line-height: 1;
}
@media (max-width: 767px) {
  .collaboration__title-en {
    font-size: 6rem;
  }
}
.collaboration__title-ja {
  margin: 0.7rem 0 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
}
@media (max-width: 767px) {
  .collaboration__title-ja {
    margin-top: 0rem;
    font-size: 1.4rem;
    color: #222;
  }
}
.collaboration__lead {
  margin: 0 0 2rem;
  padding: 0;
}
@media (max-width: 767px) {
  .collaboration__lead {
    margin-bottom: 2ch;
  }
}
.collaboration__lead-img {
  display: block;
  width: 32.6rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .collaboration__lead-img {
    width: 28rem;
    max-width: 100%;
  }
}
.collaboration__body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.collaboration__p {
  margin: 0;
  margin-bottom: 1.5rem;
  padding: 0;
}

.exhibition {
  position: relative;
  box-sizing: border-box;
  margin-top: 4rem;
  padding-top: 30rem;
  padding-bottom: 45rem;
  background-color: #fff;
  background-image: url("../assets/images/exhibition-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #222;
}
@media (max-width: 767px) {
  .exhibition {
    margin-top: -2rem;
    padding-top: 15rem;
    padding-bottom: 10rem;
    background-image: url("../assets/images/sp-exhibition-bg.png");
    background-size: 100% 100%;
  }
}
.exhibition::after {
  content: "";
  position: absolute;
  top: calc(100% - 44rem);
  left: 0;
  z-index: 0;
  width: 100%;
  aspect-ratio: 2800/3824;
  background-image: url("../assets/images/interview-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .exhibition::after {
    display: none;
  }
}
.exhibition__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100% - 8rem, 116rem);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .exhibition__inner {
    width: min(100% - 4rem, 116rem);
  }
}
.exhibition__header {
  margin: 0 0 8rem;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .exhibition__header {
    margin-bottom: 2rem;
  }
}
.exhibition__title-en {
  margin: 0;
  padding: 0;
  font-family: Cormorant, serif;
  font-size: clamp(4.8rem, 8vw, 9rem);
  font-weight: 400;
  color: #222;
  line-height: 1;
}
@media (max-width: 767px) {
  .exhibition__title-en {
    font-size: 5rem;
    line-height: 1;
  }
}
.exhibition__title-sub {
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .exhibition__title-sub {
    margin-top: 0rem;
    font-size: 1.4rem;
    color: #222;
  }
}
.exhibition__intro {
  margin: 2rem auto 0;
  padding: 0;
  max-width: 70rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-align: left;
}
@media (max-width: 767px) {
  .exhibition__intro {
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: left;
    padding-inline: 2rem;
  }
}
.exhibition__stories {
  position: relative;
  overflow: hidden;
  margin-bottom: 8rem;
  padding-inline: 8rem !important;
}
@media (max-width: 767px) {
  .exhibition__stories {
    margin-bottom: 6rem;
    padding-inline: 2rem !important;
  }
}
.exhibition__stories.swiper {
  overflow: hidden;
}
.exhibition__stories > .swiper-wrapper > .swiper-slide {
  height: auto;
}
@media (min-width: 767px) {
  .exhibition__stories > .swiper-wrapper > .swiper-slide {
    width: 116rem !important;
  }
}
.exhibition__stories-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 52.3rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .exhibition__stories-nav {
    left: 0;
    width: 100%;
    height: 70.6756756757vw;
    max-height: calc((100vw - 4rem) * 523 / 740);
  }
}
.exhibition__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  margin: 0;
  padding: 0;
  border: 0.1rem solid #222;
  border-radius: 50%;
  background-color: #FFEEEE;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .exhibition__nav {
    width: 7rem;
    height: 7rem;
    top: 45%;
  }
}
@media (hover: hover) {
  .exhibition__nav:hover:not(.swiper-button-disabled) {
    background-color: #f5f5f5;
  }
}
.exhibition__nav:focus-visible {
  outline: 0.2rem solid #222;
  outline-offset: 0.2rem;
}
.exhibition__nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.exhibition__nav--prev {
  left: 5rem;
}
@media (max-width: 767px) {
  .exhibition__nav--prev {
    left: 0.4rem;
  }
}
.exhibition__nav--prev .exhibition__nav-icon img {
  transform: scaleX(-1);
}
.exhibition__nav--next {
  right: 5rem;
}
@media (max-width: 767px) {
  .exhibition__nav--next {
    right: 0.4rem;
  }
}
.exhibition__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 1.2rem;
}
@media (max-width: 767px) {
  .exhibition__nav-icon {
    width: 1.8rem;
    height: 1.2rem;
  }
}
.exhibition__nav-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.exhibition__row {
  display: grid;
  grid-template-columns: 68rem 44rem;
  gap: 4rem;
}
@media (max-width: 767px) {
  .exhibition__row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
    margin-left: auto;
    width: 100%;
  }
}
.exhibition__media {
  min-width: 0;
}
.exhibition__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1rem;
}
.exhibition__heading {
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: 3.2rem;
  font-weight: normal;
  font-family: Cormorant, serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .exhibition__heading {
    margin-bottom: 0;
  }
}
.exhibition__heading-img {
  display: block;
  max-width: 100%;
  height: auto;
}
.exhibition__heading-img--japan-debut {
  width: 26rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .exhibition__heading-img--japan-debut {
    width: 21rem;
    max-width: 100%;
  }
}
.exhibition__heading-img--namm {
  width: 39rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .exhibition__heading-img--namm {
    width: 32rem;
    max-width: 100%;
  }
}
.exhibition__body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
}
@media (max-width: 767px) {
  .exhibition__body {
    font-size: 1.4rem;
  }
}
.exhibition__slider.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 740/523;
  background-color: #eee;
}
.exhibition__slider .swiper-wrapper {
  height: 100%;
}
.exhibition__slider .swiper-slide {
  height: 100%;
  box-sizing: border-box;
}
.exhibition__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.exhibition__dots.swiper-pagination {
  position: static;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  width: 100%;
  transform: none;
}
.exhibition__dot {
  box-sizing: border-box;
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  opacity: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (hover: hover) {
  .exhibition__dot:hover {
    background-color: #999;
  }
}
.exhibition__dot--current {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #222;
}
.exhibition__movie {
  display: grid;
  grid-template-columns: 43rem 74rem;
  gap: 5rem;
  align-items: stretch;
  margin-top: 6rem;
  width: calc(100% + 7rem);
  margin-right: -7rem;
}
@media (max-width: 767px) {
  .exhibition__movie {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
  }
}
.exhibition__movie-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-left: 0.4rem;
}
.exhibition__movie-title {
  margin: 0;
  font-family: Cormorant, serif;
  font-size: clamp(7.2rem, 10vw, 8.8rem);
  font-weight: 400;
  color: #222;
}
@media (max-width: 767px) {
  .exhibition__movie-title {
    font-size: 6rem;
  }
}
.exhibition__movie-list {
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .exhibition__movie-list {
    flex-direction: column;
  }
}
.exhibition__movie-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 249/438;
  background-color: #0f0b08;
  width: 24.8rem;
}
@media (max-width: 767px) {
  .exhibition__movie-item {
    width: 100%;
  }
}
.exhibition__movie-item.is-playing .exhibition__movie-trigger {
  opacity: 0;
  pointer-events: none;
}
.exhibition__movie-item.is-playing .exhibition__movie-player {
  opacity: 1;
  pointer-events: auto;
}
.exhibition__movie-trigger {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.35s ease;
}
@media (hover: hover) {
  .exhibition__movie-trigger:hover .exhibition__movie-poster {
    transform: scale(1.03);
  }
}
.exhibition__movie-trigger:focus-visible {
  outline: 0.2rem solid #222;
  outline-offset: -0.2rem;
}
.exhibition__movie-poster {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.25s ease;
}
.exhibition__movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 3.2rem solid transparent;
  border-bottom: 3.2rem solid transparent;
  border-left: 5.5rem solid rgba(255, 255, 255, 0.96);
  transform: translate(-40%, -50%);
  pointer-events: none;
}
.exhibition__movie-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.exhibition__movie-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #000;
}

.interview {
  position: relative;
  box-sizing: border-box;
  margin-top: 0;
  padding-bottom: 30rem;
  color: #222;
}
@media (max-width: 767px) {
  .interview {
    margin-top: -12rem;
    padding-top: 12rem;
    padding-bottom: 25rem;
    background-image: url("../assets/images/sp-interview-bg.png");
    background-size: 100% 100%;
  }
}
.interview__inner {
  box-sizing: border-box;
  width: min(100% - 8rem, 116rem);
  margin-inline: auto;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .interview__inner {
    width: min(100% - 4rem, 116rem);
  }
}
.interview__header {
  margin: 0 0 4rem;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .interview__header {
    margin-bottom: 2rem;
  }
}
.interview__title-en {
  margin: 0;
  padding: 0;
  font-family: Cormorant, serif;
  font-size: clamp(4.8rem, 8vw, 9rem);
  font-weight: 400;
  color: #222;
  text-align: center;
}
@media (max-width: 767px) {
  .interview__title-en {
    font-size: 6rem;
    line-height: 1;
  }
}
.interview__title-sub {
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #555;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .interview__title-sub {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    color: #222;
  }
}
.interview__intro {
  margin: 2.4rem auto 0;
  padding: 0;
  width: 95rem;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-align: left;
}
@media (max-width: 767px) {
  .interview__intro {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
.interview__view-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  max-width: 100%;
  height: 7.2rem;
  margin: 5.6rem auto 0;
  padding: 0 0 0 1rem;
  border: none;
  background: transparent;
  color: #222;
  cursor: pointer;
  font-weight: 300;
  gap: 2rem;
}
.interview__view-more span {
  display: block;
  font-family: Cormorant, serif;
  font-size: 1.8rem;
  font-weight: 400;
}
.interview__view-more img {
  display: block;
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .interview__view-more:hover img, .interview__view-more:focus-visible img {
    transform: translateX(0.8rem);
  }
}
@media (max-width: 767px) {
  .interview__view-more {
    width: 22rem;
    height: 6.4rem;
    margin-top: 4rem;
    padding-left: 0.8rem;
  }
}
.interview__figure {
  position: relative;
  margin: 0;
  padding: 0;
}
.interview__video-trigger {
  position: relative;
  display: block;
  width: 95rem;
  max-width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  aspect-ratio: 1900/1068;
  overflow: hidden;
  background-color: #111;
  color: inherit;
  text-align: left;
  margin-inline: auto;
}
.interview__video-poster {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.interview__video-trigger:hover .interview__video-poster, .interview__video-trigger:focus-visible .interview__video-poster {
  opacity: 0.88;
}
.interview__modal {
  position: fixed;
  inset: 0;
  z-index: 202;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}
.interview__modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.interview__modal-backdrop {
  position: absolute;
  inset: 0;
  background: white;
  border: none;
  padding: 0;
  cursor: pointer;
}
.interview__modal-panel {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100rem;
  max-width: calc(100% - 6rem);
  max-height: calc(100vh - 10rem);
  padding: 0 3.4rem 0 0;
  background-color: transparent;
}
@media (max-width: 767px) {
  .interview__modal-panel {
    max-height: calc(100vh - 5rem);
    padding-right: 0;
  }
}
.interview__modal-close-top {
  position: fixed;
  top: 4.2rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 6rem;
  height: 1.6rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.interview__modal-close-top::before, .interview__modal-close-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #222;
  transform-origin: center;
}
.interview__modal-close-top::before {
  transform: translateY(0.75rem) rotate(15deg);
}
.interview__modal-close-top::after {
  transform: translateY(-0.75rem) rotate(-15deg);
}
@media (max-width: 767px) {
  .interview__modal-close-top {
    top: 2.8rem;
    right: 2rem;
    width: 5rem;
    height: 1.4rem;
  }
  .interview__modal-close-top::before {
    transform: translateY(0.65rem) rotate(15deg);
  }
  .interview__modal-close-top::after {
    transform: translateY(-0.65rem) rotate(-15deg);
  }
}
.interview__modal-close-top-icon {
  display: none;
}
.interview__modal-scroll {
  max-height: inherit;
  overflow-y: auto;
  padding: 1rem 1.6rem 2rem 0;
  scrollbar-width: none;
}
.interview__modal-scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .interview__modal-scroll {
    padding-right: 1rem;
  }
}
.interview__modal-scrollbar {
  position: fixed;
  top: 5rem;
  right: 2rem;
  width: 1.2rem;
  height: calc(100vh - 10rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .interview__modal-scrollbar {
    top: 2.5rem;
    right: 1rem;
    height: calc(100vh - 5rem);
  }
}
.interview__modal-scrollbar-track {
  position: relative;
  width: 0.2rem;
  height: 100%;
  border-radius: 999px;
  background: rgba(141, 133, 121, 0.28);
  pointer-events: auto;
  cursor: pointer;
}
.interview__modal-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  min-height: 4.8rem;
  border-radius: 999px;
  background: rgba(141, 133, 121, 0.95);
  cursor: grab;
}
.interview__modal-body {
  margin-inline: auto;
  color: #1f1f1f;
}
@media (max-width: 767px) {
  .interview__modal-body {
    width: 100%;
  }
}
.interview__modal-speaker {
  margin: 0.3rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.interview__modal-speaker:first-child {
  margin-top: 0;
}
.interview__modal-section {
  margin-top: 4rem;
}
.interview__modal-heading {
  margin: 0;
  font-family: Cormorant, serif;
  font-size: 2.5rem;
  font-weight: 400;
}
.interview__modal-text {
  margin: 1.2rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}
.interview__modal-close-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
  padding-bottom: 1.6rem;
}
.interview__modal-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 6rem;
  margin-inline: auto;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #222;
}
.interview__modal-close-icon {
  position: relative;
  display: block;
  width: 6rem;
  height: 1.6rem;
}
.interview__modal-close-icon::before, .interview__modal-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #222;
  transform-origin: center;
}
.interview__modal-close-icon::before {
  transform: translateY(-50%) rotate(15deg);
}
.interview__modal-close-icon::after {
  transform: translateY(-50%) rotate(-15deg);
}
.interview__modal-close-label {
  display: block;
  font-family: Cormorant, serif;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (hover: hover) {
  .interview__modal-close-top:hover, .interview__modal-close:hover {
    opacity: 0.7;
  }
}

.now {
  position: relative;
  box-sizing: border-box;
  color: #222;
}
@media (max-width: 767px) {
  .now {
    padding-top: 0;
    padding-bottom: 10rem;
    margin-top: -12rem;
  }
}
.now__inner {
  box-sizing: border-box;
  width: 96rem;
  margin-inline: auto;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .now__inner {
    width: min(100% - 4rem, 116rem);
  }
}
.now__title {
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
  font-size: 3.2rem;
  font-weight: normal;
  font-family: Cormorant, serif;
}
@media (max-width: 767px) {
  .now__title {
    margin-bottom: 2.4rem;
  }
}
.now__title-img {
  display: block;
  width: 33rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .now__title-img {
    width: 22rem;
  }
}
.now__body {
  margin: 0;
  padding: 0;
}
.now__line {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .now__line {
    font-size: 1.5rem;
  }
}

.partner {
  position: relative;
  box-sizing: border-box;
  color: #222;
  padding-block: 50rem 46rem;
  background-color: #fff;
  background-image: url("../assets/images/collaboration-partner-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .partner {
    background-image: url("../assets/images/sp-collaboration-partner-bg.png");
    padding-top: 20rem;
    padding-bottom: 13rem;
  }
}
.partner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -35rem;
  right: 0;
  width: 80rem;
  max-width: 100%;
  aspect-ratio: 1612/1966;
  background-image: url("../assets/images/accent-piano.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .partner::before {
    width: calc(100% - 4rem);
    top: -18rem;
    background-image: url("../assets/images/sp-accent-piano.png");
  }
}
.partner__inner {
  box-sizing: border-box;
  width: min(100% - 8rem, 116rem);
  max-width: 116rem;
  margin-inline: auto;
  padding-top: 7.4rem;
  padding-bottom: 6.2rem;
  background-color: white;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .partner__inner {
    width: min(100% - 4rem, 116rem);
    padding: 3.8rem 2rem;
  }
}
.partner__header {
  margin: 0 0 7rem;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .partner__header {
    margin-bottom: 4rem;
  }
}
.partner__title {
  margin: 0 0 1.2rem;
  padding: 0;
  font-family: Cormorant, serif;
  font-size: clamp(4.2rem, 5.6vw, 6.2rem);
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .partner__title {
    margin-bottom: 1rem;
    font-size: 3.7rem;
    text-align: left;
    line-height: 1.2;
  }
}
.partner__intro {
  box-sizing: border-box;
  max-width: 68.3rem;
  margin-inline: auto;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
}
@media (max-width: 767px) {
  .partner__intro {
    max-width: 100%;
    font-size: 1.4rem;
    text-align: left;
  }
}
.partner__intro-line {
  margin: 0;
  padding: 0;
}
.partner__intro-line + .partner__intro-line {
  margin-top: 0.4rem;
}
.partner__row {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.7rem;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .partner__row {
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
    margin-left: 0;
  }
}
.partner__figure {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  width: 34.2rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .partner__figure {
    width: 22rem;
  }
}
.partner__logo {
  display: block;
  width: 100%;
  height: auto;
}
.partner__content {
  box-sizing: border-box;
  width: 63.2rem;
}
@media (max-width: 767px) {
  .partner__content {
    max-width: 100%;
  }
}
.partner__body {
  margin: 0 0 2.9rem;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-align: left;
}
@media (max-width: 767px) {
  .partner__body {
    margin-bottom: 2.4rem;
    font-size: 1.3rem;
  }
}
.partner__official-wrap {
  margin: 0;
  padding: 0;
}
.partner__official {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem solid #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  width: 13rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .partner__official {
    font-size: 1.4rem;
  }
}
.partner__official-text {
  display: inline-block;
}
.partner__official-icon {
  display: block;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
}

.footer {
  position: relative;
  box-sizing: border-box;
  color: #222;
}
@media (max-width: 767px) {
  .footer {
    z-index: 1;
    padding-bottom: 4rem;
  }
}
.footer::before {
  content: "";
  display: block;
  width: 20.6rem;
  height: 33.1rem;
  background-image: url("../assets/images/footer-brush.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -10rem;
}
@media (max-width: 767px) {
  .footer::before {
    width: 8.7rem;
    height: 21rem;
    top: -14rem;
    background-image: url("../assets/images/sp-footer-brush.png");
  }
}
.footer__inner {
  box-sizing: border-box;
  width: min(100% - 8rem, 116rem);
  max-width: 116rem;
  margin-inline: auto;
  padding-block: 0 9rem;
  padding-inline: 2rem;
  text-align: center;
  margin-top: -12rem;
}
@media (max-width: 767px) {
  .footer__inner {
    width: min(100% - 4rem, 116rem);
    padding-block: 6rem 5rem;
    padding-inline: 0;
    margin-top: -4rem;
  }
}
.footer__head {
  margin: 0 0 2rem;
}
.footer__title-en {
  margin: 0;
  padding: 0;
  font-family: "Cormorant", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 9rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer__title-en {
    font-size: 6rem;
  }
}
.footer__title-ja {
  padding: 0;
  font-family: "Noto Sans JP", var(--font-jp);
  font-weight: 400;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .footer__title-ja {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}
.footer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer__org {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__org {
    margin-bottom: 2rem;
  }
}
.footer__org-line {
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-weight: 500;
  font-size: 2.4rem;
  white-space: normal;
}
@media (max-width: 767px) {
  .footer__org-line {
    font-size: 1.4rem;
  }
}
.footer__org-line + .footer__org-line {
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .footer__org-line + .footer__org-line {
    margin-top: 1.5rem;
  }
}
.footer__official {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem solid #222;
  font-family: "Noto Sans JP", var(--font-jp);
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  width: 13rem;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__official {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}
.footer__official-text {
  display: inline-block;
}
.footer__official-icon {
  display: block;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
}
.footer__tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.footer__tel {
  margin: 0 0 1rem;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #222;
}
@media (max-width: 767px) {
  .footer__tel {
    margin-bottom: 2.4rem;
  }
}
.footer__tel-label {
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .footer__tel-label {
    font-size: 1.8rem;
  }
}
.footer__tel-num {
  margin-left: 0.8rem;
  font-size: 4.9rem;
}
@media (max-width: 767px) {
  .footer__tel-num {
    margin-left: 0.5rem;
    font-size: 3.2rem;
  }
}
.footer__tel a {
  color: inherit;
}
.footer__details {
  margin: 0 0 10rem;
  padding: 0;
  font-family: "Noto Sans JP", var(--font-jp);
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__details {
    margin-bottom: 8rem;
    font-size: 1.5rem;
    width: 33rem;
    margin-inline: auto;
    text-align: left;
  }
}
.footer__detail-line {
  margin: 0;
  padding: 0;
}
.footer__detail-line + .footer__detail-line {
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  .footer__detail-line + .footer__detail-line {
    margin-top: 0;
  }
}
.footer__detail-line a {
  color: inherit;
  text-underline-offset: 0.2em;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .footer__brand {
    gap: 1rem;
  }
}
.footer__logo {
  display: block;
  width: 11.9rem;
  height: auto;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 11.9rem;
  }
}
.footer__copyright {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", var(--font-jp);
  font-weight: 500;
  font-size: 1.2rem;
  color: #9a9a9a;
}
@media (max-width: 767px) {
  .footer__copyright {
    max-width: 37.3rem;
    font-size: 1.1rem;
  }
}

.main-inner-wrapper {
  background: linear-gradient(to bottom, transparent 10rem, white 50rem);
  position: relative;
}

.artist__grid-content {
  align-items: flex-start;
}

.artist__grid-content-image {
  max-width: 302px;
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  align-self: flex-start;
}

@media screen and (max-width: 767px) {
  .artist__grid-content-image {
    max-width: 100%;
    width: 100%;
  }
}