:root {
  --paper: #fffaf2;
  --ink: #182018;
  --pink: #ff8e9a;
  --pink-light: #ffd7da;
  --green: #7ebd43;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 68px);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid rgba(24, 32, 24, .1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand span {
  font-size: clamp(22px, 2.1vw, 34px);
}

.brand small {
  font-size: 11px;
  letter-spacing: .14em;
}

.global-nav {
  display: flex;
  gap: clamp(24px, 3.5vw, 58px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.global-nav a {
  position: relative;
  padding: 10px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .25s;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.section-label {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, 100svh);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  padding: calc(var(--header-h) + 100px) clamp(24px, 7vw, 110px) clamp(80px, 10vw, 150px);
  background: var(--pink-light);
}

.contact-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 78% 42%, rgba(255, 142, 154, .32), transparent 34%), linear-gradient(90deg, rgba(255, 250, 242, .62), rgba(255, 250, 242, .18));
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.2s ease .2s;
}

.contact-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 242, .97) 0%, rgba(255, 250, 242, .88) 42%, rgba(255, 250, 242, .56) 72%, rgba(255, 215, 218, .45) 100%);
  pointer-events: none;
}

.contact-hero.is-hero-ready::before {
  opacity: 0;
}

.contact-hero>.hero-copy {
  flex: 1;
  min-width: 0;
}

.contact-hero h1 {
  margin: 0;
  font: 700 clamp(58px, 9vw, 142px)/.95 "Noto Sans JP", sans-serif;
  letter-spacing: -.075em;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-lead {
  margin: 40px 0 0;
  font: 500 clamp(18px, 2vw, 28px)/1.75 "Noto Sans JP", sans-serif;
}

.hero-note {
  max-width: 290px;
  margin: 0;
  padding: 18px 16px 0;
  border-top: 1px solid;
  background: rgba(255, 250, 242, .62);
  font-size: 12px;
  line-height: 1.9;
  backdrop-filter: blur(8px);
}

.hero-reel {
  position: absolute;
  z-index: -2;
  inset: var(--header-h) -3vw -8vh 35%;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: clamp(10px, 1.4vw, 22px);
  overflow: hidden;
  opacity: 0;
  transform: rotate(3deg) scale(1.13) translate3d(28px, 26px, 0);
  transition: opacity 1.05s ease, transform 1.25s cubic-bezier(.18, .74, .24, 1);
}

.hero-reel.is-ready {
  opacity: .82;
  transform: rotate(3deg) scale(1.08) translate3d(0, 0, 0);
}

.hero-reel-column {
  min-width: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform 1.05s cubic-bezier(.18, .74, .24, 1);
}

.hero-reel.is-ready .hero-reel-column {
  opacity: 1;
  transform: none;
}

.hero-reel.is-ready .hero-reel-column:nth-child(2) {
  transition-delay: .12s;
}

.hero-reel.is-ready .hero-reel-column:nth-child(3) {
  transition-delay: .24s;
}

.hero-reel.is-ready .hero-reel-column:nth-child(4) {
  transition-delay: .36s;
}

.hero-reel-strip {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 22px);
  animation: hero-reel-up 30s linear infinite;
  will-change: transform;
}

.hero-reel-column:nth-child(even) .hero-reel-strip {
  animation-name: hero-reel-down;
  animation-duration: 36s;
}

.hero-reel-column:nth-child(3) .hero-reel-strip {
  animation-duration: 34s;
}

.hero-reel.is-paused .hero-reel-strip {
  animation-play-state: paused;
}

.hero-reel-thumb {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #f3c8cc, #ffdfe1);
  box-shadow: 0 12px 30px rgba(24, 32, 24, .13);
}

.hero-reel-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes hero-reel-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - clamp(5px, .7vw, 11px)));
  }
}

@keyframes hero-reel-down {
  from {
    transform: translateY(calc(-50% - clamp(5px, .7vw, 11px)));
  }

  to {
    transform: translateY(0);
  }
}

.contact-toc {
  max-width: 1440px;
  margin: auto;
  padding: clamp(54px, 7vw, 90px) clamp(24px, 7vw, 100px) 0;
}

.contact-toc .section-label {
  margin-bottom: 24px;
}

.contact-toc a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(220px, .72fr);
  align-items: center;
  gap: clamp(18px, 4vw, 58px);
  padding: 24px 4px;
  border-top: 1px solid rgba(24, 32, 24, .24);
  transition: color .2s, background .2s, padding .2s;
}

.contact-toc a:last-child {
  border-bottom: 1px solid rgba(24, 32, 24, .24);
}

.contact-toc a:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, .38);
  color: #c94f61;
}

.contact-toc span {
  color: #c94f61;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.contact-toc strong {
  font: 700 clamp(24px, 2.6vw, 38px) "Noto Sans JP", sans-serif;
  letter-spacing: -.045em;
}

.contact-toc small {
  color: rgba(24, 32, 24, .58);
  font-size: 12px;
  line-height: 1.8;
}

