:root {
  --color-text: #25282b;
  --color-muted: #777;
  --color-line: #d7d7d7;
  --color-soft: #f4f4f4;
  --color-pink: #ff3b98;
  --color-dark: #3b3432;
  --max-width: 1080px;
  --side: clamp(20px, 5vw, 64px);
  --font-ja: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  padding-top: 68px;
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0;
  background: #fff;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(100%, 1320px);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 var(--side);
}

.site-logo {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .08em;
}

.site-logo img {
  display: block;
  width: clamp(148px, 17vw, 228px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.35vw, 24px);
  width: 100%;
  font-size: 13px;
  color: #4d4d4d;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a[href="#top"],
.site-nav a[href="https://felicita.tokyo/"],
.site-nav__line {
  display: none;
}

.line-button {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
  min-width: 250px;
  min-height: 58px;
  padding: 13px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  background: var(--color-pink);
  border-radius: 3px;
  box-shadow: none;
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.line-button:hover {
  background: #f72d8d;
  box-shadow: 0 12px 28px rgba(255, 59, 152, .22);
  transform: translateY(-2px);
}

.line-button img {
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: auto;
  object-fit: contain;
}

.line-button--small {
  min-width: 204px;
  min-height: 46px;
  margin-left: auto;
  padding: 8px 18px;
  font-size: 15px;
}

.line-button--small img {
  width: 40px;
  height: auto;
}

.site-nav .site-nav__line {
  display: none;
}

.menu-button {
  display: none;
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  left: 6px;
  display: block;
  width: 22px;
  height: 1px;
  background: #777;
  transition: top .3s ease, transform .3s ease, background-color .3s ease;
}

.menu-button span:not(.sr-only):first-child {
  top: 11px;
}

.menu-button span:not(.sr-only):nth-child(2) {
  top: 21px;
}

.menu-button[aria-expanded="true"] span:not(.sr-only):first-child {
  top: 17px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  top: 17px;
  transform: rotate(-45deg);
}

.section {
  padding: clamp(78px, 9vw, 130px) var(--side);
}

.section--compact {
  padding-top: clamp(64px, 7vw, 98px);
  padding-bottom: clamp(64px, 7vw, 98px);
}

.section--gray {
  background: var(--color-soft);
}

.section-heading {
  position: relative;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 auto 18px;
  background: #bdbdbd;
}

.section-heading p {
  margin: 8px 0 0;
  color: #555;
  font-size: 18px;
  letter-spacing: .12em;
  line-height: 1.3;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  text-wrap: balance;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  background: #efefef;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.image-frame:hover img {
  filter: brightness(1.03);
  transform: scale(1.035);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.fv {
  padding: 85px var(--side) 96px;
}

.fv__inner {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: 48px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.fv__lead {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.6;
}

.fv h1 {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.45;
}

.fv__text {
  margin: 0 0 28px;
}

.fv__visual {
  position: relative;
  min-height: 530px;
}

.fv__visual::before {
  content: "";
  position: absolute;
  inset: 20% 10% 16% 0;
  background: var(--color-soft);
}

.fv__photo {
  position: absolute;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

.fv__photo img {
  object-fit: cover;
}

.fv__photo--main {
  top: 0;
  left: 4%;
  width: 58%;
  aspect-ratio: 420 / 520;
}

.fv__photo--main img {
  object-position: 36% 50%;
}

.fv__photo--sub01 {
  top: 26%;
  right: 0;
  width: 48%;
  aspect-ratio: 320 / 410;
}

.fv__photo--sub01 img {
  object-position: 18% 50%;
}

.fv__photo--sub02 {
  right: 22%;
  bottom: 0;
  width: 34%;
  aspect-ratio: 330 / 430;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.case-item img {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--color-pink);
  border-radius: 50%;
  background: #fff;
}

.case-item h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.case-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.point-section {
  overflow: hidden;
  background: #fff;
}

.point-list {
  display: grid;
  gap: clamp(92px, 10vw, 150px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.point-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 44%);
  align-items: center;
  min-height: clamp(520px, 44vw, 600px);
  padding: clamp(28px, 3.4vw, 48px) 0 0;
}

.point-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) / -2);
  width: calc(100vw - clamp(56px, 9vw, 150px));
  height: calc(100% - clamp(82px, 8vw, 120px));
  background: var(--color-soft);
}

.point-item--reverse {
  grid-template-columns: minmax(360px, 44%) minmax(0, 1fr);
}

.point-item--reverse::before {
  right: calc((100vw - 100%) / -2);
  left: auto;
}

.point-item--reverse .point-item__text {
  order: 2;
}

.point-item--reverse .point-item__image {
  order: 1;
  justify-self: start;
}

.point-item__text {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: clamp(22px, 2.7vw, 38px) clamp(28px, 4.5vw, 70px) clamp(34px, 4.5vw, 68px);
}

.point-item__text span {
  display: block;
  margin-bottom: 22px;
  color: #333;
  font-size: 13px;
  letter-spacing: .08em;
}

.point-item__text span::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 7px;
  background: #333;
}

.point-item__text h3 {
  margin: 0 0 25px;
  font-size: 30px;
  white-space: nowrap;
}

.point-item__text h3 span {
  display: inline;
  margin-bottom: 0;
  font-size: inherit;
  letter-spacing: 0;
}

.point-item__text h3 span::after {
  display: none;
}

.point-heading__sp {
  display: none !important;
}

.sp-break {
  display: none;
}

.point-item__text p {
  max-width: 37em;
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.point-item__image {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 470px);
  aspect-ratio: 1.1 / 1;
  margin-right: clamp(-60px, -4vw, -24px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.point-item__image--01 img {
  object-position: 54% 45%;
}

.point-item__image--02 img {
  object-position: 35% 52%;
}

.point-item__image--03 img {
  object-position: 52% 54%;
}

.point-item--reverse .point-item__image {
  margin-right: 0;
  margin-left: clamp(-60px, -4vw, -24px);
}

.about-artist {
  padding-top: clamp(88px, 9vw, 132px);
  padding-bottom: clamp(96px, 10vw, 150px);
  overflow: hidden;
  background: #fff;
}

.about-artist .section-heading {
  margin-bottom: clamp(76px, 8vw, 116px);
}

.about-artist__inner {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.about-artist__visual {
  position: relative;
  min-height: 520px;
}

.about-artist__visual::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 7%;
  width: 64%;
  height: 63%;
  background: var(--color-soft);
}

.about-artist__image {
  position: absolute;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .04);
}

.about-artist__image--main {
  top: 20px;
  left: -39px;
  width: 73%;
  aspect-ratio: 363 / 255;
}

.about-artist__image--main img {
  object-position: 58% 48%;
}

.about-artist__image--sub {
  right: 0;
  bottom: 0;
  width: 72%;
  aspect-ratio: 363 / 255;
}

.about-artist__image--sub img {
  object-position: 42% 46%;
}

.about-artist__text {
  max-width: 43em;
  font-size: 16px;
  line-height: 30px;
}

.about-artist__text p {
  margin: 0;
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.about-artist__text p + p {
  margin-top: clamp(34px, 4vw, 52px);
}

.about-artist__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.about-artist__lead span {
  display: inline;
  font-size: inherit;
  line-height: 30px;
}

.works-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.work-card {
  padding: 14px;
  border: 1px solid #9e9e9e;
  background: #fff;
}

.work-card .image-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.work-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.work-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.works-section {
  padding: clamp(90px, 10vw, 150px) 0 clamp(92px, 10vw, 140px);
  overflow: visible;
  background: #fff;
}

.works-section__band {
  background: var(--color-soft);
}

.works-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 30%) minmax(460px, 1fr) minmax(360px, 30%);
  align-items: center;
  width: min(100%, 1440px);
  max-width: 100%;
  min-height: 560px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 84px) var(--side);
  overflow: visible;
}

.works-section__content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.works-section__heading {
  margin-bottom: clamp(46px, 5vw, 74px);
}

.works-logo-grid {
  justify-items: center;
  gap: clamp(44px, 4vw, 64px);
  width: min(100%, 820px);
  margin: 0 auto;
}

.works-logo-grid__row {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: clamp(42px, 5vw, 76px);
}

.works-logo-grid__row--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    width: min(100%, 820px);
    margin: 0 auto;
    padding-bottom: 10px;
}

.works-logo-grid__row--bottom {
  grid-template-columns: minmax(78px, 112px) minmax(100px, 136px) minmax(180px, 230px) minmax(74px, 92px);
  justify-content: center;
  gap: clamp(42px, 4.6vw, 70px);
  width: min(100%, 820px);
  margin: 0 auto;
}

.works-logo-grid__row--top figure,
.works-logo-grid__row--bottom figure {
  width: 100%;
}

.works-logo-grid figure {
  display: grid;
  place-items: center;
  min-height: 70px;
  margin: 0;
}

.works-logo-grid img {
  display: block;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.works-logo-grid__row--top figure:nth-child(1) img {
  max-width: 206px;
  max-height: 84px;
}

.works-logo-grid__row--top figure:nth-child(2) img {
  max-width: 138px;
  max-height: 84px;
}

.works-logo-grid__row--top figure:nth-child(3) img {
  max-width: 118px;
  max-height: 76px;
}

.works-logo-grid__row--bottom figure:nth-child(1) img {
  max-width: 104px;
  max-height: 58px;
}

.works-logo-grid__row--bottom figure:nth-child(2) img {
  max-width: 112px;
  max-height: 60px;
}

.works-logo-grid__row--bottom figure:nth-child(3) img {
  max-width: 178px;
  max-height: 52px;
}

.works-logo-grid__row--bottom figure:nth-child(4) img {
  max-width: 64px;
  max-height: 64px;
}

.works-collage {
  position: relative;
  z-index: 2;
  min-height: 430px;
}

.works-collage__image {
  position: absolute;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.works-collage__image--l01 {
  top: -110px;
  left: 0;
  z-index: 1;
  width: min(170px, 48%);
  aspect-ratio: 169 / 269;
}

.works-collage__image--l02 {
  top: 54px;
  left: 44%;
  z-index: 2;
  width: min(100px, 30%);
  aspect-ratio: 100 / 150;
}

.works-collage__image--l03 {
  left: 22%;
  bottom: 42px;
  z-index: 3;
  width: min(140px, 40%);
  aspect-ratio: 122 / 183;
}

.works-collage__image--r01 {
  top: 116px;
  right: -16px;
  z-index: 1;
  width: min(190px, 48%);
  aspect-ratio: 189 / 252;
}

.works-collage__image--r02 {
  left: 44%;
  top: 270px;
  z-index: 2;
  width: min(98px, 28%);
  aspect-ratio: 97 / 156;
}

.works-collage__image--r03 {
  right: -2%;
  bottom: -101px;
  z-index: 3;
  width: min(130px, 34%);
  aspect-ratio: 130 / 195;
}

.works-collage__image--l01 img {
  object-position: 56% 45%;
}

.works-collage__image--l02 img {
  object-position: 38% 48%;
}

.works-collage__image--l03 img {
  object-position: 56% 54%;
}

.works-collage__image--r01 img {
  object-position: 50% 48%;
}

.works-collage__image--r02 img {
  object-position: 48% 58%;
}

.works-collage__image--r03 img {
  object-position: 42% 34%;
}

.works-section__note {
  margin: clamp(66px, 7vw, 92px) 0 0;
  color: #333;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2;
  text-align: center;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .works-section__inner {
    grid-template-columns: minmax(230px, 26%) minmax(390px, 1fr) minmax(230px, 26%);
    min-height: 500px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .works-logo-grid {
    width: min(100%, 620px);
  }

  .works-logo-grid__row--top {
    width: min(100%, 520px);
  }

  .works-logo-grid__row--bottom {
    grid-template-columns: minmax(64px, 90px) minmax(92px, 116px) minmax(154px, 190px) minmax(64px, 80px);
    gap: clamp(28px, 3.4vw, 42px);
    width: min(100%, 620px);
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 150px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: 104px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: 88px;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: 108px;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 178px;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 66px;
  }

  .works-collage {
    min-height: 390px;
  }

  .works-collage__image--l01 {
    top: -74px;
    width: min(150px, 48%);
  }

  .works-collage__image--l02 {
    top: 44px;
    width: min(88px, 30%);
  }

  .works-collage__image--l03 {
    top: auto;
    left: 22%;
    bottom: 88px;
    width: min(124px, 40%);
  }

  .works-collage__image--r01 {
    top: 86px;
    right: -10px;
    width: min(166px, 48%);
  }

  .works-collage__image--r02 {
    top: 210px;
    left: 34%;
    bottom: auto;
    width: min(84px, 28%);
  }

  .works-collage__image--r03 {
    top: auto;
    right: -12%;
    bottom: -90px;
    width: min(112px, 44%);
  }
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
}

.concerns-grid p {
  margin: 0;
  padding: 0 22px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
  border-right: 1px dotted #cfcfcf;
}

.concerns-grid p:last-child {
  border-right: 0;
}

.concerns-grid span {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--color-pink);
  font-size: 12px;
  line-height: 42px;
  border: 1px solid var(--color-pink);
  border-radius: 50%;
}

.solution {
  position: relative;
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: 82px 0 92px;
}

.solution__box {
  position: relative;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 70px 80px;
  text-align: center;
  background: transparent;
}

.solution__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-soft);
}

