:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66645f;
  --paper: #f7f2ea;
  --white: #ffffff;
  --line: #ddd8cb;
  --sage: #4f6b5c;
  --clay: #a5523e;
  --gold: #b98e46;
  --shadow: 0 18px 44px rgba(38, 32, 24, 0.14);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(247, 242, 234, 0.82);
  border-bottom: 1px solid rgba(221, 216, 203, 0.58);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: #7b7b78;
  border-radius: 6px;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 68px));
  align-items: end;
  overflow: hidden;
  padding: clamp(32px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.78), rgba(13, 12, 10, 0.34) 52%, rgba(13, 12, 10, 0.12)),
    linear-gradient(0deg, rgba(13, 12, 10, 0.44), rgba(13, 12, 10, 0.06) 42%),
    url("assets/hero-wide.png");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fffaf0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  color: #e8c77c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 9rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 860px;
}

.hero-title {
  color: #fffaf0;
  text-shadow: 0 0 18px rgba(255, 250, 240, 0.16);
}

.hero-title.neon-animate {
  background: linear-gradient(90deg, #fff36f, #ff4fd8, #43e7ff, #8bff8f, #fff36f);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: neonTitle 2600ms ease-out both;
}

@keyframes neonTitle {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    background-position: 0% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 8px rgba(255, 79, 216, 0.82),
      0 0 20px rgba(67, 231, 255, 0.5),
      0 0 34px rgba(255, 243, 111, 0.34);
    filter: blur(2px) brightness(1.08);
  }

  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) brightness(1.24);
  }

  48% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 100% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 10px rgba(67, 231, 255, 0.9),
      0 0 24px rgba(255, 79, 216, 0.46),
      0 0 42px rgba(139, 255, 143, 0.34);
    filter: brightness(1.34);
  }

  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background-position: 42% 50%;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow:
      0 0 7px rgba(255, 243, 111, 0.72),
      0 0 18px rgba(255, 250, 240, 0.52);
    filter: brightness(1.14);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #fffaf0;
    -webkit-text-fill-color: #fffaf0;
    text-shadow: 0 0 18px rgba(255, 250, 240, 0.16);
    filter: brightness(1);
  }
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy p:not(.kicker),
.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-socials a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.18);
}

.hero-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-socials a:nth-child(2) svg,
.hero-socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(38, 32, 24, 0.16);
}

.primary {
  background: var(--ink);
  color: var(--paper);
}

.secondary {
  background: transparent;
}

.hero .secondary {
  border-color: rgba(255, 250, 240, 0.82);
  color: #fffaf0;
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 54px);
  z-index: 1;
  display: grid;
  gap: 9px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.86rem;
  text-align: right;
  text-transform: uppercase;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.service-rail span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 720;
}

.service-rail span:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(54px, 9vw, 96px);
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.compact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 14px;
}

.compact .kicker,
.compact h2 {
  grid-column: 1;
}

.clear-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--muted);
  padding: 7px 12px;
  cursor: pointer;
  font-weight: 700;
}

.clear-button:hover,
.clear-button:focus-visible {
  border-color: var(--clay);
  color: var(--ink);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 6px 14px;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.work-card {
  min-width: 0;
}

.work-card:nth-child(1),
.work-card:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card:nth-child(4) {
  grid-column: span 2;
}

.work-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(6)) {
  grid-column: span 1;
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(38, 32, 24, 0.1);
}

.work-card p {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.work-card:nth-child(4) img {
  aspect-ratio: 2 / 1;
}

.instagram-section {
  background: #fffaf0;
  border-block: 1px solid var(--line);
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.instagram-copy {
  position: sticky;
  top: 92px;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sns-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 11px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sns-list a:hover,
.sns-list a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--sage);
  box-shadow: 0 10px 22px rgba(38, 32, 24, 0.08);
}

.sns-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sns-list a:nth-child(2) svg,
.sns-list a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.sns-list span {
  font-size: 0.86rem;
  font-weight: 760;
}

.sns-list small {
  display: none;
}

.instagram-embed {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 199, 124, 0.18), rgba(79, 107, 92, 0.08)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(38, 32, 24, 0.08);
}

.instagram-embed iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #ffffff;
}

.video-section {
  background: #151515;
  color: #fffaf0;
}

.career-content[hidden] {
  display: none;
}

.career-lock {
  max-width: 560px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  padding: clamp(22px, 4vw, 34px);
}

.career-lock .kicker {
  color: #e8c77c;
}

.career-lock p:not(.kicker) {
  color: rgba(255, 250, 240, 0.72);
}

.career-lock-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.career-lock-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.9rem;
  font-weight: 760;
}

.career-lock-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  padding: 10px 13px;
}

.career-lock-form input:focus {
  border-color: #e8c77c;
  outline: 3px solid rgba(232, 199, 124, 0.18);
}

.career-lock-contact {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  padding-top: 18px;
}

.career-lock-contact span {
  width: fit-content;
  border: 1px solid rgba(232, 199, 124, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 250, 240, 0.88);
  background: rgba(232, 199, 124, 0.08);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.career-lock-contact a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e8c77c;
  border-radius: 999px;
  padding: 12px 18px;
  color: #111111;
  background: #e8c77c;
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.career-lock-contact a:hover,
.career-lock-contact a:focus-visible {
  transform: translateY(-2px);
  background: #f5d98f;
}

.career-lock-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #e8c77c;
  font-weight: 760;
}

.video-heading {
  align-items: start;
}

.video-heading .kicker {
  color: #e8c77c;
}

.video-heading h2 {
  margin-bottom: 0;
}

.section-note {
  max-width: 360px;
  margin: 4px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.98rem;
}

.video-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.video-tools[hidden],
.video-grid[hidden] {
  display: none;
}

.media-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  padding: 5px;
}

.media-tab {
  min-width: 92px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 250, 240, 0.74);
  cursor: pointer;
  font-weight: 780;
}

.media-tab.active {
  background: #e8c77c;
  color: #151515;
}

.video-search {
  display: block;
}

.video-search input {
  width: min(520px, 100%);
  min-height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  padding: 10px 13px;
}

.video-search input:focus {
  border-color: #e8c77c;
  outline: 3px solid rgba(232, 199, 124, 0.18);
}

.genre-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 148px;
  overflow: auto;
  padding-right: 4px;
}

.genre-button {
  min-height: 34px;
  border: 1px solid rgba(255, 250, 240, 0.17);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.06);
  color: rgba(255, 250, 240, 0.76);
  cursor: pointer;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 720;
}

.genre-button.active {
  border-color: #e8c77c;
  background: #e8c77c;
  color: #151515;
}

.video-count {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.9rem;
}

.video-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  color: rgba(255, 250, 240, 0.72);
  padding: 24px;
}

.portfolio-pending {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  color: rgba(255, 250, 240, 0.72);
  padding: 32px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid[hidden] {
  display: none;
}

.photo-portfolio-intro {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 2px;
}

.photo-portfolio-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  color: #e8c77c;
  font-size: 0.78rem;
  font-weight: 760;
}

.photo-portfolio-intro h3 {
  color: #fffaf0;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.photo-portfolio-intro p {
  color: rgba(255, 250, 240, 0.66);
}

.photo-category-tabs {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #20201f;
}

.photo-card.wide {
  grid-column: span 1;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.photo-card:nth-child(2n) img {
  aspect-ratio: 16 / 10;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #20201f;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0c0c0c;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0c0c0c;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.64);
  color: #fffaf0;
  font-size: 1.15rem;
  transform: translate(-50%, -50%);
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.video-card div {
  padding: 14px 15px 16px;
}

.video-card span {
  display: block;
  margin-bottom: 4px;
  color: #fffaf0;
  font-weight: 780;
}

.video-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.9rem;
}

.video-card.wide {
  grid-column: span 2;
}

.band {
  background: #e9eee9;
  border-block: 1px solid #d3ddd3;
}

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

.service-list {
  padding: 20px;
  border: 1px solid rgba(79, 107, 92, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.service-media {
  overflow: hidden;
  margin: 18px -10px -10px;
  border-radius: 8px;
  background: #151515;
}

.service-media video,
.service-media img,
.service-media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.service-media video {
  background: #151515;
}

.service-list h3 {
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 1.35rem;
}

.service-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
}

.booking-grid,
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  justify-content: center;
}

.booking-panel,
.booking-form,
.inquiry-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(38, 32, 24, 0.08);
}

