:root {
  --ink: #111111;
  --paper: #f5f5f5;
  --grid: rgba(17, 17, 17, 0.09);
  --yellow: #ffe600;
  --blue: #0057ff;
  --cyan: #16d9ff;
  --pink: #ff4fb3;
  --red: #ff2e2e;
  --green: #39ff69;
  --orange: #ff8a00;
  --line: #111111;
  --max: 1180px;
  --hard-shadow: 12px 12px 0 var(--ink);
  --stripe-scroll-x: 0px;
  --hour-accent: #ffe600;
  --hour-pop: #ff4fb3;
  --hour-side: #16d9ff;
  --hour-hero-x: center;
  --hour-hero-y: center;
  --random-brand-tilt: 0deg;
  --random-sticker-tilt: 0deg;
  --ymck-c-x: 9px;
  --ymck-c-y: -4px;
  --ymck-m-x: -8px;
  --ymck-m-y: 5px;
  --ymck-y-x: 3px;
  --ymck-y-y: 9px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--ink);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    "Arial Black",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.75;
  overflow-x: clip;
}

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

section[id] {
  scroll-margin-top: 86px;
}

::selection {
  background: var(--hour-pop);
  color: white;
}

.site-header {
  align-items: center;
  background: white;
  border-bottom: 6px solid var(--ink);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  min-height: 68px;
  padding: 12px 28px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand {
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-text {
  background: white;
  border: 4px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 3px 12px;
}

.site-nav {
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  background: white;
  border: 3px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--yellow);
  outline: 0;
  transform: translateY(-1px);
}

.site-nav a:nth-child(2) {
  background: var(--hour-accent);
}

.site-nav a:nth-child(3) {
  background: var(--hour-side);
}

.site-nav a:nth-child(4) {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow:
    4px 4px 0 var(--ink),
    0 0 0 4px var(--pink);
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.site-nav a:nth-child(4):hover,
.site-nav a:nth-child(4):focus-visible {
  background:
    linear-gradient(135deg, var(--yellow) 0 68%, var(--pink) 68% 100%);
  color: var(--ink);
}

.hero {
  background: var(--paper);
  border-bottom: 8px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 68px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero::after {
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(22, 217, 255, 0.42) 62% 64%, transparent 64% 100%),
    linear-gradient(90deg, transparent 0 67%, rgba(255, 79, 179, 0.34) 67% 69%, transparent 69% 100%),
    linear-gradient(0deg, transparent 0 18%, rgba(255, 230, 0, 0.32) 18% 20%, transparent 20% 100%);
  content: "";
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-media {
  background-image: url("./assets/kawarayama-pop-hero.png");
  background-position: var(--hour-hero-x) var(--hour-hero-y);
  background-size: cover;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-copy {
  align-self: center;
  padding: 58px 34px 58px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  position: relative;
  width: 100%;
  z-index: 2;
}

.stamp,
.section-tag {
  background: var(--ink);
  border: 4px solid var(--ink);
  color: white;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 18px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.hero-copy .stamp {
  margin-bottom: 34px;
  max-width: min(620px, 100%);
  transform-origin: left center;
  z-index: 14;
}

.section-tag {
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.95rem, 6vw, 5.3rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 span {
  display: block;
  word-break: keep-all;
}

.hero h1 .hero-brand-word {
  background: var(--yellow);
  border: 8px solid var(--ink);
  box-shadow:
    12px 12px 0 white,
    22px 22px 0 var(--ink);
  align-items: center;
  display: flex;
  font-size: clamp(3.8rem, 9.4vw, 9.1rem);
  justify-content: space-between;
  line-height: 0.82;
  margin: 0 0 30px;
  max-width: none;
  padding: 0.08em 0.075em 0.13em;
  text-shadow: none;
  transform: rotate(calc(-1.2deg + var(--random-brand-tilt)));
  transform-origin: left center;
  white-space: nowrap;
  width: calc(100vw - max(28px, calc((100vw - var(--max)) / 2 + 28px)) - 38px);
  word-break: normal;
}

.hero h1 .hero-brand-word span {
  display: block;
  flex: 0 0 auto;
  line-height: 0.82;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 0.95;
  text-shadow:
    5px 5px 0 white,
    10px 10px 0 var(--yellow);
}

.stamp,
.hero h1,
.lead,
.hero-actions,
.section-heading,
.intro-board,
.section-note,
.service-card,
.assist-card,
.event-card,
.log-link,
.channel-card,
.mission-card,
.process-rail article,
.contact-panel {
  position: relative;
  z-index: 12;
}

.stamp,
.section-tag,
.hero-sticker,
.intro-board,
.service-card,
.assist-card,
.event-card,
.log-link,
.channel-card,
.mission-card,
.process-rail article,
.contact-panel {
  transform:
    translate3d(
      calc(var(--scroll-card-x, 0px) + var(--hover-card-x, 0px)),
      calc(var(--scroll-card-y, 0px) + var(--hover-card-y, 0px)),
      0
    )
    rotate(calc(var(--sticker-angle, 0deg) + var(--base-card-rotate, 0deg) + var(--scroll-card-rotate, 0deg)))
    scale(var(--scroll-card-scale, 1));
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lead {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: var(--hard-shadow);
  font-size: 1.1rem;
  font-weight: 900;
  margin: 28px 0 0;
  max-width: 620px;
  padding: 20px;
}

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

.button {
  align-items: center;
  border: 4px solid var(--ink);
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  outline: 0;
  transform: translate(3px, 3px);
}

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

.button-ink {
  background: white;
}

.link-icon {
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  height: 1.1em;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3.2;
  width: 1.1em;
}

.hero-sticker {
  display: block;
  font-size: 0;
  height: 118px;
  pointer-events: none;
  position: absolute;
  user-select: none;
  width: 118px;
  z-index: 3;
}

.hero-sticker::before,
.hero-sticker::after,
.hero-sticker span,
.hero-sticker span::before,
.hero-sticker span::after {
  content: "";
  display: block;
  position: absolute;
}

.sticker-one {
  bottom: 10%;
  filter: drop-shadow(8px 8px 0 var(--ink));
  height: 132px;
  left: auto;
  right: 28%;
  width: 132px;
  --sticker-angle: calc(-16deg + var(--random-sticker-tilt));
}

.sticker-one::before {
  background: var(--yellow);
  clip-path: polygon(45% 0, 100% 0, 66% 36%, 98% 36%, 29% 100%, 45% 55%, 7% 55%);
  inset: 0;
}

.sticker-one::after {
  background: var(--pink);
  clip-path: polygon(45% 0, 100% 0, 66% 36%, 98% 36%, 29% 100%, 45% 55%, 7% 55%);
  inset: 16px 18px 8px 8px;
  transform: translate(-11px, 12px);
}

.sticker-one span {
  background: white;
  height: 16px;
  right: -11px;
  top: 22px;
  transform: rotate(-18deg);
  width: 48px;
}

.sticker-two {
  filter: drop-shadow(8px 8px 0 var(--ink));
  right: 10%;
  top: 11%;
  --sticker-angle: calc(12deg - var(--random-sticker-tilt));
}

.sticker-two::before {
  background: var(--yellow);
  clip-path: polygon(45% 0, 100% 0, 66% 36%, 98% 36%, 32% 100%, 48% 54%, 10% 54%);
  inset: 0;
}

.sticker-two::after {
  background: var(--cyan);
  clip-path: polygon(45% 0, 100% 0, 66% 36%, 98% 36%, 32% 100%, 48% 54%, 10% 54%);
  inset: 14px 18px 10px 10px;
  transform: translate(-10px, 10px);
}

.sticker-two span {
  background: white;
  height: 16px;
  right: -10px;
  top: 17px;
  transform: rotate(-18deg);
  width: 48px;
}

.sticker-three {
  bottom: 6%;
  filter: drop-shadow(8px 8px 0 var(--ink));
  height: 142px;
  left: 45%;
  width: 142px;
  --sticker-angle: calc(-12deg + var(--random-sticker-tilt));
}

.sticker-three::before {
  background: var(--pink);
  clip-path: polygon(50% 0, 61% 28%, 91% 9%, 75% 42%, 100% 51%, 72% 62%, 89% 91%, 58% 76%, 49% 100%, 39% 73%, 9% 89%, 27% 60%, 0 48%, 30% 39%, 12% 10%, 40% 27%);
  inset: 0;
}

.sticker-three::after {
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 28%, 91% 9%, 75% 42%, 100% 51%, 72% 62%, 89% 91%, 58% 76%, 49% 100%, 39% 73%, 9% 89%, 27% 60%, 0 48%, 30% 39%, 12% 10%, 40% 27%);
  inset: 23px;
}

.sticker-three span {
  background: var(--cyan);
  border: 5px solid var(--ink);
  height: 26px;
  left: 44px;
  top: 58px;
  transform: rotate(13deg);
  width: 54px;
}

.ticker {
  background: var(--ink);
  border-bottom: 6px solid var(--ink);
  color: white;
  max-width: 100vw;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  animation: ticker 24s linear infinite;
  display: inline-flex;
}

.ticker span {
  border-right: 4px solid white;
  font-size: 1rem;
  font-weight: 900;
  padding: 13px 26px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px 28px;
}

.intro-board {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: var(--hard-shadow);
  max-width: 840px;
  padding: 34px;
}

.intro-visuals {
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-visual {
  --intro-visual-bg: var(--paper);
  --intro-visual-label: "WORK";
  --intro-visual-rotate: 0deg;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--intro-visual-bg);
  background-size: 13px 13px, 13px 13px, auto;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  min-height: 178px;
  overflow: hidden;
  position: relative;
  transform: rotate(var(--intro-visual-rotate));
}

.intro-visual::before {
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  content: var(--intro-visual-label);
  font-size: 0.78rem;
  font-weight: 900;
  left: 14px;
  line-height: 1;
  padding: 6px 9px;
  position: absolute;
  top: 14px;
  transform: rotate(-6deg);
  z-index: 5;
}

.intro-visual span,
.intro-visual i,
.intro-visual b,
.intro-visual em,
.intro-visual span::before,
.intro-visual span::after,
.intro-visual i::before,
.intro-visual i::after,
.intro-visual b::before,
.intro-visual b::after,
.intro-visual em::before,
.intro-visual em::after {
  content: "";
  display: block;
  position: absolute;
}

.intro-visual em {
  font-style: normal;
}

.intro-visual-event {
  --intro-visual-bg: var(--cyan);
  --intro-visual-label: "CLUB EVENT";
  --intro-visual-rotate: -1.4deg;
}

.intro-visual-event span {
  background:
    radial-gradient(circle at center, var(--yellow) 0 14%, white 15% 25%, var(--ink) 26% 29%, transparent 30%),
    radial-gradient(circle at center, transparent 0 45%, rgba(255, 255, 255, 0.2) 46% 48%, transparent 49%),
    var(--ink);
  border: 5px solid var(--ink);
  border-radius: 50%;
  bottom: 20px;
  height: 96px;
  left: 22px;
  width: 96px;
}

.intro-visual-event i {
  background: white;
  border: 5px solid var(--ink);
  bottom: 29px;
  height: 88px;
  right: 22px;
  transform: rotate(7deg);
  width: 45%;
}

.intro-visual-event i::before {
  background: var(--pink);
  border-bottom: 5px solid var(--ink);
  height: 25px;
  inset: 0 0 auto;
}

.intro-visual-event i::after {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 76% 7px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 27px / 56% 7px no-repeat;
  height: 44px;
  left: 18px;
  right: 16px;
  top: 48px;
}

.intro-visual-event b {
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  height: 34px;
  left: 46%;
  top: 48px;
  transform: rotate(-8deg);
  width: 74px;
}

.intro-visual-event em {
  background: var(--ink);
  height: 8px;
  right: 38px;
  top: 43px;
  transform: rotate(-13deg);
  width: 68px;
}

.intro-visual-shop {
  --intro-visual-bg: var(--orange);
  --intro-visual-label: "SHOP";
  --intro-visual-rotate: 1.6deg;
}

.intro-visual-shop span {
  background: white;
  border: 5px solid var(--ink);
  bottom: 28px;
  height: 88px;
  left: 24px;
  right: 24px;
}

.intro-visual-shop span::before {
  background:
    linear-gradient(90deg, var(--yellow) 0 18%, var(--pink) 18% 36%, var(--yellow) 36% 54%, var(--pink) 54% 72%, var(--yellow) 72% 100%);
  border-bottom: 5px solid var(--ink);
  height: 30px;
  inset: 0 0 auto;
}

.intro-visual-shop span::after {
  background: var(--cyan);
  border: 5px solid var(--ink);
  bottom: 12px;
  height: 34px;
  left: 18px;
  width: 48px;
}

.intro-visual-shop i {
  background: var(--ink);
  bottom: 46px;
  height: 8px;
  left: 100px;
  transform: rotate(-8deg);
  width: 92px;
}

.intro-visual-shop i::before,
.intro-visual-shop i::after {
  border: 5px solid var(--ink);
  border-color: transparent var(--ink) transparent transparent;
  border-radius: 50%;
  height: 40px;
  top: -17px;
  width: 40px;
}

.intro-visual-shop i::before {
  left: 8px;
}

.intro-visual-shop i::after {
  left: 36px;
}

.intro-visual-shop b {
  background: var(--yellow);
  border: 5px solid var(--ink);
  height: 48px;
  right: 35px;
  top: 58px;
  transform: rotate(5deg);
  width: 66px;
}

.intro-visual-shop b::before {
  background: var(--ink);
  height: 7px;
  left: 14px;
  top: 17px;
  width: 34px;
}

.intro-visual-shop em {
  background: var(--green);
  border: 4px solid var(--ink);
  height: 26px;
  left: 36px;
  top: 52px;
  transform: rotate(-7deg);
  width: 78px;
}

.intro-visual-web {
  --intro-visual-bg: var(--green);
  --intro-visual-label: "WEB";
  --intro-visual-rotate: -1deg;
}

.intro-visual-web span {
  background: white;
  border: 5px solid var(--ink);
  height: 112px;
  left: 24px;
  right: 24px;
  top: 42px;
}

.intro-visual-web span::before {
  background: var(--cyan);
  border-bottom: 5px solid var(--ink);
  height: 28px;
  inset: 0 0 auto;
}

.intro-visual-web span::after {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 42% 7px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 28px / 68% 7px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 56px / 54% 7px no-repeat;
  height: 72px;
  left: 20px;
  top: 48px;
  width: 58%;
}

.intro-visual-web i {
  background: var(--yellow);
  border: 5px solid var(--ink);
  bottom: 34px;
  height: 58px;
  right: 36px;
  transform: rotate(6deg);
  width: 72px;
}

.intro-visual-web i::before {
  background: var(--ink);
  height: 8px;
  left: 16px;
  top: 18px;
  width: 38px;
}

.intro-visual-web i::after {
  background: white;
  height: 13px;
  left: 16px;
  top: 34px;
  width: 38px;
}

.intro-visual-web b {
  background: var(--pink);
  border: 4px solid var(--ink);
  height: 28px;
  right: 100px;
  top: 78px;
  width: 62px;
}

.intro-visual-web em {
  background: var(--ink);
  height: 7px;
  right: 48px;
  top: 26px;
  transform: rotate(11deg);
  width: 62px;
}

.intro h2,
.section-heading h2,
.mission h2,
.contact h2 {
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.intro p,
.mission p,
.contact-heading p {
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  isolation: isolate;
  margin-bottom: 46px;
  min-height: 166px;
  overflow: visible;
  padding: 30px 150px 28px 20px;
  position: relative;
}

.section-heading::before {
  background:
    repeating-linear-gradient(
      90deg,
      var(--heading-stripe, var(--yellow)) 0 18px,
      var(--ink) 18px 25px,
      transparent 25px 34px
    ),
    var(--heading-bg, var(--paper));
  background-position: var(--stripe-scroll-x) 0, 0 0;
  border: 6px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  content: "";
  height: calc(100% - 24px);
  left: 8px;
  position: absolute;
  top: 12px;
  transform:
    translate3d(var(--scroll-heading-bg-x, 0px), var(--scroll-heading-bg-y, 0px), 0)
    rotate(calc(-1.5deg + var(--scroll-heading-bg-rotate, 0deg)));
  width: min(760px, calc(100% - 56px));
  z-index: -1;
  will-change: transform, background-position;
}

.section-heading::after {
  background: var(--heading-burst, var(--pink));
  clip-path: polygon(
    50% 0,
    61% 28%,
    90% 12%,
    72% 41%,
    100% 51%,
    70% 61%,
    88% 91%,
    58% 74%,
    49% 100%,
    38% 72%,
    8% 88%,
    27% 59%,
    0 48%,
    30% 39%,
    10% 9%,
    40% 27%
  );
  content: "";
  filter: drop-shadow(7px 7px 0 var(--ink));
  height: 118px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: 10px;
  transform:
    translate3d(var(--scroll-heading-burst-x, 0px), var(--scroll-heading-burst-y, 0px), 0)
    rotate(calc(10deg + var(--scroll-heading-burst-rotate, 0deg)))
    scale(var(--scroll-heading-burst-scale, 1));
  width: 118px;
  z-index: 0;
  will-change: transform;
}

.section-heading .section-tag,
.section-heading h2 {
  position: relative;
  z-index: 2;
}

.section-heading .section-tag {
  margin: 0;
  transform:
    translate3d(var(--scroll-heading-tag-x, 0px), var(--scroll-heading-tag-y, 0px), 0)
    rotate(var(--scroll-heading-tag-rotate, 0deg));
  z-index: 4;
  will-change: transform;
}

.section-heading h2 {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  display: inline-block;
  max-width: 100%;
  padding: 8px 14px 12px;
  transform:
    translate3d(var(--scroll-heading-title-x, 0px), var(--scroll-heading-title-y, 0px), 0)
    rotate(var(--scroll-heading-title-rotate, 0deg));
  will-change: transform;
  width: fit-content;
}

.section-heading h2::after {
  background: var(--heading-line, var(--cyan));
  border: 4px solid var(--ink);
  bottom: -20px;
  box-shadow: 6px 6px 0 var(--ink);
  content: "";
  height: 12px;
  left: 0;
  max-width: 420px;
  position: absolute;
  transform:
    translate3d(var(--scroll-heading-line-x, 0px), var(--scroll-heading-line-y, 0px), 0)
    rotate(calc(-1.2deg + var(--scroll-heading-line-rotate, 0deg)));
  width: 64%;
  will-change: transform;
}

.intro .section-heading {
  --heading-bg: var(--yellow);
  --heading-burst: var(--cyan);
  --heading-line: var(--pink);
}

.services .section-heading {
  --heading-bg: var(--cyan);
  --heading-burst: var(--pink);
  --heading-line: var(--yellow);
}

.assist .section-heading {
  --heading-bg: var(--paper);
  --heading-burst: var(--green);
  --heading-line: var(--pink);
  --heading-stripe: var(--cyan);
}

.organized .section-heading {
  --heading-bg: var(--yellow);
  --heading-burst: var(--cyan);
  --heading-line: var(--pink);
}

.work .section-heading {
  --heading-bg: var(--green);
  --heading-burst: var(--yellow);
  --heading-line: var(--cyan);
}

.process .section-heading {
  --heading-bg: var(--paper);
  --heading-burst: var(--orange);
  --heading-line: var(--green);
  --heading-stripe: var(--pink);
}

.services {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: white;
  border: 6px solid var(--ink);
  border-radius: 0;
  box-shadow: var(--hard-shadow);
  min-height: 410px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.service-card::after {
  background: var(--card-accent, var(--yellow));
  border-bottom: 6px solid var(--ink);
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service-card h3 {
  font-size: 1.3rem;
  line-height: 1.22;
  margin: 16px 0 14px;
}

.service-card p {
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.6;
  margin: 0;
}

.service-number {
  background: white;
  border: 4px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-flex;
  font-weight: 900;
  padding: 4px 10px;
  position: relative;
  z-index: 2;
}

.service-illustration {
  --service-ill-bg: var(--paper);
  --service-ill-label: "WORK";
  --service-ill-rotate: 0deg;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--service-ill-bg);
  background-size: 12px 12px, 12px 12px, auto;
  border: 5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  height: 132px;
  margin: 18px 0 18px;
  overflow: hidden;
  position: relative;
  transform: rotate(var(--service-ill-rotate));
}

.service-illustration::before {
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  content: var(--service-ill-label);
  font-size: 0.76rem;
  font-weight: 900;
  left: 13px;
  line-height: 1;
  padding: 5px 8px;
  position: absolute;
  top: 12px;
  transform: rotate(-6deg);
  z-index: 5;
}

.service-illustration span,
.service-illustration i,
.service-illustration b,
.service-illustration em,
.service-illustration span::before,
.service-illustration span::after,
.service-illustration i::before,
.service-illustration i::after,
.service-illustration b::before,
.service-illustration b::after,
.service-illustration em::before,
.service-illustration em::after {
  content: "";
  display: block;
  position: absolute;
}

.service-illustration em {
  font-style: normal;
}

.service-ill-plan {
  --service-ill-bg: var(--cyan);
  --service-ill-label: "PLAN";
  --service-ill-rotate: -1.8deg;
}

.service-ill-plan span {
  background: white;
  border: 4px solid var(--ink);
  bottom: 17px;
  height: 63px;
  left: 18px;
  width: 58%;
}

.service-ill-plan span::before {
  background: var(--pink);
  border: 4px solid var(--ink);
  height: 20px;
  right: 12px;
  top: 13px;
  width: 36px;
}

.service-ill-plan span::after {
  background: var(--ink);
  height: 6px;
  left: 12px;
  top: 38px;
  width: 72%;
}

.service-ill-plan i {
  background: var(--ink);
  height: 7px;
  right: 22px;
  top: 72px;
  transform: rotate(-22deg);
  width: 96px;
}

.service-ill-plan i::after {
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  right: -14px;
  top: -7px;
}

.service-ill-plan b {
  background: var(--yellow);
  border: 4px solid var(--ink);
  bottom: 22px;
  height: 42px;
  right: 18px;
  transform: rotate(6deg);
  width: 58px;
}

.service-ill-plan b::before {
  background: var(--ink);
  height: 6px;
  left: 9px;
  top: 13px;
  width: 31px;
}

.service-ill-plan em {
  background: var(--ink);
  border: 4px solid white;
  border-radius: 50%;
  height: 20px;
  right: 88px;
  top: 36px;
  width: 20px;
}

.service-ill-intro {
  --service-ill-bg: var(--pink);
  --service-ill-label: "INTRO";
  --service-ill-rotate: 1.5deg;
}

.service-ill-intro span {
  background:
    radial-gradient(circle at center, var(--cyan) 0 15%, white 16% 28%, var(--ink) 29% 32%, transparent 33%),
    var(--ink);
  border: 5px solid var(--ink);
  border-radius: 50%;
  bottom: 18px;
  height: 78px;
  left: 22px;
  width: 78px;
}

.service-ill-intro i,
.service-ill-intro b {
  background: white;
  border: 4px solid var(--ink);
  border-radius: 50%;
  height: 48px;
  top: 44px;
  width: 48px;
}

.service-ill-intro i {
  right: 82px;
}

.service-ill-intro b {
  right: 22px;
  transform: rotate(5deg);
}

.service-ill-intro i::before,
.service-ill-intro b::before {
  background: var(--ink);
  border-radius: 50%;
  height: 14px;
  left: 13px;
  top: 8px;
  width: 14px;
}

.service-ill-intro i::after,
.service-ill-intro b::after {
  background: var(--ink);
  border-radius: 18px 18px 0 0;
  bottom: 8px;
  height: 13px;
  left: 8px;
  width: 23px;
}

.service-ill-intro em {
  background: var(--ink);
  height: 6px;
  left: 112px;
  right: 83px;
  top: 68px;
  transform: rotate(-4deg);
}

.service-ill-progress {
  --service-ill-bg: var(--yellow);
  --service-ill-label: "FLOW";
  --service-ill-rotate: -1.2deg;
}

.service-ill-progress span {
  background: white;
  border: 4px solid var(--ink);
  height: 88px;
  left: 22px;
  top: 28px;
  width: 48%;
}

.service-ill-progress span::before {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 62% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 24px / 78% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 48px / 54% 6px no-repeat;
  height: 60px;
  left: 18px;
  top: 17px;
  width: 86px;
}

.service-ill-progress span::after {
  background: var(--green);
  border: 4px solid var(--ink);
  height: 14px;
  left: 10px;
  top: 13px;
  transform: rotate(-11deg);
  width: 14px;
}

.service-ill-progress i {
  background: var(--ink);
  height: 7px;
  right: 28px;
  top: 66px;
  transform: rotate(12deg);
  width: 86px;
}

.service-ill-progress i::after {
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  right: -14px;
  top: -7px;
}

.service-ill-progress b {
  background: var(--cyan);
  border: 4px solid var(--ink);
  height: 56px;
  right: 19px;
  top: 21px;
  transform: rotate(4deg);
  width: 70px;
}

.service-ill-progress b::before {
  background: var(--pink);
  border-bottom: 4px solid var(--ink);
  height: 13px;
  inset: 0 0 auto;
}

.service-ill-progress em {
  background: var(--ink);
  bottom: 18px;
  height: 18px;
  right: 58px;
  transform: rotate(-10deg);
  width: 52px;
}

.service-ill-flyer {
  --service-ill-bg: var(--green);
  --service-ill-label: "FLYER";
  --service-ill-rotate: 1.8deg;
}

.service-ill-flyer span {
  background: white;
  border: 5px solid var(--ink);
  height: 94px;
  left: 26px;
  top: 22px;
  transform: rotate(-4deg);
  width: 52%;
}

.service-ill-flyer span::before {
  background: var(--pink);
  border-bottom: 5px solid var(--ink);
  height: 23px;
  inset: 0 0 auto;
}

.service-ill-flyer span::after {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 78% 7px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 26px / 58% 7px no-repeat;
  height: 40px;
  left: 18px;
  right: 18px;
  top: 46px;
}

.service-ill-flyer i {
  background: var(--yellow);
  border: 5px solid var(--ink);
  height: 62px;
  right: 28px;
  top: 37px;
  transform: rotate(8deg);
  width: 68px;
}

.service-ill-flyer i::before,
.service-ill-flyer i::after {
  background: var(--ink);
  height: 8px;
  left: 14px;
  width: 32px;
}

.service-ill-flyer i::before {
  top: 18px;
}

.service-ill-flyer i::after {
  top: 34px;
}

.service-ill-flyer b {
  background: var(--cyan);
  border: 4px solid var(--ink);
  bottom: 15px;
  height: 28px;
  right: 54px;
  transform: rotate(-8deg);
  width: 76px;
}

.service-ill-flyer em {
  background: var(--ink);
  height: 12px;
  left: 70%;
  top: 19px;
  transform: rotate(-12deg);
  width: 48px;
}

.service-ill-bgm {
  --service-ill-bg: var(--orange);
  --service-ill-label: "BGM";
  --service-ill-rotate: -1.6deg;
}

.service-ill-bgm span {
  background: var(--ink);
  border: 5px solid var(--ink);
  bottom: 22px;
  height: 76px;
  left: 22px;
  width: 72px;
}

.service-ill-bgm span::before {
  background: white;
  border: 5px solid var(--ink);
  border-radius: 50%;
  height: 42px;
  left: 10px;
  top: 12px;
  width: 42px;
}

.service-ill-bgm span::after {
  background: var(--cyan);
  border: 4px solid var(--ink);
  border-radius: 50%;
  height: 14px;
  left: 24px;
  top: 26px;
  width: 14px;
}

.service-ill-bgm i {
  background: white;
  border: 4px solid var(--ink);
  height: 76px;
  right: 22px;
  top: 30px;
  transform: rotate(3deg);
  width: 47%;
}

.service-ill-bgm i::before {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 72% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 22px / 84% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 44px / 58% 6px no-repeat;
  height: 54px;
  left: 16px;
  top: 14px;
  width: 78%;
}

.service-ill-bgm b {
  background:
    linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 14px);
  background-size: 14px 38px;
  height: 38px;
  left: 106px;
  top: 58px;
  width: 82px;
}

.service-ill-bgm em {
  border: 6px solid var(--ink);
  border-color: transparent var(--ink) transparent transparent;
  border-radius: 50%;
  height: 54px;
  left: 92px;
  top: 39px;
  width: 54px;
}

.service-ill-web {
  --service-ill-bg: var(--cyan);
  --service-ill-label: "WEB";
  --service-ill-rotate: 1.2deg;
}

.service-ill-web span {
  background: white;
  border: 5px solid var(--ink);
  height: 88px;
  left: 22px;
  top: 26px;
  width: 68%;
}

.service-ill-web span::before {
  background: var(--yellow);
  border-bottom: 5px solid var(--ink);
  height: 21px;
  inset: 0 0 auto;
}

.service-ill-web span::after {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 46% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 24px / 70% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 48px / 58% 6px no-repeat;
  height: 60px;
  left: 18px;
  top: 36px;
  width: 65%;
}

.service-ill-web i {
  background: var(--green);
  border: 4px solid var(--ink);
  bottom: 18px;
  height: 48px;
  right: 22px;
  transform: rotate(-5deg);
  width: 58px;
}

.service-ill-web i::before {
  background: white;
  height: 10px;
  left: 9px;
  top: 10px;
  width: 30px;
}

.service-ill-web b {
  background: var(--pink);
  border: 4px solid var(--ink);
  height: 24px;
  right: 82px;
  top: 56px;
  width: 52px;
}

.service-ill-web em {
  background: var(--ink);
  height: 6px;
  right: 44px;
  top: 32px;
  transform: rotate(10deg);
  width: 56px;
}

.service-ill-logo {
  --service-ill-bg: var(--pink);
  --service-ill-label: "DESIGN";
  --service-ill-rotate: -1deg;
}

.service-ill-logo span {
  align-items: center;
  background: var(--yellow);
  border: 5px solid var(--ink);
  display: flex;
  height: 74px;
  justify-content: center;
  left: 22px;
  top: 32px;
  transform: rotate(-4deg);
  width: 82px;
}

.service-ill-logo span::after {
  color: var(--ink);
  content: "KW";
  font-size: 2rem;
  font-weight: 900;
  left: 15px;
  position: absolute;
  text-shadow: 3px 3px 0 white;
  top: 17px;
}

.service-ill-logo i {
  background: white;
  border: 5px solid var(--ink);
  height: 45px;
  right: 22px;
  top: 30px;
  transform: rotate(5deg);
  width: 50%;
}

.service-ill-logo i::before,
.service-ill-logo i::after {
  background: var(--ink);
  height: 6px;
  left: 14px;
}

.service-ill-logo i::before {
  top: 14px;
  width: 62%;
}

.service-ill-logo i::after {
  top: 28px;
  width: 42%;
}

.service-ill-logo b {
  background: var(--green);
  border: 5px solid var(--ink);
  bottom: 20px;
  height: 34px;
  right: 38px;
  transform: rotate(-5deg);
  width: 42%;
}

.service-ill-logo b::before {
  background: var(--ink);
  height: 6px;
  left: 16px;
  top: 11px;
  width: 48%;
}

.service-ill-logo em {
  background: var(--cyan);
  border: 4px solid var(--ink);
  bottom: 20px;
  height: 28px;
  left: 78px;
  transform: rotate(8deg);
  width: 62px;
}

.color-blue {
  --card-accent: var(--cyan);
}

.color-pink {
  --card-accent: var(--pink);
}

.color-yellow {
  --card-accent: var(--yellow);
}

.color-green {
  --card-accent: var(--green);
}

.color-orange {
  --card-accent: var(--orange);
}

.service-card:nth-child(3n + 1) {
  --base-card-rotate: -1.2deg;
}

.service-card:nth-child(3n + 2) {
  --base-card-rotate: 1.4deg;
}

.service-card:nth-child(3n) {
  --base-card-rotate: -0.8deg;
}

.work {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.assist {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.section-note {
  background: white;
  border: 6px solid var(--ink);
  border-left: 18px solid var(--yellow);
  box-shadow: var(--hard-shadow);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin: -10px 0 30px;
  max-width: 820px;
  padding: 18px 20px;
}

.assist-illustration {
  --base-card-rotate: -0.8deg;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px, 18px 18px, auto;
  border: 6px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  margin: 0 0 48px;
  min-height: 286px;
  overflow: hidden;
  position: relative;
}

.assist-illustration::before {
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  content: "PROJECT PARTS";
  font-size: 0.88rem;
  font-weight: 900;
  left: 26px;
  padding: 8px 12px;
  position: absolute;
  top: 24px;
  transform: rotate(-5deg);
  z-index: 4;
}

.assist-illustration::after {
  background: var(--ink);
  content: "";
  height: 7px;
  left: 8%;
  position: absolute;
  right: 7%;
  top: 52%;
  transform: rotate(-7deg);
  transform-origin: center;
  z-index: 1;
}

.assist-ill-card,
.assist-ill-record,
.assist-ill-sticker {
  position: absolute;
  z-index: 3;
}

.assist-ill-card {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.assist-ill-card span,
.assist-ill-sticker {
  background: var(--yellow);
  border: 4px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding: 5px 9px;
}

.assist-ill-web {
  height: 142px;
  left: 7%;
  top: 74px;
  transform: rotate(-3.2deg);
  width: 38%;
}

.assist-ill-web::before {
  background: var(--cyan);
  border-bottom: 6px solid var(--ink);
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.assist-ill-web span {
  left: 20px;
  position: absolute;
  top: 42px;
}

.assist-ill-web i {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 72% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 26px / 54% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 52px / 64% 6px no-repeat;
  display: block;
  height: 64px;
  left: 20px;
  position: absolute;
  right: 42%;
  top: 76px;
}

.assist-ill-web b {
  background: var(--pink);
  border: 5px solid var(--ink);
  display: block;
  height: 58px;
  position: absolute;
  right: 20px;
  top: 58px;
  transform: rotate(4deg);
  width: 30%;
}

.assist-ill-logo {
  align-items: center;
  background: var(--yellow);
  display: flex;
  height: 142px;
  justify-content: center;
  left: 43%;
  top: 28px;
  transform: rotate(5deg);
  width: 142px;
}

.assist-ill-logo span {
  left: 14px;
  position: absolute;
  top: 14px;
  transform: rotate(-7deg);
}

.assist-ill-logo strong {
  font-size: 3.5rem;
  line-height: 1;
  text-shadow: 4px 4px 0 white;
}

.assist-ill-flyer {
  background: var(--green);
  height: 166px;
  right: 7%;
  top: 58px;
  transform: rotate(3.4deg);
  width: 26%;
}

.assist-ill-flyer::before {
  background: white;
  border: 5px solid var(--ink);
  content: "";
  height: 54px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 62px;
}

.assist-ill-flyer::after {
  background:
    linear-gradient(var(--ink) 0 0) 0 0 / 64% 6px no-repeat,
    linear-gradient(var(--ink) 0 0) 0 24px / 82% 6px no-repeat;
  bottom: 20px;
  content: "";
  height: 36px;
  left: 22px;
  position: absolute;
  right: 22px;
}

.assist-ill-flyer span {
  left: 18px;
  position: absolute;
  top: 18px;
  transform: rotate(-6deg);
}

.assist-ill-flyer strong {
  font-size: 2.25rem;
  left: 28px;
  line-height: 1;
  position: absolute;
  top: 70px;
  transform: rotate(-4deg);
  z-index: 1;
}

.assist-ill-record {
  background:
    radial-gradient(circle at center, var(--cyan) 0 16%, white 17% 28%, var(--ink) 29% 31%, transparent 32%),
    radial-gradient(circle at center, transparent 0 46%, rgba(255, 255, 255, 0.18) 47% 49%, transparent 50%),
    var(--ink);
  border: 6px solid var(--ink);
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 8px 8px 0 var(--pink);
  height: 126px;
  left: 34%;
  width: 126px;
}

.assist-ill-record i {
  background: var(--yellow);
  border: 4px solid var(--ink);
  display: block;
  height: 22px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width: 56px;
}

.assist-ill-sticker {
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(var(--sticker-rotate, 0deg));
}

.assist-ill-support {
  --sticker-rotate: 4deg;
  background: var(--orange);
  bottom: 34px;
  left: 9%;
}

.assist-ill-design {
  --sticker-rotate: -5deg;
  background: var(--cyan);
  bottom: 36px;
  right: 26%;
}

.assist-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assist-card {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 330px;
  padding: 0;
  position: relative;
}

.assist-card:nth-child(4n + 1) {
  --assist-accent: var(--yellow);
  --base-card-rotate: -1.6deg;
}

.assist-card:nth-child(4n + 2) {
  --assist-accent: var(--cyan);
  --base-card-rotate: 1.1deg;
}

.assist-card:nth-child(4n + 3) {
  --assist-accent: var(--pink);
  --base-card-rotate: -0.9deg;
}

.assist-card:nth-child(4n + 4) {
  --assist-accent: var(--green);
  --base-card-rotate: 1.8deg;
}

.assist-thumb {
  aspect-ratio: 16 / 10;
  background: var(--assist-accent, var(--yellow));
  border-bottom: 6px solid var(--ink);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.assist-thumb::after {
  align-items: center;
  background: var(--assist-accent, var(--yellow));
  color: var(--ink);
  content: attr(data-label);
  display: none;
  font-size: 1.2rem;
  font-weight: 900;
  inset: 0;
  justify-content: center;
  letter-spacing: 0;
  padding: 18px;
  position: absolute;
  text-align: center;
}

.assist-thumb.is-placeholder::after {
  display: flex;
}

.assist-thumb.is-placeholder img {
  display: none;
}

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

.assist-card span {
  align-self: flex-start;
  background: var(--assist-accent, var(--yellow));
  border: 4px solid var(--ink);
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 900;
  margin: 16px 16px 0;
  padding: 3px 9px;
  text-transform: uppercase;
}

.assist-card strong {
  font-size: 1.42rem;
  line-height: 1.08;
  margin: 14px 16px auto;
}

.assist-card em {
  border-top: 2px solid rgba(17, 17, 17, 0.35);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  margin: 16px 16px 18px;
  padding-top: 10px;
  text-transform: uppercase;
}

.assist-card:hover,
.assist-card:focus-visible,
.assist-card.is-hovering {
  --hover-card-x: 4px;
  --hover-card-y: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  outline: 0;
}

.organized {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.organized .section-tag {
  background: var(--green);
}

.organized .section-note {
  z-index: 18;
}

.event-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.organized .event-grid {
  margin-top: 62px;
}

.event-card {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 10px 10px 0 var(--pink);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
}

.event-card:nth-child(even) {
  --base-card-rotate: 1.7deg;
  box-shadow: 9px 9px 0 var(--cyan);
}

.event-card:nth-child(3n) {
  --base-card-rotate: -2.1deg;
  box-shadow: 9px 9px 0 var(--yellow);
}

.event-card:nth-child(4n + 1) {
  --base-card-rotate: -2.4deg;
}

.event-date {
  align-self: flex-start;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 4px 10px;
}

.event-card strong {
  font-size: 1.65rem;
  line-height: 1;
  margin-top: 2px;
}

.event-card em,
.event-card small {
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-style: normal;
  font-weight: 800;
}

.event-card em {
  color: var(--ink);
}

.event-card small {
  border-top: 2px solid rgba(17, 17, 17, 0.32);
  color: rgba(17, 17, 17, 0.72);
  padding-top: 10px;
}

.event-card:hover,
.event-card:focus-visible,
.event-card.is-hovering {
  --hover-card-x: 4px;
  --hover-card-y: 4px;
  box-shadow: 4px 4px 0 var(--pink);
  outline: 0;
}

.event-flyer {
  aspect-ratio: 4 / 5;
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  margin: 0 0 6px;
  overflow: hidden;
  position: relative;
}

.event-flyer::before {
  align-items: center;
  color: rgba(17, 17, 17, 0.62);
  content: "flyer";
  display: flex;
  font-size: 0.86rem;
  font-weight: 900;
  inset: 0;
  justify-content: center;
  letter-spacing: 0;
  position: absolute;
  text-transform: uppercase;
}

.event-flyer img {
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.log-link {
  align-items: center;
  background: white;
  border: 4px solid var(--ink);
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--ink);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
}

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

.channel-card {
  background: white;
  border: 6px solid var(--ink);
  border-left: 28px solid var(--cyan);
  box-shadow: var(--hard-shadow);
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 24px 24px 24px 26%;
  position: relative;
}

.channel-card::before {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 0;
  content: "ON AIR";
  font-size: 0.78rem;
  font-weight: 900;
  left: 24px;
  padding: 5px 10px;
  position: absolute;
  top: 24px;
  transform: rotate(-8deg);
}

.channel-card span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-card strong {
  font-size: 2rem;
  line-height: 1.05;
}

.channel-card em {
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-style: normal;
  font-weight: 800;
}

.channel-card:hover,
.channel-card:focus-visible,
.channel-card.is-hovering {
  --hover-card-x: 3px;
  --hover-card-y: 3px;
  background:
    linear-gradient(90deg, var(--pink) 0 18%, var(--yellow) 18% 100%);
  box-shadow: 4px 4px 0 var(--ink);
  outline: 0;
}

.mission {
  background:
    linear-gradient(90deg, var(--ink) 0 22px, transparent 22px 100%) 0 0 / 44px 100%,
    var(--yellow);
  background-position: calc(var(--stripe-scroll-x) * -1) 0, 0 0;
  border-bottom: 8px solid var(--ink);
  border-top: 8px solid var(--ink);
  padding: 90px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  will-change: background-position;
}

.mission-card {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  isolation: isolate;
  max-width: 840px;
  padding: 34px;
  position: relative;
}

.mission-card::after {
  background: var(--pink);
  clip-path: polygon(
    50% 0,
    63% 29%,
    96% 12%,
    75% 43%,
    100% 50%,
    73% 61%,
    92% 90%,
    58% 74%,
    49% 100%,
    39% 74%,
    7% 91%,
    25% 61%,
    0 50%,
    27% 40%,
    9% 11%,
    39% 28%
  );
  content: "";
  filter: drop-shadow(7px 7px 0 var(--ink));
  height: 120px;
  position: absolute;
  right: -36px;
  top: -42px;
  transform: rotate(12deg);
  width: 120px;
  z-index: -1;
}

.mission-card h2 {
  margin: 0 0 64px;
  position: relative;
}

.mission-card h2::after {
  background: var(--cyan);
  border: 4px solid var(--ink);
  bottom: -26px;
  box-shadow: 6px 6px 0 var(--ink);
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  transform: rotate(-1.2deg);
  width: min(420px, 62%);
}

.mission-card .section-tag {
  background: var(--yellow);
  color: var(--ink);
  display: block;
  margin: 0 0 68px;
  transform: rotate(-4deg);
  width: fit-content;
  z-index: 3;
}

.mission-card > p:not(.section-tag) {
  margin-top: 0;
}

.mission-illustrations {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.mission-illustration {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--mission-illustration-bg, white);
  background-size: 14px 14px, 14px 14px, auto;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  min-height: 132px;
  overflow: hidden;
  position: relative;
  transform: rotate(var(--mission-illustration-rotate, 0deg));
}

.mission-illustration i {
  display: block;
  position: absolute;
}

.mission-idea {
  --mission-illustration-bg: var(--cyan);
  --mission-illustration-rotate: -2deg;
}

.mission-intro {
  --mission-illustration-bg: var(--yellow);
  --mission-illustration-rotate: 2deg;
}

.mission-make {
  --mission-illustration-bg: var(--pink);
  --mission-illustration-rotate: -1deg;
}

.mission-progress {
  --mission-illustration-bg: var(--green);
  --mission-illustration-rotate: 2.4deg;
}

.mission-route {
  border-bottom: 7px solid var(--ink);
  border-left: 7px solid var(--ink);
  height: 60px;
  left: 22px;
  top: 34px;
  transform: skewX(-16deg);
  width: 86px;
}

.mission-route::after {
  background: var(--yellow);
  border: 5px solid var(--ink);
  content: "";
  height: 30px;
  position: absolute;
  right: -28px;
  top: 40px;
  width: 42px;
}

.mission-pin {
  background: var(--pink);
  border: 5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  height: 42px;
  left: 30px;
  top: 24px;
  transform: rotate(-9deg);
  width: 42px;
}

.mission-spark {
  background: var(--yellow);
  border: 5px solid var(--ink);
  clip-path: polygon(50% 0, 61% 32%, 96% 18%, 76% 50%, 100% 68%, 64% 68%, 54% 100%, 42% 70%, 6% 86%, 27% 54%, 0 36%, 36% 32%);
  height: 58px;
  right: 18px;
  top: 18px;
  transform: rotate(12deg);
  width: 58px;
}

.intro-node {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  height: 52px;
  top: 34px;
  width: 52px;
  z-index: 2;
}

.intro-node-left {
  left: 20px;
  transform: rotate(-5deg);
}

.intro-node-right {
  right: 20px;
  transform: rotate(6deg);
}

.intro-node::before {
  background: var(--ink);
  content: "";
  height: 18px;
  left: 14px;
  position: absolute;
  top: 12px;
  width: 18px;
}

.intro-cable {
  background: var(--ink);
  height: 8px;
  left: 58px;
  top: 58px;
  transform: rotate(-7deg);
  width: 84px;
}

.intro-speaker {
  background: var(--cyan);
  border: 5px solid var(--ink);
  bottom: 22px;
  height: 38px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  width: 84px;
}

.intro-speaker::before,
.intro-speaker::after {
  background: var(--ink);
  content: "";
  height: 18px;
  position: absolute;
  top: 5px;
  width: 10px;
}

.intro-speaker::before {
  left: 18px;
}

.intro-speaker::after {
  right: 18px;
}

.make-browser {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  height: 82px;
  left: 16px;
  top: 24px;
  transform: rotate(5deg);
  width: 104px;
}

.make-browser::before {
  background: var(--cyan);
  border-bottom: 5px solid var(--ink);
  content: "";
  height: 20px;
  inset: 0 0 auto;
  position: absolute;
}

.make-browser::after {
  background:
    linear-gradient(90deg, var(--ink) 0 52px, transparent 52px 100%),
    linear-gradient(var(--ink) 0 7px, transparent 7px 17px);
  background-size: 70px 7px, 78px 17px;
  content: "";
  height: 44px;
  left: 14px;
  position: absolute;
  top: 32px;
  width: 76px;
}

.make-flyer {
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  height: 76px;
  right: 14px;
  top: 54px;
  transform: rotate(-8deg);
  width: 56px;
}

.make-flyer::before,
.make-flyer::after {
  background: var(--ink);
  content: "";
  height: 7px;
  left: 9px;
  position: absolute;
  right: 9px;
}

.make-flyer::before {
  top: 18px;
}

.make-flyer::after {
  top: 36px;
}

.make-cursor {
  border-bottom: 28px solid var(--ink);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  height: 0;
  left: 92px;
  top: 92px;
  transform: rotate(-25deg);
  width: 0;
}

.progress-line {
  background: var(--ink);
  height: 8px;
  left: 24px;
  right: 28px;
  top: 70px;
}

.progress-step {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  height: 40px;
  top: 52px;
  width: 40px;
  z-index: 2;
}

.progress-step::after {
  border-bottom: 6px solid var(--ink);
  border-left: 6px solid var(--ink);
  content: "";
  height: 12px;
  left: 9px;
  position: absolute;
  top: 7px;
  transform: rotate(-45deg);
  width: 20px;
}

.progress-step-one {
  left: 18px;
}

.progress-step-two {
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
}

.progress-step-three {
  right: 18px;
}

.progress-arrow {
  background: var(--pink);
  border: 5px solid var(--ink);
  bottom: 22px;
  height: 26px;
  left: 32px;
  transform: rotate(3deg);
  width: 98px;
}

.progress-arrow::after {
  border-bottom: 24px solid transparent;
  border-left: 30px solid var(--ink);
  border-top: 24px solid transparent;
  content: "";
  position: absolute;
  right: -32px;
  top: -16px;
}

.process {
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

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

.process-rail article {
  background: white;
  border: 6px solid var(--ink);
  border-radius: 0;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 290px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.process-rail span {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  padding: 5px 10px;
  position: relative;
  z-index: 2;
}

.process-illustration {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    white;
  background-size: 18px 18px, 18px 18px, auto;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  margin: 22px 0 0;
  min-height: 148px;
  position: relative;
  transform: rotate(var(--process-illustration-rotate, 0deg));
}

.process-illustration i {
  display: block;
  position: absolute;
}

.process-rail article:nth-child(1) .process-illustration {
  --process-illustration-rotate: -1.8deg;
  background-color: var(--cyan);
}

.process-rail article:nth-child(2) .process-illustration {
  --process-illustration-rotate: 2.4deg;
  background-color: var(--yellow);
}

.process-rail article:nth-child(3) .process-illustration {
  --process-illustration-rotate: -2.2deg;
  background-color: var(--green);
}

.listen-speaker {
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  height: 68px;
  left: 22px;
  top: 46px;
  transform: rotate(-7deg);
  width: 54px;
}

.listen-speaker::after {
  background: var(--ink);
  content: "";
  height: 38px;
  left: 50%;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
  width: 12px;
}

.listen-wave {
  border: 6px solid var(--ink);
  border-left: 0;
  border-radius: 0 90px 90px 0;
  height: 76px;
  left: 72px;
  top: 42px;
  width: 58px;
}

.listen-wave-two {
  height: 104px;
  left: 88px;
  top: 28px;
  width: 78px;
}

.listen-bubble {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
  height: 62px;
  right: 20px;
  top: 22px;
  transform: rotate(6deg);
  width: 88px;
}

.listen-bubble::after {
  background: white;
  border-bottom: 5px solid var(--ink);
  border-right: 5px solid var(--ink);
  bottom: -18px;
  content: "";
  height: 20px;
  left: 20px;
  position: absolute;
  transform: skewX(-20deg);
  width: 20px;
}

.listen-dot {
  background: var(--pink);
  border: 5px solid var(--ink);
  height: 28px;
  right: 46px;
  top: 38px;
  width: 28px;
}

.plan-board {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  height: 102px;
  left: 22px;
  top: 28px;
  transform: rotate(-3deg);
  width: 136px;
}

.plan-board::before {
  background: var(--cyan);
  border-bottom: 5px solid var(--ink);
  content: "";
  height: 24px;
  inset: 0 0 auto;
  position: absolute;
}

.plan-row {
  background: var(--ink);
  height: 8px;
  left: 44px;
  width: 78px;
  z-index: 1;
}

.plan-row-one {
  top: 76px;
}

.plan-row-two {
  top: 98px;
  width: 58px;
}

.plan-ticket {
  background: var(--pink);
  border: 5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  height: 70px;
  right: 28px;
  top: 30px;
  transform: rotate(8deg);
  width: 78px;
}

.plan-ticket::before,
.plan-ticket::after {
  background: white;
  content: "";
  height: 10px;
  left: 14px;
  position: absolute;
  right: 14px;
}

.plan-ticket::before {
  top: 18px;
}

.plan-ticket::after {
  top: 38px;
}

.plan-pin {
  background: var(--green);
  border: 5px solid var(--ink);
  height: 38px;
  right: 86px;
  top: 86px;
  transform: rotate(-10deg);
  width: 38px;
}

.plan-check {
  border-bottom: 8px solid var(--ink);
  border-left: 8px solid var(--ink);
  height: 28px;
  right: 92px;
  top: 88px;
  transform: rotate(-45deg);
  width: 52px;
}

.move-window {
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  height: 96px;
  left: 18px;
  top: 28px;
  transform: rotate(4deg);
  width: 140px;
}

.move-window::before {
  background: var(--pink);
  border-bottom: 5px solid var(--ink);
  content: "";
  height: 24px;
  inset: 0 0 auto;
  position: absolute;
}

.move-window::after {
  background:
    linear-gradient(90deg, var(--ink) 0 42px, transparent 42px 100%),
    linear-gradient(var(--ink) 0 8px, transparent 8px 18px);
  background-size: 76px 8px, 86px 18px;
  content: "";
  height: 54px;
  left: 18px;
  position: absolute;
  top: 40px;
  width: 92px;
}

.move-panel {
  background: var(--cyan);
  border: 5px solid var(--ink);
  bottom: 20px;
  height: 62px;
  right: 24px;
  transform: rotate(-6deg);
  width: 88px;
}

.move-arrow {
  background: var(--yellow);
  border: 5px solid var(--ink);
  height: 24px;
  right: 80px;
  top: 54px;
  transform: rotate(-12deg);
  width: 88px;
}

.move-arrow::after {
  border-bottom: 24px solid transparent;
  border-left: 32px solid var(--ink);
  border-top: 24px solid transparent;
  content: "";
  position: absolute;
  right: -34px;
  top: -17px;
}

.move-burst {
  background: var(--yellow);
  border: 5px solid var(--ink);
  clip-path: polygon(50% 0, 60% 30%, 94% 16%, 76% 48%, 100% 66%, 64% 68%, 56% 100%, 42% 70%, 8% 86%, 26% 54%, 0 36%, 36% 32%);
  height: 64px;
  right: 14px;
  top: 14px;
  transform: rotate(10deg);
  width: 64px;
}

.move-disc {
  background: var(--pink);
  border: 5px solid var(--ink);
  bottom: 18px;
  height: 42px;
  left: 44px;
  width: 42px;
}

.move-disc::after {
  background: white;
  content: "";
  height: 10px;
  left: 11px;
  position: absolute;
  top: 11px;
  width: 10px;
}

.process-rail h3 {
  font-size: 1.65rem;
  margin: 24px 0 14px;
}

.process-rail p {
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-weight: 800;
  margin: 0;
}

.contact {
  background: var(--ink);
  border-top: 8px solid var(--ink);
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  padding: 96px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.contact .section-tag {
  background: var(--yellow);
  color: var(--ink);
}

.contact h2 {
  color: white;
  text-shadow: 5px 5px 0 var(--blue);
}

.contact-heading p {
  margin-top: 22px;
  max-width: 650px;
}

.contact-heading {
  isolation: isolate;
  padding: 36px 126px 26px 0;
  position: relative;
}

.contact-heading::before {
  background:
    repeating-linear-gradient(90deg, var(--yellow) 0 18px, var(--ink) 18px 25px, transparent 25px 34px),
    var(--cyan);
  background-position: calc(var(--stripe-scroll-x) * -0.85) 0, 0 0;
  border: 6px solid white;
  box-shadow: 12px 12px 0 var(--blue);
  content: "";
  height: 116px;
  left: -20px;
  position: absolute;
  top: 16px;
  transform:
    translate3d(var(--scroll-heading-bg-x, 0px), var(--scroll-heading-bg-y, 0px), 0)
    rotate(calc(-1.5deg + var(--scroll-heading-bg-rotate, 0deg)));
  width: min(640px, calc(100% - 28px));
  z-index: 0;
  will-change: transform, background-position;
}

.contact-heading::after {
  background: var(--pink);
  clip-path: polygon(
    50% 0,
    62% 28%,
    90% 12%,
    73% 41%,
    100% 50%,
    70% 62%,
    88% 91%,
    58% 73%,
    50% 100%,
    38% 73%,
    8% 89%,
    27% 60%,
    0 50%,
    30% 39%,
    10% 10%,
    40% 28%
  );
  content: "";
  filter: drop-shadow(7px 7px 0 var(--blue));
  height: 112px;
  position: absolute;
  right: 10px;
  top: 8px;
  transform:
    translate3d(var(--scroll-heading-burst-x, 0px), var(--scroll-heading-burst-y, 0px), 0)
    rotate(calc(9deg + var(--scroll-heading-burst-rotate, 0deg)))
    scale(var(--scroll-heading-burst-scale, 1));
  width: 112px;
  z-index: 1;
  will-change: transform;
}

.contact-heading .section-tag,
.contact-heading h2,
.contact-heading p {
  position: relative;
  z-index: 2;
}

.contact-heading .section-tag {
  transform:
    translate3d(var(--scroll-heading-tag-x, 0px), var(--scroll-heading-tag-y, 0px), 0)
    rotate(var(--scroll-heading-tag-rotate, 0deg));
  will-change: transform;
}

.contact-heading h2 {
  transform:
    translate3d(var(--scroll-heading-title-x, 0px), var(--scroll-heading-title-y, 0px), 0)
    rotate(var(--scroll-heading-title-rotate, 0deg));
  will-change: transform;
}

.contact-panel {
  background: white;
  border: 6px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  color: var(--ink);
  padding: 28px;
}

.contact-panel h3 {
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.contact-list {
  display: grid;
  gap: 10px;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-weight: 800;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.contact-item {
  align-items: center;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: 62px minmax(0, 1fr);
  min-height: 76px;
  padding: 9px 12px 9px 9px;
}

.contact-item:nth-child(2n) {
  transform: rotate(0.7deg);
}

.contact-item:nth-child(2n + 1) {
  transform: rotate(-0.6deg);
}

.contact-icon {
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--contact-icon-bg, var(--yellow));
  background-size: 10px 10px, 10px 10px, auto;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  display: block;
  height: 54px;
  position: relative;
  transform: rotate(var(--contact-icon-rotate, 0deg));
  width: 54px;
}

.contact-icon i,
.contact-icon i::before,
.contact-icon i::after {
  content: "";
  display: block;
  position: absolute;
}

.contact-icon-brief {
  --contact-icon-bg: var(--cyan);
  --contact-icon-rotate: -5deg;
}

.contact-icon-brief i {
  background: white;
  border: 4px solid var(--ink);
  height: 35px;
  left: 10px;
  top: 7px;
  width: 26px;
}

.contact-icon-brief i::before {
  background: var(--pink);
  border: 3px solid var(--ink);
  height: 16px;
  right: -13px;
  top: 4px;
  width: 18px;
}

.contact-icon-brief i::after {
  background: var(--ink);
  height: 5px;
  left: 5px;
  top: 21px;
  width: 14px;
}

.contact-icon-music {
  --contact-icon-bg: var(--pink);
  --contact-icon-rotate: 4deg;
}

.contact-icon-music i {
  background: var(--ink);
  height: 8px;
  left: 11px;
  top: 27px;
  width: 32px;
}

.contact-icon-music i::before,
.contact-icon-music i::after {
  background: white;
  border: 4px solid var(--ink);
  height: 22px;
  top: -13px;
  width: 12px;
}

.contact-icon-music i::before {
  left: -3px;
}

.contact-icon-music i::after {
  right: -3px;
}

.contact-icon-menu {
  --contact-icon-bg: var(--yellow);
  --contact-icon-rotate: -3deg;
}

.contact-icon-menu i {
  background: white;
  border: 4px solid var(--ink);
  height: 34px;
  left: 9px;
  top: 8px;
  width: 35px;
}

.contact-icon-menu i::before,
.contact-icon-menu i::after {
  background: var(--ink);
  height: 5px;
  left: 7px;
  width: 18px;
}

.contact-icon-menu i::before {
  top: 8px;
}

.contact-icon-menu i::after {
  top: 19px;
}

.contact-icon-web {
  --contact-icon-bg: var(--green);
  --contact-icon-rotate: 5deg;
}

.contact-icon-web i {
  background: white;
  border: 4px solid var(--ink);
  height: 31px;
  left: 7px;
  top: 9px;
  width: 39px;
}

.contact-icon-web i::before {
  background: var(--cyan);
  border-bottom: 4px solid var(--ink);
  height: 9px;
  inset: 0 0 auto;
  width: 100%;
}

.contact-icon-web i::after {
  background: var(--ink);
  height: 5px;
  left: 8px;
  top: 18px;
  width: 22px;
}

.contact-icon-date {
  --contact-icon-bg: var(--cyan);
  --contact-icon-rotate: -6deg;
}

.contact-icon-date i {
  background: white;
  border: 4px solid var(--ink);
  height: 34px;
  left: 8px;
  top: 10px;
  width: 38px;
}

.contact-icon-date i::before {
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
  height: 10px;
  inset: 0 0 auto;
}

.contact-icon-date i::after {
  background:
    linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 11px),
    linear-gradient(var(--ink) 0 5px, transparent 5px 11px);
  background-size: 11px 11px;
  height: 17px;
  left: 7px;
  top: 15px;
  width: 24px;
}

.contact-icon-budget {
  --contact-icon-bg: var(--orange);
  --contact-icon-rotate: 4deg;
}

.contact-icon-budget i {
  background: var(--yellow);
  border: 4px solid var(--ink);
  height: 26px;
  left: 9px;
  top: 14px;
  transform: rotate(-8deg);
  width: 37px;
}

.contact-icon-budget i::before {
  background: white;
  border: 3px solid var(--ink);
  height: 8px;
  left: 4px;
  top: 5px;
  width: 8px;
}

.contact-icon-budget i::after {
  background: var(--ink);
  height: 5px;
  right: 5px;
  top: 9px;
  width: 14px;
}

.fineprint {
  color: rgba(17, 17, 17, 0.58);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 18px 0 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  border-top: 8px solid var(--yellow);
  color: white;
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 18px 28px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--yellow);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark,
.brand-text,
.site-nav a,
.button,
.service-number,
.section-tag,
.event-date,
.log-link {
  filter:
    drop-shadow(calc(var(--ymck-c-x) * 0.18) calc(var(--ymck-c-y) * 0.18) 0 rgba(22, 217, 255, 0.58))
    drop-shadow(calc(var(--ymck-m-x) * 0.16) calc(var(--ymck-m-y) * 0.16) 0 rgba(255, 79, 179, 0.52));
}

.hero-title-line,
.section-heading h2,
.mission-card h2,
.contact h2 {
  text-shadow:
    calc(var(--ymck-c-x) * 0.42) calc(var(--ymck-c-y) * 0.42) 0 rgba(22, 217, 255, 0.7),
    calc(var(--ymck-m-x) * 0.38) calc(var(--ymck-m-y) * 0.38) 0 rgba(255, 79, 179, 0.62),
    calc(var(--ymck-y-x) * 0.32) calc(var(--ymck-y-y) * 0.32) 0 rgba(255, 230, 0, 0.58),
    5px 5px 0 rgba(17, 17, 17, 0.14);
}

.hero h1 .hero-brand-word {
  text-shadow:
    calc(var(--ymck-c-x) * 0.42) calc(var(--ymck-c-y) * 0.42) 0 rgba(22, 217, 255, 0.72),
    calc(var(--ymck-m-x) * 0.38) calc(var(--ymck-m-y) * 0.38) 0 rgba(255, 79, 179, 0.64),
    calc(var(--ymck-y-x) * 0.34) calc(var(--ymck-y-y) * 0.34) 0 rgba(255, 230, 0, 0.6);
}

.service-card,
.assist-card,
.event-card,
.channel-card,
.process-rail article,
.intro-board,
.section-note,
.mission-card,
.contact-panel,
.contact-list li {
  filter:
    drop-shadow(calc(var(--ymck-c-x) * -0.22) calc(var(--ymck-c-y) * -0.22) 0 rgba(22, 217, 255, 0.5))
    drop-shadow(calc(var(--ymck-m-x) * -0.2) calc(var(--ymck-m-y) * -0.2) 0 rgba(255, 79, 179, 0.46))
    drop-shadow(calc(var(--ymck-y-x) * 0.18) calc(var(--ymck-y-y) * 0.18) 0 rgba(255, 230, 0, 0.42));
}

.assist-thumb img,
.event-flyer img {
  filter:
    drop-shadow(calc(var(--ymck-c-x) * 0.16) 0 0 rgba(22, 217, 255, 0.55))
    drop-shadow(calc(var(--ymck-m-x) * 0.14) 0 0 rgba(255, 79, 179, 0.45))
    saturate(1.08);
}

.brand-mark,
.brand-text,
.site-nav a,
.button,
.assist-card,
.event-card,
.log-link,
.channel-card,
.site-footer a {
  transform-origin: center;
  will-change: transform, translate, rotate, box-shadow, background-position;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark,
.brand:hover .brand-text,
.brand:focus-visible .brand-text,
.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.assist-card:hover,
.assist-card:focus-visible,
.event-card:hover,
.event-card:focus-visible,
.log-link:hover,
.log-link:focus-visible,
.channel-card:hover,
.channel-card:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  animation:
    link-hover-dance 780ms cubic-bezier(0.45, 0, 0.2, 1) infinite,
    link-hover-print 560ms linear infinite;
  background-position:
    var(--link-noise-x, 0) var(--link-noise-y, 0),
    calc(var(--link-noise-x, 0) * -1) calc(var(--link-noise-y, 0) * 0.6),
    0 0;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark,
.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.log-link:hover,
.log-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  animation-duration: 560ms, 460ms;
}

.button:hover .link-icon,
.button:focus-visible .link-icon,
.log-link:hover .link-icon,
.log-link:focus-visible .link-icon {
  animation: link-arrow-kick 520ms ease-in-out infinite;
  display: inline-block;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes link-hover-dance {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 0;
  }

  22% {
    rotate: -0.8deg;
    translate: -2px -2px;
  }

  48% {
    rotate: 0.7deg;
    translate: 2px 1px;
  }

  72% {
    rotate: -0.35deg;
    translate: -1px 2px;
  }
}

@keyframes link-hover-print {
  0% {
    --link-noise-x: 0px;
    --link-noise-y: 0px;
  }

  50% {
    --link-noise-x: 8px;
    --link-noise-y: -6px;
  }

  100% {
    --link-noise-x: -5px;
    --link-noise-y: 5px;
  }
}

@keyframes link-arrow-kick {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 0;
  }

  45% {
    rotate: 12deg;
    translate: 4px -3px;
  }

  70% {
    rotate: -6deg;
    translate: -1px 1px;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    padding: 54px 28px;
  }

  .hero-media {
    background-position: var(--hour-hero-x) var(--hour-hero-y);
  }

  .hero h1 {
    font-size: 4.1rem;
  }

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

  .intro-board,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .mission-illustrations {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .assist-illustration {
    min-height: 330px;
  }

  .assist-ill-web {
    left: 5%;
    width: 46%;
  }

  .assist-ill-logo {
    left: 47%;
    top: 30px;
  }

  .assist-ill-flyer {
    right: 5%;
    top: 128px;
    width: 34%;
  }

  .assist-ill-record {
    bottom: 20px;
    left: 38%;
  }

  .assist-ill-design {
    bottom: 38px;
    right: 10%;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding: 10px 16px;
  }

  .site-nav {
    display: flex;
    flex: 1 1 0;
    gap: 7px;
    justify-content: flex-end;
    min-width: 0;
    overflow-x: auto;
    padding: 0 4px 6px 0;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .brand-text {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-copy {
    min-width: 0;
    padding: 48px 18px;
  }

  .hero h1,
  .intro h2,
  .mission h2,
  .contact h2 {
    font-size: 2.55rem;
  }

  .hero h1 .hero-brand-word {
    border-width: 6px;
    box-shadow:
      7px 7px 0 white,
      12px 12px 0 var(--ink);
    font-size: clamp(2.35rem, 9.8vw, 4.5rem);
    margin-bottom: 18px;
    overflow-wrap: normal;
    padding-left: 0.045em;
    padding-right: 0.045em;
    white-space: nowrap;
    width: calc(100vw - 38px);
  }

  .hero h1 .hero-title-line {
    font-size: clamp(1.8rem, 6vw, 2.45rem);
  }

  .section-heading h2 {
    font-size: 2.05rem;
    padding: 7px 10px 10px;
  }

  .lead {
    font-size: 0.98rem;
    padding: 16px;
  }

  .hero h1 span,
  .section-heading h2,
  .contact h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

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

  .hero-sticker {
    display: none;
  }

  .section,
  .services,
  .assist,
  .organized,
  .work,
  .process,
  .mission,
  .contact {
    padding: 70px 18px;
  }

  .intro-board {
    padding: 24px;
  }

  .intro-visuals {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    min-height: 170px;
  }

  .mission-card {
    padding: 24px;
  }

  .mission-illustrations {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-illustration {
    min-height: 118px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
    min-height: 150px;
    padding: 28px 76px 30px 12px;
  }

  .section-heading::before {
    height: calc(100% - 18px);
    left: 0;
    top: 10px;
    width: calc(100% - 12px);
  }

  .section-heading::after {
    height: 76px;
    right: 0;
    top: 4px;
    width: 76px;
  }

  .section-heading h2::after {
    bottom: -14px;
    height: 10px;
    width: 74%;
  }

  .contact-heading {
    padding: 30px 72px 18px 0;
  }

  .contact-heading::before {
    height: 112px;
    left: -10px;
    top: 12px;
    width: calc(100% - 8px);
  }

  .contact-heading::after {
    height: 74px;
    right: -4px;
    top: 8px;
    width: 74px;
  }

  .mission-card::after {
    height: 84px;
    right: -22px;
    top: -28px;
    width: 84px;
  }

  .mission-card h2::after {
    bottom: -20px;
    height: 10px;
    width: 70%;
  }

  .contact-heading,
  .contact-panel {
    min-width: 0;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .assist-illustration {
    min-height: 520px;
  }

  .assist-illustration::before {
    left: 18px;
    top: 18px;
  }

  .assist-illustration::after {
    left: -10%;
    right: -10%;
    top: 52%;
    transform: rotate(-18deg);
  }

  .assist-ill-web {
    height: 132px;
    left: 7%;
    top: 64px;
    width: 84%;
  }

  .assist-ill-logo {
    height: 122px;
    left: 8%;
    top: 226px;
    width: 122px;
  }

  .assist-ill-logo strong {
    font-size: 2.9rem;
  }

  .assist-ill-flyer {
    height: 160px;
    right: 7%;
    top: 254px;
    width: 58%;
  }

  .assist-ill-record {
    bottom: 28px;
    height: 108px;
    left: 12%;
    width: 108px;
  }

  .assist-ill-support {
    bottom: 176px;
    left: 8%;
  }

  .assist-ill-design {
    bottom: 52px;
    right: 9%;
  }

  .service-grid,
  .assist-grid,
  .event-grid,
  .channel-grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding-bottom: 30px;
  }

  .channel-card {
    background: white;
    padding: 86px 20px 22px;
  }

  .channel-card strong {
    font-size: 1.55rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

}

@media (max-width: 480px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    flex-basis: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .stamp,
  .section-tag,
  .hero-sticker,
  .intro-board,
  .service-card,
  .assist-card,
  .event-card,
  .log-link,
  .channel-card,
  .mission-card,
  .process-rail article,
  .contact-panel {
    transform: none !important;
    will-change: auto;
  }
}