.solution__box h2,
.solution__box p,
.solution__box .line-button {
  position: relative;
  z-index: 4;
}

.solution__box h2 {
  margin: 0 0 22px;
  font-size: clamp(24px, 3vw, 35px);
}

.solution__heading-text--sp {
  display: none;
}

.solution__box p {
  margin: 0 auto 30px;
  max-width: 670px;
}

.solution__image {
  position: absolute;
  z-index: 1;
  width: 160px;
  aspect-ratio: 4 / 3;
}

.solution__image--left {
  left: 0;
  bottom: 30px;
}

.solution__image--right {
  top: 0;
  right: 0;
}

.solution__image--left img {
  object-position: 50% 58%;
}

.solution__image--right img {
  object-position: 32% 48%;
}

.price-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.price-card {
  padding: 36px 42px 34px;
  border: 1px solid #555;
}

.price-card h3 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
  text-align: center;
  border-bottom: 2px solid #aaa;
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.75;
}

.price-card th,
.price-card td {
  padding: 9px 8px;
  text-align: left;
}

.price-card td::before {
  content: "- ";
  color: #777;
}

.price-note {
  width: min(100%, var(--max-width));
  margin: 18px auto 0;
  font-size: 14px;
  line-height: 1.85;
}

.slider-section {
  overflow: hidden;
  padding-top: clamp(78px, 9vw, 118px);
}

.staff-slider-wrap {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-top: 22px;
}

.staff-swiper {
  overflow: visible;
  padding: 20px 0 62px;
}

.staff-swiper .swiper-wrapper {
  align-items: stretch;
}

.staff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 520px;
  padding: 0 14px 28px;
  border: 1px solid #2f3337;
  background: #fff;
}

.staff-card__name {
  position: relative;
  z-index: 3;
  display: inline-block;
  max-width: calc(100% - 18px);
  margin: -18px 0 0 -30px;
  padding: 10px 18px 12px;
  font-size: 21px;
  font-weight: 700;
  background: #fff;
  line-height: 1.25;
  white-space: nowrap;
}

.staff-card__name small {
  margin-left: 8px;
  font-size: 15px;
  letter-spacing: .08em;
}

.staff-card .image-frame {
    position: relative;
    z-index: 1;
    width: calc(100% - 64px);
    aspect-ratio: 1.28 / 1;
    margin: 26px auto 0;
}

.staff-card .image-frame img {
  object-position: 50% 36%;
}

.staff-card__actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin: -32px 28px 0 0;
}

.staff-card__actions a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.staff-card__actions a:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  transform: translateY(-2px);
}

.staff-card__actions img {
  display: block;
  width: calc(100% - 3px);
  height: auto;
  object-fit: contain;
}

.staff-card__role {
    margin: 24px 12px 0;
    color: #4b4f54;
    font-size: 15px;
    font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.45;
}

.staff-card__text {
    margin: 12px 12px 0;
    font-size: 15px;
    line-height: 1.8;
}

.no-break {
  white-space: nowrap;
}

.staff-copy-break {
  display: none;
}

@media (max-width: 1100px) {
    .staff-card {
        min-height: 490px;
    }

    .staff-card .image-frame {
        width: calc(100% - 46px);
        margin-top: 22px;
    }

    .staff-card__actions {
        margin-right: 18px;
    }
}

.slider-arrow {
  position: absolute;
  right: 8px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform-origin: center;
}

.slider-arrow--next {
  top: -128px;
  color: var(--color-pink);
}

.slider-arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider-arrow--prev {
  top: -50px;
  color: #555;
}

.slider-arrow--prev::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

@media (min-width: 980px) {
  .staff-slider-wrap:not(.is-slider-enabled) > .slider-arrow {
    display: none;
  }
}

@media (min-width: 541px) and (max-width: 979px) {
  .slider-arrow::before {
    width: 14px !important;
    height: 14px !important;
    border-top-width: 3px !important;
    border-right-width: 3px !important;
  }
}

.staff-swiper .swiper-pagination {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 22px auto 0;
  padding-right: 22px;
}

.staff-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0;
  background: #fff;
  border: 1px solid #1f2326;
  border-radius: 999px;
  opacity: 1;
}

.staff-swiper .swiper-pagination-bullet-active {
  width: 70px;
  background: var(--color-pink);
  border-color: var(--color-pink);
}

.voice-section {
  overflow: hidden;
  padding-top: clamp(78px, 9vw, 118px);
}

.voice-slider-wrap {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-top: 28px;
}

.voice-swiper {
  overflow: visible;
  padding: 26px 0 62px;
}

.voice-swiper .swiper-wrapper {
  align-items: stretch;
}

.voice-swiper .swiper-slide {
  height: auto;
}

.voice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 456px;
  padding: 30px 24px 28px;
  border: 1px solid #2f3337;
  background: #fff;
}

.voice-card h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-align: center;
}

.voice-card__icon {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto 20px;
}

.voice-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  padding: 26px 22px;
  background: #f4f4f4;
}

.voice-card__body h3 {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  line-break: strict;
  text-wrap: pretty;
}

.voice-card__body p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: .01em;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

.voice-card__body p:last-child {
  margin-bottom: 0;
}

.voice-arrow--next {
  top: -126px;
  color: var(--color-pink);
}

.voice-arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.voice-arrow--prev {
  top: -48px;
  color: #555;
}

.voice-arrow--prev::before {
  transform: translate(-50%, -50%) rotate(225deg);
}

.voice-swiper .voice-pagination {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 22px auto 0;
  padding-right: 22px;
}

.voice-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0;
  background: #fff;
  border: 1px solid #1f2326;
  border-radius: 999px;
  opacity: 1;
}

.voice-swiper .swiper-pagination-bullet-active {
  width: 70px;
  background: var(--color-pink);
  border-color: var(--color-pink);
}

.flow-list {
  width: min(100%, 900px);
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 100px 104px 1fr;
  align-items: center;
  gap: 32px;
  min-height: 148px;
  margin-bottom: 20px;
  padding: 30px 44px;
  border: 1px solid #c9c9c9;
  background: #fff;
}

.flow-item span {
  display: grid;
  place-items: center;
  min-height: 84px;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  border-right: 2px solid #ffd1e6;
}

.flow-item__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.flow-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.flow-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}

.faq-item {
  margin-bottom: 22px;
  padding: 0;
  background: #fff;
  border: 1px solid #252b30;
  border-radius: 3px;
  overflow: hidden;
}

.faq-list {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.faq-question,
.faq-answer {
  display: grid;
  grid-template-columns: 38px 1fr 32px;
  align-items: start;
  gap: 18px;
  width: 100%;
  text-align: left;
}

.faq-question {
  margin: 0;
  padding: 32px 48px;
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: none;
}

.faq-question:hover {
  background: transparent;
}

.faq-question span,
.faq-answer span {
  font-weight: 700;
  line-height: 1;
}

.faq-question span {
  color: #252b30;
  font-size: 26px;
}

.faq-question p {
  margin: 1px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--color-pink);
  font-size: 28px;
}

.faq-answer {
  grid-template-columns: 38px 1fr;
  margin: 0 48px 34px;
  padding: 24px 20px;
  background: #f8f8f8;
  border: 1px solid #252b30;
  border-radius: 3px;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer span {
  color: var(--color-pink);
  font-size: 27px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}

.faq-answer a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company {
  position: relative;
  overflow: hidden;
}

.company::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: clamp(54px, 7vw, 98px);
  width: min(82vw, 1040px);
  height: clamp(330px, 31vw, 420px);
  background: var(--color-soft);
}

.company .section-heading {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  text-align: left;
}

.company .section-heading::before {
  margin-left: 0;
}

.company__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 43%) 1fr;
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
  width: min(100%, 1040px);
  margin: 0 auto;
}

.company__image {
  align-self: start;
  width: min(100%, 430px);
  aspect-ratio: 1.12 / 1;
  margin-top: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.company-list {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px 42px;
  margin: 0;
  padding: clamp(44px, 5vw, 72px) 0;
  font-size: 16px;
  line-height: 1.9;
}

.company-list dt {
  font-weight: 700;
}

.company-list dd {
  margin: 0;
}

.company-list a {
  text-decoration: underline;
}

.company-list__external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.company-list__external-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(7%) saturate(661%) hue-rotate(169deg) brightness(96%) contrast(89%);
}

.final-cta {
  padding: 40px 0 0;
  text-align: center;
}

.final-cta__image {
  width: min(100%, 820px);
  aspect-ratio: 1257 / 547;
  margin: 0 auto clamp(38px, 5vw, 68px);
  overflow: visible;
  background: transparent;
}

.final-cta__banner-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: box-shadow .3s ease, transform .3s ease;
}

.final-cta__banner-link picture {
  display: block;
  height: 100%;
}

.final-cta__banner-link::after {
  content: none;
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-right: 2px solid var(--color-pink);
  border-bottom: 2px solid var(--color-pink);
  opacity: .9;
  transform: rotate(-45deg);
}

.final-cta__banner-link:hover {
  box-shadow: none;
  transform: translateY(-3px);
}

.final-cta__box {
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--color-soft);
}

.final-cta__box h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.55;
  text-wrap: balance;
}

.final-cta__box p {
  margin: 0 0 28px;
  line-height: 1.9;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.final-cta__sp {
  display: none;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 78px var(--side) 36px;
  color: var(--color-text);
  text-align: center;
  background: #abadb4;
}

.site-logo--footer {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--color-text);
  text-align: center;
}

.site-logo--footer img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 24px;
  width: min(100%, 520px);
  margin: 0 auto 62px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 36px;
  padding: 7px 18px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 2px;
}

.footer-copy {
  margin: 0;
  color: var(--color-text);
  font-size: 10px;
  letter-spacing: .02em;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
}