.booking-panel,
.booking-form {
  padding: clamp(18px, 3vw, 28px);
}

.date-list {
  display: grid;
  gap: 10px;
}

.date-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
}

.date-chip strong {
  display: block;
}

.date-chip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.category-field {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.date-field {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.category-field legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.date-field legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.booking-form .undecided-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form .undecided-option input {
  width: auto;
  margin: 0;
  accent-color: var(--sage);
}

.date-options {
  display: grid;
  gap: 10px;
}

.date-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.date-option label {
  display: grid;
  gap: 6px;
}

.date-remove-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--muted);
  cursor: pointer;
  padding: 7px 12px;
  font-weight: 760;
}

.date-remove-button:hover,
.date-remove-button:focus-visible {
  border-color: var(--clay);
  color: var(--ink);
}

.date-add-button {
  width: fit-content;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  padding: 7px 12px;
  font-weight: 760;
}

.date-add-button:hover,
.date-add-button:focus-visible {
  border-color: var(--sage);
}

.request-tabs {
  display: inline-flex;
  gap: 6px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 5px;
}

.request-tab {
  min-width: 82px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 760;
}

.request-tab.active {
  background: var(--ink);
  color: var(--paper);
}

.category-panels {
  min-height: 246px;
}

.category-group {
  display: grid;
  gap: 8px;
}

.category-group[hidden] {
  display: none;
}

.category-group p {
  margin: 0 0 2px;
  color: var(--ink);
  font-weight: 780;
}

.category-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.booking-form .category-group input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--sage);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 12px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(79, 107, 92, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.inquiry-section {
  padding-top: 0;
}

.inquiry-list {
  min-height: 92px;
  padding: 8px;
}

.inquiry-item {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.inquiry-item:last-child {
  border-bottom: 0;
}

.inquiry-item strong {
  font-size: 1rem;
}

.inquiry-item span,
.empty-state {
  color: var(--muted);
  font-size: 0.92rem;
}

.empty-state {
  margin: 0;
  padding: 18px;
}

@media (max-width: 940px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(4),
  .work-card:nth-child(6),
  .work-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(6)) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-lists {
    grid-template-columns: 1fr;
  }

  .instagram-layout {
    grid-template-columns: 1fr;
  }

  .instagram-copy {
    position: static;
  }

  .service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .video-card.wide {
    grid-column: span 2;
  }

  .photo-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 610px;
    background:
      linear-gradient(90deg, rgba(13, 12, 10, 0.78), rgba(13, 12, 10, 0.26) 58%, rgba(13, 12, 10, 0.08)),
      linear-gradient(0deg, rgba(13, 12, 10, 0.46), rgba(13, 12, 10, 0.08) 48%),
      url("assets/hero-mobile.png");
    background-position: center;
    background-size: cover;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-socials {
    gap: 8px;
  }

  .hero-socials a {
    flex: 1 1 150px;
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .photo-card.wide {
    grid-column: span 1;
  }

  .service-rail {
    grid-template-columns: 1fr;
  }

  .request-tabs {
    width: 100%;
  }

  .request-tab {
    flex: 1;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card.wide {
    grid-column: span 1;
  }

  .hero-meta {
    position: static;
    margin-top: 28px;
    text-align: left;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .compact {
    display: block;
  }

  .clear-button {
    margin-top: 6px;
  }
}

.portal-page,
.music-page {
  background: #070707;
  color: #f7f2ea;
}

.welcome-screen {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 28% 44%, rgba(255, 255, 255, 0.11), transparent 24%),
    radial-gradient(circle at 72% 52%, rgba(255, 244, 92, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 46%, rgba(255, 244, 92, 0.055)),
    #070707;
}

.welcome-screen::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 42%, rgba(0, 0, 0, 0.62));
  content: "";
}

.welcome-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.welcome-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  text-align: center;
}

.welcome-kicker,
.cinema-kicker,
.cinema-heading p {
  margin: 0 0 12px;
  color: rgba(232, 199, 124, 0.86);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-inner h1 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.welcome-inner h1 span {
  color: rgba(232, 199, 124, 0.78);
}

.welcome-lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.welcome-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.welcome-actions::before {
  display: none;
}

.welcome-card {
  position: relative;
  display: grid;
  grid-template-rows: clamp(190px, 26vw, 300px) auto auto auto;
  min-height: clamp(430px, 74vh, 680px);
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 54px);
  background: rgba(255, 250, 240, 0.055);
  text-align: center;
  overflow: hidden;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  animation: portalCardIn 760ms ease both;
}

.welcome-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  content: "";
  pointer-events: none;
}

.welcome-card::after {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 250, 240, 0.18) 48%, transparent 60% 100%);
  transform: translateX(-26%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
  content: "";
  pointer-events: none;
}

.welcome-card:nth-child(2) {
  animation-delay: 90ms;
}

.welcome-card:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes portalCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.music-card::before {
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 54%);
}

.visual-card::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 244, 92, 0.22), transparent 31%),
    linear-gradient(180deg, rgba(255, 244, 92, 0.08), transparent 54%);
}

.ryon-card::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.11), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 12px);
}

.welcome-card:hover,
.welcome-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 199, 124, 0.7);
  background: rgba(255, 250, 240, 0.09);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.34);
}

.welcome-card:hover::after,
.welcome-card:focus-visible::after {
  opacity: 1;
  transform: translateX(28%);
}

.welcome-logo-wrap {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: grid;
  width: min(100%, 340px);
  height: 100%;
  place-items: center;
  margin-bottom: clamp(8px, 1.4vw, 18px);
}

.welcome-logo-wrap img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ryota-logo-wrap {
  width: min(100%, 390px);
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.36));
}

.ryota-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.neon-logo-wrap {
  width: min(100%, 250px);
  height: 100%;
  filter: drop-shadow(0 0 26px rgba(255, 244, 92, 0.22));
}

.ryon-logo-wrap {
  width: min(100%, 246px);
  height: 100%;
  filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.32));
}

.ryon-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.welcome-actions span {
  position: relative;
  z-index: 1;
  color: #e8c77c;
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.welcome-actions strong {
  position: relative;
  z-index: 1;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  min-height: 1.08em;
  display: grid;
  place-items: center;
}

.welcome-actions small {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 240, 0.58);
  min-height: 1.2em;
  display: grid;
  place-items: center;
}

.thanks-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 28%, rgba(232, 199, 124, 0.16), transparent 30%),
    #070707;
}

.thanks-panel {
  width: min(780px, 100%);
  text-align: center;
}

.thanks-panel h1 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
}

.thanks-panel > p:not(.welcome-kicker) {
  color: rgba(255, 250, 240, 0.68);
}

.thanks-actions {
  max-width: 680px;
}

.thanks-actions .welcome-card {
  min-height: 170px;
}

.portfolio-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(16px);
}

.portfolio-brand {
  color: #fffaf0;
  font-size: 0.9rem;
  font-weight: 760;
}

.portfolio-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.4vw, 26px);
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.92rem;
}

.portfolio-nav a:hover,
.portfolio-nav a:focus-visible {
  color: #fffaf0;
}

.music-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 6vw, 80px);
  min-height: min(820px, calc(100svh - 68px));
  align-items: end;
  padding: clamp(72px, 12vw, 150px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 72% 22%, rgba(232, 199, 124, 0.2), transparent 26%),
    radial-gradient(circle at 28% 78%, rgba(165, 82, 62, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.72)),
    #070707;
}

.music-hero-copy,
.cinema-section {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.music-hero-copy {
  width: 100%;
}

.music-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9vw, 9.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.86;
}

