:root {
  --yellow: #f5e810;
  --black: #090909;
  --black-2: #121212;
  --white: #f7f7f2;
  --gray: #a2a2a2;
  --line: rgba(255, 255, 255, .18);
  --container: min(1180px, calc(100% - 80px));
  --header-h: 88px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--yellow);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.mobile-fixed-background {
  display: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(110px, 11vw, 180px) 0;
}

.section--black {
  background: var(--black);
}

.section--yellow {
  color: var(--black);
  background: var(--yellow);
}

.section--offwhite {
  color: var(--black);
  background: var(--white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(-100%);
  transition: background 0.35s, border-color 0.35s, height 0.35s, opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
}

.header::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 29px;
  content: "";
  opacity: 0.16;
  background: repeating-linear-gradient(to bottom, var(--yellow) 0 1px, transparent 1px 7px);
  transform: translateY(-50%);
  pointer-events: none;
}

.header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.header.is-scrolled {
  height: 72px;
  background: rgba(9, 9, 9, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.header__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
}

.brand__logo {
  width: 118px;
  height: auto;
  fill: currentColor;
}

.brand__sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font: 700 9px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.24em;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}

.brand__sub small {
  font: 700 8px/1 "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav a {
  position: relative;
  padding: 6px 0;
  font: 700 11px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.08em;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__tel {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 17px;
  color: var(--black);
  background: var(--yellow);
  line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s;
  border-radius: 5px;
}

.header__tel:hover {
  transform: translateY(-2px);
  background: #fff53b;
}

.header__tel img {
  width: 16px;
  height: 16px;
}

.header__tel strong {
  font: 700 16px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.03em;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 7px auto;
  background: var(--yellow);
  transition: transform 0.35s var(--ease);
}

.menu-button.is-active span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: grid;
  place-items: center;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__nav {
  width: min(620px, 100% - 48px);
  display: grid;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font: 400 clamp(30px, 8vw, 56px)/1 "Archivo Black", sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}

.drawer.is-open .drawer__nav a {
  transform: translateY(0);
  opacity: 1;
}

.drawer.is-open .drawer__nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.drawer.is-open .drawer__nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.drawer.is-open .drawer__nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.drawer.is-open .drawer__nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.drawer.is-open .drawer__nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.drawer__nav span {
  color: var(--yellow);
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 56px) 6vw 8vh;
}

.hero__media {
  position: absolute;
  inset: -6%;
  background: url("../img/KV.jpg") center 48%/cover no-repeat fixed;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.25) 52%, rgba(0, 0, 0, 0.46) 100%), radial-gradient(circle at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.62) 78%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px);
  background-size: 7.14vw 7.14vw;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(920px, 91vw);
  text-align: center;
}

.hero__lottie {
  display: none;
  width: min(470px, 68vw);
  height: clamp(220px, 25vw, 290px);
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.55));
}

.hero__content.is-lottie-ready .hero__lottie {
  display: none;
}

.hero__content.is-lottie-ready .hero__brand-fallback {
  display: block;
}

.hero__guitar-icon {
  display: block;
  width: auto;
  height: 92px;
  margin: 0 auto 13px;
  opacity: 0;
  transform-origin: 50% 88%;
  animation: heroGuitarReveal 0.35s 0.82s var(--ease) forwards, heroGuitarBounce 0.82s 0.84s var(--ease) forwards;
}

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

.hero__logo-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  line-height: 0;
}

.hero__logo-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  width: clamp(58px, 8vw, 104px);
  height: 3px;
  background: var(--yellow);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: heroLogoLine 0.7s 1.02s var(--ease) forwards;
}

.hero__logo {
  width: clamp(240px, 31vw, 470px);
  height: auto;
  overflow: visible;
  fill: var(--yellow);
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.55));
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: heroLogoSquash 0.34s 1.26s var(--ease) both;
}

.hero__logo path {
  opacity: 0;
  transform: none;
  animation: heroLogoFade 0.82s 0.2s var(--ease) forwards;
}