.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 68px;
  height: 68px;
  color: #777;
  font-size: 9px;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .site-logo img {
    width: clamp(150px, 25vw, 210px);
  }

  .about-artist__inner {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .about-artist__image--main {
    top: -78px;
    left: -112px;
    width: 76%;
  }

  .about-artist__image--sub {
    right: -74px;
    bottom: -26px;
    width: 74%;
  }

  .point-item__text h3 {
    font-size: 28px;
  }

  .point-item__text p {
    max-width: 36em;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: 100vh;
    padding: 44px 28px 20px;
    overflow-y: auto;
    background: #fff;
    border-top: 0;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    position: relative;
    width: 100%;
    padding: 9px 0 10px;
    color: #0e0f10;
    font-size: 14px;
    line-height: 1.32;
    text-align: center;
    border-bottom: 0;
    opacity: 0;
    transform: translateX(18px);
    transition: color .3s ease, opacity .45s ease, transform .45s ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.is-open a:nth-child(1) { transition-delay: .05s; }
  .site-nav.is-open a:nth-child(2) { transition-delay: .08s; }
  .site-nav.is-open a:nth-child(3) { transition-delay: .11s; }
  .site-nav.is-open a:nth-child(4) { transition-delay: .14s; }
  .site-nav.is-open a:nth-child(5) { transition-delay: .17s; }
  .site-nav.is-open a:nth-child(6) { transition-delay: .2s; }
  .site-nav.is-open a:nth-child(7) { transition-delay: .23s; }
  .site-nav.is-open a:nth-child(8) { transition-delay: .26s; }
  .site-nav.is-open a:nth-child(9) { transition-delay: .29s; }
  .site-nav.is-open a:nth-child(10) { transition-delay: .32s; }
  .site-nav.is-open a:nth-child(11) { transition-delay: .35s; }

  .site-nav a::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    margin: 0 auto 5px;
    background: #111;
  }

  .site-nav a:hover {
    color: var(--color-pink);
  }

  .site-nav a[href="#top"],
  .site-nav a[href="https://felicita.tokyo/"] {
    display: block;
  }

  .site-nav .site-nav__line {
    display: inline-flex;
    width: min(100%, 320px);
    min-width: 0;
    min-height: 54px;
    margin: 10px auto 0;
    padding: 10px 22px;
    color: #fff;
    font-size: 15px;
    border-radius: 3px;
    opacity: 0;
  }

  .site-nav .site-nav__line::before {
    display: none;
  }

  .site-nav .site-nav__line img {
    width: 48px;
    height: auto;
    margin-right: 12px;
  }

  .site-header .line-button {
    margin-left: auto;
  }

  .menu-button {
    z-index: 120;
    display: block;
  }

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

  .company__inner {
    grid-template-columns: minmax(280px, 40%) 1fr;
    gap: 42px;
  }

  .company-list {
    grid-template-columns: 120px 1fr;
    gap: 18px 28px;
    font-size: 15px;
  }

  .fv__visual {
    min-height: 520px;
  }

  .case-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .point-item,
  .point-item--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 42%);
  }

  .point-item--reverse {
    grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  }

  .point-item__image {
    margin-right: -18px;
  }

  .point-item--reverse .point-item__image {
    margin-left: -18px;
  }

  .about-artist__inner {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .about-artist__visual {
    width: min(100%, 680px);
    margin: 0 auto;
    margin-top: 70px;
  }

  .about-artist__text {
    width: min(88%, 620px);
    max-width: 38em;
    margin: 0 auto;
    line-height: 1.95;
  }

  .works-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
  }

  .works-section__content {
    order: 1;
  }

  .works-collage {
    width: min(100%, 560px);
    min-height: 640px;
  }

  .works-collage--left {
    order: 2;
    margin-left: 0;
    margin-right: auto;
  }

  .works-collage--right {
    order: 3;
    margin-left: auto;
    margin-right: 0;
  }

  .works-collage__image--l01 {
    top: -48px;
    left: 0;
    width: 70%;
  }

  .works-collage__image--l02 {
    top: 110px;
    right: 2%;
    width: 46%;
  }

  .works-collage__image--l03 {
    left: 34%;
    bottom: 0;
    width: 58%;
  }

  .works-collage__image--r01 {
    top: 0;
    right: 0;
    width: 70%;
  }

  .works-collage__image--r02 {
    left: 2%;
    bottom: 92px;
    width: 50%;
  }

  .works-collage__image--r03 {
    right: 12%;
    bottom: -48px;
    width: 58%;
  }

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