.music-hero p:not(.cinema-kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.music-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.music-visual {
  position: relative;
  min-height: clamp(280px, 42vw, 560px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.12), transparent 34%),
    radial-gradient(circle at 50% 18%, rgba(232, 199, 124, 0.44), transparent 24%),
    #10100f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.music-visual::before,
.music-visual::after {
  position: absolute;
  content: "";
}

.music-visual::before {
  inset: 18%;
  border: 1px solid rgba(232, 199, 124, 0.22);
  border-radius: 999px;
  filter: blur(0.2px);
}

.music-visual::after {
  left: 12%;
  right: 12%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.8), transparent);
}

.music-visual span {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 1px;
  height: 58%;
  transform-origin: bottom;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.9), transparent);
  opacity: 0.44;
}

.music-visual span:nth-child(1) {
  transform: rotate(-18deg);
}

.music-visual span:nth-child(2) {
  transform: rotate(0deg);
}

.music-visual span:nth-child(3) {
  transform: rotate(18deg);
}

.music-visual span:nth-of-type(1) {
  transform: rotate(-18deg);
}

.music-visual span:nth-of-type(2) {
  transform: rotate(0deg);
}

.music-visual span:nth-of-type(3) {
  transform: rotate(18deg);
}

.cinema-section {
  padding: clamp(68px, 10vw, 120px) 0;
}

.cinema-heading {
  margin-bottom: 28px;
}

.cinema-heading h2 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.cinema-text,
.lesson-copy,
.lesson-list,
.contact-panel > p {
  max-width: 760px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 1.04rem;
}

.profile-layout,
.lesson-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.profile-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding: 15px 0;
}

.profile-facts dt {
  color: #e8c77c;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
}

.dark-panel {
  width: min(1120px, calc(100% - 40px));
  border-block: 1px solid rgba(255, 250, 240, 0.12);
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cinema-grid article {
  min-height: 210px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  padding: 22px;
}

.cinema-grid span {
  color: #e8c77c;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.cinema-grid h3 {
  margin: 20px 0 10px;
  color: #fffaf0;
  font-size: 1.25rem;
}

.cinema-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

.music-work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.music-work-list p {
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.88rem;
}

.lesson-list {
  display: grid;
  gap: 10px;
}

.lesson-list p {
  margin: 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding-bottom: 10px;
}

.production-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.production-list article {
  border-top: 1px solid rgba(232, 199, 124, 0.4);
  padding-top: 18px;
}

.production-list h3 {
  margin: 0 0 8px;
  color: #fffaf0;
  font-size: 1.12rem;
}

.production-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

.contact-panel {
  padding-bottom: clamp(90px, 12vw, 150px);
}

.cinema-button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 24px;
  border: 1px solid rgba(232, 199, 124, 0.52);
  border-radius: 999px;
  padding: 0 18px;
  color: #151515;
  background: #e8c77c;
  font-weight: 780;
}

.cinema-button.ghost {
  color: #fffaf0;
  background: transparent;
}

@media (max-width: 760px) {
  .welcome-actions,
  .cinema-grid,
  .music-hero,
  .profile-layout,
  .lesson-layout,
  .production-list {
    grid-template-columns: 1fr;
  }

  .welcome-actions::before {
    display: none;
  }

  .welcome-card {
    min-height: 360px;
  }

  .ryon-header {
    align-items: flex-start;
  }

  .ryon-brand {
    width: 62px;
    height: 38px;
  }

  .ryon-nav {
    max-width: 270px;
    gap: 10px 14px;
    font-size: 0.68rem;
  }

  .ryon-hero {
    min-height: 94svh;
    padding-top: 96px;
  }

  .ryon-hero-mark {
    top: 19%;
    right: -38%;
    width: 120vw;
  }

  .ryon-concept-grid,
  .ryon-product-stage,
  .ryon-drop-grid {
    grid-template-columns: 1fr;
  }

  .ryon-product-stage {
    min-height: auto;
  }

  .ryon-look-label {
    display: grid;
  }

  .ryon-look-label span {
    text-align: left;
  }

  .ryon-look-slide img {
    aspect-ratio: 4 / 5;
  }

  .ryon-look-controls {
    right: 10px;
    bottom: 10px;
  }

  .ryon-store-mosaic {
    grid-template-columns: 1fr;
  }

  .ryon-store-media-phone {
    margin-top: 0;
  }

  .ryon-store-media-wide {
    width: 100%;
  }

  .ryon-product-copy {
    position: static;
    padding-top: 0;
  }

  .ryon-embed-grid {
    grid-template-columns: 1fr;
  }

  .ryon-drop-grid article {
    min-height: 210px;
  }

  .portfolio-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-nav {
    width: 100%;
  }

  .music-visual {
    min-height: 260px;
  }
}

/* Ryota Iwakoshi: monochrome artist direction */
.music-page {
  background: #f6f4ef;
  color: #111111;
}

.music-page .portfolio-header {
  position: sticky;
  border-bottom-color: rgba(17, 17, 17, 0.12);
  background: rgba(246, 244, 239, 0.78);
  overflow: hidden;
}

.music-page .portfolio-header::after {
  position: absolute;
  top: 18px;
  right: clamp(170px, 25vw, 380px);
  left: clamp(210px, 24vw, 320px);
  height: 30px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent 0 12px,
      rgba(17, 17, 17, 0.22) 12px 18px,
      transparent 18px 40px,
      rgba(17, 17, 17, 0.18) 40px 46px,
      transparent 46px 68px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.12) 0 1px,
      transparent 1px 26px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(17, 17, 17, 0.04));
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.music-page .portfolio-brand,
.music-page .portfolio-nav {
  position: relative;
  z-index: 1;
}

.music-page .portfolio-brand {
  color: #111111;
}

.music-page .music-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.music-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 6px;
  background: #111111;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.1);
}

.music-brand-mark img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.18) brightness(0.92);
}

.music-page .music-profile {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 68px);
  display: grid;
  align-content: end;
  padding: clamp(110px, 16vw, 170px) 0 clamp(64px, 9vw, 100px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 46%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08) 58%),
    url("ryotaiwakoshi/assets/ryota-hero.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fffaf0;
}

.music-page .music-profile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.52));
  content: "";
  pointer-events: none;
}

.music-page .music-profile > * {
  position: relative;
  z-index: 1;
}

.music-page .music-profile .cinema-heading {
  width: min(1020px, calc(100% - 56px));
  margin-inline: auto;
}

.music-page .music-profile .cinema-heading p,
.music-page .music-profile .artist-profile-lead h1,
.music-page .music-profile .artist-profile-lead h2,
.music-page .music-profile .artist-profile-lead strong {
  color: #fffaf0;
}

.music-page .music-profile .artist-profile-lead p {
  color: rgba(255, 250, 240, 0.74);
}

.artist-profile-detail {
  display: grid;
  width: min(1020px, calc(100% - 56px));
  margin-inline: auto;
  grid-template-columns: minmax(230px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 4.4vw, 62px);
  align-items: start;
}

.artist-profile-lead {
  position: sticky;
  top: 96px;
}

.artist-profile-lead h1,
.artist-profile-lead h2 {
  margin: 0;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.artist-profile-lead strong {
  display: block;
  margin-top: 18px;
  color: #111111;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 820;
  line-height: 1.25;
  white-space: nowrap;
}

.artist-profile-lead p {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-weight: 760;
}

.profile-mini-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.profile-mini-socials a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  padding: 6px 12px 6px 7px;
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 820;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.profile-mini-socials a:hover,
.profile-mini-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.36);
  background: #ffffff;
}

.mini-social-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #111111;
  color: #f6f4ef;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.mini-instagram {
  background: linear-gradient(135deg, #ffcc70, #c850c0 46%, #4158d0);
}

.mini-twitcasting {
  background: #111111;
}