.hero__catch {
  display: grid;
  gap: 0.1em;
  margin: 43px 0 0;
  font: 400 clamp(24px, 3.4vw, 48px)/0.98 "Archivo Black", sans-serif;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero__catch > span {
  display: block;
  overflow: hidden;
  padding: 0.07em 0.04em 0.12em;
}

.hero__catch b {
  display: block;
  font: inherit;
  opacity: 0;
  transform: translateY(115%);
  animation: heroCatchReveal 0.82s 1.18s var(--ease) forwards;
}

.hero__catch > span:nth-child(2) b {
  color: var(--yellow);
  animation-delay: 1.34s;
}

.hero__eyebrow {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font: 700 12px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.25em;
  opacity: 0;
  animation: fadeUp 0.7s 1.68s var(--ease) forwards;
}

.hero__lead {
  margin: 23px 0 0;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.8s 1.82s var(--ease) forwards;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp 0.8s 1.98s var(--ease) forwards;
}

.button {
  min-width: 228px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px 0 24px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: transform 0.28s var(--ease), color 0.28s, background 0.28s;
}

.button i {
  font-style: normal;
  font-size: 19px;
}

.button__tel-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
}

.button:has(.button__tel-icon) > span {
  display: inline-flex;
  align-items: center;
}

.button:hover {
  transform: translateY(-4px);
}

.button--yellow {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
  border-radius: 5px;
}

.button--yellow:hover {
  background: #fff53b;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 5px;
}

.button--ghost:hover {
  color: var(--black);
  background: var(--white);
}