@media (min-width: 981px) and (max-width: 1024px) {
  .section--compact {
    padding-top: 180px;
    padding-bottom: clamp(64px, 7vw, 98px);
  }

  .works-section__inner {
    grid-template-columns: minmax(230px, 26%) minmax(390px, 1fr) minmax(230px, 26%);
    align-items: center;
    gap: 0;
    min-height: 500px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .works-section__content,
  .works-collage--left,
  .works-collage--right {
    order: initial;
  }

  .works-logo-grid {
    width: min(100%, 620px);
  }

  .works-logo-grid__row--top {
    width: min(100%, 520px);
  }

  .works-logo-grid__row--bottom {
    grid-template-columns: minmax(64px, 90px) minmax(92px, 116px) minmax(154px, 190px) minmax(64px, 80px);
    gap: clamp(28px, 3.4vw, 42px);
    width: min(100%, 620px);
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 150px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: 104px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: 88px;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: 108px;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 178px;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 66px;
  }

  .works-collage {
    width: auto;
    min-height: 390px;
  }

  .works-collage--left {
    margin-right: 0;
    margin-left: 0;
  }

  .works-collage--right {
    margin-right: 0;
    margin-left: 0;
  }

  .works-collage__image--l01 {
    top: -74px;
    left: 0;
    width: min(150px, 48%);
  }

  .works-collage__image--l02 {
    top: 44px;
    right: auto;
    left: 44%;
    width: min(88px, 30%);
  }

  .works-collage__image--l03 {
    top: auto;
    left: 22%;
    bottom: 28px;
    width: min(124px, 40%);
  }

  .works-collage__image--r01 {
    top: 86px;
    right: -10px;
    width: min(166px, 48%);
  }

  .works-collage__image--r02 {
    top: 230px;
    left: 44%;
    bottom: auto;
    width: min(84px, 28%);
  }

  .works-collage__image--r03 {
    top: auto;
    right: -2%;
    bottom: -70px;
    width: min(112px, 34%);
  }
}

@media (max-width: 820px) {
  .point-item__text h3 {
    font-size: 18px;
    line-height: 1.4;
    white-space: normal;
  }

  .sp-break {
    display: block;
  }

  .point-item__text p {
    max-width: 34em;
  }

  .solution__box h2 {
    line-height: 1.45;
  }

  .works-section {
    padding: 0 0 82px;
  }

  .works-section__band {
    width: calc(100% - 70px);
    margin: 0 auto;
    overflow: visible;
  }

  .works-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    min-height: 0;
    padding: 62px 0 0;
  }

  .works-section__content {
    order: 1;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 18px;
  }

  .works-section__heading {
    margin-bottom: 48px;
  }

  .works-logo-grid {
    width: 100%;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--bottom {
    display: flex;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    justify-content: center;
    padding-bottom: 10px;
  }

  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: 1fr;
    width: 100%;
    display: flex;
    padding-bottom: 10px;
    justify-content: center;
  }

  .works-logo-grid__row--top {
    gap: 3px;
    display: flex;
    justify-content: center;
  }

  .works-logo-grid__row--top figure {
    width: min(100%, 170px);
  }

  .works-logo-grid figure {
    min-height: 58px;
  }

  .works-logo-grid img {
    max-height: 72px;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 174px;
    max-height: 72px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: 124px;
    max-height: 72px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img,
  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: 128px;
    max-height: 68px;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 205px;
    max-height: 64px;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 78px;
    max-height: 78px;
  }

  .works-collage {
    width: 100%;
    min-height: 240px;
  }

  .works-collage--left {
    order: 2;
    align-self: flex-start;
    margin-top: 80px;
    margin-left: 0;
    margin-right: auto;
  }

  .works-collage--right {
    order: 3;
    align-self: flex-end;
    min-height: 300px;
    margin-top: 135px;
    margin-left: auto;
    margin-right: 0;
  }

  .works-collage__image--l01 {
    top: -90px;
    left: -12%;
    width: 67%;
  }

  .works-collage__image--l02 {
    top: 44px;
    left: 48%;
    right: auto;
    width: 42%;
  }

  .works-collage__image--l03 {
    top: 192px;
    left: 12%;
    bottom: auto;
    width: 62%;
  }

  .works-collage__image--r01 {
    top: -60px;
    right: -20px;
    width: 66%;
  }

  .works-collage__image--r02 {
    top: 52px;
    left: 19px;
    bottom: auto;
    width: 44%;
  }

  .works-collage__image--r03 {
    top: 154px;
    right: -2%;
    bottom: auto;
    width: 67%;
  }

  .works-section__note {
    margin-top: 270px;
    padding: 0 var(--side);
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .fv__lead {
    font-size: 17px;
    line-height: 1.6;
  }

  .site-header__inner {
    gap: 10px;
    min-height: 62px;
  }

  .site-header__inner > .line-button {
    display: inline-flex;
    width: auto;
    min-width: 150px;
    max-width: 48vw;
    min-height: 42px;
    margin-left: auto;
    padding: 7px 12px;
    gap: 8px;
    font-size: 13px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .site-logo img {
    width: clamp(112px, 33vw, 150px);
  }

  .menu-button {
    width: 54px;
    height: 42px;
    margin-left: auto;
  }

  .menu-button span:not(.sr-only) {
    left: 7px;
    width: 40px;
    background: #111;
  }

  .menu-button span:not(.sr-only):first-child {
    top: 14px;
  }

  .menu-button span:not(.sr-only):nth-child(2) {
    top: 27px;
  }

  .menu-button[aria-expanded="true"] {
    position: fixed;
    top: 28px;
    right: 22px;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):first-child,
  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    top: 20px;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):first-child {
    transform: rotate(0);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: rotate(45deg);
  }

  .line-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 62px;
    padding: 13px 16px;
    gap: 12px;
    font-size: clamp(15px, 4vw, 17px);
    white-space: nowrap;
  }

  .line-button img {
    width: 54px;
    max-width: 18vw;
  }

  .line-button--small img {
    width: 32px;
    max-width: 9vw;
  }

  .site-header__inner > .line-button {
    width: auto;
    min-width: 150px;
    max-width: 48vw;
    min-height: 42px;
    margin-left: auto;
    padding: 7px 12px;
    gap: 8px;
    font-size: 13px;
    line-height: 1.25;
  }

  .site-nav .site-nav__line {
    display: inline-flex;
    width: min(100%, 320px);
  }

  .fv {
    padding-top: 36px;
  }

  .fv__visual {
    min-height: 390px;
  }

  .fv__photo--main img {
    object-position: 34% 50%;
  }

  .fv__photo--sub01 img {
    object-position: 16% 50%;
  }

  .case-list,
  .works-grid,
  .price-grid,
  .concerns-grid {
    grid-template-columns: 1fr;
  }

  .case-list {
    width: min(86%, 860px);
  }

  .concerns-grid p {
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px dotted #cfcfcf;
  }

  .concerns-grid p:last-child {
    border-bottom: 0;
  }

  .point-item,
  .point-item--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px 0 0;
  }

  .point-list {
    gap: 54px;
  }

  .point-item::before,
  .point-item--reverse::before {
    right: auto;
    left: calc(var(--side) * -1);
    width: calc(100% + (var(--side) * 2));
    height: calc(100% - 118px);
  }

  .point-item--reverse .point-item__text,
  .point-item--reverse .point-item__image {
    order: initial;
  }

  .point-item__text {
    padding: 22px 22px 48px;
  }

  .point-item__text h3 {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.4;
  }

  .point-item__image,
  .point-item--reverse .point-item__image {
    justify-self: end;
    width: min(82vw, 640px);
    margin: 40px calc(var(--side) * -1) 0 0;
  }

  .point-item__text p {
    max-width: 32em;
    font-size: 15px;
    line-height: 1.95;
  }

  .about-artist {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .about-artist .section-heading {
    margin-bottom: 46px;
  }

  .about-artist__visual {
    min-height: 360px;
  }

  .about-artist__visual::before {
    left: 8%;
    bottom: 6%;
    width: 68%;
    height: 60%;
  }

  .about-artist__image--main {
    top: 0;
    left: 0;
    width: 78%;
  }

  .about-artist__image--main img {
    object-position: 55% 50%;
  }

  .about-artist__image--sub {
    right: -20px;
    bottom: 0;
    width: 72%;
    aspect-ratio: 363 / 255;
  }

  .about-artist__image--sub img {
    object-position: 39% 48%;
  }

  .about-artist__text {
    width: min(86%, 500px);
    max-width: 32em;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.95;
    text-align: left;
  }

  .about-artist__lead {
    font-size: 16px;
    line-height: 30px;
  }

  .about-artist__lead span {
    font-size: 25px;
    line-height: 30px;
  }

  .about-artist__text p + p {
    margin-top: 22px;
  }

  .works-section {
    padding: 0 0 82px;
  }

  .works-section__band {
    width: calc(100% - 70px);
    margin: 0 auto;
    overflow: visible;
  }

  .works-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    min-height: 0;
    padding: 62px 0 0;
  }

  .works-section__content {
    order: 1;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 18px;
  }

  .works-section__heading {
    margin-bottom: 48px;
  }

  .works-logo-grid {
    display: grid;
    gap: 28px;
    width: 100%;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: 1fr;
  }

  .works-logo-grid__row--top {
    gap: 3px;
  }

  .works-logo-grid__row--top figure {
    width: min(100%, 170px);
  }

  .works-logo-grid__row--bottom figure {
    /* width: min(100%, 170px); */
  }

  .works-logo-grid figure {
    min-height: 58px;
  }

  .works-logo-grid img {
    max-height: 72px;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 174px;
    max-height: 72px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: 124px;
    max-height: 72px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img,
  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: 128px;
    max-height: 68px;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 205px;
    max-height: 64px;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 78px;
    max-height: 78px;
  }

  .works-collage {
    width: 100%;
    min-height: 240px;
  }

  .works-collage--left {
    order: 2;
    align-self: flex-start;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .works-collage--right {
    order: 3;
    align-self: flex-end;
    min-height: 300px;
    margin-top: 75px;
    margin-left: auto;
    margin-right: 0;
  }

  .works-collage__image--l01 {
    width: 67%;
  }

  .works-collage__image--l02 {
    width: 42%;
  }

  .works-collage__image--l03 {
    width: 62%;
  }

  .works-collage__image--l01 {
    top: 0;
    left: -12%;
  }

  .works-collage__image--l02 {
    top: 44px;
    left: 58%;
    right: auto;
  }

  .works-collage__image--l03 {
    top: 132px;
    left: 32%;
    bottom: auto;
  }

  .works-collage__image--r01 {
    top: 0;
    right: -20px;
    width: 66%;
  }

  .works-collage__image--r02 {
    top: 52px;
    left: 19px;
    bottom: auto;
    width: 44%;
  }

  .works-collage__image--r03 {
    top: 124px;
    right: -2%;
    bottom: auto;
    width: 67%;
  }

  .works-section__note {
    margin-top: 30px;
    padding: 0 var(--side);
    font-size: 15px;
  }

  .solution {
    width: calc(100% - 32px);
    padding: 32px 0 52px;
  }

  .solution__box {
    padding: 100px 22px;
  }

  .solution__image {
    position: relative;
    width: 38%;
    aspect-ratio: 4 / 3;
  }

  .solution__image--left {
    left: -16px;
    bottom: -82px;
  }

  .solution__image--right {
    top: -73px;
    right: -16px;
    margin-left: auto;
    margin-bottom: -22px;
  }

  .price-card {
    padding: 28px 20px;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
  }

  .staff-slider-wrap {
    padding-top: 8px;
  }

  .staff-swiper {
    padding-bottom: 48px;
  }

  .staff-card {
    min-height: 450px;
    padding: 0 12px 22px;
  }

  .staff-card__name {
    max-width: calc(100% - 10px);
    margin-top: -15px;
    margin-left: -22px;
    padding: 9px 12px 10px;
    font-size: 17px;
    white-space: normal;
  }

  .staff-card__name small {
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
  }

  .staff-card .image-frame {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .staff-card__actions {
    margin: -30px 10px 0 0;
  }

  .staff-card__actions a {
    width: 43px;
    height: 43px;
    padding: 10px;
  }

  .staff-card__role {
    margin: 18px 8px 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .staff-card__text {
    margin: 10px 8px 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .voice-section {
    padding-top: 76px;
  }

  .voice-slider-wrap {
    width: min(calc(100% - 40px), 420px);
    padding-top: 8px;
  }

  .voice-swiper {
    padding-bottom: 48px;
  }

  .voice-card {
    min-height: 430px;
    padding: 24px 16px 22px;
  }

  .voice-card h2 {
    font-size: 14px;
  }

  .voice-card__icon {
    width: 60px;
    margin-bottom: 18px;
  }

  .voice-card__body {
    padding: 22px clamp(16px, 5vw, 24px);
  }

  .voice-card__body h3 {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .voice-card__body p {
    font-size: 13.8px;
    line-height: 1.85;
    letter-spacing: 0;
  }

  .voice-arrow--next {
    top: -102px;
    right: 0;
  }

  .voice-arrow--prev {
    top: -42px;
    right: 0;
  }

  .voice-swiper .voice-pagination {
    justify-content: center;
    gap: 8px;
    padding-right: 0;
  }

  .voice-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .voice-swiper .swiper-pagination-bullet-active {
    width: 48px;
  }

  .slider-arrow--next {
    top: -102px;
    right: 0;
  }

  .slider-arrow--prev {
    top: -42px;
    right: 0;
  }

  .staff-swiper .swiper-pagination {
    justify-content: center;
    gap: 8px;
    padding-right: 0;
  }

  .staff-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .staff-swiper .swiper-pagination-bullet-active {
    width: 48px;
  }

  .flow-item {
    grid-template-columns: 58px 64px 1fr;
    gap: 12px;
    padding: 22px 16px;
  }

  .flow-item span {
    min-height: 58px;
  }

  .flow-item__icon {
    width: 56px;
    height: 56px;
  }

  .flow-item span,
  .flow-item p {
    font-size: 16px;
  }

  .faq-item {
    margin-bottom: 18px;
    padding: 24px 14px 18px;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .faq-question {
    margin-bottom: 22px;
    padding: 0 8px;
  }

  .faq-question span {
    font-size: 24px;
  }

  .faq-question p,
  .faq-answer p {
    font-size: 15px;
    line-height: 28px;
  }

  .faq-answer {
    padding: 18px 12px;
  }

  .faq-answer span {
    font-size: 25px;
  }

  .company::before {
    right: calc(var(--side) * -1);
    bottom: 56px;
    width: calc(100% + var(--side));
    height: 58%;
  }

  .company .section-heading {
    text-align: center;
  }

  .company .section-heading::before {
    margin-left: auto;
  }

  .company__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company__image {
    width: min(100%, 430px);
    margin: 0 auto -22px;
  }

  .company-list {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 44px 20px 26px;
    font-size: 15px;
  }

  .company-list dd {
    margin-bottom: 14px;
  }

  .final-cta {
    padding-bottom: 0;
  }

  .final-cta__box {
    padding: 44px 22px 54px;
  }

  .final-cta__box h2 {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.55;
  }

  .final-cta__box p {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.95;
    text-align: center;
  }

  .final-cta__pc {
    display: none;
  }

  .final-cta__sp {
    display: inline;
  }

  .site-footer {
    padding: 62px var(--side) 32px;
  }

  .site-logo--footer {
    margin-bottom: 36px;
  }

  .site-logo--footer img {
    width: min(56vw, 160px);
  }

  .footer-nav {
    flex-direction: column;
    gap: 18px;
    width: min(100%, 260px);
    margin-bottom: 46px;
  }

  .footer-nav a {
    min-width: 0;
    min-height: 34px;
    padding: 7px 16px;
    font-size: 15px;
  }

  .footer-copy {
    font-size: 10px;
  }
}

/* Final quality adjustments */
.about-artist__lead span {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-question .faq-toggle {
  color: var(--color-pink);
}

@media (max-width: 720px) {
  .about-artist__lead span {
    font-size: inherit;
    line-height: inherit;
  }

  .works-logo-grid {
    width: min(100%, 300px);
    gap: 20px;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding-bottom: 0;
  }

  .works-logo-grid__row--top {
    gap: 14px;
  }

  .works-logo-grid__row--bottom {
    gap: 18px;
  }

  .works-logo-grid figure {
    width: 100%;
    min-height: 52px;
    padding: 4px 0;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 146px;
    max-height: 58px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: 118px;
    max-height: 58px;
  }

  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: 94px;
    max-height: 58px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: 116px;
    max-height: 56px;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: 142px;
    max-height: 62px;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 184px;
    max-height: 54px;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 72px;
    max-height: 72px;
  }

  .faq-item {
    padding: 0;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 28px 1fr 28px;
  }

  .faq-question {
    margin-bottom: 0;
    padding: 22px 14px;
  }

  .faq-answer {
    grid-template-columns: 28px 1fr;
    margin: 0 14px 18px;
    padding: 18px 12px;
  }

  .final-cta__image {
    width: 80%;
    height: 80%;
    aspect-ratio: 370 / 535;
    margin: 0 auto 32px;
  }

  .final-cta__banner-link {
    box-shadow: none;
  }

  .final-cta__banner-link::after {
    right: 10px;
    bottom: 8px;
    width: 24px;
    height: 24px;
  }
}

/* Responsive polish requested on 2026-07-30 */
.faq-answer[hidden] {
  display: none !important;
}

.faq-item {
  padding: 34px 48px;
}

.faq-question {
  grid-template-columns: 38px 1fr 32px;
  padding: 0;
}

.faq-answer {
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 38px 1fr;
  margin: 30px 0 0;
  padding: 24px 0;
}

.concerns-grid p br {
  display: none;
}

@media (max-width: 1100px) {
  .faq-item {
    padding: 30px 36px;
  }

  .faq-answer {
    padding: 22px 0;
  }
}

@media (max-width: 820px) {
  .works-logo-grid {
    width: min(100%, 420px);
    gap: 18px;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(86px, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 16px 14px;
    width: 100%;
    padding-bottom: 0;
  }

  .works-logo-grid__row--top figure:nth-child(3) {
    grid-column: auto;
  }

  .works-logo-grid figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    display: grid;
    place-items: center;
    width: 104px;
    height: 64px;
    min-height: 64px;
    padding: 0;
  }

  .works-logo-grid img,
  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(3) img,
  .works-logo-grid__row--bottom figure:nth-child(1) img,
  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img,
  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 102px;
    max-height: 52px;
    object-fit: contain;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: 108px;
  }
}

@media (max-width: 720px) {
  .faq-item {
    padding: 24px 18px;
  }

  .faq-question {
    grid-template-columns: 28px 1fr 28px;
    gap: 12px;
    padding: 0;
  }

  .faq-answer {
    grid-template-columns: 28px 1fr;
    gap: 12px;
    margin-top: 22px;
    padding: 18px 0;
  }

  .concerns-grid p br {
    display: initial;
  }
}

/* FAQ and works-logo layout refinements */
.faq-item {
  padding: clamp(30px, 3.6vw, 48px) clamp(30px, 6vw, 78px);
}

.faq-question {
  grid-template-columns: 42px 1fr 36px;
  gap: 28px;
  align-items: center;
  box-sizing: border-box;
  padding: 0 clamp(24px, 4vw, 42px);
}

.faq-answer {
  grid-template-columns: 42px 1fr;
  gap: 28px;
  margin-top: clamp(28px, 3vw, 42px);
  padding: clamp(22px, 2.5vw, 30px) clamp(24px, 4vw, 42px);
}

.faq-answer span {
  justify-self: start;
}

.faq-toggle {
  justify-self: end;
}

@media (max-width: 820px) {
  .works-logo-grid {
    width: min(100%, 440px);
  }

  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .works-logo-grid__row--bottom figure {
    width: 72px;
    height: 48px;
    min-height: 48px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img,
  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img,
  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 68px;
    max-height: 38px;
  }
}

@media (max-width: 720px) {
  .faq-item {
    padding: 24px 20px;
  }

  .faq-question {
    grid-template-columns: 30px 1fr 28px;
    gap: 14px;
    padding: 0 16px;
  }

  .faq-answer {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 18px 16px;
  }

  .works-logo-grid {
    width: min(100%, 330px);
  }

  .works-logo-grid__row--bottom {
    gap: 6px;
  }

  .works-logo-grid__row--bottom figure {
    width: 68px;
    height: 46px;
    min-height: 46px;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img,
  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img,
  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: 62px;
    max-height: 34px;
  }
}

/* Final CTA spacing */
.final-cta__box {
  margin: 150px auto 0;
}

@media (max-width: 1100px) {
  .final-cta__box {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .final-cta__box {
    margin-top: 100px;
  }
}

/* Aug 2026 final requested adjustments */
.site-header .site-logo img {
  width: clamp(166px, 18.5vw, 252px);
}

.point-item__image--02 img {
  object-position: 50% 48%;
}

.works-logo-grid__row--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  justify-items: center;
  column-gap: clamp(44px, 5vw, 78px);
  row-gap: 20px;
  width: min(100%, 840px);
}

.works-logo-grid__row--top figure:nth-child(4) img {
  max-width: 112px;
  max-height: 76px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card__note {
  margin: auto 0 0;
  padding-top: 18px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}

.site-footer {
  color: #fff;
  background: #433d3c;
}

.site-footer .footer-nav a {
  color: #fff;
  border-color: #fff;
}

.site-footer .footer-copy,
.site-footer .footer-copy a {
  color: #fff;
}

@media (max-width: 1024px) {
  .site-header .site-logo img {
    width: clamp(154px, 24vw, 222px);
  }

  .works-logo-grid__row--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    column-gap: clamp(20px, 3.4vw, 42px);
    width: min(100%, 680px);
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 164px;
    max-height: 66px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: 112px;
    max-height: 68px;
  }

  .works-logo-grid__row--top figure:nth-child(3) img,
  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: 94px;
    max-height: 62px;
  }
}

@media (max-width: 820px) {
  .works-logo-grid__row--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 440px);
  }

  .works-logo-grid__row--top figure {
    width: 76px;
    height: 50px;
    min-height: 50px;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 78px;
    max-height: 44px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: 76px;
    max-height: 44px;
  }

  .works-logo-grid__row--top figure:nth-child(3) img,
  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: 70px;
    max-height: 40px;
  }
}