.mini-twitcasting img {
  display: block;
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.mini-letter {
  overflow: hidden;
  background: #ffffff;
  color: #111111;
}

.mini-letter img {
  display: block;
  width: 88%;
  height: 88%;
  border-radius: 999px;
  object-fit: cover;
}

.mini-mail {
  background: linear-gradient(135deg, #111111, #777777);
}

.artist-profile-timeline {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(14px);
}

.artist-profile-timeline details {
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding: 0;
}

.artist-profile-timeline details:last-child {
  border-bottom: 0;
}

.artist-profile-timeline summary {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: clamp(14px, 3vw, 28px);
  align-items: baseline;
  padding: 16px 18px;
  color: #fffaf0;
  cursor: pointer;
  font-weight: 820;
  list-style: none;
}

.artist-profile-timeline summary::-webkit-details-marker {
  display: none;
}

.artist-profile-timeline summary::after {
  grid-column: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-top: -28px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.64);
  content: "+";
}

.artist-profile-timeline details[open] summary::after {
  content: "-";
}

.artist-profile-timeline span {
  color: #fffaf0;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.artist-profile-timeline p {
  margin: 0 18px 0 96px;
  padding: 0 0 14px clamp(14px, 3vw, 28px);
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.9;
}

.artist-profile-timeline p + p {
  margin-top: 10px;
}

.artist-profile-summary {
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.artist-profile-summary .profile-summary-label {
  margin: 0;
  padding: 0;
  color: rgba(255, 250, 240, 0.54);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.artist-profile-summary p {
  margin: 0;
  padding: 0;
  color: rgba(255, 250, 240, 0.8);
  line-height: 1.95;
}

.artist-profile-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.artist-profile-summary li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 250, 240, 0.86);
  line-height: 1.8;
}

.artist-profile-summary li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fffaf0;
  content: "";
}

.profile-more {
  display: grid;
  gap: 18px;
}

.profile-more summary {
  width: fit-content;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 250, 240, 0.78);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  list-style: none;
}

.profile-more summary::-webkit-details-marker {
  display: none;
}

.profile-more summary::after {
  content: " +";
}

.profile-more[open] summary::after {
  content: " -";
}

.music-page .portfolio-nav {
  color: rgba(17, 17, 17, 0.58);
}

.music-page .portfolio-nav a:hover,
.music-page .portfolio-nav a:focus-visible {
  color: #111111;
}

.ryon-page {
  min-height: 100svh;
  background: #050505;
  color: #f6f4ef;
  font-family: "Hiragino Sans", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ryon-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0));
}

.ryon-brand {
  display: grid;
  width: 74px;
  height: 46px;
  place-items: center;
}

.ryon-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ryon-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(246, 244, 239, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ryon-nav a:hover,
.ryon-nav a:focus-visible {
  color: #f6f4ef;
}

.ryon-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(246, 244, 239, 0.14);
  padding: 22px clamp(20px, 6vw, 86px);
  background: #050505;
  color: rgba(246, 244, 239, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ryon-footer a:hover,
.ryon-footer a:focus-visible {
  color: #f6f4ef;
}

.ryon-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 6vw, 84px) clamp(34px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.42) 45%, rgba(5, 5, 5, 0.68)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.16) 44%, rgba(5, 5, 5, 0.34)),
    url("ryon/assets/ryon-hero-bg.png"),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px),
    #050505;
  background-position: center;
  background-size: cover;
}

.ryon-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.08), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  opacity: 0.3;
  content: "";
}

.ryon-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, #050505, rgba(5, 5, 5, 0));
  content: "";
}

.ryon-hero-mark {
  position: absolute;
  top: 11%;
  right: clamp(-120px, -8vw, -30px);
  width: min(72vw, 900px);
  opacity: 0.2;
  filter: blur(0.2px) drop-shadow(0 0 60px rgba(255, 255, 255, 0.22));
}

.ryon-hero-mark img {
  display: block;
  width: 100%;
}

.ryon-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.ryon-hero-copy p,
.ryon-section-heading p,
.ryon-product-copy p {
  margin: 0;
  color: rgba(246, 244, 239, 0.56);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ryon-hero-copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.78) 36%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.68) 60%, rgba(255, 255, 255, 0.42) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: ryonTitleShine 8s ease-in-out infinite;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.2rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.08),
    0 0 62px rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
}

@keyframes ryonTitleShine {
  0%,
  100% {
    background-position: 0% 50%;
    filter: brightness(0.82);
  }

  44% {
    background-position: 72% 50%;
    filter: brightness(1);
  }

  58% {
    background-position: 100% 50%;
    filter: brightness(1.18);
  }
}

.ryon-hero-copy span {
  max-width: 520px;
  color: rgba(246, 244, 239, 0.82);
  font-size: clamp(1rem, 2vw, 1.28rem);
  letter-spacing: 0.08em;
}

.ryon-section {
  padding: clamp(64px, 10vw, 130px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 38%),
    #050505;
}

.ryon-section-heading {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.ryon-section-heading h2,
.ryon-product-copy h2 {
  margin: 0;
  color: #f6f4ef;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 5.4rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.94;
}

.ryon-concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  border-top: 1px solid rgba(246, 244, 239, 0.18);
  padding-top: clamp(24px, 4vw, 42px);
}

.ryon-concept-copy {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.ryon-concept-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(246, 244, 239, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 2.1;
}

.ryon-concept-copy p[lang="en"] {
  max-width: 820px;
  color: rgba(246, 244, 239, 0.48);
  font-size: clamp(0.9rem, 1.3vw, 1.02rem);
  line-height: 1.9;
}

.ryon-keywords {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(246, 244, 239, 0.18);
}

.ryon-keywords span {
  min-height: 86px;
  display: grid;
  place-items: center;
  background: #080808;
  color: rgba(246, 244, 239, 0.84);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ryon-store {
  padding-top: 0;
}

.ryon-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  min-height: 72svh;
  border: 1px solid rgba(246, 244, 239, 0.14);
  padding: clamp(16px, 3vw, 44px);
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    #080808;
}

.ryon-store-gallery {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.ryon-look-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(246, 244, 239, 0.12);
  padding-bottom: 16px;
}

.ryon-look-label p {
  margin: 0;
  color: #f6f4ef;
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  font-weight: 820;
  line-height: 0.95;
}

.ryon-look-label span {
  max-width: 280px;
  color: rgba(246, 244, 239, 0.48);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.ryon-look-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 239, 0.18);
  background: #090909;
}

.ryon-look-slide {
  display: none;
}

.ryon-look-slide.active {
  display: block;
}

.ryon-look-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.94;
}

.ryon-look-controls {
  position: absolute;
  right: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(246, 244, 239, 0.14);
  border-radius: 999px;
  padding: 7px;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(12px);
}

.ryon-look-arrow,
.ryon-look-dot {
  display: grid;
  place-items: center;
  border: 0;
  color: #f6f4ef;
  background: transparent;
  cursor: pointer;
}

.ryon-look-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.ryon-look-arrow:hover,
.ryon-look-arrow:focus-visible {
  background: rgba(246, 244, 239, 0.12);
}

.ryon-look-dots {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.ryon-look-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  background: rgba(246, 244, 239, 0.32);
}

.ryon-look-dot.active {
  background: #f6f4ef;
}

.ryon-store-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.ryon-lineup-media {
  overflow: hidden;
  border: 1px solid rgba(246, 244, 239, 0.12);
  background: #090909;
}

.ryon-lineup-media img {
  display: block;
  width: 100%;
  height: auto;
}

.ryon-store-media {
  border-color: rgba(246, 244, 239, 0.15);
  opacity: 0.92;
}

.ryon-store-media-hero {
  width: min(100%, 1040px);
  border-color: rgba(246, 244, 239, 0.2);
  opacity: 0.96;
}

.ryon-store-media-phone {
  margin-top: clamp(18px, 4vw, 44px);
}

.ryon-store-media-wide {
  grid-column: 1 / -1;
  width: min(86%, 900px);
  margin-left: auto;
}

.ryon-product-copy {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding-top: clamp(4px, 3vw, 32px);
}