.services,
.usage-section,
.works {
  max-width: 1440px;
  margin: auto;
  padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 100px);
}

.services {
  position: relative;
  max-width: none;
  margin: clamp(80px, 10vw, 140px) clamp(16px, 3vw, 48px) 0;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 100px);
  overflow: hidden;
  background: #ffe3e6;
  /* border: 1px solid rgba(201, 79, 97, .16); */
  /*box-shadow:0 24px 70px rgba(201,79,97,.1);*/
  box-shadow:16px 18px 0 #c989ae;
}

.services::before {
  content: none;
}

.services>* {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

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

.section-heading h2,
.works h2 {
  margin: 0;
  font: 700 clamp(34px, 5vw, 70px) "Noto Sans JP", sans-serif;
  letter-spacing: -.055em;
}

.service-list {
  border-top: 1px solid rgba(24, 32, 24, .24);
  background: rgba(255, 250, 242, .42);
}

.service-list article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.4fr) minmax(250px, .7fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(34px, 5vw, 66px) clamp(14px, 2vw, 28px);
  border-bottom: 1px solid rgba(24, 32, 24, .24);
}

.service-number {
  color: #c94f61;
  font-size: 12px;
  font-weight: 700;
}

.service-copy h3 {
  margin: -8px 0 20px;
  font: 700 clamp(26px, 3vw, 44px) "Noto Sans JP", sans-serif;
  letter-spacing: -.045em;
}

.service-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.service-copy .annotation {
  margin-top: 16px;
  color: rgba(24, 32, 24, .58);
  font-size: 11px;
}

.service-list dl {
  margin: 0;
}

.service-list dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(24, 32, 24, .14);
}

.service-list dt {
  color: rgba(24, 32, 24, .55);
  font-size: 11px;
}

.service-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.service-list .service-other {
  grid-template-columns: 60px 1fr;
  background: rgba(255, 142, 154, .28);
  padding-left: clamp(14px, 2vw, 28px);
  padding-right: clamp(14px, 2vw, 28px);
}

.commission-works {
  margin-top: clamp(70px, 9vw, 120px);
}

.commission-works .section-heading h3 {
  margin: 0;
  font: 700 clamp(32px, 4.6vw, 64px) "Noto Sans JP", sans-serif;
  letter-spacing: -.055em;
}

.request-notes {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 8vw, 120px);
  margin-top: clamp(58px, 8vw, 96px);
  padding: clamp(42px, 6vw, 70px);
  background: var(--ink);
  color: var(--paper);
  /*box-shadow:0 18px 44px rgba(24,32,24,.18);*/
}

.request-notes .section-label {
  color: var(--pink);
}

.request-notes h3 {
  margin: 0 0 34px;
  font: 700 clamp(28px, 3.8vw, 52px) "Noto Sans JP", sans-serif;
  letter-spacing: -.055em;
}

.request-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 250, 242, .3);
}

.request-notes li {
  position: relative;
  padding: 22px 10px 22px 34px;
  border-bottom: 1px solid rgba(255, 250, 242, .3);
  font-size: 13px;
  line-height: 1.9;
}

.request-notes li::before {
  content: "○";
  position: absolute;
  left: 4px;
  color: var(--pink);
}

.usage-section {
  max-width: none;
  margin: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 48px) 0;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 100px);
  background: #e9ffc7;
  /* border: 1px solid rgba(201, 79, 97, .13); */
  box-shadow:16px 18px 0 #859b69;
  /* box-shadow: 0 22px 62px rgba(201, 79, 97, .08); */
}

.usage-section>* {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.usage-panel {
  display: grid;
  gap: 26px;
  max-width: 1000px;
  margin-left: auto;
}

.usage-lead {
  margin: 0 0 12px;
  font: 700 clamp(25px, 3vw, 42px) "Noto Sans JP", sans-serif;
  letter-spacing: -.045em;
}

.usage-panel article {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(24, 32, 24, .16);
  background: rgba(255, 255, 255, .72);
  /* box-shadow: 0 16px 40px rgba(24, 32, 24, .05); */
}

.usage-panel h3 {
  margin: 0 0 18px;
  font: 700 clamp(23px, 2.4vw, 34px) "Noto Sans JP", sans-serif;
  letter-spacing: -.04em;
}

.usage-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.usage-panel p+p {
  margin-top: 14px;
}

.usage-panel .annotation {
  color: rgba(24, 32, 24, .62);
  font-size: 12px;
}

.usage-panel a {
  border-bottom: 1px solid currentColor;
  color: #c94f61;
  font-weight: 700;
}

.mail-section {
  margin: clamp(16px, 3vw, 48px);
  padding: clamp(80px, 11vw, 160px) clamp(24px, 8vw, 130px);
  text-align: center;
  background: var(--pink);
}

.mail-section .section-label {
  color: var(--ink);
}

.mail-section h2 {
  margin: 0;
  font: 700 clamp(42px, 7vw, 108px)/1.1 "Noto Sans JP", sans-serif;
  letter-spacing: -.07em;
}

.mail-intro {
  margin: 30px 0 48px;
  font-size: 13px;
}

.mail-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: auto;
}