@media (max-width: 720px) {
  .site-header .site-logo img {
    width: clamp(116px, 31vw, 152px);
  }

  .works-logo-grid__row--top {
    gap: 6px;
    width: min(100%, 330px);
  }

  .works-logo-grid__row--top figure {
    width: 68px;
    height: 46px;
    min-height: 46px;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: 68px;
    max-height: 38px;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: 66px;
    max-height: 38px;
  }

  .works-logo-grid__row--top figure:nth-child(3) img,
  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: 62px;
    max-height: 34px;
  }

  .price-card__note {
    padding-top: 14px;
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Aug 2026 works collage placement update */
@media (min-width: 1101px) {
  .works-collage__image--r01 {
    top: 116px;
    right: 64px;
    z-index: 1;
    width: min(190px, 48%);
    aspect-ratio: 189 / 252;
  }

  .works-collage__image--r02 {
    left: 63%;
    top: 270px;
    z-index: 2;
    width: min(98px, 28%);
    aspect-ratio: 97 / 156;
  }

  .works-collage__image--r03 {
    right: 35%;
    bottom: -88px;
    z-index: 3;
    width: min(130px, 34%);
    aspect-ratio: 130 / 195;
  }

  .works-collage__image--r01 img {
    object-position: center top;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .works-collage__image--l03 {
    top: auto;
    left: 16%;
    bottom: 128px;
    width: min(124px, 40%);
  }

  .works-collage__image--r03 {
    top: auto;
    right: -2%;
    bottom: -6px;
    width: min(112px, 34%);
  }
}

@media (max-width: 720px) {
  .works-collage--right {
    order: 3;
    align-self: flex-end;
    min-height: 300px;
    margin-top: 75px;
    margin-left: auto;
    margin-right: 0;
  }

  .works-collage__image--l02 {
    top: 77px;
    left: 71%;
    right: auto;
  }

  .works-collage__image--l03 {
    top: 162px;
    left: 32%;
    bottom: auto;
  }

  .works-collage__image--r02 {
    top: 52px;
    left: 13px;
    bottom: auto;
    width: 44%;
  }

  .works-collage__image--r01 {
    top: -40px;
    right: -20px;
    width: 66%;
  }

  .works-collage__image--r03 {
    top: 157px;
    right: -2%;
    bottom: auto;
    width: 67%;
  }
}

/* 404 page */
.not-found-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(430px, 58vh, 660px);
  padding: clamp(126px, 13vw, 188px) var(--side) clamp(96px, 10vw, 150px);
  text-align: center;
}

.not-found {
  width: min(100%, 760px);
}

.not-found h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
}

.not-found__lead {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.not-found__text {
  margin: 0 0 36px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.not-found__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  gap: 24px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.not-found__button:hover {
  transform: translateY(-2px);
  background: var(--color-text);
  color: #fff;
}

@media (max-width: 1024px) {
  .not-found-page {
    min-height: 52vh;
    padding-top: clamp(112px, 18vw, 160px);
  }
}

@media (max-width: 720px) {
  .not-found-page {
    min-height: 460px;
    padding: 112px 28px 88px;
  }

  .not-found h1 {
    font-size: 26px;
  }

  .not-found__lead {
    font-size: 14px;
  }

  .not-found__text {
    font-size: 13px;
  }

  .not-found__button {
    min-width: 154px;
    padding: 13px 22px;
    gap: 18px;
    font-size: 13px;
  }
}

/* Narrow device polish */
@media (max-width: 540px) {
  .works-section {
    overflow: hidden;
  }

  .works-section__band {
    width: calc(100% - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .works-collage {
    width: min(100%, 330px);
  }

  .works-collage--left {
    min-height: 315px;
  }

  .works-collage--right {
    min-height: 390px;
    margin-top: 56px;
  }

  .works-collage__image--l01 {
    left: -7%;
    width: 62%;
  }

  .works-collage__image--l02 {
    top: 74px;
    left: 66%;
    width: 35%;
  }

  .works-collage__image--l03 {
    top: 166px;
    left: 24%;
    width: 54%;
  }

  .works-collage__image--r01 {
    top: -22px;
    right: -7%;
    width: 60%;
  }

  .works-collage__image--r02 {
    top: 92px;
    left: 4%;
    width: 34%;
  }

  .works-collage__image--r03 {
    top: 166px;
    right: 4%;
    width: 58%;
  }

  .works-section__note {
    margin-top: 96px;
    padding: 0 26px;
    font-size: 15px;
    line-height: 2.05;
  }
}

/* 2026-08-10: works logo, stylist card, and 540px text alignment refinements */
.works-logo-grid {
  width: min(100%, 940px);
  margin-right: auto;
  margin-left: auto;
  gap: clamp(54px, 5.4vw, 86px);
}

.works-logo-grid__row,
.works-logo-grid__row--top,
.works-logo-grid__row--bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: min(100%, 940px);
  margin-right: auto;
  margin-left: auto;
  column-gap: clamp(58px, 5.8vw, 96px);
  row-gap: 22px;
}

.works-logo-grid__row figure,
.works-logo-grid__row--top figure,
.works-logo-grid__row--bottom figure {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  margin: 0;
}

.works-logo-grid__row--top figure:nth-child(1) img {
  max-width: 190px;
  max-height: 78px;
}

.works-logo-grid__row--top figure:nth-child(2) img {
  max-width: 132px;
  max-height: 78px;
}

.works-logo-grid__row--top figure:nth-child(3) img,
.works-logo-grid__row--top figure:nth-child(4) img {
  max-width: 120px;
  max-height: 76px;
}

.works-logo-grid__row--bottom figure:nth-child(1) img {
  max-width: 118px;
  max-height: 76px;
}

.works-logo-grid__row--bottom figure:nth-child(2) img {
  max-width: 154px;
  max-height: 78px;
}

.works-logo-grid__row--bottom figure:nth-child(3) img {
  max-width: 234px;
  max-height: 76px;
}

.works-logo-grid__row--bottom figure:nth-child(4) img {
  max-width: 94px;
  max-height: 76px;
}

.staff-card {
  --staff-card-inset: 38px;
}

.staff-card .image-frame {
  width: calc(100% - (var(--staff-card-inset) * 2));
  margin: 26px var(--staff-card-inset) 0;
}

.staff-card__actions {
  margin-right: calc(var(--staff-card-inset) - 10px);
}

.staff-card__role,
.staff-card__text {
  margin-right: var(--staff-card-inset);
  margin-left: var(--staff-card-inset);
}

@media (max-width: 1100px) {
  .works-logo-grid,
  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    width: min(100%, 760px);
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    column-gap: clamp(26px, 4vw, 54px);
  }

  .staff-card {
    --staff-card-inset: 28px;
  }

  .staff-card .image-frame {
    width: calc(100% - (var(--staff-card-inset) * 2));
    margin-right: var(--staff-card-inset);
    margin-left: var(--staff-card-inset);
  }

  .staff-card__actions {
    margin-right: calc(var(--staff-card-inset) - 8px);
  }

  .staff-card__role,
  .staff-card__text {
    margin-right: var(--staff-card-inset);
    margin-left: var(--staff-card-inset);
  }
}

@media (max-width: 820px) {
  .works-logo-grid,
  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    width: min(100%, 560px);
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    column-gap: 20px;
    row-gap: 22px;
  }
}

@media (max-width: 720px) {
  .works-logo-grid,
  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    width: min(100%, 360px);
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 22px;
  }

  .staff-card {
    --staff-card-inset: 18px;
  }

  .staff-card .image-frame {
    width: calc(100% - (var(--staff-card-inset) * 2));
    margin-right: var(--staff-card-inset);
    margin-left: var(--staff-card-inset);
  }

  .staff-card__actions {
    margin-right: calc(var(--staff-card-inset) - 8px);
  }

  .staff-card__role,
  .staff-card__text {
    margin-right: var(--staff-card-inset);
    margin-left: var(--staff-card-inset);
  }
}

@media (max-width: 540px) {
  .about-artist__text p {
    max-width: 29em;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    line-height: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-break: strict;
  }
}