.ryon-product-copy span {
  max-width: 620px;
  color: rgba(246, 244, 239, 0.7);
  line-height: 2;
}

.ryon-shop-lineup {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
  margin-top: clamp(44px, 7vw, 94px);
  border-top: 1px solid rgba(246, 244, 239, 0.16);
  padding-top: clamp(30px, 5vw, 58px);
}

.ryon-lineup-heading {
  display: grid;
  gap: 10px;
}

.ryon-lineup-heading p,
.ryon-lineup-category h4 {
  margin: 0;
  color: rgba(246, 244, 239, 0.52);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ryon-lineup-heading h3 {
  margin: 0;
  color: #f6f4ef;
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.ryon-lineup-heading a {
  width: fit-content;
  color: rgba(246, 244, 239, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ryon-lineup-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid rgba(246, 244, 239, 0.12);
  padding-bottom: clamp(14px, 2vw, 20px);
}

.ryon-lineup-tab {
  min-height: 42px;
  border: 1px solid rgba(246, 244, 239, 0.18);
  border-radius: 999px;
  padding: 10px 15px;
  color: rgba(246, 244, 239, 0.58);
  background: rgba(246, 244, 239, 0.03);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.ryon-lineup-tab:hover,
.ryon-lineup-tab:focus-visible,
.ryon-lineup-tab.active {
  border-color: rgba(246, 244, 239, 0.7);
  color: #050505;
  background: #f6f4ef;
}

.ryon-lineup-category {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.ryon-lineup-category[hidden] {
  display: none;
}

.ryon-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.ryon-product-card {
  overflow: hidden;
  border: 1px solid rgba(246, 244, 239, 0.12);
  background:
    linear-gradient(135deg, rgba(246, 244, 239, 0.08), transparent 58%),
    #101010;
}

.ryon-product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 244, 239, 0.08);
  background: #0b0b0b;
}

.ryon-product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.ryon-product-card:hover .ryon-product-thumb img {
  transform: scale(1.035);
}

.ryon-product-card-body {
  display: grid;
  min-height: 138px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
}

.ryon-product-card p {
  margin: 0;
  color: rgba(246, 244, 239, 0.42);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.ryon-product-card h5 {
  margin: 0;
  color: #f6f4ef;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ryon-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ryon-product-actions button,
.ryon-product-actions a {
  min-height: 34px;
  border: 1px solid rgba(246, 244, 239, 0.18);
  padding: 8px 11px;
  color: rgba(246, 244, 239, 0.72);
  background: rgba(246, 244, 239, 0.03);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.ryon-product-actions button:hover,
.ryon-product-actions button:focus-visible,
.ryon-product-actions a:hover,
.ryon-product-actions a:focus-visible {
  color: #050505;
  background: #f6f4ef;
}

.ryon-product-preview {
  display: block;
  width: 100%;
  height: 162px;
  border: 0;
  border-top: 1px solid rgba(246, 244, 239, 0.12);
  background: #111;
}

.ryon-button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 244, 239, 0.78);
  padding: 12px 18px;
  color: #050505;
  background: #f6f4ef;
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ryon-drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(246, 244, 239, 0.16);
}

.ryon-drop-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(20px, 4vw, 38px);
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035)),
    #080808;
}

.ryon-drop-grid span {
  color: rgba(246, 244, 239, 0.4);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.ryon-drop-grid h3 {
  margin: 0;
  color: #f6f4ef;
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.ryon-drop-grid p {
  margin: 0;
  color: rgba(246, 244, 239, 0.66);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .welcome-actions {
    grid-template-columns: 1fr;
  }

  .welcome-card {
    min-height: 310px;
  }

  .ryon-header {
    align-items: flex-start;
  }

  .ryon-brand {
    width: 62px;
    height: 38px;
  }

  .ryon-nav {
    max-width: 270px;
    gap: 10px 14px;
    font-size: 0.68rem;
  }

  .ryon-hero {
    min-height: 94svh;
    padding-top: 96px;
  }

  .ryon-hero-mark {
    top: 19%;
    right: -38%;
    width: 120vw;
  }

  .ryon-concept-grid,
  .ryon-product-stage,
  .ryon-drop-grid {
    grid-template-columns: 1fr;
  }

  .ryon-product-stage {
    min-height: auto;
  }

  .ryon-look-label {
    display: grid;
  }

  .ryon-look-label span {
    text-align: left;
  }

  .ryon-drop-grid article {
    min-height: 210px;
  }
}

.welcome-card .ryon-logo-wrap {
  height: 100%;
  margin-bottom: clamp(8px, 1.4vw, 18px);
}

.music-page .cinema-kicker,
.music-page .cinema-heading p {
  color: rgba(17, 17, 17, 0.56);
}

.music-page .music-hero {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.98), rgba(246, 244, 239, 0.88) 56%, rgba(246, 244, 239, 0.58)),
    radial-gradient(circle at 74% 30%, rgba(17, 17, 17, 0.14), transparent 26%),
    #f6f4ef;
}

.music-page .music-hero h1,
.music-page .cinema-heading h2,
.music-page .cinema-grid h3,
.music-page .production-list h3 {
  color: #111111;
}

.music-page .music-hero p:not(.cinema-kicker),
.music-page .cinema-text,
.music-page .lesson-copy,
.music-page .lesson-list,
.music-page .contact-panel > p,
.music-page .cinema-grid p,
.music-page .production-list p {
  color: rgba(17, 17, 17, 0.66);
}

.music-page .music-visual {
  border-color: rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #323332, #151515);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
}

.music-page .music-visual::before {
  border-color: rgba(17, 17, 17, 0.2);
}

.music-page .music-visual::after {
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.72), transparent);
}

.music-page .music-visual span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent);
}

.music-page .profile-facts {
  border-top-color: rgba(17, 17, 17, 0.14);
}

.music-page .profile-facts div,
.music-page .lesson-list p {
  border-bottom-color: rgba(17, 17, 17, 0.14);
}

.music-page .profile-facts dt,
.music-page .cinema-grid span,
.music-page .music-work-list p,
.music-page .request-service-grid span,
.music-page .selected-credit-list span {
  color: rgba(17, 17, 17, 0.56);
}

.music-page .profile-facts dd {
  color: rgba(17, 17, 17, 0.78);
}

.music-page .dark-panel {
  border-block-color: rgba(17, 17, 17, 0.12);
}