.mail-button {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 5px 20px;
  padding: 24px 28px;
  border: 0;
  background: var(--ink);
  color: white;
  text-align: left;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.mail-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(24, 32, 24, .2);
}

.mail-button small {
  grid-column: 1;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
}

.mail-button span {
  grid-column: 1;
  font-weight: 600;
}

.mail-button b {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 25px;
  height: 25px;
  background: currentColor;
  font-size: 20px;
  font-weight: 400;
  -webkit-mask: url("../img/mail.svg") center / contain no-repeat;
  mask: url("../img/mail.svg") center / contain no-repeat;
}

.mail-help,
.noscript-note {
  margin: 20px 0 0;
  font-size: 10px;
}

.section-heading>a {
  padding: 10px 0;
  border-bottom: 1px solid;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}

.works-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.works-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.work-card {
  flex: 0 0 calc((100% - 48px)/3);
  min-width: 0;
  margin-right: 24px;
}

.work-card a {
  display: block;
}

.work-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 3px;
  background: linear-gradient(145deg, #ff839b, #d75077);
}

.work-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform .4s;
}

.work-card a:hover img {
  transform: scale(1.035);
}

.work-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}

.work-play {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-size: 11px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.work-body {
  display: block;
  padding: 16px 2px 4px;
}

.work-date {
  display: block;
  color: rgba(24, 32, 24, .62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.work-title {
  display: block;
  margin: 6px 0 5px;
  overflow: hidden;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-artists {
  display: block;
  overflow: hidden;
  color: rgba(24, 32, 24, .62);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.works-status {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  font-size: 12px;
}

.works-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.works-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 32, 24, .3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.works-controls p {
  margin: 0;
  min-width: 55px;
  text-align: center;
  font-size: 11px;
}

.copy-toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 36px rgba(24, 32, 24, .24);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

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

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 44px clamp(24px, 4vw, 68px);
  border-top: 1px solid rgba(24, 32, 24, .1);
}

footer p {
  margin: 0;
  font-size: 11px;
  letter-spacing: .12em;
}

@media (max-width:800px) {
  :root {
    --header-h: 70px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    padding: 10px 4px;
    border: 0;
    background: none;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform .25s, opacity .25s;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 30px;
    background: var(--paper);
    transform: translateY(-120%);
    transition: transform .3s;
  }

  .global-nav.is-open {
    transform: none;
  }

  .global-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(24, 32, 24, .15);
  }

  .contact-hero {
    min-height: 760px;
    display: block;
    padding-top: calc(var(--header-h) + 90px);
  }

  .contact-hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 242, .94), rgba(255, 250, 242, .77) 68%, rgba(255, 215, 218, .5));
  }

  .hero-reel {
    inset: var(--header-h) -45vw -5vh 22%;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 10px;
    transform: rotate(4deg) scale(1.1) translate3d(22px, 24px, 0);
  }

  .hero-reel.is-ready {
    opacity: .48;
    transform: rotate(4deg) scale(1.06) translate3d(0, 0, 0);
  }

  .hero-reel-column:nth-child(4) {
    display: none;
  }

  .hero-reel-strip {
    gap: 10px;
    animation-duration: 38s;
  }

  .contact-hero h1 {
    font-size: clamp(44px, 14vw, 78px);
    line-height: 1.06;
    white-space: nowrap;
  }

  .hero-lead {
    margin-top: 34px;
    font-size: 17px;
  }

  .hero-note {
    margin-top: 70px;
  }

  .contact-toc {
    padding: 48px 24px 0;
  }

  .contact-toc a {
    grid-template-columns: 38px 1fr;
    gap: 10px 18px;
    padding: 20px 0;
  }

  .contact-toc a:hover {
    padding-left: 0;
    background: transparent;
  }

  .contact-toc small {
    grid-column: 2;
  }

  .services {
    margin: 58px 12px 0;
    padding: 54px 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading>a {
    display: inline-block;
    margin-top: 24px;
  }

  .service-list article {
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .service-list dl {
    grid-column: 2;
  }

  .service-list .service-other {
    grid-template-columns: 32px 1fr;
    padding-left: 14px;
  }

  .request-notes {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 22px;
  }

  .request-notes h3 {
    margin-bottom: 28px;
  }

  .usage-section {
    margin: 42px 12px 0;
    padding: 54px 18px;
  }

  .usage-panel article {
    padding: 24px 20px;
  }

  .mail-section {
    margin: 14px;
  }

  .mail-options {
    grid-template-columns: 1fr;
  }

  .work-card {
    flex-basis: 84%;
    margin-right: 16px;
  }

  .works-controls {
    justify-content: center;
  }

  .copy-toast {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    max-width: none;
    text-align: center;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }

  .hero-reel,
  .hero-reel-column {
    transform: none !important;
  }

  .hero-reel-strip {
    animation: none !important;
  }
}