@media (max-width: 390px) {
  .works-section__band {
    width: calc(100% - 22px);
  }

  .works-collage {
    width: min(100%, 300px);
  }

  .works-collage--left {
    min-height: 290px;
  }

  .works-collage--right {
    min-height: 365px;
  }

  .works-section__note {
    margin-top: 82px;
    padding: 0 22px;
    font-size: 14px;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .works-section {
    padding-bottom: 120px;
    overflow: hidden;
  }

  .works-section__band {
    width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
  }

  .works-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 52px 32px;
    min-height: 0;
    padding: 88px 36px 92px;
  }

  .works-section__content {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .works-collage {
    width: min(100%, 340px);
    min-height: 500px;
  }

  .works-collage--left {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .works-collage--right {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    margin: 48px 0 0;
  }

  .works-collage__image--l01 {
    top: 0;
    left: -4%;
    width: min(214px, 62%);
  }

  .works-collage__image--l02 {
    top: 92px;
    left: 60%;
    right: auto;
    width: min(108px, 32%);
  }

  .works-collage__image--l03 {
    top: 236px;
    left: 18%;
    bottom: auto;
    width: min(176px, 52%);
  }

  .works-collage__image--r01 {
    top: 0;
    right: -2%;
    width: min(214px, 62%);
  }

  .works-collage__image--r02 {
    top: 128px;
    left: 2%;
    bottom: auto;
    width: min(116px, 34%);
  }

  .works-collage__image--r03 {
    top: 254px;
    right: 0;
    bottom: auto;
    width: min(176px, 52%);
  }

  .works-section__note {
    position: relative;
    z-index: 3;
    margin-top: clamp(54px, 7vw, 82px);
  }
}

@media (min-width: 541px) and (max-width: 820px) {
  .works-section {
    padding-bottom: 94px;
    overflow: hidden;
  }

  .works-section__band {
    width: calc(100% - 38px);
    margin-right: auto;
    margin-bottom: 88px;
    margin-left: auto;
    overflow: visible;
  }

  .works-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 20px;
    row-gap: 0;
    min-height: 0;
    padding: 62px 18px 38px;
  }

  .works-section__content {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    padding: 0 8px;
  }

  .works-collage {
    width: 100%;
    min-height: 520px;
  }

  .works-collage--left {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin: 92px 0 0;
  }

  .works-collage--right {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    margin: 112px 0 0;
  }

  .works-collage__image--l01 {
    top: 0;
    left: -12%;
    width: 67%;
  }

  .works-collage__image--l02 {
    top: 77px;
    left: 71%;
    right: auto;
    width: 42%;
  }

  .works-collage__image--l03 {
    top: 162px;
    left: 32%;
    bottom: auto;
    width: 62%;
  }

  .works-collage__image--r01 {
    top: -40px;
    right: -20px;
    width: 66%;
  }

  .works-collage__image--r02 {
    top: 52px;
    left: 13px;
    bottom: auto;
    width: 44%;
  }

  .works-collage__image--r03 {
    top: 157px;
    right: -2%;
    bottom: auto;
    width: 67%;
  }

  .works-section__note {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 0 var(--side);
  }
}

/* Final cross-width stability pass */
html,
body {
  overflow-x: hidden;
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-header__inner > .line-button {
    min-width: 220px;
    padding-right: 22px;
    padding-left: 22px;
    font-size: 16px;
  }

  .works-section__inner {
    grid-template-columns: minmax(260px, 27%) minmax(420px, 1fr) minmax(260px, 27%);
    column-gap: clamp(18px, 2.2vw, 30px);
    padding-right: clamp(26px, 4vw, 52px);
    padding-left: clamp(26px, 4vw, 52px);
  }

  .works-collage {
    min-height: 520px;
  }

  .works-section__content,
  .works-logo-grid {
    width: min(100%, 640px);
    margin-right: auto;
    margin-left: auto;
  }

  .works-section__band {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .works-section__inner {
    grid-template-columns: minmax(0, 25%) minmax(420px, 50%) minmax(0, 25%) !important;
    align-items: center !important;
    column-gap: 0 !important;
    min-height: clamp(500px, 50vw, 580px) !important;
    padding: clamp(76px, 7.6vw, 90px) clamp(22px, 3vw, 34px) clamp(84px, 8vw, 104px) !important;
  }

  .works-section__content {
    width: auto !important;
    margin: 0 !important;
  }

  .works-collage {
    min-height: clamp(430px, 44vw, 500px) !important;
  }

  .works-collage__image--l01 {
    top: clamp(-54px, -4.5vw, -38px) !important;
    left: -3% !important;
    width: clamp(144px, 15vw, 170px) !important;
  }

  .works-collage__image--l02 {
    top: clamp(54px, 5.8vw, 68px) !important;
    left: 43% !important;
    width: clamp(88px, 8.7vw, 102px) !important;
  }

  .works-collage__image--l03 {
    top: auto !important;
    left: 18% !important;
    bottom: clamp(26px, 3.4vw, 42px) !important;
    width: clamp(128px, 13vw, 150px) !important;
  }

  .works-collage__image--r01 {
    top: clamp(56px, 6vw, 72px) !important;
    right: -4% !important;
    width: clamp(148px, 15.5vw, 178px) !important;
  }

  .works-collage__image--r02 {
    top: clamp(166px, 18vw, 204px) !important;
    left: 14% !important;
    width: clamp(82px, 8.5vw, 98px) !important;
  }

  .works-collage__image--r03 {
    top: auto !important;
    right: 2% !important;
    bottom: clamp(-30px, -2.5vw, -14px) !important;
    width: clamp(126px, 13vw, 150px) !important;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .site-header__inner > .line-button {
    flex: 0 0 auto;
    min-width: 210px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
  }

  .works-section {
    overflow: hidden;
  }

  .works-section__band {
    overflow: visible;
  }

  .works-section__inner {
    padding-top: clamp(92px, 9vw, 112px);
    padding-bottom: clamp(100px, 10vw, 126px);
  }

  .works-collage {
    min-height: clamp(500px, 55vw, 570px);
  }

  .works-collage--right {
    margin-top: clamp(46px, 5vw, 62px);
  }

  .works-section__note {
    margin-top: clamp(78px, 8vw, 106px);
  }
}

@media (min-width: 541px) and (max-width: 820px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .site-header__inner > .line-button {
    flex: 0 0 auto;
    min-width: 190px;
    max-width: 42vw;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 15px;
  }

  .works-section__band {
    margin-bottom: clamp(104px, 15vw, 140px);
  }

  .works-section__inner {
    padding-top: clamp(64px, 9vw, 82px);
  }

  .works-collage {
    min-height: clamp(450px, 65vw, 545px);
  }

  .works-collage--left {
    margin-top: clamp(78px, 12vw, 104px);
  }

  .works-collage--right {
    margin-top: clamp(98px, 14vw, 126px);
  }

  .works-section__note {
    margin-top: clamp(46px, 7vw, 76px);
  }
}

@media (max-width: 540px) {
  .site-header__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header__inner > .line-button {
    min-width: 146px;
    max-width: 50vw;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .works-section__inner {
    padding-top: 58px;
  }

  .works-section__note {
    margin-top: clamp(86px, 20vw, 112px);
  }

  .voice-slider-wrap {
    width: min(calc(100% - 32px), 390px);
  }

  .voice-card {
    min-height: 446px;
    padding: 22px 14px 20px;
  }

  .voice-card__body {
    padding: 20px 16px;
  }

  .voice-card__body h3 {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .voice-card__body p {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .final-cta__box p,
  .about-artist__text,
  .point-item__text p,
  .voice-card__body p {
    overflow-wrap: normal;
    word-break: normal;
  }
}

/* 2026-08-10: keep works logos and about copy stable on narrow/tablet widths */
.about-artist {
  overflow-x: hidden;
}

.about-artist__text,
.about-artist__text p {
  line-break: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .works-logo-grid {
    width: min(100%, 700px);
    max-width: calc(100vw - (var(--side) * 2));
    margin-inline: auto;
    gap: clamp(24px, 4vw, 40px);
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    column-gap: clamp(18px, 3vw, 36px);
    row-gap: 20px;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin: 0;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    display: block;
    width: auto;
    max-width: min(100%, 108px);
    max-height: 50px;
    object-fit: contain;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: min(100%, 118px);
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 132px);
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 72px);
  }

  .about-artist__inner {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: var(--side);
    box-sizing: border-box;
    overflow: visible;
  }

  .about-artist__visual {
    width: min(100%, 680px);
    max-width: calc(100vw - (var(--side) * 2));
    margin: 70px auto 0;
    transform: none;
  }

  .about-artist__text {
    width: 100%;
    max-width: min(100%, 38em);
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
  }

  .about-artist__text p {
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
    line-height: 1.9;
    letter-spacing: 0;
    line-break: auto;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

@media (max-width: 820px) {
  .works-logo-grid {
    width: min(100%, 430px);
    max-width: calc(100vw - (var(--side) * 2));
    gap: 18px;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(22px, 7vw, 44px);
    row-gap: 18px;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    min-height: 52px;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 112px);
    max-height: 46px;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: min(100%, 118px);
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 128px);
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 66px);
  }

  .about-artist__visual {
    width: min(100%, 620px);
  }

  .about-artist__image--main {
    left: 0;
    width: 74%;
  }

  .about-artist__image--sub {
    right: 0;
    width: 70%;
  }

  .about-artist__text {
    max-width: min(100%, 34em);
  }
}

@media (max-width: 540px) {
  .works-logo-grid {
    width: min(100%, 320px);
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    column-gap: 18px;
    row-gap: 16px;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 96px);
    max-height: 42px;
  }

  .about-artist__inner {
    padding-inline: clamp(22px, 6vw, 32px);
  }

  .about-artist__visual {
    width: calc(100vw - 48px);
    max-width: 100%;
    margin-top: 56px;
  }

  .about-artist__image--main {
    top: 0;
    left: 0;
    width: 76%;
  }

  .about-artist__image--sub {
    right: 0;
    bottom: 0;
    width: 68%;
  }

  .about-artist__text {
    max-width: 100%;
  }

  .about-artist__text p {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
  }
}

/* 2026-08-10: responsive guard for works logos and about copy */
@media (max-width: 1024px) {
  .about-artist {
    overflow-x: hidden;
  }

  .works-logo-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 720px) !important;
    max-width: calc(100vw - (var(--side) * 2)) !important;
    margin-inline: auto !important;
    gap: clamp(20px, 3vw, 32px) !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 22px clamp(24px, 4vw, 46px) !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 140px !important;
    min-height: 56px !important;
    margin: 0 !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    display: block !important;
    width: auto !important;
    max-width: min(100%, 108px) !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: min(100%, 116px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 126px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 68px) !important;
  }

  .about-artist__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    width: min(100%, 760px) !important;
    max-width: calc(100vw - (var(--side) * 2)) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .about-artist__visual {
    width: min(100%, 640px) !important;
    max-width: 100% !important;
    margin: 70px auto 0 !important;
  }

  .about-artist__text {
    width: 100% !important;
    max-width: min(100%, 35em) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    box-sizing: border-box !important;
  }

  .about-artist__text p {
    max-width: 100% !important;
    margin-inline: 0 !important;
    line-height: 1.95 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    line-break: auto !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 820px) {
  .works-logo-grid {
    width: min(100%, 400px) !important;
    gap: 18px !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 28px !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    max-width: 148px !important;
    min-height: 50px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 94px) !important;
    max-height: 42px !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: min(100%, 104px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 108px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 58px) !important;
  }

  .about-artist__inner {
    width: min(100%, 620px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .about-artist__visual {
    width: min(100%, 560px) !important;
  }

  .about-artist__text {
    max-width: min(100%, 32em) !important;
  }
}

@media (max-width: 540px) {
  .works-logo-grid {
    width: min(100%, 300px) !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    gap: 14px 18px !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    max-width: 132px !important;
    min-height: 44px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 82px) !important;
    max-height: 38px !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img {
    max-width: min(100%, 92px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 96px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 54px) !important;
  }

  .about-artist__inner {
    width: min(100%, 360px) !important;
    max-width: calc(100vw - 44px) !important;
    padding-inline: 0 !important;
  }

  .about-artist__visual {
    width: 100% !important;
    margin-top: 56px !important;
  }

  .about-artist__image--main {
    left: 0 !important;
    width: 75% !important;
  }

  .about-artist__image--sub {
    right: 0 !important;
    width: 68% !important;
  }

  .about-artist__text {
    max-width: 22em !important;
  }

  .about-artist__text p {
    font-size: 16px !important;
    line-height: 1.95 !important;
  }
}

/* 2026-08-10: final stability for works logos and about section on tablet/SP */
@media (max-width: 1024px) {
  .works-logo-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: min(100%, 620px) !important;
    max-width: calc(100vw - 48px) !important;
    margin-inline: auto !important;
    gap: 22px !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
    padding-bottom: 0 !important;
    gap: 20px 34px !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    max-width: 180px !important;
    min-width: 0 !important;
    min-height: 56px !important;
    margin: 0 !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    display: block !important;
    width: auto !important;
    max-width: min(100%, 118px) !important;
    max-height: 52px !important;
    object-fit: contain !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 136px) !important;
    max-height: 54px !important;
  }

  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: min(100%, 112px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 138px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 62px) !important;
    max-height: 58px !important;
  }

  .about-artist {
    overflow-x: clip !important;
  }

  .about-artist__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    width: min(100%, 760px) !important;
    max-width: calc(100vw - 48px) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    gap: clamp(58px, 8vw, 100px) !important;
  }

  .about-artist__visual {
    width: min(100%, 680px) !important;
    max-width: 100% !important;
    margin: 70px auto 0 !important;
  }

  .about-artist__text {
    width: 100% !important;
    max-width: min(100%, 36em) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    text-align: left !important;
  }

  .about-artist__text p {
    max-width: 100% !important;
    margin-inline: 0 !important;
    line-height: 1.95 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    line-break: strict !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 720px) {
  .works-logo-grid {
    width: min(100%, 420px) !important;
    max-width: calc(100vw - 40px) !important;
    gap: 16px !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 22px !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    max-width: 148px !important;
    min-height: 50px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 100px) !important;
    max-height: 46px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 112px) !important;
  }

  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: min(100%, 96px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 118px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 56px) !important;
  }

  .about-artist__inner {
    width: min(100%, 380px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  .about-artist__visual {
    width: 100% !important;
    min-height: clamp(300px, 78vw, 380px) !important;
    margin-top: 50px !important;
  }

  .about-artist__image--main {
    left: 0 !important;
    width: 74% !important;
  }

  .about-artist__image--sub {
    right: 0 !important;
    width: 70% !important;
  }

  .about-artist__text {
    max-width: 21em !important;
  }

  .about-artist__text p {
    font-size: 16px !important;
    line-height: 1.95 !important;
  }
}

@media (max-width: 540px) {
  .works-logo-grid {
    width: min(100%, 320px) !important;
    max-width: calc(100vw - 34px) !important;
    gap: 14px !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    gap: 14px 18px !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    max-width: 140px !important;
    min-height: 46px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 88px) !important;
    max-height: 40px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 96px) !important;
  }

  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: min(100%, 86px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 98px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 52px) !important;
  }

  .about-artist__inner {
    width: min(100%, 360px) !important;
    max-width: calc(100vw - 44px) !important;
  }

  .about-artist__text {
    max-width: 22em !important;
  }
}