.music-page .cinema-grid article,
.music-page .request-service-grid article,
.music-page .selected-credit-list article {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.works-browser {
  display: grid;
  gap: 22px;
}

.works-tools {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 68px;
  z-index: 4;
  margin-inline: -1px;
  border-block: 1px solid rgba(17, 17, 17, 0.12);
  padding: 12px 0;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(14px);
}

.works-search {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.works-search span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #111111;
  font: inherit;
  font-weight: 720;
  outline: none;
}

.works-search input:focus {
  border-color: #111111;
  background: #ffffff;
}

.artist-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.work-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-filter-panel {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.artist-filter-panel summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: rgba(17, 17, 17, 0.64);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-filter-panel summary::-webkit-details-marker {
  display: none;
}

.artist-filter-panel summary::after {
  content: "+";
  color: rgba(17, 17, 17, 0.62);
  font-size: 1rem;
  line-height: 1;
}

.artist-filter-panel[open] summary::after {
  content: "-";
}

.artist-filter-panel .artist-filter-tabs {
  flex-wrap: wrap;
  max-height: 190px;
  overflow-y: auto;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding: 12px;
}

.works-tools button,
.artist-filter-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: rgba(17, 17, 17, 0.58);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  white-space: nowrap;
}

.works-tools button.is-active,
.works-tools button:hover,
.works-tools button:focus-visible,
.artist-filter-tabs button.is-active,
.artist-filter-tabs button:hover,
.artist-filter-tabs button:focus-visible {
  border-color: #111111;
  background: #111111;
  color: #f6f4ef;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.works-more-button {
  display: flex;
  width: fit-content;
  justify-self: center;
  min-height: 44px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 840;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.works-more-button:hover,
.works-more-button:focus-visible {
  transform: translateY(-2px);
  border-color: #111111;
  background: #ffffff;
}

.works-more-button[hidden] {
  display: none;
}

.works-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(17, 17, 17, 0.62);
  font-weight: 760;
}

.work-detail-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 360px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .works-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-tags span {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  padding: 4px 9px;
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-detail-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.22;
}

.work-detail-lines {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-detail-lines li {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 8px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.work-detail-lines-primary li {
  border-top-color: rgba(17, 17, 17, 0.16);
  color: rgba(17, 17, 17, 0.78);
  font-weight: 780;
}

.work-detail-more {
  display: grid;
  gap: 10px;
}

.work-detail-more summary {
  width: fit-content;
  cursor: pointer;
  border-bottom: 1px solid rgba(17, 17, 17, 0.48);
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.82rem;
  font-weight: 840;
  list-style: none;
}

.work-detail-more summary::-webkit-details-marker {
  display: none;
}

.work-detail-more[open] summary {
  color: #111111;
}

.work-detail-more[open] summary::after {
  content: " / 閉じる";
  color: rgba(17, 17, 17, 0.44);
  font-weight: 760;
}

.work-youtube-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.youtube-preview {
  display: grid;
  gap: 7px;
}

.youtube-thumb,
.youtube-preview iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #111111;
}

.youtube-thumb {
  position: relative;
  display: block;
  padding: 0;
  cursor: pointer;
}

.youtube-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: opacity 180ms ease, transform 180ms ease;
}

.youtube-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(246, 244, 239, 0.8);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.58);
  color: #f6f4ef;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.youtube-thumb:hover img,
.youtube-thumb:focus-visible img {
  opacity: 1;
  transform: scale(1.03);
}

.youtube-preview iframe {
  display: block;
}

.youtube-preview > a {
  justify-self: start;
  border-bottom: 1px solid rgba(17, 17, 17, 0.62);
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.78rem;
  font-weight: 760;
}

.work-detail-card > a {
  align-self: end;
  justify-self: start;
  border-bottom: 1px solid #111111;
  color: #111111;
  font-size: 0.86rem;
  font-weight: 820;
}

.request-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.request-picker > a,
.request-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.request-picker a:hover,
.request-picker a:focus-visible,
.request-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.38);
  background: #ffffff;
}

.request-picker span {
  display: block;
  margin: 12px 8px 8px;
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.request-picker h3 {
  margin: 0 8px 10px;
  color: #111111;
  font-size: 1.16rem;
}

.request-picker p {
  margin: 0 8px 8px;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.72;
}

.request-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #111111;
}

.request-card-media + .request-card-media {
  margin-top: 8px;
}

.request-card-media img,
.request-card-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.request-card-link {
  justify-self: start;
  margin: 4px 8px 2px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.56);
  color: #111111;
  font-size: 0.8rem;
  font-weight: 820;
}

.hidden-field {
  display: none;
}

.music-request-form,
.music-mail-panel {
  display: grid;
  gap: 16px;
  justify-items: start;
  max-width: 860px;
  margin-top: 18px;
  padding: 0;
  background: transparent;
  border: 0;
}

.music-mail-panel p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 760;
}

.music-mail-panel small {
  color: rgba(17, 17, 17, 0.54);
  font-weight: 760;
}

.music-request-form label,
.music-request-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.88rem;
  font-weight: 780;
}

.music-request-form legend {
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.88rem;
  font-weight: 780;
}

.music-request-form input,
.music-request-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
  font: inherit;
  outline: none;
}

.music-request-form input:focus,
.music-request-form textarea:focus {
  border-color: rgba(17, 17, 17, 0.42);
  background: #ffffff;
}

.music-request-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.music-request-categories label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(246, 244, 239, 0.7);
}

.music-request-categories input {
  width: auto;
}

.music-submit {
  justify-self: start;
  cursor: pointer;
}

.voice-page {
  background: #080808;
  color: #fffaf0;
}

.voice-page .portfolio-header {
  background: rgba(8, 8, 8, 0.82);
  border-bottom-color: rgba(232, 199, 124, 0.16);
}

.voice-page .portfolio-brand {
  color: #fffaf0;
}

.voice-page .music-brand-mark {
  width: 44px;
  height: 44px;
  border-color: rgba(232, 199, 124, 0.34);
  background: #14120b;
  box-shadow: 0 12px 28px rgba(232, 199, 124, 0.12);
}

.voice-page .music-brand-mark img {
  width: 44px;
  height: 44px;
  filter: contrast(1.08) brightness(1.02);
}

.voice-page .voice-brand > span:last-child {
  color: #fff4cf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.voice-gate {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 12vw, 150px) 20px 48px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.58) 54%, rgba(8, 8, 8, 0.86)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.14) 48%, rgba(8, 8, 8, 0.78)),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg"),
    radial-gradient(circle at 28% 32%, rgba(232, 199, 124, 0.2), transparent 28%),
    #080808;
  background-position: center;
  background-size: cover;
}

.voice-gate::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

.voice-gate-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 54px);
  background: rgba(255, 250, 240, 0.06);
  backdrop-filter: blur(14px);
}

.voice-gate-panel > p,
.voice-private-hero p,
.voice-private-heading p,
.voice-contact-panel p {
  margin: 0;
  color: rgba(232, 199, 124, 0.84);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voice-gate-panel h1,
.voice-private-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
}

.voice-hero-logo {
  display: block;
  width: min(260px, 58vw);
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  opacity: 1;
  mix-blend-mode: normal;
  filter: contrast(1.08) saturate(0.98) drop-shadow(0 24px 46px rgba(232, 199, 124, 0.14));
}

.voice-gate-panel form {
  display: grid;
  gap: 12px;
}

.voice-gate-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-gate-panel input {
  min-height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  font: inherit;
  outline: none;
}

.voice-gate-panel input:focus {
  border-color: #e8c77c;
}

.voice-gate-panel button,
.voice-contact-panel a,
.voice-gate-contact a {
  min-height: 46px;
  border: 1px solid #e8c77c;
  border-radius: 999px;
  padding: 12px 18px;
  background: #e8c77c;
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.voice-gate-contact {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  padding-top: 16px;
}

.voice-gate-contact span {
  width: fit-content;
  border: 1px solid rgba(232, 199, 124, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 250, 240, 0.9);
  background: rgba(232, 199, 124, 0.08);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.voice-gate-contact a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.voice-gate-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.voice-private {
  padding: clamp(100px, 12vw, 150px) clamp(18px, 6vw, 84px) clamp(58px, 8vw, 100px);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.72) 55%, rgba(8, 8, 8, 0.94)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.2), #080808 560px),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg") top center / cover no-repeat fixed,
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), transparent 20%),
    #080808;
}

.voice-private[hidden] {
  display: none;
}

.voice-private-hero,
.voice-private-section,
.voice-contact-panel {
  width: min(1060px, 100%);
  margin-inline: auto;
}

.voice-private-hero {
  display: grid;
  gap: 14px;
  min-height: 42svh;
  align-content: end;
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  padding-bottom: clamp(32px, 5vw, 60px);
}

.voice-private-hero span {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.9;
}

.voice-works-section {
  width: min(1060px, 100%);
  margin: 0 auto;
  scroll-margin-top: 92px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  padding-block: clamp(34px, 6vw, 72px);
}

.voice-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 3vw, 32px);
}

.voice-works-grid iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  background: #111111;
}

.voice-private-section {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  padding-block: clamp(34px, 6vw, 72px);
}

.voice-private-heading {
  display: grid;
  gap: 10px;
}

.voice-accordion {
  scroll-margin-top: 92px;
}

.voice-accordion summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  margin-bottom: 0;
  padding-right: 58px;
}

.voice-accordion[open] summary {
  margin-bottom: clamp(22px, 3.5vw, 38px);
}

.voice-accordion summary::-webkit-details-marker {
  display: none;
}