.hero__note {
  position: absolute;
  z-index: 1;
  top: 52%;
  right: 2.2vw;
  margin: 0;
  font: 700 9px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.scroll-down {
  position: absolute;
  z-index: 1;
  right: 4.5vw;
  bottom: 7vh;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
  font: 700 9px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.18em;
}

.scroll-down i {
  position: relative;
  display: block;
  width: 74px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-down i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateX(-100%);
  animation: scrollLine 2.2s 1.4s infinite;
}

@keyframes heroLogoFade {
  to {
    opacity: 1;
  }
}
@keyframes heroGuitarReveal {
  to {
    opacity: 1;
  }
}
@keyframes heroGuitarBounce {
  0% {
    transform: translateY(0) rotate(0) scale(1);
  }
  30% {
    transform: translateY(-15px) rotate(-5deg) scale(1.03);
  }
  55% {
    transform: translateY(0) rotate(2deg) scale(0.97);
  }
  74% {
    transform: translateY(-6px) rotate(-1deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes heroLogoSquash {
  0%, 100% {
    transform: scale(1);
  }
  42% {
    transform: scaleX(1.045) scaleY(0.89);
  }
  70% {
    transform: scaleX(0.985) scaleY(1.025);
  }
}
@keyframes enjoyIconPop {
  0% {
    opacity: 0;
    transform: scale(0.42) rotate(-10deg);
  }
  62% {
    opacity: 1;
    transform: scale(1.14) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes heroLogoLine {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
@keyframes heroCatchReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes sectionHeadingChar {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes sectionHeadingJapanese {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes interviewMessageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textMaskReveal {
  to {
    transform: scaleX(0);
  }
}
@keyframes enjoyCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateX(-100%);
  }
  55%, 100% {
    transform: translateX(100%);
  }
}
.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.marquee__track {
  width: max-content;
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  padding-right: 0.45em;
  color: rgba(245, 232, 16, 0.09);
  font: 400 clamp(46px, 6vw, 96px)/1.25 "Archivo Black", sans-serif;
  white-space: nowrap;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 0.7px rgba(245, 232, 16, 0.9);
  paint-order: stroke fill;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section-heading {
  margin-bottom: clamp(60px, 7vw, 100px);
}

.section-heading__en {
  margin: 0;
  color: var(--yellow);
  font: 400 clamp(60px, 8vw, 135px)/1 "Archivo Black", sans-serif;
  letter-spacing: -0.065em;
  letter-spacing: 0em;
  overflow-wrap: anywhere;
}

.section-heading__ja {
  margin: 0 0 0 0.7em;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.section-heading--dark .section-heading__en {
  color: var(--black);
}

.section-heading--dark .section-heading__ja {
  color: var(--black);
}

.has-heading-animation .section-heading.js-reveal {
  opacity: 1;
  transform: none;
}

.has-heading-animation .section-heading__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(8px);
}

.has-heading-animation .section-heading__char--space {
  width: 0.34em;
}

.has-heading-animation .section-heading.is-visible .section-heading__char {
  animation: sectionHeadingChar 0.56s calc(var(--char-index) * 0.055s) var(--ease) forwards;
}

.has-heading-animation .section-heading__ja {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
}

.has-heading-animation .section-heading.is-visible .section-heading__ja {
  animation: sectionHeadingJapanese 0.58s var(--heading-ja-delay, 0.7s) var(--ease) forwards;
}

.intro {
  padding-top: clamp(200px, 18vw, 290px);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  align-items: flex-start;
}

.concept-copy__catch {
  margin: 0 0 46px;
  font-size: clamp(34px, 3.5vw, 60px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.concept-copy__catch em {
  color: var(--yellow);
  font-style: normal;
}

.concept-copy__body {
  max-width: 560px;
  color: #cfcfcf;
}

.concept-copy__body p {
  margin: 0 0 1.65em;
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -20px;
  right: 0;
  width: 42%;
  height: 12px;
  background: var(--yellow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.86);
}

.concept-photo .concept-photo__image {
  height: 100%;
  aspect-ratio: 1/1;
  object-position: center;
}

.concept-photo {
  aspect-ratio: 1/1;
}

.image-frame figcaption {
  position: absolute;
  right: -5px;
  bottom: 0;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  font: 700 10px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.1em;
}

.enjoy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.enjoy-card {
  position: relative;
  min-height: 370px;
  padding: 30px 34px 45px;
  border-right: 1px solid rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

.enjoy-card__icon {
  display: block;
  position: absolute;
  top: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  opacity: 0;
  transform: scale(0.42) rotate(-10deg);
  transform-origin: 50% 50%;
}

.js-enjoy-list.is-visible .enjoy-card__icon {
  animation: enjoyIconPop 0.48s calc(var(--enjoy-delay, 0s) + 0.24s) var(--ease) forwards;
}

.js-enjoy-list .enjoy-card {
  opacity: 0;
  transform: translateY(30px);
}

.js-enjoy-list.is-visible .enjoy-card {
  animation: enjoyCardIn 0.64s var(--enjoy-delay, 0s) var(--ease) forwards;
}

.js-enjoy-list .enjoy-card:nth-child(2) {
  --enjoy-delay: .16s;
}

.js-enjoy-list .enjoy-card:nth-child(3) {
  --enjoy-delay: .32s;
}

.enjoy-card:last-child {
  border-right: 0;
}

.enjoy-card__num {
  margin: 0 0 auto;
  font: 400 16px/1 "Archivo Black", sans-serif;
}

.enjoy-card h3 {
  margin: 46px 0 22px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.enjoy-card p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

@media (min-width: 769px) {
  .enjoy-card {
    display: grid;
    grid-template-rows: auto 1fr 5.7em;
  }
  .enjoy-card__num {
    margin: 0;
  }
  .enjoy-card h3 {
    align-self: end;
    min-height: 2.9em;
    margin: 0 0 22px;
  }
  .enjoy-card p:last-child {
    align-self: start;
  }
}
.instruments-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: stretch;
}

.instrument-list {
  border-top: 1px solid var(--line);
}

.instrument-list article {
  border-bottom: 1px solid var(--line);
}

.instrument-list__trigger {
  width: 100%;
  min-height: 93px;
  display: grid;
  grid-template-columns: 46px 1fr auto 24px;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 0.3s var(--ease), color 0.3s, background 0.3s;
}

.instrument-list__trigger:hover,
.instrument-list__trigger:focus-visible {
  padding-inline: 16px;
  color: var(--black);
  background: var(--yellow);
  outline: none;
}

.instrument-list span {
  color: var(--yellow);
  font: 400 11px/1 "Archivo Black", sans-serif;
}

.instrument-list__trigger:hover span,
.instrument-list__trigger:focus-visible span {
  color: var(--black);
}

.instrument-list h3 {
  margin: 0;
  font: 400 clamp(19px, 2.1vw, 30px)/1 "Archivo Black", sans-serif;
  letter-spacing: -0.035em;
}

.instrument-list p {
  margin: 0;
  color: #a9a9a9;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.instrument-list__trigger:hover p,
.instrument-list__trigger:focus-visible p {
  color: var(--black);
}

.instrument-list__open {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}

.instrument-list__open::before,
.instrument-list__open::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.instrument-list__open::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.instrument-list__trigger:hover .instrument-list__open,
.instrument-list__trigger:focus-visible .instrument-list__open {
  transform: rotate(90deg);
}

.instrument-visual {
  position: relative;
  overflow: hidden;
  min-height: 670px;
}

.instrument-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.05);
}

.instrument-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 55%);
}

.instrument-visual p {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 24px;
  margin: 0;
  color: var(--yellow);
  font: 400 clamp(34px, 4vw, 60px)/0.9 "Archivo Black", sans-serif;
  letter-spacing: -0.04em;
}

.instrument-visual__catch span {
  position: relative;
  display: block;
  width: fit-content;
}

.js-mask-reveal span::after {
  position: absolute;
  z-index: 1;
  inset: -0.05em -0.08em;
  content: "";
  background: var(--yellow);
  transform: scaleX(1);
  transform-origin: right;
}

.js-mask-reveal.is-visible span::after {
  animation: textMaskReveal 0.58s var(--mask-delay, 0s) var(--ease) forwards;
}

.js-mask-reveal span:nth-child(2)::after {
  --mask-delay: .16s;
}

.js-mask-reveal span:nth-child(3)::after {
  --mask-delay: .32s;
}

.instruments__note {
  margin: 35px 0 0;
  color: #999;
  font-size: 11px;
}

.instrument-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.instrument-modal[hidden] {
  display: none;
}

.instrument-modal.is-open {
  opacity: 1;
}

.instrument-modal__dialog {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(22px, 4vw, 42px);
  color: var(--black);
  background: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}

.instrument-modal.is-open .instrument-modal__dialog {
  transform: translateY(0);
}

.instrument-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.instrument-modal__close::before,
.instrument-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.instrument-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.instrument-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.instrument-modal__close:hover::before,
.instrument-modal__close:focus-visible::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.instrument-modal__close:hover::after,
.instrument-modal__close:focus-visible::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.instrument-modal__image {
  width: 100%;
  min-height: min(48vw, 310px);
  display: block;
  object-fit: cover;
}

.instrument-modal__image[hidden] {
  display: none;
}

.instrument-modal__en {
  margin: 28px 0 0;
  font: 400 clamp(24px, 4vw, 44px)/1 "Archivo Black", sans-serif;
  letter-spacing: -0.04em;
}

.instrument-modal__ja {
  margin: 8px 0 0;
  font-weight: 900;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(340px, 43vw) minmax(260px, 32vw);
  background: var(--yellow);
}

@media (min-width: 769px) {
  .gallery {
    position: sticky;
    top: 88px;
    z-index: 0;
    height: 100vh;
    height: 100svh;
    min-height: 520px;
    grid-template-rows: 1.1fr 0.9fr;
  }
  .price {
    position: relative;
    z-index: 1;
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.24);
  }
  .gallery__word {
    top: 48%;
  }
  .gallery__word--mobile {
    display: none;
  }
  .gallery__item figcaption {
    top: 20%;
  }
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery > .gallery__item:first-child {
  grid-row: 1/3;
}

.gallery > .gallery__item:nth-child(2) {
  border-left: 8px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}

.gallery__item--last {
  border-left: 8px solid var(--yellow);
  border-top: 4px solid var(--yellow);
}

.gallery__last-stage {
  display: contents;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(0.75) contrast(1.1);
}

.gallery__item:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.03);
}

.gallery__item figcaption {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 1;
  width: min(82%, 420px);
  margin: 0;
  color: var(--white);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%);
}

.gallery__word {
  position: absolute;
  left: 2.8vw;
  top: 57%;
  z-index: 2;
  margin: 0;
  color: var(--yellow);
  font: 400 clamp(34px, 4vw, 60px)/0.9 "Archivo Black", sans-serif;
  letter-spacing: -0.04em;
  text-align: left;
  text-shadow: 2px 2px 0 var(--black);
}

.gallery__word span {
  position: relative;
  display: block;
  width: fit-content;
}

.gallery__word--mobile {
  display: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.price-card {
  border: 3px solid var(--black);
  padding: clamp(28px, 4vw, 52px);
}

.price-card__label {
  margin: 0 0 25px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font: 400 13px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.1em;
}

.price-card__label span {
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-list {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.price-list dt {
  font-weight: 400;
}

.price-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.price-card__note {
  margin: 26px 0 0;
  font-size: 14px;
}

.price-card__notice {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.6;
}

.shop-data {
  margin: 0;
  border-top: 3px solid var(--black);
}

.shop-data div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  align-items: center;
}

.shop-data dt {
  font: 400 14px/1.5 "Archivo Black", sans-serif;
}

.shop-data dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
}

.shop-data a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.shop-data small {
  font-weight: 400;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.voice {
  padding: clamp(85px, 8vw, 125px) 0;
}

.voice-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 27px 30px;
  border: 2px solid var(--black);
  background: transparent;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.voice-card:hover {
  transform: translateY(-8px);
  background: #fff;
}

.voice-card__stars {
  margin: 0 0 25px;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.voice-card blockquote {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.voice-card__meta {
  margin: auto 0 0;
  padding-top: 22px;
  color: #666;
  font-size: 11px;
}

.voice__source {
  margin: 25px 0 0;
  color: #666;
  font-size: 11px;
}

.staff-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border: 1px solid var(--line);
}

.staff-panel figure {
  margin: 0;
  overflow: hidden;
}

.staff-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.08);
}

.staff-panel__copy {
  padding: clamp(38px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staff-panel__role {
  margin: 0 0 38px;
  color: var(--yellow);
  font: 400 11px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.15em;
}

.staff-panel__name {
  margin: -20px 0 18px;
  color: var(--white);
  font: 400 16px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.08em;
}

.staff-panel h3 {
  margin: 0 0 35px;
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.staff-panel__copy > p:not(.staff-panel__role):not(.staff-panel__name):not(.staff-panel__small) {
  margin: 0;
  color: #c3c3c3;
}

.staff-panel__small {
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 11px;
}

.staff-interview__eyebrow {
  flex: 0 0 auto;
  color: var(--yellow);
  font: 400 12px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.1em;
}

.staff-interview {
  margin-top: clamp(70px, 10vw, 130px);
}

.staff-interview__eyebrow {
  margin: 0 0 20px;
}

.staff-interview__list {
  margin: 0;
}

.staff-interview__item {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 52px) 0;
  border-top: 1px solid var(--line);
}

.js-interview-reveal dt,
.js-interview-reveal dd {
  opacity: 0;
  transform: translateY(18px);
}

.js-interview-reveal.is-visible dt {
  animation: interviewMessageIn 0.55s var(--ease) forwards;
}

.js-interview-reveal.is-visible dd {
  animation: interviewMessageIn 0.55s 0.24s var(--ease) forwards;
}

.staff-interview dt,
.staff-interview dd {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin: 0;
}

.staff-interview dt {
  justify-content: flex-start;
}

.staff-interview dd {
  justify-content: flex-end;
}

.staff-interview__avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: 50%;
  background: #d6d6d6;
}

.staff-interview__avatar::before,
.staff-interview__avatar::after {
  position: absolute;
  content: "";
  background: var(--black);
}

.staff-interview__avatar::before {
  top: 8px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.staff-interview__avatar::after {
  bottom: -8px;
  left: 8px;
  width: 26px;
  height: 25px;
  border-radius: 50% 50% 0 0;
}

.staff-interview__avatar--master {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  background: #171717 url("../img/staff01.png") center/cover no-repeat;
}

.staff-interview__avatar--master::before,
.staff-interview__avatar--master::after {
  display: none;
}

.staff-interview__avatar--interviewer {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  background: #d6d6d6 url("../img/staff02.png") center/cover no-repeat;
}

.staff-interview__avatar--interviewer::before,
.staff-interview__avatar--interviewer::after {
  display: none;
}

.staff-interview__bubble {
  position: relative;
  min-width: 0;
  max-width: min(78%, 760px);
  margin: 0;
  padding: 20px 23px;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.staff-interview__bubble .staff-interview__emphasis {
  font-weight: 800;
  white-space: nowrap;
}

.staff-interview dt .staff-interview__bubble::before,
.staff-interview dd .staff-interview__bubble::before {
  position: absolute;
  top: 13px;
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.staff-interview dt .staff-interview__bubble::before {
  left: -8px;
  border-right: 11px solid #2a2a2a;
}

.staff-interview dd .staff-interview__bubble {
  order: -1;
  max-width: min(78%, 100% - 85px, 760px);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 500;
}

.staff-interview dd .staff-interview__bubble::before {
  right: -8px;
  border-left: 11px solid var(--yellow);
}

.staff-interview__name {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.staff-interview__name--guest {
  color: #9b9b9b;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.staff-interview dd .staff-interview__name {
  color: #5a5100;
}

.social-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

@media (min-width: 769px) {
  .social .section-heading {
    margin-bottom: 0;
  }
}
.social-intro__catch {
  margin: 0 0 35px;
  font: 400 clamp(53px, 6vw, 87px)/0.86 "Archivo Black", sans-serif;
  letter-spacing: -0.055em;
}

.social-intro > p:not(.social-intro__catch) {
  max-width: 380px;
  margin: 0 0 30px;
}

.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--black);
  font: 400 14px/1 "Archivo Black", sans-serif;
}

.text-link--instagram {
  gap: 16px;
  font-size: 20px;
}

.text-link--instagram > span {
  letter-spacing: 0.02em;
}

.text-link > i {
  margin-left: 5px;
  font-style: normal;
}

.instagram-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-icon__dot {
  fill: currentColor;
  stroke: none;
}

.social-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-feed a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--black);
}

.social-feed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.6s;
}

.social-feed span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  color: var(--yellow);
  font: 400 9px/1 "Archivo Black", sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s var(--ease);
}

.social-feed a:hover img {
  transform: scale(1.07);
  opacity: 0.62;
}

.social-feed a:hover span {
  opacity: 1;
  transform: translateY(0);
}

.access-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 7vw, 100px);
}

.access-info h3 {
  margin: 0 0 30px;
  color: var(--yellow);
  font: 400 clamp(55px, 6vw, 88px)/1 "Archivo Black", sans-serif;
}

.access-info h3 small {
  color: var(--white);
  font: 700 13px/1 "Noto Sans JP", sans-serif;
  letter-spacing: 0.16em;
}

.access-info address {
  margin: 0 0 40px;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.access-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.access-info li {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: #bcbcbc;
  font-size: 13px;
}

.access-info li span {
  color: var(--white);
  font-weight: 900;
}

.access-info__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.access-info__buttons .button {
  min-width: 205px;
}

.map {
  min-height: 620px;
  border: 8px solid var(--yellow);
  background: #242424;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 604px;
  border: 0;
}

.access__notice {
  margin: 30px 0 0;
  color: #777;
  font-size: 11px;
}

.final-cta {
  position: relative;
  min-height: 82svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.final-cta__image {
  position: absolute;
  inset: 0;
  background: url("../img/footerBG.jpg") center 52%/cover no-repeat fixed;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  width: min(900px, 100% - 40px);
  text-align: center;
}

.final-cta__content > p {
  margin: 0 0 24px;
  color: var(--yellow);
  font: 400 11px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.18em;
}

.final-cta h2 {
  margin: 0 0 45px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.final-cta .button {
  margin-inline: auto;
}

.footer {
  color: var(--black);
  background: var(--yellow);
}

.footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 4vw;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__brand svg {
  width: clamp(170px, 20vw, 300px);
  fill: currentColor;
}

.footer__brand p {
  font: 400 10px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.17em;
}

.footer__brand .ja {
  font: 900 10px/1 "Noto Sans JP", sans-serif;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer__nav a {
  font: 400 12px/1 "Archivo Black", sans-serif;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4vw;
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  font: 400 9px/1.5 "Archivo Black", sans-serif;
  letter-spacing: 0.08em;
}

.footer__bottom p {
  margin: 0;
}

.mobile-tel {
  display: none;
}

.js-reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@media (max-width: 1050px) {
  :root {
    --container: min(100% - 48px, 900px);
  }
  .global-nav,
  .header__tel {
    display: none;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .hero__note {
    display: none;
  }
  .concept-grid,
  .instruments-layout,
  .info-grid,
  .social-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }
  .concept-photo {
    width: min(640px, 92%);
    margin-left: auto;
  }
  .instrument-visual {
    min-height: 70vw;
    max-height: 760px;
  }
  .price-card {
    max-width: 650px;
  }
  .social-intro {
    max-width: 470px;
  }
  .social-intro__catch {
    margin: 0;
  }
  .map {
    min-height: 560px;
  }
  .map iframe {
    min-height: 544px;
  }
}
@media (max-width: 768px) {
  :root {
    --container: calc(100% - 36px);
    --header-h: 66px;
  }
  body {
    padding-bottom: 62px;
    font-size: 15px;
  }
  .section {
    padding: 90px 0;
  }
  .header__inner {
    padding: 0 18px;
  }
  .header.is-scrolled {
    height: 62px;
  }
  .brand__logo {
    width: 90px;
  }
  .brand__sub {
    gap: 3px;
    font-size: 7px;
    letter-spacing: 0.18em;
  }
  .brand__sub small {
    font-size: 7px;
    letter-spacing: 0.04em;
  }
  .menu-button {
    width: 38px;
  }
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 48px) 18px 82px;
  }
  .hero__media {
    inset: -2%;
    background-position: 57% 50%;
  }
  .hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.56) 100%), radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.58) 82%);
  }
  .hero__grid {
    background-size: 25vw 25vw;
  }
  .hero__content {
    width: 100%;
  }
  .hero__guitar-icon {
    height: 72px;
    margin-bottom: 11px;
  }
  .hero__lottie {
    width: min(300px, 72vw);
    height: 190px;
  }
  .hero__logo {
    width: min(68vw, 300px);
  }
  .hero__logo-title::after {
    bottom: -14px;
    height: 2px;
  }
  .hero__catch {
    margin-top: 34px;
    font-size: clamp(22px, 8.2vw, 34px);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .hero__eyebrow {
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero__lead {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .hero__actions {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 25px;
  }
  .hero__actions .button {
    width: min(100%, 330px);
    min-height: 52px;
  }
  .hero__note,
  .scroll-down {
    display: none;
  }
  .marquee__track span {
    font-size: 47px;
  }
  .intro {
    padding-top: 150px;
  }
  .section-heading {
    margin-bottom: 55px;
  }
  .section-heading__en {
    font-size: clamp(53px, 17vw, 82px);
    font-size: min(10vw, 50px);
    line-height: 1;
  }
  .section-heading__ja {
    margin-top: 0;
    font-size: 12px;
    margin-left: 3px;
  }
  .concept-grid {
    gap: 65px;
  }
  .concept-copy__catch {
    font-size: 34px;
    font-size: min(7.2vw, 40px);
  }
  .concept-photo {
    width: calc(100% - 14px);
    aspect-ratio: 16/9;
  }
  .concept-photo .concept-photo__image {
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
  }
  .image-frame::before {
    top: -12px;
    right: -12px;
    height: 8px;
  }
  .image-frame figcaption {
    font-size: 8px;
  }
  .enjoy-list {
    grid-template-columns: 1fr;
  }
  .enjoy-card {
    min-height: 0;
    padding: 26px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  }
  .enjoy-card__icon {
    top: 23px;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .js-enjoy-list.is-visible .enjoy-card {
    opacity: 0;
    transform: translateY(30px);
    animation: none;
  }
  .js-enjoy-list .enjoy-card.is-visible {
    animation: enjoyCardIn 0.64s var(--ease) forwards;
  }
  .js-enjoy-list.is-visible .enjoy-card__icon {
    opacity: 0;
    transform: scale(0.42) rotate(-10deg);
    animation: none;
  }
  .js-enjoy-list .enjoy-card.is-visible .enjoy-card__icon {
    animation: enjoyIconPop 0.48s 0.24s var(--ease) forwards;
  }
  .enjoy-card:last-child {
    border-bottom: 0;
  }
  .enjoy-card__num {
    margin-bottom: 34px;
  }
  .enjoy-card h3 {
    margin: 0 0 18px;
    font-size: 23px;
  }
  .instrument-list__trigger {
    grid-template-columns: 34px 1fr 24px;
    min-height: 82px;
    gap: 8px;
  }
  .instrument-list h3 {
    font-size: 19px;
  }
  .instrument-list p {
    grid-column: 2;
    margin-top: -22px;
  }
  .instrument-list__open {
    grid-column: 3;
    grid-row: 1/span 2;
    margin-left: 0;
  }
  .instrument-list__trigger:hover,
  .instrument-list__trigger:focus-visible {
    padding-inline: 8px;
  }
  .instrument-visual {
    min-height: 115vw;
  }
  .instrument-visual p {
    left: 18px;
    top: 18px;
    bottom: auto;
    font-size: 37px;
  }
  .gallery {
    display: block;
  }
  .gallery__item {
    position: sticky;
    top: 62px;
    height: 100vh;
    height: 100svh;
    border: 0 !important;
  }
  .gallery__item--wide {
    height: 100vh;
    height: 100svh;
  }
  .gallery > .gallery__item:nth-child(1) {
    z-index: 1;
  }
  .gallery > .gallery__item:nth-child(2) {
    z-index: 2;
  }
  .gallery__item--last {
    z-index: 3;
  }
  .gallery__last-stage {
    display: block;
    min-height: calc(200svh + 62px);
  }
  .gallery__word {
    left: 18px;
    top: 18px;
    bottom: auto;
    z-index: 4;
    font-size: 37px;
  }
  .gallery__word--desktop {
    display: none;
  }
  .gallery__word--mobile {
    display: block;
  }
  .gallery__word--mobile span {
    white-space: nowrap;
  }
  .gallery__item figcaption {
    top: 43%;
  }
  .price {
    position: relative;
    z-index: 5;
    margin-top: calc(-100svh - 62px);
    box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.24);
  }
  .info-grid {
    gap: 48px;
  }
  .price-card {
    padding: 27px 20px;
  }
  .shop-data div {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 19px 0;
  }
  .shop-data dt {
    font-size: 11px;
  }
  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .voice-card {
    min-height: 230px;
    padding: 17px 14px;
  }
  .voice-card__stars {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .voice-card blockquote {
    font-size: 13px;
    line-height: 1.8;
  }
  .voice-card__meta {
    padding-top: 15px;
    font-size: 9px;
  }
  .staff-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .staff-panel figure {
    height: 78vw;
  }
  .staff-panel__copy {
    padding: 36px 25px 42px;
  }
  .staff-panel h3 {
    font-size: min(6.8vw, 28px);
  }
  .staff-interview {
    margin-top: 70px;
  }
  .staff-interview__eyebrow {
    margin-bottom: 14px;
  }
  .staff-interview__item {
    gap: 16px;
    padding: 28px 0;
  }
  .staff-interview dt,
  .staff-interview dd {
    gap: 10px;
  }
  .staff-interview__avatar {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .staff-interview__avatar--master {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .staff-interview__avatar--interviewer {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .staff-interview__avatar::before {
    top: 7px;
    left: 11px;
    width: 12px;
    height: 12px;
  }
  .staff-interview__avatar::after {
    bottom: -7px;
    left: 6px;
    width: 22px;
    height: 21px;
  }
  .staff-interview__bubble {
    max-width: calc(100% - 70px);
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.75;
  }
  .staff-interview__name {
    margin-bottom: 9px;
  }
  .staff-interview dd .staff-interview__bubble {
    max-width: calc(100% - 70px);
  }
  .staff-interview__bubble .staff-interview__emphasis {
    letter-spacing: -0.04em;
  }
  .social-layout {
    gap: 0;
  }
  .social-intro {
    display: block;
  }
  .social-intro__catch {
    margin-bottom: 28px;
    font-size: 54px;
  }
  .social-feed {
    gap: 4px;
  }
  .social-feed span {
    display: none;
  }
  .access-info h3 {
    font-size: 64px;
  }
  .access-info address {
    font-size: 16px;
  }
  .access-info li {
    grid-template-columns: 95px 1fr;
    font-size: 12px;
  }
  .access-info__buttons {
    display: grid;
  }
  .access-info__buttons .button {
    width: 100%;
  }
  .map {
    min-height: 110vw;
    border-width: 5px;
  }
  .map iframe {
    min-height: calc(110vw - 10px);
  }
  .final-cta {
    min-height: 100vh;
    min-height: 100svh;
  }
  .final-cta__image {
    background-position: 58% center;
    background-attachment: fixed;
  }
  .final-cta h2 {
    font-size: clamp(35px, 10vw, 43px);
    line-height: 1.28;
  }
  .footer__top {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 18px;
  }
  .footer__nav {
    justify-content: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    padding: 18px;
  }
  .mobile-tel {
    position: fixed;
    z-index: 1100;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--black);
    background: var(--yellow);
    border-top: 2px solid var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  .mobile-tel.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-tel__icon {
    width: 19px;
    height: 19px;
  }
  .mobile-tel strong {
    font: 400 19px/1 "Archivo Black", sans-serif;
    letter-spacing: 0.04em;
  }
}
@media (hover: none) and (pointer: coarse) {
  .mobile-fixed-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
    background: center/cover no-repeat;
    transition: opacity 0.3s var(--ease);
  }
  .mobile-fixed-background--hero {
    background-image: url("../img/KV.jpg");
  }
  .mobile-fixed-background--cta {
    opacity: 0;
    background-image: url("../img/footerBG.jpg");
    background-position: 58% center;
  }
  body.is-final-cta-active .mobile-fixed-background--hero {
    opacity: 0;
  }
  body.is-final-cta-active .mobile-fixed-background--cta {
    opacity: 1;
  }
  main,
  .footer {
    position: relative;
    z-index: 1;
  }
  .hero__media,
  .final-cta__image {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__logo path,
  .hero__catch b {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero__logo-title::after {
    transform: translateX(-50%) scaleX(1);
  }
  .hero__eyebrow,
  .hero__lead,
  .hero__actions,
  .hero__guitar-icon {
    opacity: 1;
    transform: none;
  }
  .has-heading-animation .section-heading__char,
  .has-heading-animation .section-heading__ja {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .js-reveal {
    opacity: 1;
    transform: none;
  }
  .js-interview-reveal dt,
  .js-interview-reveal dd {
    opacity: 1;
    transform: none;
  }
  .js-mask-reveal span::after {
    transform: scaleX(0);
  }
  .js-enjoy-list .enjoy-card {
    opacity: 1;
    transform: none;
  }
}