/* 2026-08-10: works logo alignment for PC/tablet and point 03 paragraph wrap */
@media (min-width: 721px) {
  .works-logo-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(720px, 58vw) !important;
    max-width: 100% !important;
    margin: clamp(48px, 5vw, 72px) auto 0 !important;
    gap: clamp(30px, 4vw, 48px) !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(82px, 1fr)) !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    gap: clamp(22px, 3.4vw, 54px) !important;
    padding-bottom: 0 !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 136px !important;
    min-height: 64px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    width: auto !important;
    max-width: min(100%, 112px) !important;
    max-height: 58px !important;
    object-fit: contain !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 118px) !important;
  }

  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: min(100%, 106px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 126px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(4) img {
    max-width: min(100%, 64px) !important;
    max-height: 64px !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .works-logo-grid {
    width: min(680px, 58vw) !important;
    gap: 34px !important;
  }

  .works-logo-grid__row,
  .works-logo-grid__row--top,
  .works-logo-grid__row--bottom {
    grid-template-columns: repeat(4, minmax(72px, 1fr)) !important;
    gap: clamp(14px, 2.4vw, 34px) !important;
  }

  .works-logo-grid figure,
  .works-logo-grid__row figure,
  .works-logo-grid__row--top figure,
  .works-logo-grid__row--bottom figure {
    max-width: 118px !important;
    min-height: 56px !important;
  }

  .works-logo-grid img,
  .works-logo-grid__row img,
  .works-logo-grid__row--top img,
  .works-logo-grid__row--bottom img {
    max-width: min(100%, 96px) !important;
    max-height: 48px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img,
  .works-logo-grid__row--top figure:nth-child(2) img,
  .works-logo-grid__row--top figure:nth-child(4) img {
    max-width: min(100%, 98px) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(2) img,
  .works-logo-grid__row--bottom figure:nth-child(3) img {
    max-width: min(100%, 108px) !important;
  }
}

@media (min-width: 1025px) {
  .point-list .point-item:nth-child(3) .point-item__text p {
    max-width: 600px !important;
    line-height: 2 !important;
    text-align: left !important;
    text-wrap: pretty;
    line-break: strict;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* 2026-08-10: enlarge the first two works logos while preserving the grid */
@media (min-width: 1025px) {
  .works-logo-grid__row--top {
    gap: clamp(28px, 3.2vw, 58px) !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) {
    max-width: 198px !important;
    min-height: 104px !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) {
    max-width: 184px !important;
    min-height: 96px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: min(100%, 190px) !important;
    max-height: 100px !important;
    transform: scale(1.34) !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 164px) !important;
    max-height: 86px !important;
    transform: scale(1.18) !important;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .works-logo-grid__row--top {
    gap: 22px 32px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) {
    max-width: 214px !important;
    min-height: 90px !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) {
    max-width: 206px !important;
    min-height: 82px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: min(100%, 204px) !important;
    max-height: 88px !important;
    transform: scale(1.28) !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 176px) !important;
    max-height: 78px !important;
    transform: scale(1.16) !important;
  }
}

@media (max-width: 720px) {
  .works-logo-grid__row--top {
    gap: 18px 24px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) {
    max-width: 176px !important;
    min-height: 76px !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) {
    max-width: 170px !important;
    min-height: 70px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: min(100%, 162px) !important;
    max-height: 74px !important;
    transform: scale(1.24) !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 144px) !important;
    max-height: 66px !important;
    transform: scale(1.16) !important;
  }
}

@media (max-width: 540px) {
  .works-logo-grid__row--top {
    gap: 16px 20px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) {
    max-width: 154px !important;
    min-height: 66px !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) {
    max-width: 150px !important;
    min-height: 62px !important;
  }

  .works-logo-grid__row--top figure:nth-child(1) img {
    max-width: min(100%, 138px) !important;
    max-height: 64px !important;
    transform: scale(1.36) !important;
  }

  .works-logo-grid__row--top figure:nth-child(2) img {
    max-width: min(100%, 130px) !important;
    max-height: 62px !important;
    transform: scale(1.3) !important;
  }
}

/* 2026-08-10: enlarge JR and Nippon TV works logos */
@media (min-width: 1025px) {
  .works-logo-grid__row--top figure:nth-child(3),
  .works-logo-grid__row--bottom figure:nth-child(1) {
    max-width: 156px !important;
    min-height: 84px !important;
  }

  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: min(100%, 144px) !important;
    max-height: 78px !important;
    transform: scale(1.2) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: min(100%, 136px) !important;
    max-height: 74px !important;
    transform: scale(1.18) !important;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .works-logo-grid__row--top figure:nth-child(3),
  .works-logo-grid__row--bottom figure:nth-child(1) {
    max-width: 172px !important;
    min-height: 72px !important;
  }

  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: min(100%, 154px) !important;
    max-height: 66px !important;
    transform: scale(1.18) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: min(100%, 146px) !important;
    max-height: 62px !important;
    transform: scale(1.16) !important;
  }
}

@media (max-width: 720px) {
  .works-logo-grid__row--top figure:nth-child(3),
  .works-logo-grid__row--bottom figure:nth-child(1) {
    max-width: 154px !important;
    min-height: 64px !important;
  }

  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: min(100%, 134px) !important;
    max-height: 58px !important;
    transform: scale(1.18) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: min(100%, 128px) !important;
    max-height: 56px !important;
    transform: scale(1.16) !important;
  }
}

@media (max-width: 540px) {
  .works-logo-grid__row--top figure:nth-child(3),
  .works-logo-grid__row--bottom figure:nth-child(1) {
    max-width: 142px !important;
    min-height: 58px !important;
  }

  .works-logo-grid__row--top figure:nth-child(3) img {
    max-width: min(100%, 122px) !important;
    max-height: 54px !important;
    transform: scale(1.16) !important;
  }

  .works-logo-grid__row--bottom figure:nth-child(1) img {
    max-width: min(100%, 116px) !important;
    max-height: 50px !important;
    transform: scale(1.14) !important;
  }
}

/* 2026-08-10: natural mobile line breaks for paragraph copy */
@media (max-width: 540px) {
  main p {
    line-break: strict;
    word-break: auto-phrase;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .fv__text {
    max-width: 18.5em;
  }

  .case-item p {
    max-width: 17.5em;
    margin-inline: auto;
  }

  .point-item__text p {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    word-break: auto-phrase !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    text-align: left !important;
  }

  .about-artist__text p {
    max-width: 21em !important;
    margin-inline: auto !important;
  }

  .solution__box p {
    max-width: 19em;
    margin-inline: auto;
  }

  .price-card__note,
  .price-note {
    max-width: 20em;
    margin-inline: auto;
  }

  .staff-card__text {
    width: auto;
    max-width: none;
    margin: 12px 0 0 var(--staff-card-inset) !important;
    word-break: auto-phrase !important;
    line-break: strict !important;
    overflow-wrap: break-word !important;
    text-align: left;
  }

  .staff-copy-break {
    display: block;
  }

  .voice-card__body p {
    max-width: 18.5em;
    margin-inline: auto;
    word-break: auto-phrase !important;
    line-break: strict !important;
  }

  .flow-item p {
    max-width: 13.5em;
    margin-inline: auto;
  }

  .faq-question p,
  .faq-answer p {
    max-width: 19em;
  }

  .works-section__note {
    max-width: 18em;
    margin-inline: auto;
  }

  .final-cta__box p {
    max-width: 18em;
    margin-inline: auto;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .works-section {
    padding: clamp(90px, 10vw, 150px) 0 clamp(92px, 10vw, 140px);
  }

  .works-section__band {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .works-section__inner {
    display: grid !important;
    grid-template-columns: minmax(230px, 26%) minmax(390px, 1fr) minmax(230px, 26%) !important;
    align-items: center !important;
    gap: 0 !important;
    width: min(100%, 1440px) !important;
    min-height: 500px !important;
    padding: 88px 28px 92px !important;
  }

  .works-section__content {
    grid-column: auto !important;
    grid-row: auto !important;
    order: initial !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .works-collage {
    width: auto !important;
    min-height: 390px !important;
  }

  .works-collage--left,
  .works-collage--right {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: center !important;
    justify-self: auto !important;
    order: initial !important;
    margin: 0 !important;
  }

  .works-collage__image--l01 {
    top: -74px !important;
    left: 0 !important;
    width: min(150px, 48%) !important;
  }

  .works-collage__image--l02 {
    top: 44px !important;
    right: auto !important;
    left: 44% !important;
    width: min(88px, 30%) !important;
  }

  .works-collage__image--l03 {
    top: auto !important;
    left: 22% !important;
    bottom: 28px !important;
    width: min(124px, 40%) !important;
  }

  .works-collage__image--r01 {
    top: 86px !important;
    right: -10px !important;
    width: min(166px, 48%) !important;
  }

  .works-collage__image--r02 {
    top: 230px !important;
    left: 44% !important;
    bottom: auto !important;
    width: min(84px, 28%) !important;
  }

  .works-collage__image--r03 {
    top: auto !important;
    right: -2% !important;
    bottom: -70px !important;
    width: min(112px, 34%) !important;
  }
}

@media (max-width: 540px) {
  .works-section__band {
    overflow: visible !important;
  }

  .works-collage__image--l02 {
    left: 58% !important;
    width: 45% !important;
  }

  .works-collage__image--r02 {
    left: 6% !important;
    width: 45% !important;
  }
}

/* 2026-08-12: rebuild works collage balance around tablet widths */
@media (min-width: 821px) and (max-width: 1024px) {
  .works-section__band {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .works-section__inner {
    grid-template-columns: minmax(0, 25%) minmax(350px, 50%) minmax(0, 25%) !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: clamp(500px, 58vw, 590px) !important;
    padding: clamp(76px, 8vw, 94px) clamp(18px, 2.8vw, 34px) clamp(84px, 9vw, 110px) !important;
  }

  .works-section__content {
    grid-column: auto !important;
    grid-row: auto !important;
    order: initial !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .works-collage {
    width: auto !important;
    min-height: clamp(440px, 50vw, 520px) !important;
  }

  .works-collage--left,
  .works-collage--right {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: center !important;
    justify-self: stretch !important;
    order: initial !important;
    margin: 0 !important;
  }

  .works-collage__image--l01 {
    top: clamp(-52px, -4.5vw, -34px) !important;
    left: -4% !important;
    width: clamp(130px, 16vw, 164px) !important;
  }

  .works-collage__image--l02 {
    top: clamp(54px, 6.6vw, 70px) !important;
    left: 42% !important;
    width: clamp(82px, 10vw, 104px) !important;
  }

  .works-collage__image--l03 {
    left: 16% !important;
    bottom: clamp(28px, 4vw, 46px) !important;
    width: clamp(118px, 15vw, 152px) !important;
  }

  .works-collage__image--r01 {
    top: clamp(52px, 7vw, 78px) !important;
    right: -4% !important;
    width: clamp(138px, 17vw, 176px) !important;
  }

  .works-collage__image--r02 {
    top: clamp(166px, 20vw, 210px) !important;
    left: 12% !important;
    width: clamp(82px, 10vw, 104px) !important;
  }

  .works-collage__image--r03 {
    right: 2% !important;
    bottom: clamp(-28px, -2.5vw, -14px) !important;
    width: clamp(118px, 15vw, 150px) !important;
  }
}

@media (min-width: 541px) and (max-width: 820px) {
  .works-section__band {
    width: calc(100% - 36px) !important;
    margin-bottom: clamp(108px, 15vw, 146px) !important;
  }

  .works-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    min-height: 0 !important;
    padding: 70px 0 70px !important;
  }

  .works-section__content {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    width: min(70%, 560px) !important;
    margin: 0 auto !important;
  }

  .works-collage {
    width: 100% !important;
    min-height: clamp(540px, 72vw, 620px) !important;
  }

  .works-collage--left {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: stretch !important;
    margin: clamp(138px, 18vw, 166px) 0 0 !important;
  }

  .works-collage--right {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: stretch !important;
    margin: clamp(120px, 16vw, 150px) 0 0 !important;
  }

  .works-collage__image--l01 {
    top: 0 !important;
    left: -8% !important;
    width: 72% !important;
  }

  .works-collage__image--l02 {
    top: clamp(74px, 10vw, 94px) !important;
    left: 58% !important;
    width: 42% !important;
  }

  .works-collage__image--l03 {
    top: clamp(242px, 32vw, 292px) !important;
    left: 34% !important;
    width: 58% !important;
  }

  .works-collage__image--r01 {
    top: -18px !important;
    right: -6% !important;
    width: 64% !important;
  }

  .works-collage__image--r02 {
    top: clamp(174px, 23vw, 210px) !important;
    left: 10% !important;
    width: 37% !important;
  }

  .works-collage__image--r03 {
    top: clamp(304px, 39vw, 356px) !important;
    right: 4% !important;
    width: 66% !important;
  }
}

.works-section,
.works-section__band,
.works-section__inner {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

@media (min-width: 541px) and (max-width: 720px) {
  .about-artist__inner {
    width: min(100%, 620px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .about-artist__visual {
    width: min(100%, 560px) !important;
    min-height: clamp(360px, 62vw, 430px) !important;
    margin-top: 60px !important;
  }

  .about-artist__text {
    max-width: min(100%, 32em) !important;
  }

  .about-artist__text p {
    max-width: 100% !important;
    margin-inline: 0 !important;
  }
}

@media (max-width: 540px) {
  .slider-arrow::before {
    width: 13px !important;
    height: 13px !important;
    border-top-width: 3px !important;
    border-right-width: 3px !important;
  }

  .voice-card__body h3,
  .voice-card__body p {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .voice-card__body p {
    line-break: strict !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    text-wrap: pretty;
  }

  .voice-slider-wrap {
    width: min(calc(100% - 24px), 430px) !important;
  }

  .voice-card {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .voice-card__body {
    padding-right: clamp(16px, 4.2vw, 20px) !important;
    padding-left: clamp(16px, 4.2vw, 20px) !important;
  }

  .voice-card__body h3,
  .voice-card__body p,
  .faq-question p,
  .faq-answer p {
    max-width: none !important;
    line-break: strict !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    text-wrap: pretty;
  }

  .faq-item {
    padding: 22px 12px 16px !important;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    column-gap: 10px !important;
  }

  .faq-question {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .faq-question p {
    width: 100% !important;
  }

  .faq-answer {
    width: auto !important;
    margin: 0 4px 18px !important;
    padding: 18px 12px !important;
  }

  .faq-answer p {
    width: 100% !important;
  }
}

@media (min-width: 721px) and (max-width: 820px) {
  .staff-slider-wrap,
  .voice-slider-wrap {
    width: min(calc(100% - 56px), 520px) !important;
  }

  .staff-card {
    --staff-card-inset: 24px;
    min-height: 0 !important;
    padding: 0 14px 24px !important;
  }

  .staff-card__name {
    max-width: calc(100% - 12px) !important;
    margin-top: -16px !important;
    margin-left: -24px !important;
    padding: 9px 14px 10px !important;
    font-size: 18px !important;
    white-space: normal !important;
  }

  .staff-card .image-frame {
    width: calc(100% - (var(--staff-card-inset) * 2)) !important;
    margin: 20px var(--staff-card-inset) 0 !important;
  }

  .staff-card__role,
  .staff-card__text {
    margin-right: var(--staff-card-inset) !important;
    margin-left: var(--staff-card-inset) !important;
  }

  .staff-card__text {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .voice-card {
    min-height: 0 !important;
    padding: 24px 16px 22px !important;
  }

  .voice-card__body {
    padding: 22px 20px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .staff-slider-wrap,
  .voice-slider-wrap {
    width: min(calc(100% - 96px), 980px) !important;
  }

  .staff-card {
    --staff-card-inset: 28px;
    min-height: 0 !important;
    padding-bottom: 24px !important;
  }

  .staff-card .image-frame {
    margin-top: 22px !important;
  }

  .staff-card__role {
    margin-top: 20px !important;
  }

  .staff-card__text {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .voice-card {
    min-height: 0 !important;
    padding: 26px 20px 24px !important;
  }

  .voice-card__body {
    padding: 24px 22px !important;
  }

  .voice-card__body p {
    font-size: 14px !important;
    line-height: 1.78 !important;
  }
}

/* 2026-08-17: stabilize real-device mobile text width */
@media (max-width: 540px) {
  .voice-slider-wrap {
    width: min(calc(100% - 10px), 440px) !important;
  }

  .voice-swiper {
    overflow: visible !important;
  }

  .voice-swiper .swiper-wrapper {
    align-items: stretch !important;
  }

  .voice-swiper .swiper-slide {
    width: calc(100vw - 64px) !important;
  }

  .voice-card {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .voice-card__body {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .voice-card__body h3,
  .voice-card__body p {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0 !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: auto !important;
  }

  .voice-card__body p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  .faq-item {
    padding: 22px 14px 16px !important;
  }

  .faq-question {
    display: grid !important;
    grid-template-columns: 30px minmax(0, 1fr) 32px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 14px !important;
  }

  .faq-question p {
    width: 100% !important;
    max-width: none !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: auto !important;
  }

  .faq-toggle {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .faq-answer {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 12px !important;
    margin: 22px 8px 18px !important;
    padding: 18px 14px !important;
  }

  .faq-answer p {
    width: 100% !important;
    max-width: none !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: auto !important;
  }

  .about-artist__text {
    width: min(calc(100% - 32px), 440px) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .about-artist__text p {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0 !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: auto !important;
  }
}

/* 2026-08-17: match requested mobile voice carousel composition */
@media (max-width: 540px) {
  .voice-slider-wrap {
    width: 100% !important;
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .voice-swiper {
    width: 100% !important;
    overflow: visible !important;
  }

  .voice-swiper .swiper-slide {
    width: min(84vw, 340px) !important;
    box-sizing: border-box !important;
  }

  .voice-card {
    box-sizing: border-box !important;
    min-height: 0 !important;
    padding: 28px 9px 24px !important;
  }

  .voice-card h2 {
    margin-bottom: 14px !important;
  }

  .voice-card__icon {
    margin-bottom: 28px !important;
  }

  .voice-card__body {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 26px 18px 30px !important;
  }

  .voice-card__body h3 {
    margin-bottom: 22px !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
  }

  .voice-card__body p {
    font-size: 14px !important;
    line-height: 1.92 !important;
  }
}

/* 2026-08-17: tablet slider alignment and wide voice copy */
@media (min-width: 821px) and (max-width: 1180px) {
  .staff-slider-wrap,
  .voice-slider-wrap {
    width: calc(100% - clamp(72px, 10vw, 132px)) !important;
    max-width: none !important;
    margin-left: clamp(48px, 6vw, 78px) !important;
    margin-right: 0 !important;
  }

  .slider-arrow {
    right: clamp(-34px, -3vw, -18px) !important;
  }

  .slider-arrow--next,
  .voice-arrow--next {
    top: -124px !important;
  }

  .slider-arrow--prev,
  .voice-arrow--prev {
    top: -48px !important;
  }

  .staff-swiper,
  .voice-swiper {
    overflow: visible !important;
  }
}

@media (min-width: 821px) and (max-width: 1024px) {
  .staff-slider-wrap {
    padding-top: 34px !important;
  }

  .staff-swiper {
    padding-top: 22px !important;
  }

  .staff-card {
    --staff-card-inset: 28px;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .staff-card__name {
    margin-top: -20px !important;
    margin-left: -30px !important;
  }

  .staff-card .image-frame {
    width: calc(100% - (var(--staff-card-inset) * 2)) !important;
    margin: 24px var(--staff-card-inset) 0 !important;
  }

  .staff-card__actions {
    margin-right: calc(var(--staff-card-inset) - 10px) !important;
  }

  .staff-card__role,
  .staff-card__text {
    margin-right: var(--staff-card-inset) !important;
    margin-left: var(--staff-card-inset) !important;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .voice-card {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .voice-card__body {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 26px 18px 30px !important;
  }

  .voice-card__body h3,
  .voice-card__body p {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0 !important;
    line-break: strict !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: auto !important;
  }

  .voice-card__body h3 {
    margin-bottom: 20px !important;
    line-height: 1.72 !important;
  }

  .voice-card__body p {
    font-size: 14px !important;
    line-height: 1.88 !important;
  }
}

/* 2026-08-17: stronger tablet positioning for real iPad widths */
@media (min-width: 721px) and (max-width: 1280px) {
  .slider-section {
    overflow: visible !important;
  }

  .staff-slider-wrap,
  .voice-slider-wrap {
    width: calc(100% - clamp(118px, 13vw, 174px)) !important;
    max-width: none !important;
    margin-left: clamp(56px, 6.5vw, 82px) !important;
    margin-right: 0 !important;
  }

  .staff-swiper,
  .voice-swiper {
    overflow: visible !important;
  }

  .slider-arrow {
    right: clamp(-68px, -5.2vw, -44px) !important;
  }

  .slider-arrow--next,
  .voice-arrow--next {
    top: -126px !important;
  }

  .slider-arrow--prev,
  .voice-arrow--prev {
    top: -48px !important;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .staff-slider-wrap {
    padding-top: 30px !important;
  }

  .staff-swiper {
    padding-top: 20px !important;
  }

  .staff-swiper .swiper-slide {
    box-sizing: border-box !important;
  }

  .staff-card {
    --staff-card-inset: 30px;
  }

  .staff-card__name {
    margin-top: -20px !important;
    margin-left: -28px !important;
  }
}