.voice-accordion summary::after {
  position: absolute;
  right: 0;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.68);
  content: "+";
  font-size: 1.1rem;
}

.voice-accordion[open] summary::after {
  content: "-";
}

.voice-private-heading h2,
.voice-contact-panel h2 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1;
}

.voice-price-grid,
.voice-info-list,
.voice-cancel-grid {
  display: grid;
  gap: 12px;
}

.voice-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voice-info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voice-cancel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-price-grid article,
.voice-info-list article,
.voice-cancel-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.08), transparent 54%),
    rgba(255, 250, 240, 0.035);
}

.voice-studio-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 6px;
  background: #111111;
}

.voice-studio-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-price-grid span,
.voice-cancel-grid span {
  color: rgba(232, 199, 124, 0.82);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-price-grid h3,
.voice-info-list h3 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.voice-price-grid strong,
.voice-cancel-grid strong {
  color: #fffaf0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.voice-price-grid p,
.voice-info-list p,
.voice-cancel-grid p,
.voice-fineprint,
.voice-note {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.85;
}

.voice-price-grid small {
  color: rgba(255, 250, 240, 0.5);
  line-height: 1.7;
}

.voice-info-list a {
  justify-self: start;
  border-bottom: 1px solid rgba(232, 199, 124, 0.72);
  color: #e8c77c;
  font-size: 0.82rem;
  font-weight: 820;
}

.voice-fineprint {
  display: grid;
  gap: 6px;
  padding-left: 1.1em;
}

.voice-contact-panel {
  display: grid;
  gap: 16px;
  margin-top: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(232, 199, 124, 0.32);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  background: rgba(232, 199, 124, 0.08);
}

.voice-contact-panel a {
  width: fit-content;
  text-decoration: none;
}

.voice-page {
  background: #f6f4ef;
  color: #111111;
}

.voice-page .portfolio-header {
  background: rgba(246, 244, 239, 0.84);
  border-bottom-color: rgba(17, 17, 17, 0.12);
}

.voice-page .portfolio-brand,
.voice-page .portfolio-nav a {
  color: #111111;
}

.voice-page .music-brand-mark {
  border-color: rgba(17, 17, 17, 0.16);
  background: #e6d09a;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.1);
}

.voice-page .music-brand-mark img {
  object-fit: cover;
  object-position: center center;
}

.voice-page .voice-brand > span:last-child {
  color: #111111;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: none;
}

.voice-gate {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.96), rgba(246, 244, 239, 0.68) 52%, rgba(246, 244, 239, 0.94)),
    linear-gradient(0deg, rgba(246, 244, 239, 0.98), rgba(246, 244, 239, 0.42) 48%, rgba(246, 244, 239, 0.9)),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg"),
    radial-gradient(circle at 30% 32%, rgba(232, 199, 124, 0.24), transparent 30%),
    #f6f4ef;
  background-position: center;
  background-size: cover;
}

.voice-gate::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
}

.voice-gate-panel {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(246, 244, 239, 0.76);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

.voice-gate-logo {
  display: block;
  width: min(220px, 58vw);
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  filter: contrast(1.04) saturate(0.98) drop-shadow(0 18px 34px rgba(17, 17, 17, 0.1));
}

.voice-gate-panel > p,
.voice-private-hero p,
.voice-private-heading p,
.voice-contact-panel p {
  color: rgba(129, 91, 24, 0.86);
}

.voice-gate-panel label,
.voice-gate-status,
.voice-private-hero span,
.voice-price-grid p,
.voice-info-list p,
.voice-cancel-grid p,
.voice-fineprint,
.voice-note {
  color: rgba(17, 17, 17, 0.64);
}

.voice-gate-panel input {
  border-color: rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: #111111;
}

.voice-gate-panel button,
.voice-contact-panel a {
  border-color: #111111;
  background: #111111;
  color: #f6f4ef;
}

.voice-private {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.98), rgba(246, 244, 239, 0.8) 56%, rgba(246, 244, 239, 0.98)),
    linear-gradient(180deg, rgba(246, 244, 239, 0.42), #f6f4ef 560px),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg") top center / cover no-repeat fixed,
    #f6f4ef;
}

.voice-hero-logo {
  mix-blend-mode: normal;
  filter: contrast(1.08) saturate(0.96) drop-shadow(0 18px 36px rgba(17, 17, 17, 0.08));
}

.voice-private-hero {
  border-bottom-color: rgba(17, 17, 17, 0.12);
}

.voice-private-section {
  border-bottom-color: rgba(17, 17, 17, 0.1);
}

.voice-works-section {
  border-bottom-color: rgba(17, 17, 17, 0.1);
}

.voice-works-grid iframe,
.voice-video-card {
  border-color: rgba(17, 17, 17, 0.12);
  background: #d8d4cb;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.voice-video-card {
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.voice-lesson-copy,
.voice-lesson-message {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.voice-lesson-copy p,
.voice-lesson-message p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.9;
}

.voice-lesson-media {
  overflow: hidden;
  width: min(760px, 100%);
  margin: clamp(2px, 1vw, 10px) 0 clamp(6px, 1.5vw, 16px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #d8d4cb;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
}

.voice-lesson-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center;
}

.voice-lesson-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
  margin-top: clamp(4px, 1vw, 12px);
}

.voice-lesson-grid article,
.voice-lesson-message {
  display: grid;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), transparent 54%),
    rgba(255, 255, 255, 0.46);
}

.voice-lesson-grid article {
  align-content: start;
}

.voice-lesson-grid h3 {
  margin: 0 0 clamp(14px, 2vw, 20px);
  color: #111111;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

.voice-lesson-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.72;
}

.voice-lesson-message {
  margin-top: clamp(14px, 2.5vw, 26px);
}

.voice-lesson-message p:first-child {
  color: #111111;
  font-weight: 820;
}

.voice-accordion summary::after {
  border-color: rgba(17, 17, 17, 0.16);
  color: rgba(17, 17, 17, 0.58);
}

.voice-private-heading h2,
.voice-contact-panel h2,
.voice-price-grid h3,
.voice-info-list h3,
.voice-price-grid strong,
.voice-cancel-grid strong {
  color: #111111;
}

.voice-price-grid article,
.voice-info-list article,
.voice-cancel-grid article {
  border-color: rgba(17, 17, 17, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), transparent 54%),
    rgba(255, 255, 255, 0.46);
}

.voice-studio-media {
  border-color: rgba(17, 17, 17, 0.1);
  background: #d8d4cb;
}

.voice-price-grid span,
.voice-cancel-grid span {
  color: rgba(129, 91, 24, 0.86);
}

.voice-price-grid small {
  color: rgba(17, 17, 17, 0.48);
}

.voice-info-list a {
  border-bottom-color: rgba(17, 17, 17, 0.56);
  color: #111111;
}

.voice-contact-panel {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.voice-gate {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.88), rgba(246, 244, 239, 0.5) 52%, rgba(246, 244, 239, 0.84)),
    linear-gradient(0deg, rgba(246, 244, 239, 0.92), rgba(246, 244, 239, 0.18) 48%, rgba(246, 244, 239, 0.72)),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg"),
    radial-gradient(circle at 30% 32%, rgba(232, 199, 124, 0.18), transparent 30%),
    #f6f4ef;
  background-position: center;
  background-size: cover;
}

.voice-private {
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.9), rgba(246, 244, 239, 0.6) 56%, rgba(246, 244, 239, 0.92)),
    linear-gradient(180deg, rgba(246, 244, 239, 0.18), #f6f4ef 620px),
    url("ryotaiwakoshi/assets/ryota-voice-bg.jpg") top center / cover no-repeat fixed,
    #f6f4ef;
}

.voice-private-heading h2,
.voice-contact-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.voice-price-grid strong,
.voice-cancel-grid strong {
  font-size: clamp(1.7rem, 3.3vw, 3.2rem);
}

.music-form-note {
  margin: 0;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.82rem;
  font-weight: 720;
}

.selected-credit-list,
.request-service-grid,
.music-sns-list {
  display: grid;
  gap: 12px;
}

.selected-credit-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.selected-credit-list article {
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  padding: 16px;
}

.selected-credit-list span,
.request-service-grid span {
  display: block;
  margin-bottom: 8px;
  color: #e8c77c;
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.selected-credit-list p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.92rem;
}

.request-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-service-grid article {
  min-height: 190px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  padding: 20px;
}

.request-service-grid h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 1.16rem;
}

.request-service-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
}

.music-page .music-work-list p {
  border-color: rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.62);
}

.music-page .production-list article {
  border-top-color: rgba(17, 17, 17, 0.28);
}

.music-page .cinema-button {
  border-color: #111111;
  background: #111111;
  color: #f6f4ef;
}

.music-page .cinema-button.ghost {
  background: transparent;
  color: #111111;
}

.music-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  z-index: 1;
}

.music-monogram::after {
  position: absolute;
  width: min(74%, 360px);
  height: 1px;
  bottom: 24%;
  background: #111111;
  content: "";
}

.music-logo-frame {
  position: absolute;
  inset: clamp(18px, 4vw, 42px);
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #202020;
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.08),
    0 28px 76px rgba(0, 0, 0, 0.22);
}

.music-logo-frame::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 42%, rgba(0, 0, 0, 0.28));
  content: "";
  pointer-events: none;
}

.music-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) brightness(1.02);
}

.artist-embed-section {
  padding-top: clamp(48px, 8vw, 92px);
}

.artist-embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 12px;
}

.artist-embed-card {
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.62);
}

.artist-embed-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-embed-card > div:first-child {
  min-height: 24px;
}

.artist-embed-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.artist-embed-card iframe {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  background: #111111;
}

.twitcasting-visual {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.twitcasting-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.twitcasting-embed {
  min-height: 0;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.12)),
    #f0eee8;
  padding: 18px;
}

.twitcasting-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}

.twitcasting-embed p {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 820;
}

.twitcasting-embed a {
  justify-self: start;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid #111111;
  border-radius: 999px;
  padding: 0 16px;
  background: #111111;
  color: #f6f4ef;
  font-weight: 780;
}

.artist-ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-block: 1px solid rgba(17, 17, 17, 0.14);
  background: #111111;
}

.artist-ticker p {
  margin: 0;
  border-right: 1px solid rgba(246, 244, 239, 0.18);
  padding: 12px clamp(16px, 3vw, 34px);
  color: rgba(246, 244, 239, 0.78);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-ticker p:last-child {
  border-right: 0;
}

.artist-update-grid,
.artist-media-grid,
.contact-brief {
  display: grid;
  gap: 12px;
}

.artist-update-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-update-grid article,
.artist-media-grid a,
.contact-brief article {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(18px, 3vw, 26px);
}

.artist-update-grid span,
.artist-media-grid span,
.contact-brief span {
  display: block;
  margin-bottom: 12px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-update-grid h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.artist-update-grid p,
.contact-brief small {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.artist-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-media-grid a {
  min-height: 150px;
  display: grid;
  align-content: end;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.artist-media-grid a:hover,
.artist-media-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.38);
  background: #ffffff;
}

.artist-media-grid strong {
  color: #111111;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.2;
}

.contact-route {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-route a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid #111111;
  border-radius: 999px;
  padding: 0 18px;
  background: #111111;
  color: #f6f4ef;
  font-weight: 780;
}

.contact-route a:nth-child(2) {
  background: transparent;
  color: #111111;
}

.contact-brief {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  margin-top: 24px;
}

.contact-brief p {
  margin: 0 0 6px;
  color: #111111;
  font-size: 1.08rem;
  font-weight: 820;
}

.music-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding: 22px clamp(20px, 6vw, 86px);
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.86rem;
  font-weight: 760;
}

.music-sns-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 980px;
  gap: 12px;
}

.music-sns-list a {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  color: #111111;
  font-weight: 780;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.music-sns-list a:hover,
.music-sns-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.36);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.1);
}

.sns-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #111111;
  color: #f6f4ef;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
}

.instagram-mark {
  background: linear-gradient(135deg, #ffcc70, #c850c0 46%, #4158d0);
}

.twitcasting-mark {
  background: #111111;
}

.twitcasting-mark img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.letter-mark {
  overflow: hidden;
  background: #f6f4ef;
  color: #111111;
}

.letter-mark img {
  display: block;
  width: 92%;
  height: 92%;
  border-radius: 999px;
  object-fit: cover;
}

.mail-mark {
  background: linear-gradient(135deg, #111111, #777777);
  font-size: 1rem;
}

.music-sns-list strong {
  display: block;
  margin-top: auto;
  color: #111111;
  font-size: clamp(1.02rem, 2vw, 1.34rem);
  line-height: 1.08;
}

.music-sns-list small {
  display: block;
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 0.82rem;
  font-weight: 760;
}

@media (max-width: 760px) {
  .selected-credit-list,
  .request-service-grid,
  .request-picker,
  .music-sns-list,
  .artist-update-grid,
  .artist-media-grid,
  .artist-embed-grid,
  .artist-profile-detail,
  .contact-brief,
  .voice-lesson-grid,
  .voice-price-grid,
  .voice-info-list,
  .voice-cancel-grid,
  .works-list {
    grid-template-columns: 1fr;
  }

  .voice-works-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .voice-private {
    padding-inline: 18px;
  }

  .voice-private-hero {
    min-height: 34svh;
    gap: 12px;
  }

  .voice-hero-logo {
    width: min(210px, 62vw);
    max-height: none;
  }

  .voice-private-hero span,
  .voice-lesson-copy,
  .voice-lesson-message {
    max-width: 100%;
  }

  .voice-lesson-media {
    width: 100%;
  }

  .voice-lesson-media img {
    aspect-ratio: 16 / 10;
  }

  .artist-profile-lead {
    position: static;
  }

  .artist-profile-lead h1,
  .artist-profile-lead h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .artist-profile-lead strong {
    font-size: clamp(0.9rem, 3.7vw, 1.02rem);
  }

  .profile-mini-socials a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .artist-profile-timeline summary {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .artist-profile-timeline summary::after {
    grid-column: 1;
    margin-top: -34px;
  }

  .artist-profile-timeline p {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    font-size: 0.94rem;
  }

  .music-page .music-profile {
    min-height: auto;
    padding: 96px 0 58px;
    background-position: 31% center;
    background-size: cover;
  }

  .music-page .music-profile .cinema-heading {
    width: min(100% - 32px, 620px);
    margin-bottom: 18px;
  }

  .artist-profile-detail {
    width: min(100% - 32px, 620px);
  }

  .artist-profile-timeline {
    border-radius: 8px;
  }

  .artist-profile-timeline summary,
  .artist-profile-timeline p {
    padding-inline: 16px;
  }

  .artist-profile-summary {
    padding: 20px 16px;
  }

  .artist-profile-summary p {
    padding-inline: 0;
  }

  .music-request-categories {
    grid-template-columns: 1fr;
  }

  .works-tools {
    top: 0;
    position: relative;
  }

  .artist-ticker {
    justify-content: flex-start;
  }

  .artist-ticker p {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(246, 244, 239, 0.14);
  }

  .music-monogram {
    font-size: clamp(5rem, 26vw, 9rem);
  }

  .contact-route a {
    width: 100%;
    justify-content: center;
  }

  .welcome-card {
    grid-template-rows: 136px auto auto auto;
    min-height: 310px;
    padding: 22px 18px;
  }

  .welcome-logo-wrap {
    height: 126px;
    margin-bottom: 10px;
  }

  .ryota-logo-wrap {
    width: min(82vw, 230px);
    height: 126px;
  }

  .neon-logo-wrap {
    width: min(74vw, 190px);
    height: 126px;
  }

  .ryon-logo-wrap {
    width: min(74vw, 190px);
    height: 126px;
  }

  .welcome-actions strong {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
  }
}
