    :root {
      --charcoal: #4c4948;
      --red: #de0039;
      --blue: #2778bd;
      --ivory: #f8f5ef;
      --paper: #fffdf9;
      --line: #e9e2dc;
      --shadow: 0 10px 24px rgba(76, 73, 72, .075);
      --w: 80vw;
      --wave-w: 100vw;
      --fs-xs: clamp(11px, .72vw, 13px);
      --fs-sm: clamp(12px, .82vw, 14px);
      --fs-md: clamp(14px, .95vw, 16px);
      --fs-lg: clamp(16px, 1.15vw, 19px);
      --fs-title-sm: clamp(24px, 1.8vw, 32px);
      --fs-title-md: clamp(30px, 2.5vw, 42px);
      --fs-hero: clamp(52px, 5.4vw, 90px);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--charcoal);
      font-family: "Zen Kaku Gothic New", sans-serif;
      background:
        radial-gradient(circle at 0% 15%, rgba(222, 0, 57, .035), transparent 22%),
        radial-gradient(circle at 100% 18%, rgba(39, 120, 189, .03), transparent 24%),
        linear-gradient(180deg, #fffefb 0%, var(--ivory) 58%, #fffefb 100%);
      letter-spacing: 0;
      line-height: 1.9;
      font-size: var(--fs-md);
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .material-symbols-outlined {
      font-family: "Material Symbols Outlined";
      font-weight: normal;
      font-style: normal;
      line-height: 1;
      letter-spacing: 0;
      text-transform: none;
      display: inline-grid;
      place-items: center;
      white-space: nowrap;
      word-wrap: normal;
      direction: ltr;
      -webkit-font-feature-settings: "liga";
      -webkit-font-smoothing: antialiased;
      font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
    }

    .page {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      width: 100%;
      height: 66px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(76, 73, 72, .07);
      background: rgba(255, 253, 249, .86);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: var(--w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 220px 1fr 176px;
      align-items: center;
      gap: 34px;
    }

    .brand {
      display: flex;
      align-items: center;
      width: 198px;
    }

    .brand img {
      width: 198px;
      height: auto;
    }

    .nav {
      display: flex;
      justify-content: center;
      gap: clamp(18px, 3vw, 46px);
      font-size: var(--fs-sm);
      font-weight: 700;
    }

    .contact {
      position: relative;
      align-self: stretch;
      min-height: 66px;
      display: grid;
      place-items: center;
      border: 1px solid #222222;
      color: #fffdf9;
      font-size: var(--fs-sm);
      font-weight: 700;
      background: #222222;
      overflow: hidden;
      animation: contactGlow 2.4s ease-in-out infinite;
    }

    .contact span { display: none; }

    @keyframes contactGlow {
      0%, 100% {
        background: #222222;
        box-shadow: 0 0 0 rgba(34, 34, 34, 0);
        filter: brightness(1);
      }
      50% {
        background: #303030;
        box-shadow: 0 0 22px rgba(34, 34, 34, .22);
        filter: brightness(1.18);
      }
    }

    .hero {
      position: relative;
      margin-top: 66px;
      height: 680px;
    }

    .hero-grid {
      width: var(--w);
      height: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 45.6% 54.4%;
    }

    .hero-copy {
      position: relative;
      padding: 132px 0 0 min(12vw, 168px);
    }

    .vertical {
      position: absolute;
      left: min(4vw, 42px);
      top: 112px;
      writing-mode: vertical-rl;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 1.8;
    }

    h1 {
      margin: 0;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: var(--fs-hero);
      font-weight: 400;
      line-height: 1.34;
      letter-spacing: .13em;
    }

    h1 .red {
      color: var(--red);
      font-size: 1.06em;
      font-weight: 500;
    }

    .hero-title {
      display: grid;
      gap: .04em;
    }

    .title-line {
      display: block;
      opacity: 0;
      transform: translateY(18px);
      filter: blur(2px);
      animation: titleReveal 1.15s cubic-bezier(.22, 1, .36, 1) forwards;
      will-change: opacity, transform, filter;
    }

    .title-line:nth-child(2) {
      animation-delay: .22s;
    }

    .title-line:nth-child(3) {
      animation-delay: .44s;
    }

    .title-red {
      position: relative;
      display: inline-block;
      animation: redPulse 3.8s ease-in-out 1.2s infinite;
    }

    .title-red::after {
      content: "";
      position: absolute;
      inset: 8% -8%;
      background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, .72) 45%, transparent 68%);
      transform: translateX(-130%) skewX(-12deg);
      mix-blend-mode: screen;
      pointer-events: none;
      animation: redSheen 4.6s ease-in-out 1.6s infinite;
    }

    @keyframes titleReveal {
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes redPulse {
      0%, 100% { text-shadow: 0 0 0 rgba(222, 0, 57, 0); }
      45% { text-shadow: 0 8px 22px rgba(222, 0, 57, .14); }
    }

    @keyframes redSheen {
      0%, 62% { transform: translateX(-130%) skewX(-12deg); opacity: 0; }
      72% { opacity: .75; }
      86%, 100% { transform: translateX(135%) skewX(-12deg); opacity: 0; }
    }

    .mini-lines {
      display: grid;
      grid-template-columns: 44px 44px;
      gap: 14px;
      width: 102px;
      margin: 38px 0 26px;
    }

    .mini-lines::before,
    .mini-lines::after {
      content: "";
      height: 2px;
      background: var(--red);
    }

    .mini-lines::after { background: var(--blue); }

    .hero-lead {
      margin: 0;
      font-size: var(--fs-lg);
      font-weight: 500;
      line-height: 2.2;
    }

    .hero-photo {
      position: relative;
      width: 100%;
      height: 610px;
      align-self: start;
      background: url("assets/hero-photo.png") center top / cover no-repeat;
      overflow: hidden;
      clip-path: none;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H100V91C88 94 78 95 66 93C55 91 47 90 37 94C25 98 12 97 0 94Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H100V91C88 94 78 95 66 93C55 91 47 90 37 94C25 98 12 97 0 94Z'/%3E%3C/svg%3E");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
    }

    .hero-photo::after {
      content: none;
    }

    .wave-main {
      position: absolute;
      left: 50%;
      bottom: 6px;
      width: var(--wave-w);
      height: 260px;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 5;
      mix-blend-mode: multiply;
      animation: waveFloat 4.8s ease-in-out infinite alternate;
    }

    .wave-main path,
    .footer-wave path {
      transform-box: fill-box;
      transform-origin: center;
      animation: waveSway 4.2s ease-in-out infinite alternate;
    }

    .wave-main .blue-wave,
    .wave-soft .blue-wave,
    .footer-wave .blue-wave {
      animation: blueWaveSway 3.6s ease-in-out infinite alternate-reverse;
      transform-box: fill-box;
      transform-origin: center;
    }

    .wave-soft .blue-wave {
      animation-duration: 2s;
    }

    .footer-wave .blue-wave {
      animation-duration: 2s;
    }

    .footer-wave path {
      animation-duration: 2s;
    }

    .wave-main path:nth-child(even),
    .footer-wave path:nth-child(even) {
      animation-duration: 5.2s;
      animation-direction: alternate-reverse;
    }

    .wave-a { animation: waveDriftA 3.7s ease-in-out infinite alternate !important; }
    .wave-b { animation: waveDriftB 4.6s ease-in-out infinite alternate-reverse !important; }
    .wave-c { animation: waveDriftC 3.2s ease-in-out infinite alternate !important; }
    .wave-d { animation: waveDriftD 5.1s ease-in-out infinite alternate-reverse !important; }
    .wave-e { animation: waveDriftE 4.1s ease-in-out infinite alternate !important; }
    .wave-f { animation: waveDriftF 3.4s ease-in-out infinite alternate-reverse !important; }
    .wave-g { animation: blueWaveSway 2.8s ease-in-out infinite alternate-reverse !important; }

    .wave-soft .wave-a { animation-duration: 2s !important; }
    .wave-soft .wave-b { animation-duration: 2.35s !important; }
    .wave-soft .wave-c { animation-duration: 1.85s !important; }
    .wave-soft .wave-d { animation-duration: 2.55s !important; }
    .wave-soft .wave-e { animation-duration: 2.15s !important; }
    .wave-soft .wave-f { animation-duration: 1.95s !important; }
    .wave-soft .wave-g { animation-duration: 2.25s !important; }

    .footer-wave .wave-a { animation-duration: 2s !important; }
    .footer-wave .wave-b { animation-duration: 2.4s !important; }
    .footer-wave .wave-c { animation-duration: 1.8s !important; }
    .footer-wave .wave-d { animation-duration: 2.2s !important; }
    .footer-wave .wave-e { animation-duration: 1.9s !important; }
    .footer-wave .wave-f { animation-duration: 2.6s !important; }

    @keyframes waveFloat {
      from { transform: translateX(-50%) translateY(0); }
      to { transform: translateX(calc(-50% + 18px)) translateY(-8px); }
    }

    @keyframes waveSway {
      from { transform: translateX(-14px) translateY(2px) scaleY(1); }
      to { transform: translateX(14px) translateY(-2px) scaleY(1.035); }
    }

    @keyframes waveDriftA {
      from { transform: translateX(-18px) translateY(2px) scaleY(1); }
      to { transform: translateX(10px) translateY(-4px) scaleY(1.03); }
    }

    @keyframes waveDriftB {
      from { transform: translateX(14px) translateY(-3px) scaleY(.99); }
      to { transform: translateX(-20px) translateY(3px) scaleY(1.04); }
    }

    @keyframes waveDriftC {
      from { transform: translateX(-8px) translateY(-2px) scaleY(1.02); }
      to { transform: translateX(22px) translateY(4px) scaleY(.985); }
    }

    @keyframes waveDriftD {
      from { transform: translateX(20px) translateY(3px) scaleY(1); }
      to { transform: translateX(-12px) translateY(-3px) scaleY(1.025); }
    }

    @keyframes waveDriftE {
      from { transform: translateX(-24px) translateY(4px) scaleY(.99); }
      to { transform: translateX(14px) translateY(-2px) scaleY(1.045); }
    }

    @keyframes waveDriftF {
      from { transform: translateX(10px) translateY(-4px) scaleY(1.03); }
      to { transform: translateX(-24px) translateY(2px) scaleY(.995); }
    }

    @keyframes blueWaveSway {
      from { transform: translateX(16px) translateY(-3px) scaleY(.985); }
      to { transform: translateX(-16px) translateY(3px) scaleY(1.045); }
    }

    .container {
      position: relative;
      width: var(--w);
      margin: 0 auto;
    }

    .philosophy {
      padding: 56px 0 96px;
      text-align: center;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--red);
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .title {
      margin: 0;
      font-size: var(--fs-title-md);
      font-weight: 400;
      letter-spacing: .11em;
      line-height: 1.6;
    }

    .text {
      max-width: 760px;
      margin: 24px auto 0;
      font-size: calc(var(--fs-sm) * 1.2);
      font-weight: 500;
      line-height: 2.15;
    }

    .wave-soft {
      position: absolute;
      left: 50%;
      top: -72px;
      width: var(--wave-w);
      height: 160px;
      transform: translateX(-50%);
      opacity: .82;
      pointer-events: none;
      animation: problemWaveFloat 2s ease-in-out infinite alternate;
    }

    .wave-soft path {
      transform-box: fill-box;
      transform-origin: center;
      animation: problemWaveSway 2s ease-in-out infinite alternate;
    }

    .wave-soft path:nth-child(even) {
      animation-direction: alternate-reverse;
    }

    .problem-wave-lines {
      top: -78px;
      height: 168px;
      opacity: .9;
    }

    .problem-wave-lines path {
      vector-effect: non-scaling-stroke;
    }

    @keyframes problemWaveFloat {
      from { transform: translateX(-50%) translateY(0); }
      to { transform: translateX(calc(-50% + 12px)) translateY(-4px); }
    }

    @keyframes problemWaveSway {
      from { transform: translateX(-10px) translateY(1px); }
      to { transform: translateX(10px) translateY(-1px); }
    }

    .problems {
      padding: 128px 0 56px;
      text-align: center;
    }

    .problem-title {
      margin: 0 0 10px;
      font-size: calc(var(--fs-title-sm) * 1.1);
      font-weight: 500;
      letter-spacing: .08em;
    }

    .center-lines {
      margin: 0 auto 28px;
      transform: scale(.72);
    }

    .labels,
    .problem-grid {
      width: min(960px, 100%);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 52px 1fr;
      gap: 28px;
    }

    .labels {
      margin-bottom: 8px;
      color: var(--red);
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: .12em;
      text-align: center;
      text-transform: uppercase;
    }

    .labels span:last-child { color: var(--blue); }

    .stack {
      display: grid;
      gap: 10px;
    }

    .problem-card {
      min-height: 74px;
      padding: 15px 28px;
      display: grid;
      grid-template-columns: 48px 1fr;
      align-items: center;
      gap: 12px;
      text-align: left;
      background: rgba(255, 255, 255, .8);
      border: 1px solid rgba(76, 73, 72, .07);
      box-shadow: var(--shadow);
    }

    .problem-card p {
      margin: 0;
      font-size: calc(var(--fs-sm) * 1.1);
      font-weight: 700;
      line-height: 1.75;
    }

    .arrows {
      display: grid;
      gap: 10px;
    }

    .arrow {
      min-height: 74px;
      display: grid;
      place-items: center;
      color: #6f6b69;
      font-size: var(--fs-title-sm);
      font-weight: 400;
      animation: arrowFloat 2.8s ease-in-out infinite;
    }

    .arrow:nth-child(2) { animation-delay: .16s; }
    .arrow:nth-child(3) { animation-delay: .32s; }
    .arrow:nth-child(4) { animation-delay: .48s; }

    @keyframes arrowFloat {
      0%, 100% {
        opacity: .58;
        transform: translateX(-3px);
      }
      50% {
        opacity: 1;
        transform: translateX(6px);
      }
    }

    .icon {
      width: 32px;
      height: 32px;
      color: var(--red);
    }

    .icon.material-symbols-outlined {
      font-size: 31px;
    }

    .card-icon-img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .blue { color: var(--blue); }

    .strength {
      padding: 36px 0 54px;
      text-align: center;
    }

    .strength .title { font-size: var(--fs-title-sm); }

    .strength-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 42px;
      border-left: 1px solid rgba(76, 73, 72, .16);
    }

    .strength-item {
      min-height: 170px;
      padding: 4px 34px 0;
      border-right: 1px solid rgba(76, 73, 72, .16);
    }

    .strength-item .icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 18px;
      color: #111;
    }

    .strength-img {
      display: none;
    }

    .strength-icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 18px;
      color: #111;
    }

    .strength-icon.material-symbols-outlined {
      display: grid;
      place-items: center;
      font-size: 46px;
      font-variation-settings:
        "FILL" 0,
        "wght" 280,
        "GRAD" 0,
        "opsz" 40;
    }

    .strength-item h3 {
      margin: 0 0 12px;
      font-size: var(--fs-lg);
      font-weight: 600;
    }

    .strength-item p {
      margin: 0;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 2;
    }

    .service {
      padding: 36px 0 64px;
      text-align: center;
    }

    .service .title,
    .works .title {
      font-size: var(--fs-title-sm);
    }

    .service-lead {
      max-width: 880px;
      margin: 22px auto 0;
      font-size: var(--fs-md);
      font-weight: 500;
      line-height: 2.15;
      text-align: center;
    }

    .service-grid {
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      text-align: left;
    }

    .service-card {
      min-height: 134px;
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
      padding: 24px 28px;
      background: rgba(255, 255, 255, .5);
      border: 1px solid var(--line);
      transform-origin: 50% 70%;
      transition: border-color .35s ease, box-shadow .35s ease, background-color .35s ease;
      will-change: transform;
      color: inherit;
      text-decoration: none;
    }

    .service-card:hover,
    .service-card:focus-within {
      animation: serviceSway 1.7s ease-in-out infinite;
      border-color: rgba(39, 120, 189, .28);
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 18px 34px rgba(76, 73, 72, .09);
    }

    @keyframes serviceSway {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      25% { transform: translateY(-5px) rotate(.35deg); }
      55% { transform: translateY(-3px) rotate(-.28deg); }
      78% { transform: translateY(-6px) rotate(.18deg); }
    }

    .circle {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(39, 120, 189, .35);
      border-radius: 50%;
      overflow: hidden;
      background: transparent;
    }

    .circle .icon {
      width: 34px;
      height: 34px;
    }

    .circle .icon.material-symbols-outlined {
      font-size: 31px;
    }

    .service-card h3 {
      margin: 0 0 6px;
      font-size: var(--fs-lg);
      font-weight: 700;
    }

    .service-card p {
      margin: 0 0 8px;
      font-size: var(--fs-xs);
      font-weight: 500;
      line-height: 1.75;
    }

    .more {
      display: inline-flex;
      align-items: center;
      color: var(--charcoal);
      font-size: var(--fs-xs);
      font-weight: 700;
      text-decoration: none;
    }

    .more span {
      color: var(--red);
      margin-left: 10px;
    }

    .works {
      padding: 26px 0 64px;
      text-align: center;
    }

    .works-grid {
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      text-align: left;
    }

    .work {
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .work .thumb img,
    .work .more span {
      transition: transform .32s ease;
    }

    .work:hover .thumb img,
    .work:focus-visible .thumb img {
      transform: scale(1.035);
    }

    .work:hover .more span,
    .work:focus-visible .more span {
      transform: translateX(6px);
    }

    .thumb {
      aspect-ratio: 1 / .98;
      overflow: hidden;
      background: #e8e4dd;
    }

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

    .work h3 {
      margin: 13px 0 2px;
      font-size: calc(var(--fs-sm) * 1.2);
      font-weight: 700;
      line-height: 1.5;
    }

    .work-type {
      margin: 0 0 13px;
      font-size: var(--fs-xs);
      font-weight: 500;
    }

    .work-meta {
      margin: 0 0 10px;
      font-size: var(--fs-xs);
      font-weight: 600;
      color: rgba(76, 73, 72, .78);
    }

    .work-meta div {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .work-meta dt {
      margin: 0;
      color: var(--blue);
      font-size: calc(var(--fs-xs) * .86);
      font-weight: 700;
      letter-spacing: .08em;
    }

    .work-meta dd {
      margin: 0;
    }

    .work-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 0 0 13px;
    }

    .work-categories span {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 3px 9px;
      border: 1px solid rgba(222, 0, 57, .24);
      border-radius: 999px;
      background: rgba(255, 255, 255, .68);
      color: var(--charcoal);
      font-size: calc(var(--fs-xs) * .86);
      font-weight: 600;
      line-height: 1.35;
    }

    .works-button {
      width: 350px;
      max-width: 100%;
      height: 48px;
      margin: 34px auto 0;
      display: grid;
      place-items: center;
      border: 1px solid rgba(222, 0, 57, .55);
      background: rgba(255, 255, 255, .38);
      font-size: var(--fs-sm);
      font-weight: 700;
    }

    .news {
      padding: 34px 0 78px;
      text-align: center;
    }

    .news .title {
      font-size: var(--fs-title-sm);
    }

    .news-list {
      max-width: 920px;
      margin: 34px auto 0;
      border-top: 1px solid var(--line);
      text-align: left;
    }

    .news-item {
      display: grid;
      grid-template-columns: 128px 112px 1fr;
      align-items: center;
      gap: 20px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      color: inherit;
      text-decoration: none;
      transition: color .25s ease, transform .25s ease;
    }

    .news-item:hover,
    .news-item:focus-visible {
      color: var(--blue);
      transform: translateX(6px);
    }

    .news-item time {
      color: rgba(76, 73, 72, .68);
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: .08em;
    }

    .news-category {
      width: fit-content;
      min-width: 86px;
      padding: 4px 10px;
      border: 1px solid rgba(222, 0, 57, .26);
      border-radius: 999px;
      color: var(--red);
      font-size: calc(var(--fs-xs) * .9);
      font-weight: 700;
      text-align: center;
    }

    .news-item p {
      margin: 0;
      font-size: var(--fs-sm);
      font-weight: 600;
      line-height: 1.85;
    }

    .sub-hero {
      position: relative;
      margin-top: 66px;
      min-height: 660px;
      overflow: hidden;
    }

    .sub-hero-inner {
      width: var(--w);
      min-height: 660px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 45% 55%;
      align-items: center;
      gap: 48px;
    }

    .sub-hero-copy {
      padding: 56px 0 96px min(5vw, 64px);
    }

    .sub-hero h1 {
      font-size: clamp(54px, 5vw, 82px);
      letter-spacing: .08em;
    }

    .sub-catch {
      margin: 24px 0 0;
      font-size: clamp(24px, 2vw, 34px);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      line-height: 1.75;
    }

    .sub-lead {
      max-width: 520px;
      margin: 22px 0 24px;
      font-size: var(--fs-lg);
      font-weight: 500;
      line-height: 2.05;
    }

    .sub-hero-visual {
      min-height: 500px;
      background:
        linear-gradient(180deg, rgba(39, 120, 189, .12), rgba(76, 73, 72, .08)),
        url("assets/hero-photo.png") center / cover no-repeat;
      clip-path: ellipse(78% 58% at 57% 45%);
      box-shadow: 0 22px 48px rgba(76, 73, 72, .12);
    }

    .sub-wave {
      bottom: -18px;
    }

    .sub-message,
    .sub-problems,
    .sub-can,
    .sub-reasons,
    .sub-purpose,
    .sub-flow,
    .sub-price,
    .sub-faq {
      padding: 72px 0;
      text-align: center;
    }

    .sub-problem-grid,
    .sub-card-grid,
    .purpose-grid,
    .price-grid {
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      text-align: left;
    }

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

    .purpose-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .sub-problem-grid article,
    .sub-card-grid article,
    .purpose-grid article,
    .price-grid article {
      padding: 28px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .62);
      box-shadow: var(--shadow);
    }

    .sub-problem-grid span {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--red);
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .sub-problem-grid h3,
    .sub-card-grid h3,
    .purpose-grid h3,
    .price-grid h3,
    .reason-list h3,
    .flow-list h3 {
      margin: 0 0 10px;
      font-size: var(--fs-lg);
      line-height: 1.65;
    }

    .sub-problem-grid p,
    .sub-card-grid p,
    .purpose-grid p,
    .price-grid p,
    .reason-list p,
    .flow-list p,
    .faq-list p {
      margin: 0;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 1.95;
    }

    .reason-list {
      margin-top: 38px;
      display: grid;
      gap: 16px;
      text-align: left;
    }

    .reason-list article {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 18px 28px;
      align-items: start;
      padding: 30px 34px;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, .38);
    }

    .reason-list b {
      grid-row: span 2;
      color: var(--blue);
      font-size: clamp(34px, 3vw, 48px);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-weight: 400;
      line-height: 1;
    }

    .service-detail-page .works {
      padding-top: 72px;
    }

    .service-detail-page .works-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .flow-list {
      margin: 38px auto 0;
      padding: 0;
      max-width: 960px;
      display: grid;
      gap: 12px;
      list-style: none;
      text-align: left;
    }

    .flow-list li {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 10px 22px;
      padding: 24px 28px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .58);
    }

    .flow-list span {
      grid-row: span 2;
      color: var(--red);
      font-size: var(--fs-title-sm);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      line-height: 1;
    }

    .price {
      margin: 0 0 8px !important;
      color: var(--red);
      font-size: clamp(26px, 2.2vw, 38px) !important;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      line-height: 1.2 !important;
    }

    .price-note {
      max-width: 820px;
      margin: 24px auto 0;
      font-size: var(--fs-sm);
      line-height: 2;
    }

    .faq-list {
      max-width: 920px;
      margin: 36px auto 0;
      text-align: left;
      border-top: 1px solid var(--line);
    }

    .faq-list details {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .36);
    }

    .faq-list summary {
      cursor: pointer;
      padding: 22px 0;
      font-size: var(--fs-lg);
      font-weight: 700;
      list-style: none;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list p {
      padding: 0 0 24px;
    }

    .sub-cta {
      margin-top: 34px;
      padding: 72px min(6vw, 78px);
      text-align: center;
      color: #fffdf9;
      background: #222222;
    }

    .sub-cta h2 {
      max-width: 880px;
      margin: 0 auto;
      font-size: var(--fs-title-md);
      font-weight: 500;
      line-height: 1.65;
    }

    .sub-cta p {
      max-width: 760px;
      margin: 22px auto 0;
      font-size: var(--fs-md);
      line-height: 2;
      color: rgba(255, 253, 249, .82);
    }

    .sub-cta a {
      width: 260px;
      max-width: 100%;
      height: 54px;
      margin: 34px auto 0;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 253, 249, .72);
      font-size: var(--fs-sm);
      font-weight: 700;
    }

    .service-lp {
      background:
        radial-gradient(circle at 4% 13%, rgba(222, 0, 57, .035), transparent 28%),
        radial-gradient(circle at 100% 22%, rgba(39, 120, 189, .045), transparent 30%),
        linear-gradient(180deg, #fffefb 0%, #f9f5ef 48%, #fffefb 100%);
    }

    .lp-hero {
      position: relative;
      margin-top: 66px;
      min-height: 660px;
      overflow: hidden;
    }

    .lp-hero::after {
      content: attr(data-label);
      position: absolute;
      right: 7vw;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(39, 120, 189, .12);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(92px, 11vw, 168px);
      line-height: .9;
      letter-spacing: .08em;
      writing-mode: vertical-rl;
      pointer-events: none;
      z-index: 0;
    }

    .lp-hero-inner {
      position: relative;
      z-index: 1;
      width: var(--w);
      min-height: 660px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 28px;
    }

    .lp-hero-copy {
      max-width: 710px;
      margin-left: clamp(0px, 4vw, 72px);
      padding-top: 16px;
    }

    .lp-kicker {
      margin: 0 0 26px;
      color: var(--red);
      font-size: var(--fs-lg);
      font-weight: 700;
    }

    .lp-hero h1 {
      font-size: clamp(47px, 4.68vw, 77px);
      line-height: 1.45;
      letter-spacing: .06em;
    }

    .lp-title-line {
      display: block;
      opacity: 0;
      transform: translateY(18px);
      filter: blur(2px);
      animation: titleReveal 1.1s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .lp-title-line:nth-child(2) {
      animation-delay: .2s;
    }

    .lp-title-line:nth-child(3) {
      animation-delay: .4s;
    }

    .lp-title-red {
      position: relative;
      width: fit-content;
      color: var(--red);
      animation: titleReveal 1.1s cubic-bezier(.22, 1, .36, 1) .2s forwards, redPulse 3.8s ease-in-out 1.25s infinite;
    }

    .lp-title-blue {
      color: var(--blue);
    }

    .lp-lead {
      max-width: 640px;
      margin: 28px 0 0;
      font-size: var(--fs-md);
      font-weight: 600;
      line-height: 2.1;
    }

    .lp-buttons {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }

    .lp-btn {
      width: 240px;
      height: 66px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: #fff;
      border-radius: 5px;
      font-size: var(--fs-sm);
      font-weight: 700;
      box-shadow: 0 14px 30px rgba(76, 73, 72, .12);
    }

    .lp-btn-red { background: var(--red); }
    .lp-btn-blue { background: var(--blue); }

    .device-stage {
      position: relative;
      min-height: 520px;
    }

    .lp-laptop {
      position: absolute;
      right: 3%;
      top: 58px;
      width: min(620px, 88%);
      aspect-ratio: 1.52;
      padding: 16px 16px 42px;
      border: 12px solid #111;
      border-bottom-width: 34px;
      border-radius: 20px 20px 12px 12px;
      background:
        linear-gradient(115deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .35)),
        url("assets/work-06.png") center / cover no-repeat;
      box-shadow: 0 28px 45px rgba(76, 73, 72, .24);
      transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    }

    .lp-laptop::after {
      content: "";
      position: absolute;
      left: 14%;
      right: 14%;
      bottom: -58px;
      height: 26px;
      border-radius: 0 0 42px 42px;
      background: linear-gradient(90deg, #b9b9b9, #f4f4f4 42%, #969696);
      box-shadow: 0 16px 22px rgba(76, 73, 72, .16);
    }

    .device-bar {
      display: flex;
      gap: 5px;
    }

    .device-bar span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(76, 73, 72, .38);
    }

    .screen-content,
    .phone-screen {
      height: calc(100% - 14px);
      padding: 62px 34px;
      color: #4c4948;
    }

    .screen-content small,
    .phone-screen small {
      display: block;
      margin-bottom: 36px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .screen-content b,
    .phone-screen b {
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(24px, 2.2vw, 36px);
      font-weight: 400;
      line-height: 1.35;
    }

    .lp-phone {
      position: absolute;
      right: 0;
      bottom: 48px;
      width: min(190px, 28%);
      aspect-ratio: .52;
      padding: 18px 10px;
      border: 8px solid #111;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .38)),
        url("assets/work-06.png") center / cover no-repeat;
      box-shadow: 0 22px 34px rgba(76, 73, 72, .22);
    }

    .phone-top {
      width: 44px;
      height: 5px;
      margin: 0 auto 14px;
      border-radius: 999px;
      background: #111;
    }

    .phone-screen {
      padding: 34px 10px;
    }

    .phone-screen small { margin-bottom: 26px; font-size: 7px; }
    .phone-screen b { font-size: 16px; }

    .lp-wave {
      position: absolute;
      left: 50%;
      width: var(--wave-w);
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 2;
    }

    .lp-section {
      position: relative;
      padding: 76px 0;
      text-align: center;
      isolation: isolate;
    }

    .lp-section > * {
      position: relative;
      z-index: 1;
    }

    .lp-section::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      width: 108vw;
      height: 92px;
      transform: translateX(-50%);
      background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M-40 30 C190 6 340 76 566 40 C760 10 920 56 1110 32 C1260 12 1340 18 1480 46' fill='none' stroke='%23de0039' stroke-width='1.05' opacity='.34'/%3E%3Cpath d='M-40 42 C190 18 340 88 566 52 C760 22 920 68 1110 44 C1260 24 1340 30 1480 58' fill='none' stroke='%23de0039' stroke-width='1.2' opacity='.55'/%3E%3Cpath d='M-40 52 C190 27 344 96 568 62 C762 32 922 78 1112 54 C1264 34 1342 40 1480 68' fill='none' stroke='%23de0039' stroke-width='.82' opacity='.4'/%3E%3Cpath d='M-40 72 C194 40 350 104 574 76 C772 50 932 90 1120 68 C1270 52 1350 56 1480 82' fill='none' stroke='%23de0039' stroke-width='.68' opacity='.28'/%3E%3Cpath d='M-40 62 C190 28 348 90 568 60 C776 32 930 78 1120 54 C1268 36 1350 40 1480 70' fill='none' stroke='%232778bd' stroke-width='1.05' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
      pointer-events: none;
      z-index: 2;
      animation: lpSectionWaveFloat 3.2s ease-in-out infinite alternate;
    }

    @keyframes lpSectionWaveFloat {
      from {
        transform: translateX(calc(-50% - 14px)) translateY(2px) scaleY(.985);
        background-position: 0% 50%;
      }
      to {
        transform: translateX(calc(-50% + 18px)) translateY(-4px) scaleY(1.035);
        background-position: 100% 50%;
      }
    }

    .lp-icon-grid {
      margin-top: 48px;
      display: grid;
      text-align: center;
    }

    .lp-icon-grid.five { grid-template-columns: repeat(5, 1fr); }
    .lp-icon-grid.four { grid-template-columns: repeat(4, 1fr); }
    .lp-icon-grid.three {
      max-width: 1040px;
      margin-inline: auto;
      grid-template-columns: repeat(3, 1fr);
    }

    .lp-icon-grid article {
      padding: 0 28px;
      border-right: 1px solid var(--line);
    }

    .lp-icon-grid article:last-child {
      border-right: 0;
    }

    .lp-icon-grid svg,
    .lp-icon-grid .lp-material-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 22px;
      color: var(--blue);
    }

    .lp-icon-grid .lp-material-icon {
      font-size: 58px;
      font-variation-settings:
        "FILL" 0,
        "wght" 260,
        "GRAD" 0,
        "opsz" 48;
    }

    .lp-icon-grid h3 {
      margin: 0 0 14px;
      font-size: var(--fs-lg);
      line-height: 1.55;
    }

    .lp-icon-grid p {
      margin: 0;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 2;
    }

    .lp-strength {
      padding-top: 92px;
      padding-bottom: 92px;
    }

    .lp-strength::after,
    .lp-flow::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 18px;
      bottom: 18px;
      width: 100vw;
      transform: translateX(-50%);
      background: linear-gradient(180deg, rgba(39, 120, 189, .12), rgba(39, 120, 189, .055));
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 8 C14 3 26 15 40 9 C56 2 66 13 80 8 C90 5 96 6 100 9 V91 C88 96 76 84 62 91 C46 99 34 86 20 92 C10 96 4 94 0 91 Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 8 C14 3 26 15 40 9 C56 2 66 13 80 8 C90 5 96 6 100 9 V91 C88 96 76 84 62 91 C46 99 34 86 20 92 C10 96 4 94 0 91 Z'/%3E%3C/svg%3E");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      pointer-events: none;
      z-index: 0;
    }

    .lp-works-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 26px;
      text-align: left;
    }

    .lp-works-grid a {
      position: relative;
      display: block;
      padding-bottom: 22px;
      background: rgba(255, 255, 255, .72);
      box-shadow: var(--shadow);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .lp-works-grid a:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 34px rgba(76, 73, 72, .13);
    }

    .lp-works-grid img {
      width: 100%;
      aspect-ratio: 1 / .72;
      object-fit: cover;
    }

    .lp-works-grid h3 {
      margin: 18px 18px 4px;
      font-size: var(--fs-sm);
    }

    .lp-works-grid p {
      margin: 0 18px;
      font-size: var(--fs-xs);
      font-weight: 600;
    }

    .lp-works-grid span {
      position: absolute;
      right: 18px;
      bottom: 18px;
      color: var(--red);
      font-weight: 700;
    }

    .lp-outline-btn {
      width: 300px;
      height: 50px;
      margin: 38px auto 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      border: 1px solid rgba(39, 120, 189, .7);
      color: var(--blue);
      font-size: var(--fs-sm);
      font-weight: 700;
      background: rgba(255, 255, 255, .5);
    }

    .lp-flow {
      padding-top: 94px;
      padding-bottom: 92px;
    }

    .lp-flow-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 28px;
    }

    .lp-flow-grid article {
      position: relative;
      min-height: 220px;
      padding: 42px 18px 24px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .72);
      box-shadow: var(--shadow);
    }

    .lp-flow-grid article:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -25px;
      width: 20px;
      height: 10px;
      transform: translateY(-50%);
      background:
        linear-gradient(90deg, rgba(39, 120, 189, .46) 0 55%, transparent 55% 100%) left center / 8px 1px repeat-x;
    }

    .lp-flow-grid article:not(:last-child)::before {
      content: "";
      position: absolute;
      top: calc(50% - 4px);
      right: -29px;
      width: 8px;
      height: 8px;
      border-top: 1px solid rgba(39, 120, 189, .66);
      border-right: 1px solid rgba(39, 120, 189, .66);
      transform: rotate(45deg);
    }

    .lp-flow-grid b {
      position: absolute;
      left: 18px;
      top: -16px;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--blue);
      font-size: var(--fs-xs);
    }

    .lp-flow-grid svg,
    .lp-flow-grid .lp-material-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      color: var(--blue);
    }

    .lp-flow-grid .lp-material-icon {
      font-size: 50px;
      font-variation-settings:
        "FILL" 0,
        "wght" 260,
        "GRAD" 0,
        "opsz" 44;
    }

    .lp-flow-grid h3 {
      margin: 0 0 10px;
      font-size: var(--fs-sm);
    }

    .lp-flow-grid p {
      margin: 0;
      font-size: var(--fs-xs);
      font-weight: 600;
      line-height: 1.8;
    }

    .lp-cta {
      position: relative;
      margin-top: 18px;
      padding: 74px 0 78px;
      overflow: hidden;
      color: #fff;
      background: var(--red);
      clip-path: ellipse(110% 78% at 50% 78%);
    }

    .lp-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 170' preserveAspectRatio='none'%3E%3Cpath d='M-60 94 C170 30 326 136 560 92 C760 54 924 124 1130 82 C1260 54 1348 62 1500 108' fill='none' stroke='%23ffffff' stroke-width='1' opacity='.42'/%3E%3Cpath d='M-60 126 C170 78 356 128 580 112 C790 96 944 152 1150 116 C1280 94 1362 98 1500 132' fill='none' stroke='%232778bd' stroke-width='1' opacity='.4'/%3E%3C/svg%3E") bottom center / 100% 70% no-repeat;
      pointer-events: none;
    }

    .lp-cta-inner {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .lp-cta h2 {
      margin: 0;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(30px, 2.8vw, 48px);
      font-weight: 400;
      line-height: 1.6;
    }

    .lp-cta p {
      margin: 16px 0 0;
      font-size: var(--fs-md);
      font-weight: 600;
    }

    .lp-cta-buttons {
      display: flex;
      gap: 22px;
      justify-content: center;
    }

    .lp-cta-buttons a {
      width: 260px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      border: 1px solid rgba(255, 255, 255, .9);
      border-radius: 5px;
      color: var(--red);
      background: #fff;
      font-size: var(--fs-sm);
      font-weight: 700;
    }

    .lp-cta-buttons a:last-child {
      color: #fff;
      background: transparent;
    }

    .about-page {
      background:
        radial-gradient(circle at 2% 12%, rgba(222, 0, 57, .035), transparent 28%),
        radial-gradient(circle at 96% 26%, rgba(39, 120, 189, .05), transparent 32%),
        linear-gradient(180deg, #fffefb 0%, #f8f5ef 48%, #fffefb 100%);
    }

    .about-hero {
      position: relative;
      margin-top: 66px;
      min-height: 640px;
      display: grid;
      align-items: center;
      overflow: hidden;
    }

    .about-hero::before {
      content: none;
    }

    .about-hero-wave {
      position: relative;
      left: 50%;
      z-index: 1;
      display: block;
      width: var(--wave-w);
      height: 160px;
      margin-top: 24px;
      margin-bottom: -76px;
      transform: translateX(-50%);
      pointer-events: none;
      mix-blend-mode: multiply;
    }

    .about-hero-wave path {
      transform-box: fill-box;
      transform-origin: center;
    }

    .about-hero-wave .wave-a { animation-duration: 2.2s !important; }
    .about-hero-wave .wave-b { animation-duration: 2.85s !important; }
    .about-hero-wave .wave-c { animation-duration: 2.05s !important; }
    .about-hero-wave .wave-d { animation-duration: 3.25s !important; }
    .about-hero-wave .wave-e { animation-duration: 2.55s !important; }
    .about-hero-wave .wave-g { animation-duration: 3.05s !important; }

    .about-hero::after {
      content: "ABOUT";
      position: absolute;
      right: 8vw;
      top: 48%;
      transform: translateY(-50%);
      color: rgba(39, 120, 189, .105);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(92px, 12vw, 180px);
      letter-spacing: .12em;
      writing-mode: vertical-rl;
      line-height: .85;
      pointer-events: none;
    }

    @keyframes aboutWave {
      from { transform: translateX(-50%) translateY(0); }
      to { transform: translateX(calc(-50% - 18px)) translateY(8px); }
    }

    .about-hero-inner {
      position: relative;
      z-index: 1;
      width: var(--w);
      max-width: 1120px;
      margin: 0 auto;
      padding: 42px 0 42px;
    }

    .about-hero h1 {
      margin: 18px 0 0;
      color: var(--charcoal);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(48px, 5.6vw, 92px);
      font-weight: 500;
      line-height: 1.45;
      letter-spacing: .08em;
    }

    .about-hero h1 span {
      display: block;
      opacity: 0;
      transform: translateY(20px);
      filter: blur(2px);
      animation: titleReveal 1.15s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .about-hero h1 span:nth-child(2) {
      animation-delay: .22s;
    }

    .about-hero h1 em {
      color: var(--red);
      font-style: normal;
    }

    .about-hero p:last-child {
      max-width: 760px;
      margin: 30px 0 0;
      font-size: var(--fs-lg);
      font-weight: 600;
      line-height: 2.1;
    }

    .about-message,
    .about-profile,
    .about-services,
    .about-career,
    .about-approach {
      position: relative;
      padding: 74px 0;
      text-align: center;
    }

    .about-message {
      padding-top: 34px;
    }

    .about-message .title,
    .about-profile .title,
    .about-services .title,
    .about-career .title,
    .about-approach .title {
      margin-top: 14px;
    }

    .about-message .text {
      max-width: 880px;
      margin: 28px auto 0;
      font-size: clamp(17px, 1.18vw, 21px);
      font-weight: 500;
      line-height: 2.15;
    }

    .profile-list {
      max-width: 920px;
      margin: 42px auto 0;
      border-top: 1px solid rgba(76, 73, 72, .18);
      text-align: left;
      background: rgba(255, 255, 255, .42);
      box-shadow: 0 18px 42px rgba(76, 73, 72, .045);
    }

    .profile-list div {
      display: grid;
      grid-template-columns: 190px 1fr;
      gap: 28px;
      padding: 22px 30px;
      border-bottom: 1px solid rgba(76, 73, 72, .14);
    }

    .profile-list dt {
      color: var(--blue);
      font-size: var(--fs-sm);
      font-weight: 700;
      letter-spacing: .08em;
    }

    .profile-list dd {
      margin: 0;
      font-size: var(--fs-md);
      font-weight: 600;
      line-height: 1.9;
    }

    .about-service-grid,
    .approach-grid {
      display: grid;
      gap: 18px;
      margin-top: 42px;
    }

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

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

    .about-service-grid article,
    .approach-grid article {
      min-height: 230px;
      padding: 34px 28px;
      border: 1px solid rgba(76, 73, 72, .13);
      background: rgba(255, 255, 255, .62);
      box-shadow: 0 14px 34px rgba(76, 73, 72, .045);
      text-align: left;
      transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    }

    .about-service-grid article:hover,
    .approach-grid article:hover {
      transform: translateY(-7px);
      border-color: rgba(39, 120, 189, .24);
      box-shadow: 0 22px 46px rgba(76, 73, 72, .075);
    }

    .about-service-grid h3,
    .approach-grid h3 {
      margin: 0;
      font-size: clamp(18px, 1.25vw, 22px);
      line-height: 1.55;
    }

    .about-service-grid p,
    .approach-grid p {
      margin: 16px 0 0;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 2;
    }

    .approach-grid span {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 50%;
      color: #fff;
      background: var(--blue);
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: .08em;
    }

    .career-panel {
      position: relative;
      max-width: 960px;
      margin: 42px auto 0;
      padding: 46px 54px;
      border: 1px solid rgba(39, 120, 189, .18);
      background:
        linear-gradient(135deg, rgba(39, 120, 189, .08), rgba(255, 255, 255, .7)),
        rgba(255, 255, 255, .58);
      text-align: left;
      box-shadow: 0 18px 42px rgba(76, 73, 72, .05);
    }

    .career-panel::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--red), var(--blue));
    }

    .career-panel p {
      margin: 0;
      font-size: var(--fs-md);
      font-weight: 500;
      line-height: 2.08;
    }

    .career-panel p + p {
      margin-top: 20px;
    }

    .about-cta {
      position: relative;
      width: 70%;
      margin-top: 64px;
      margin-bottom: 86px;
      padding: 0;
      color: var(--charcoal);
      background:
        linear-gradient(90deg, rgba(222, 0, 57, .045), transparent 22%),
        linear-gradient(120deg, rgba(255, 253, 249, .95) 0%, rgba(248, 245, 239, .96) 52%, rgba(239, 247, 252, .98) 100%);
      text-align: left;
      overflow: hidden;
      border: 1px solid rgba(76, 73, 72, .11);
      border-left: 0;
      border-radius: 4px;
      box-shadow: 0 22px 48px rgba(76, 73, 72, .075);
    }

    .about-cta::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
      width: 4px;
      height: 100%;
      background:
        linear-gradient(180deg, var(--red) 0%, #f5a7b9 24%, var(--red) 52%, #f7c7d1 76%, var(--red) 100%);
      background-size: 100% 240%;
      animation: ctaRedFlow 5.8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes ctaRedFlow {
      from { background-position: 0 0; }
      to { background-position: 0 100%; }
    }

    .about-cta::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      width: 4px;
      height: 100%;
      background:
        linear-gradient(180deg, var(--red) 0%, #f5a7b9 24%, var(--red) 52%, #f7c7d1 76%, var(--red) 100%);
      background-size: 100% 240%;
      animation: ctaRedFlow 5.8s ease-in-out infinite reverse;
      pointer-events: none;
    }

    .about-cta-inner::after {
      content: none;
    }

    .about-cta .eyebrow {
      color: var(--red);
      margin: 0;
    }

    .about-cta-inner,
    .about-cta a {
      position: relative;
      z-index: 3;
    }

    .about-cta-inner {
      min-height: 240px;
      padding: 54px min(5.2vw, 64px) 50px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 34px;
      align-items: center;
    }

    .about-cta-copy {
      max-width: 780px;
    }

    .about-cta h2 {
      margin: 12px 0 0;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(30px, 2.25vw, 42px);
      font-weight: 500;
      line-height: 1.52;
      letter-spacing: .05em;
    }

    .about-cta p {
      margin: 18px 0 0;
      max-width: 720px;
      color: rgba(76, 73, 72, .82);
      font-size: var(--fs-md);
      font-weight: 600;
      line-height: 2;
    }

    .about-cta-action {
      position: relative;
      z-index: 1;
      padding: 0;
      border-left: 0;
    }

    .about-cta-action::before {
      content: none;
    }

    .about-cta-action span {
      display: block;
      color: rgba(76, 73, 72, .68);
      font-size: var(--fs-sm);
      font-weight: 600;
      line-height: 1.9;
    }

    .about-cta a {
      width: 100%;
      max-width: 100%;
      height: 60px;
      margin: 18px 0 0;
      display: grid;
      place-items: center;
      border: 0;
      color: #fffdf9;
      background: linear-gradient(135deg, var(--red), #b9002f);
      font-size: var(--fs-sm);
      font-weight: 700;
      box-shadow: 0 16px 32px rgba(222, 0, 57, .18);
      transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
    }

    .about-cta a:hover {
      color: #fffdf9;
      background: linear-gradient(135deg, var(--blue), #1e5f96);
      transform: translateY(-3px);
      box-shadow: 0 22px 40px rgba(39, 120, 189, .2);
    }

    .footer {
      position: relative;
      margin-top: 18px;
      padding: 112px 0 34px;
      color: #fffdf9;
      background: #222222;
      overflow: hidden;
      clip-path: none;
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 12 C14 5 22 20 36 12 C50 4 60 18 74 10 C86 4 92 10 100 14 V100 H0 Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 12 C14 5 22 20 36 12 C50 4 60 18 74 10 C86 4 92 10 100 14 V100 H0 Z'/%3E%3C/svg%3E");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
    }

    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(315deg, rgba(39, 120, 189, .08), transparent 42%);
      pointer-events: none;
    }

    .footer-wave {
      position: absolute;
      left: 50%;
      top: 0;
      width: var(--wave-w);
      height: 120px;
      transform: translateX(-50%);
      opacity: .52;
      pointer-events: none;
      animation: footerWaveFloat 2s ease-in-out infinite alternate;
    }

    @keyframes footerWaveFloat {
      from { transform: translateX(-50%) translateY(0); }
      to { transform: translateX(calc(-50% - 16px)) translateY(5px); }
    }

    .footer-inner {
      position: relative;
      width: var(--w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: end;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      margin-bottom: 28px;
      width: 246px;
    }

    .footer-brand img {
      width: 246px;
      height: auto;
      filter: brightness(0) invert(1);
    }

    .footer-copy {
      margin: 0;
      max-width: 520px;
      font-size: var(--fs-sm);
      font-weight: 500;
      line-height: 2.05;
      color: rgba(255, 253, 249, .82);
    }

    .footer-nav {
      display: grid;
      grid-template-columns: repeat(2, auto);
      gap: 12px 38px;
      justify-content: end;
      font-size: var(--fs-sm);
      font-weight: 600;
      color: rgba(255, 253, 249, .82);
    }

    .footer-bottom {
      position: relative;
      width: var(--w);
      margin: 44px auto 0;
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      border-top: 1px solid rgba(255, 253, 249, .16);
      font-size: var(--fs-xs);
      color: rgba(255, 253, 249, .62);
    }

    @media (max-width: 900px) {
      :root {
        --w: calc(100% - 32px);
        --fs-hero: clamp(42px, 11vw, 66px);
      }

      .header { height: auto; padding: 14px 0; }
      .header-inner {
        width: var(--w);
        grid-template-columns: 1fr auto;
      }
      .nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 24px;
        padding-bottom: 2px;
      }
      .contact { width: 150px; }
      .hero { height: auto; margin-top: 0; padding-top: 116px; }
      .hero-grid { grid-template-columns: 1fr; }
      .sub-hero { margin-top: 0; padding-top: 116px; }
      .sub-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .sub-hero-copy {
        padding: 44px 32px 24px 56px;
      }
      .sub-hero-visual {
        min-height: 380px;
      }
      .lp-hero {
        margin-top: 0;
        padding-top: 116px;
        min-height: auto;
      }
      .lp-hero::after {
        right: 2vw;
        font-size: clamp(72px, 15vw, 124px);
      }

      .about-hero {
        margin-top: 0;
        padding-top: 116px;
        min-height: 600px;
      }

      .about-hero-wave {
        height: 145px;
        margin-top: 20px;
        margin-bottom: -70px;
      }

      .about-hero::after {
        right: 2vw;
        font-size: clamp(70px, 18vw, 132px);
      }

      .about-hero-inner {
        padding: 48px 0 58px;
      }

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

      .profile-list div {
        grid-template-columns: 150px 1fr;
        padding: 20px 22px;
      }

      .career-panel {
        padding: 38px 34px;
      }

      .about-cta-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 72px 42px 58px;
      }

      .about-cta {
        width: var(--w);
      }

      .about-cta-action {
        max-width: 360px;
        padding-left: 0;
      }
      .lp-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 120px;
      }
      .lp-hero-copy {
        margin-left: 0;
      }
      .device-stage {
        min-height: 460px;
      }
      .lp-icon-grid.five,
      .lp-icon-grid.four,
      .lp-icon-grid.three,
      .lp-works-grid,
      .lp-flow-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .lp-flow-grid article:not(:last-child)::before,
      .lp-flow-grid article:not(:last-child)::after {
        display: none;
      }
      .lp-icon-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 28px 18px;
      }
      .lp-cta-inner {
        grid-template-columns: 1fr;
      }
      .lp-cta-buttons {
        flex-wrap: wrap;
      }
      .hero-copy {
        min-height: 470px;
        padding: 88px 32px 64px 86px;
      }
      .vertical { left: 28px; top: 90px; }
      .hero-photo { min-height: 420px; height: 420px; }
      .wave-main { bottom: 310px; }
      .labels,
      .problem-grid {
        grid-template-columns: 1fr;
      }
      .labels span:nth-child(2),
      .arrows { display: none; }
      .strength-grid,
      .service-grid,
      .works-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-inner {
        grid-template-columns: 1fr;
      }
      .footer-nav {
        justify-content: start;
      }
      .sub-problem-grid,
      .sub-card-grid,
      .purpose-grid,
      .price-grid,
      .service-detail-page .works-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .news-item {
        grid-template-columns: 112px 96px 1fr;
        gap: 14px;
      }
      .strength-grid {
        border-left: 0;
        gap: 34px 0;
      }
      .strength-item {
        border-right: 0;
        padding-inline: 22px;
      }
    }

    @media (max-width: 560px) {
      :root {
        --w: calc(100% - 28px);
        --fs-xs: 11px;
        --fs-sm: 12px;
        --fs-md: 14px;
        --fs-lg: 15px;
        --fs-title-sm: clamp(22px, 7vw, 28px);
        --fs-title-md: clamp(26px, 8vw, 34px);
        --fs-hero: clamp(38px, 12vw, 52px);
      }

      .header-inner { grid-template-columns: 1fr; gap: 18px; }
      .contact { width: 100%; }
      .hero-copy {
        min-height: 440px;
        padding: 72px 22px 58px 58px;
      }
      .hero-photo { min-height: 330px; height: 330px; }
      .sub-hero {
        padding-top: 104px;
      }
      .sub-hero-copy {
        padding: 28px 18px 12px;
      }
      .sub-hero-visual {
        min-height: 300px;
        clip-path: ellipse(86% 58% at 56% 45%);
      }
      .lp-hero {
        padding-top: 104px;
      }
      .lp-hero::after {
        display: none;
      }
      .lp-hero h1 {
        font-size: clamp(36px, 10.8vw, 52px);
      }
      .lp-buttons,
      .lp-cta-buttons {
        display: grid;
      }
      .lp-btn,
      .lp-cta-buttons a {
        width: 100%;
      }
      .device-stage {
        min-height: 330px;
      }
      .lp-laptop {
        width: 92%;
        right: 7%;
        top: 18px;
      }
      .lp-phone {
        width: 32%;
        bottom: 32px;
      }
      .lp-icon-grid.five,
      .lp-icon-grid.four,
      .lp-icon-grid.three,
      .lp-works-grid,
      .lp-flow-grid {
        grid-template-columns: 1fr;
      }
      .lp-section {
        padding: 58px 0;
      }
      .lp-cta {
        clip-path: ellipse(140% 82% at 50% 80%);
      }
      .container { width: var(--w); }
      .philosophy { padding-top: 78px; }
      .problem-card,
      .service-card {
        padding: 20px;
      }
      .service-grid,
      .strength-grid,
      .works-grid {
        grid-template-columns: 1fr;
      }
      .sub-problem-grid,
      .sub-card-grid,
      .purpose-grid,
      .price-grid,
      .service-detail-page .works-grid {
        grid-template-columns: 1fr;
      }
      .reason-list article,
      .flow-list li {
        grid-template-columns: 1fr;
      }
      .reason-list b,
      .flow-list span {
        grid-row: auto;
      }
      .sub-message,
      .sub-problems,
      .sub-can,
      .sub-reasons,
      .sub-purpose,
      .sub-flow,
      .sub-price,
      .sub-faq {
        padding: 54px 0;
      }
      .sub-cta {
        padding: 58px 22px;
      }
      .works-grid { gap: 28px; }
      .footer {
        padding-top: 62px;
      }
      .footer-nav {
        grid-template-columns: 1fr;
      }
      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
      }
      .footer-bottom {
        flex-direction: column;
      }

      .about-hero {
        min-height: 560px;
      }

      .about-hero-wave {
        height: 118px;
        margin-top: 18px;
        margin-bottom: -54px;
      }

      .about-hero::after {
        opacity: .72;
      }

      .about-hero h1 {
        font-size: clamp(40px, 13vw, 62px);
      }

      .about-hero p:last-child {
        font-size: var(--fs-md);
      }

      .about-message,
      .about-profile,
      .about-services,
      .about-career,
      .about-approach {
        padding: 58px 0;
      }

      .about-message {
        padding-top: 30px;
      }

      .profile-list div,
      .about-service-grid,
      .approach-grid {
        grid-template-columns: 1fr;
      }

      .profile-list dt {
        margin-bottom: 4px;
      }

      .career-panel,
      .about-cta {
        padding: 0;
      }

      .about-cta-inner {
        min-height: auto;
        padding: 62px 22px 42px;
      }

      .about-cta h2 {
        font-size: clamp(29px, 8.6vw, 40px);
      }

      .about-cta p {
        font-size: var(--fs-md);
      }

      .about-cta-action {
        max-width: none;
      }
    }

    /* 2026-06 expressive refinement: rhythm without decorative noise */
    .hero-title {
      font-size: clamp(46px, 5.25vw, 76px);
      line-height: 1.34;
    }

    .hero-lead {
      max-width: 390px;
      font-size: clamp(15px, 1.08vw, 18px);
      line-height: 2.05;
    }

    .title {
      font-size: clamp(27px, 2.2vw, 38px);
    }

    .philosophy,
    .problems,
    .strength,
    .service,
    .works,
    .news,
    .lp-section,
    .about-section {
      position: relative;
      isolation: isolate;
    }

    .philosophy::before,
    .problems::before,
    .strength::before,
    .service::before,
    .works::before,
    .news::before {
      position: absolute;
      z-index: -1;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(86px, 12vw, 180px);
      line-height: 1;
      color: rgba(39, 120, 189, .035);
      pointer-events: none;
      user-select: none;
    }

    .philosophy::before { content: "01"; right: 2%; top: 8%; }
    .problems::before { content: "02"; left: -1%; top: 22%; color: rgba(222, 0, 57, .035); }
    .strength::before { content: "03"; right: 1%; top: 12%; }
    .service::before { content: "04"; left: -1%; top: 12%; color: rgba(222, 0, 57, .04); }
    .works::before { content: "05"; right: 1%; top: 10%; }
    .news::before { content: "06"; left: 0; top: 8%; color: rgba(222, 0, 57, .035); }

    .problem-grid {
      gap: clamp(24px, 4vw, 62px);
    }

    .problem-card {
      min-height: 86px;
      border-left: 3px solid transparent;
      box-shadow: 0 14px 34px rgba(76, 73, 72, .055);
    }

    .stack:first-child .problem-card {
      border-left-color: rgba(222, 0, 57, .72);
    }

    .stack:last-child .problem-card {
      border-left-color: rgba(39, 120, 189, .72);
    }

    .stack .problem-card:nth-child(even) {
      width: calc(100% - 18px);
    }

    .stack:first-child .problem-card:nth-child(even) {
      margin-left: 18px;
    }

    .stack:last-child .problem-card:nth-child(odd) {
      width: calc(100% - 18px);
      margin-left: 18px;
    }

    .arrows .arrow {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border: 1px solid rgba(76, 73, 72, .16);
      border-radius: 50%;
      background: #fffefa;
      color: var(--charcoal);
      box-shadow: 0 8px 20px rgba(76, 73, 72, .06);
    }

    .strength-grid {
      counter-reset: strength-number;
      gap: 0;
    }

    .strength-item {
      counter-increment: strength-number;
      position: relative;
      min-height: 270px;
      padding: 38px 30px 30px;
      overflow: hidden;
    }

    .strength-item::before {
      content: "0" counter(strength-number);
      position: absolute;
      right: 18px;
      bottom: -8px;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: 76px;
      line-height: 1;
      color: rgba(39, 120, 189, .055);
    }

    .strength-item:nth-child(odd)::before {
      color: rgba(222, 0, 57, .05);
    }

    .strength-item:nth-child(2) .strength-icon,
    .strength-item:nth-child(4) .strength-icon {
      color: var(--blue);
    }

    .strength-item:nth-child(1) .strength-icon,
    .strength-item:nth-child(3) .strength-icon {
      color: var(--red);
    }

    .strength-item h3 {
      font-size: var(--fs-lg);
    }

    .service-grid {
      counter-reset: service-number;
    }

    .service-card {
      counter-increment: service-number;
      border-top: 1px solid rgba(76, 73, 72, .11);
      overflow: hidden;
    }

    .service-card::after {
      content: "0" counter(service-number);
      position: absolute;
      right: 12px;
      bottom: -16px;
      width: auto;
      height: auto;
      background: none;
      color: rgba(39, 120, 189, .075);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: 72px;
      line-height: 1;
      transform: none;
      opacity: 1;
    }

    .service-card:nth-child(odd)::after {
      color: rgba(222, 0, 57, .065);
    }

    .service-card:hover::after,
    .service-card:focus-visible::after {
      transform: translateY(-7px) rotate(-3deg);
    }

    .works-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: start;
    }

    .work:first-child {
      grid-column: span 2;
    }

    .work:first-child .thumb {
      aspect-ratio: 16 / 8.7;
    }

    .work {
      position: relative;
    }

    .work::before {
      content: "";
      position: absolute;
      left: 0;
      top: -8px;
      width: 42px;
      height: 2px;
      background: var(--red);
      transition: width .45s ease;
    }

    .work:nth-child(even)::before {
      background: var(--blue);
    }

    .work:hover::before,
    .work:focus-visible::before {
      width: 96px;
    }

    .work h3 {
      font-size: clamp(17px, 1.2vw, 20px);
    }

    .news-list {
      counter-reset: news-number;
    }

    .news-item {
      counter-increment: news-number;
      position: relative;
      padding-left: 66px;
    }

    .news-item::before {
      content: "0" counter(news-number);
      position: absolute;
      left: 6px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(222, 0, 57, .42);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: 28px;
    }

    .lp-section:nth-of-type(even) .eyebrow,
    .lp-section:nth-of-type(even) .lp-material-icon {
      color: var(--blue);
    }

    .lp-icon-grid.five article,
    .lp-icon-grid.three article,
    .lp-flow-grid article {
      transition: transform .55s cubic-bezier(.2, .8, .2, 1), box-shadow .55s ease, border-color .55s ease;
    }

    .lp-icon-grid.five article:hover,
    .lp-icon-grid.three article:hover,
    .lp-flow-grid article:hover {
      transform: translateY(-8px);
      border-color: rgba(39, 120, 189, .25);
      box-shadow: 0 24px 50px rgba(76, 73, 72, .09);
    }

    .lp-icon-grid.five article:nth-child(odd):hover,
    .lp-icon-grid.three article:nth-child(odd):hover,
    .lp-flow-grid article:nth-child(odd):hover {
      border-color: rgba(222, 0, 57, .22);
    }

    .lp-flow-grid article b {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 50%;
      background: var(--charcoal);
      color: #fff;
      font-size: 13px;
    }

    .lp-flow-grid article:nth-child(even) b {
      background: var(--blue);
    }

    .lp-flow-grid article:nth-child(odd) b {
      background: var(--red);
    }

    @media (max-width: 900px) {
      .hero-title {
        font-size: clamp(43px, 8vw, 64px);
      }

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

      .work:first-child {
        grid-column: span 2;
      }

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

    @media (max-width: 560px) {
      .hero-title {
        font-size: clamp(39px, 13vw, 54px);
      }

      .hero-lead {
        font-size: 15px;
        line-height: 1.9;
      }

      .title {
        font-size: 27px;
      }

      .stack .problem-card:nth-child(n),
      .stack:first-child .problem-card:nth-child(even),
      .stack:last-child .problem-card:nth-child(odd) {
        width: 100%;
        margin-left: 0;
      }

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

      .work:first-child {
        grid-column: auto;
      }

      .work:first-child .thumb {
        aspect-ratio: 1 / 1;
      }

      .news-item {
        padding-left: 48px;
      }

      .philosophy::before,
      .problems::before,
      .strength::before,
      .service::before,
      .works::before,
      .news::before {
        font-size: 88px;
      }
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 999;
      pointer-events: none;
      opacity: .11;
      mix-blend-mode: multiply;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(76, 73, 72, .12) 0 1px, transparent 1.4px),
        radial-gradient(circle at 74% 62%, rgba(39, 120, 189, .08) 0 1px, transparent 1.5px),
        linear-gradient(115deg, transparent 0 48%, rgba(222, 0, 57, .035) 49%, transparent 52%);
      background-size: 28px 28px, 34px 34px, 190px 190px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: linear-gradient(90deg, var(--red), var(--blue));
      opacity: .65;
      transform: translateY(1px);
    }

    .title {
      text-wrap: balance;
    }

    .text,
    .service-lead,
    .about-message .text,
    .career-panel p,
    .about-service-grid p,
    .approach-grid p {
      hanging-punctuation: allow-end;
    }

    .profile-list div:nth-child(odd) {
      background: rgba(255, 253, 249, .58);
    }

    .profile-list div:nth-child(even) {
      background: rgba(248, 245, 239, .34);
    }

    .problem-card,
    .service-card,
    .work,
    .lp-works-grid a,
    .about-service-grid article,
    .approach-grid article,
    .career-panel,
    .profile-list {
      border-radius: 2px;
    }

    .service-card,
    .problem-card,
    .about-service-grid article,
    .approach-grid article {
      background-image: linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(248, 245, 239, .18));
    }

    /* Refined playfulness shared across every page */
    :where(a, button):focus-visible {
      outline: 2px solid rgba(39, 120, 189, .7);
      outline-offset: 4px;
    }

    .brand img {
      transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
    }

    .brand:hover img,
    .brand:focus-visible img {
      transform: translateY(-2px) rotate(-.45deg);
      filter: saturate(1.08);
    }

    .nav a,
    .footer-nav a {
      position: relative;
    }

    .nav a::after,
    .footer-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 2px;
      background: linear-gradient(90deg, var(--red) 0 44%, transparent 44% 54%, var(--blue) 54% 100%);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    }

    .nav a:hover::after,
    .nav a:focus-visible::after,
    .footer-nav a:hover::after,
    .footer-nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .contact,
    .lp-btn,
    .about-cta a,
    .works-button,
    .lp-outline-btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .contact::before,
    .lp-btn::before,
    .about-cta a::before,
    .works-button::before,
    .lp-outline-btn::before {
      content: "";
      position: absolute;
      inset: -30% auto -30% -45%;
      z-index: 0;
      width: 34%;
      background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
      transform: skewX(-16deg);
      transition: left .75s cubic-bezier(.22, 1, .36, 1);
      pointer-events: none;
    }

    .contact:hover::before,
    .contact:focus-visible::before,
    .lp-btn:hover::before,
    .lp-btn:focus-visible::before,
    .about-cta a:hover::before,
    .about-cta a:focus-visible::before,
    .works-button:hover::before,
    .works-button:focus-visible::before,
    .lp-outline-btn:hover::before,
    .lp-outline-btn:focus-visible::before {
      left: 115%;
    }

    .works-button,
    .lp-outline-btn {
      position: relative;
      overflow: hidden;
      transition: color .35s ease, border-color .35s ease, background-color .35s ease, transform .35s ease;
    }

    .works-button:hover,
    .works-button:focus-visible,
    .lp-outline-btn:hover,
    .lp-outline-btn:focus-visible {
      color: #fff;
      border-color: var(--blue);
      background: var(--blue);
      transform: translateY(-3px);
    }

    .problem-card,
    .service-card,
    .about-service-grid article,
    .approach-grid article,
    .lp-flow-grid article,
    .lp-works-grid a,
    .work {
      position: relative;
    }

    .problem-card::before,
    .service-card::before,
    .about-service-grid article::before,
    .approach-grid article::before,
    .lp-flow-grid article::before {
      content: "";
      position: absolute;
      left: -1px;
      top: -1px;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--blue));
      transition: width .5s cubic-bezier(.22, 1, .36, 1);
      pointer-events: none;
    }

    .problem-card:hover::before,
    .service-card:hover::before,
    .service-card:focus-visible::before,
    .about-service-grid article:hover::before,
    .approach-grid article:hover::before,
    .lp-flow-grid article:hover::before {
      width: 58px;
    }

    .problem-card {
      transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .38s ease, border-color .38s ease;
    }

    .problem-card:hover {
      transform: translateY(-3px);
      border-color: rgba(39, 120, 189, .2);
      box-shadow: 0 16px 28px rgba(76, 73, 72, .09);
    }

    .problem-card .icon,
    .strength-icon,
    .circle,
    .lp-material-icon {
      transition: transform .48s cubic-bezier(.22, 1, .36, 1), color .35s ease, border-color .35s ease;
    }

    .problem-card:hover .icon {
      transform: rotate(-7deg) scale(1.08);
    }

    .problem-grid .stack:last-child .problem-card:hover .icon {
      transform: rotate(7deg) scale(1.08);
    }

    .strength-item {
      transition: transform .42s cubic-bezier(.22, 1, .36, 1), background-color .42s ease;
    }

    .strength-item:hover {
      transform: translateY(-5px);
      background: linear-gradient(180deg, rgba(255, 255, 255, .42), transparent);
    }

    .strength-item:hover .strength-icon {
      color: var(--blue);
      transform: translateY(-3px) rotate(-4deg);
    }

    .service-card {
      overflow: hidden;
    }

    .service-card:hover .circle,
    .service-card:focus-visible .circle {
      border-color: rgba(222, 0, 57, .4);
      transform: rotate(-5deg) scale(1.04);
    }

    .service-card:nth-child(even):hover .circle,
    .service-card:nth-child(even):focus-visible .circle {
      transform: rotate(5deg) scale(1.04);
    }

    .service-card:hover .more span,
    .service-card:focus-visible .more span,
    .work:hover .more span,
    .work:focus-visible .more span {
      animation: gentleArrow 1.05s ease-in-out infinite;
    }

    @keyframes gentleArrow {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(5px); }
    }

    .thumb,
    .lp-works-grid a {
      overflow: hidden;
    }

    .thumb img,
    .lp-works-grid img {
      transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
    }

    .work:hover .thumb img,
    .work:focus-visible .thumb img,
    .lp-works-grid a:hover img,
    .lp-works-grid a:focus-visible img {
      transform: scale(1.045);
      filter: saturate(1.06) contrast(1.02);
    }

    .work h3,
    .lp-works-grid h3 {
      transition: color .35s ease;
    }

    .work:hover h3,
    .work:focus-visible h3,
    .lp-works-grid a:hover h3,
    .lp-works-grid a:focus-visible h3 {
      color: var(--blue);
    }

    .lp-icon-grid article {
      transition: transform .42s cubic-bezier(.22, 1, .36, 1), background-color .42s ease;
    }

    .lp-icon-grid article:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, .28);
    }

    .lp-icon-grid article:hover .lp-material-icon {
      color: var(--red);
      transform: rotate(-5deg) scale(1.06);
    }

    .lp-icon-grid article:nth-child(even):hover .lp-material-icon {
      color: var(--blue);
      transform: rotate(5deg) scale(1.06);
    }

    .lp-flow-grid article {
      transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease, border-color .42s ease;
    }

    .lp-flow-grid article:hover {
      transform: translateY(-6px);
      border-color: rgba(39, 120, 189, .24);
      box-shadow: 0 18px 32px rgba(76, 73, 72, .08);
    }

    .lp-flow-grid article:hover .lp-material-icon {
      transform: translateY(-2px) rotate(-4deg);
    }

    .news-item p {
      transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    }

    .news-item:hover p,
    .news-item:focus-visible p {
      transform: translateX(4px);
    }

    .about-hero h1 em,
    .lp-title-blue,
    .title-red {
      text-shadow: .035em .035em 0 rgba(39, 120, 189, .08);
    }

    .profile-list div {
      transition: padding-left .35s cubic-bezier(.22, 1, .36, 1), background-color .35s ease;
    }

    .profile-list div:hover {
      padding-left: 12px;
      background: rgba(239, 247, 252, .65);
    }

    .footer-brand img {
      transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    }

    .footer-brand:hover img,
    .footer-brand:focus-visible img {
      transform: translateY(-2px) rotate(-.45deg);
    }

    /* Stronger emotional hierarchy */
    .hero {
      background:
        linear-gradient(115deg, rgba(222, 0, 57, .025) 0 32%, transparent 52%),
        linear-gradient(180deg, rgba(239, 247, 252, .92), rgba(239, 247, 252, .5));
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      left: min(12vw, 168px);
      bottom: 76px;
      width: clamp(86px, 9vw, 132px);
      height: 5px;
      background: linear-gradient(90deg, var(--red) 0 56%, transparent 56% 64%, var(--blue) 64% 100%);
      transform: scaleX(0);
      transform-origin: left center;
      animation: heroAccentIn 1.15s cubic-bezier(.22, 1, .36, 1) .85s forwards;
    }

    @keyframes heroAccentIn {
      to { transform: scaleX(1); }
    }

    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(239, 247, 252, .16), transparent 34%),
        linear-gradient(180deg, transparent 72%, rgba(39, 120, 189, .12));
      pointer-events: none;
    }

    .service,
    .works,
    .news,
    .about-services,
    .about-approach,
    .lp-service,
    .lp-works {
      isolation: isolate;
    }

    .service::after,
    .news::after,
    .about-services::before,
    .about-approach::before,
    .lp-service::after,
    .lp-works::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      z-index: -1;
      width: 100vw;
      height: 100%;
      transform: translateX(-50%);
      pointer-events: none;
    }

    .service::after,
    .about-services::before,
    .lp-service::after {
      background:
        linear-gradient(115deg, rgba(222, 0, 57, .032), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(239, 247, 252, .62));
    }

    .news::after,
    .about-approach::before {
      background: linear-gradient(180deg, rgba(248, 245, 239, .2), rgba(248, 245, 239, .9));
    }

    .lp-works::after {
      background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(248, 245, 239, .76));
    }

    .service,
    .works,
    .news {
      padding-top: 74px;
      padding-bottom: 82px;
    }

    .service-grid {
      counter-reset: service-number;
      gap: 18px;
    }

    .service-card {
      counter-increment: service-number;
      min-height: 164px;
      padding: 28px 30px;
      background: rgba(255, 255, 255, .74);
      box-shadow: 0 12px 34px rgba(76, 73, 72, .045);
    }

    .service-card::after {
      content: "0" counter(service-number);
      position: absolute;
      right: 18px;
      bottom: -13px;
      color: rgba(39, 120, 189, .075);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: 72px;
      line-height: 1;
      pointer-events: none;
      transition: color .4s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
    }

    .service-card:hover::after,
    .service-card:focus-visible::after {
      color: rgba(222, 0, 57, .095);
      transform: translateY(-5px);
    }

    .service-card > * {
      position: relative;
      z-index: 1;
    }

    .circle {
      background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(239, 247, 252, .82));
      box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .5);
    }

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

    .work {
      padding: 0 0 20px;
      border-bottom: 1px solid rgba(76, 73, 72, .13);
    }

    .thumb {
      aspect-ratio: 16 / 10;
      box-shadow: 0 18px 34px rgba(76, 73, 72, .08);
    }

    .work h3 {
      margin-top: 18px;
      font-size: clamp(17px, 1.12vw, 20px);
    }

    .lp-hero {
      background:
        linear-gradient(112deg, rgba(222, 0, 57, .045), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(239, 247, 252, .64));
    }

    .lp-hero::before,
    .about-hero::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), rgba(222, 0, 57, .25) 38%, rgba(39, 120, 189, .25) 62%, var(--blue));
      transform: scaleX(0);
      transform-origin: left center;
      animation: heroAccentIn 1.3s cubic-bezier(.22, 1, .36, 1) .55s forwards;
      z-index: 3;
    }

    .about-hero {
      background:
        linear-gradient(112deg, rgba(222, 0, 57, .035), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(239, 247, 252, .58));
    }

    .lp-works-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 28px;
    }

    .lp-works-grid a {
      grid-column: span 2;
    }

    .lp-works-grid a:nth-child(4),
    .lp-works-grid a:nth-child(5) {
      grid-column: span 3;
    }

    .lp-works-grid img {
      aspect-ratio: 16 / 10;
    }

    .about-service-grid article,
    .approach-grid article {
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 16px 38px rgba(76, 73, 72, .06);
    }

    .about-service-grid article:nth-child(odd) {
      border-top: 3px solid rgba(222, 0, 57, .52);
    }

    .about-service-grid article:nth-child(even) {
      border-top: 3px solid rgba(39, 120, 189, .52);
    }

    .site-cta {
      position: relative;
      width: min(1120px, var(--w));
      margin-top: 82px;
      margin-bottom: 76px;
      padding: clamp(44px, 5vw, 72px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
      align-items: center;
      gap: 48px;
      overflow: hidden;
      border: 1px solid rgba(39, 120, 189, .18);
      background:
        linear-gradient(110deg, rgba(222, 0, 57, .06), transparent 36%),
        linear-gradient(135deg, rgba(255, 253, 249, .98), rgba(239, 247, 252, .96));
      box-shadow: 0 24px 56px rgba(76, 73, 72, .08);
    }

    .site-cta::before {
      content: "WANDERMUST";
      position: absolute;
      left: 5%;
      bottom: -28px;
      color: rgba(39, 120, 189, .055);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(68px, 9vw, 138px);
      letter-spacing: .04em;
      white-space: nowrap;
      pointer-events: none;
    }

    .site-cta::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, var(--red), #f4a6b8 45%, var(--blue));
    }

    .site-cta > * {
      position: relative;
      z-index: 1;
    }

    .site-cta .eyebrow {
      margin-bottom: 12px;
    }

    .site-cta h2 {
      margin: 0;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: clamp(30px, 2.6vw, 46px);
      font-weight: 500;
      line-height: 1.55;
    }

    .site-cta p:last-child {
      margin: 18px 0 0;
      font-size: var(--fs-md);
      font-weight: 600;
      line-height: 2;
    }

    .site-cta-link {
      position: relative;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(135deg, var(--red), #bd0030);
      font-size: var(--fs-sm);
      font-weight: 700;
      box-shadow: 0 18px 34px rgba(222, 0, 57, .17);
      transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
    }

    .site-cta-link:hover,
    .site-cta-link:focus-visible {
      transform: translateY(-4px);
      background: linear-gradient(135deg, var(--blue), #1f639b);
      box-shadow: 0 22px 42px rgba(39, 120, 189, .2);
    }

    .site-cta-link .material-symbols-outlined {
      font-size: 21px;
      transition: transform .35s ease;
    }

    .site-cta-link:hover .material-symbols-outlined,
    .site-cta-link:focus-visible .material-symbols-outlined {
      transform: translateX(5px);
    }

    @media (max-width: 900px) {
      body::before {
        opacity: .08;
      }

      .eyebrow {
        justify-content: center;
      }

      .strength-item:hover,
      .lp-icon-grid article:hover,
      .lp-flow-grid article:hover,
      .problem-card:hover {
        transform: none;
      }

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

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

      .lp-works-grid a,
      .lp-works-grid a:nth-child(4),
      .lp-works-grid a:nth-child(5) {
        grid-column: auto;
      }

      .site-cta {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .hero-copy::after {
        left: 58px;
        bottom: 38px;
      }

      .service,
      .works,
      .news {
        padding-top: 58px;
        padding-bottom: 64px;
      }

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

      .site-cta {
        width: calc(100% - 28px);
        margin-top: 54px;
        margin-bottom: 54px;
        padding: 38px 24px;
        gap: 30px;
      }

      .site-cta-link {
        min-height: 60px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .title-line,
      .lp-title-line,
      .title-red,
      .lp-title-red,
      .title-red::after,
      .red-wave,
      .blue-wave,
      .wave-main,
      .wave-soft,
      .footer-wave,
      .lp-section::before,
      .service-card:hover,
      .service-card:focus-within,
      .contact,
      .arrow,
      .problem-card,
      .strength-item,
      .circle,
      .lp-material-icon,
      .lp-flow-grid article,
      .thumb img,
      .lp-works-grid img,
      .more span {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
      }
    }

    /* 2026-06 refined direction: readable, playful and composed */
    :root {
      --w: min(80vw, 1280px);
      --fs-xs: clamp(12px, .78vw, 14px);
      --fs-sm: clamp(14px, .9vw, 16px);
      --fs-md: clamp(16px, 1.02vw, 18px);
      --fs-lg: clamp(18px, 1.22vw, 21px);
    }

    html,
    body {
      overflow-x: clip;
    }

    .service::after,
    .news::after,
    .about-services::before,
    .about-approach::before,
    .lp-service::after,
    .lp-works::after {
      content: none;
    }

    .hero-copy::after {
      content: none;
    }

    .hero {
      background: var(--ivory);
    }

    .hero-photo::after {
      background: linear-gradient(180deg, transparent 76%, rgba(39, 120, 189, .08));
    }

    .wave-main {
      bottom: -24px;
      height: 190px;
    }

    .hero-lead {
      position: relative;
      z-index: 7;
    }

    .mini-lines {
      overflow: visible;
    }

    .mini-lines::before {
      animation: miniLineRed 3.6s ease-in-out infinite alternate;
      transform-origin: right center;
    }

    .mini-lines::after {
      animation: miniLineBlue 4.2s ease-in-out infinite alternate-reverse;
      transform-origin: left center;
    }

    @keyframes miniLineRed {
      from { transform: scaleX(.62) translateX(-5px); }
      to { transform: scaleX(1.12) translateX(4px); }
    }

    @keyframes miniLineBlue {
      from { transform: scaleX(.72) translateX(5px); }
      to { transform: scaleX(1.08) translateX(-3px); }
    }

    .service,
    .works,
    .news {
      padding-top: 68px;
      padding-bottom: 76px;
    }

    .service-grid {
      gap: 20px;
    }

    .service-card {
      min-height: 176px;
      grid-template-columns: 78px 1fr;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 253, 249, .72));
      box-shadow: 0 16px 38px rgba(76, 73, 72, .055);
    }

    .service-card:nth-child(3n + 1) .circle {
      color: var(--red);
      border-color: rgba(222, 0, 57, .3);
      background: rgba(222, 0, 57, .035);
    }

    .service-card:nth-child(3n + 2) .circle {
      transform: translateY(-5px);
    }

    .service-card:nth-child(3n) .circle {
      color: var(--blue);
      background: rgba(39, 120, 189, .04);
    }

    .service-card h3 {
      font-size: clamp(17px, 1.2vw, 21px);
    }

    .service-card p,
    .more {
      font-size: var(--fs-sm);
    }

    .strength-item p,
    .problem-card p {
      font-size: var(--fs-sm);
    }

    .works-grid {
      gap: 42px 30px;
    }

    .work-categories span,
    .work-meta,
    .work-meta dt {
      font-size: var(--fs-xs);
    }

    .lp-hero,
    .about-hero {
      background: linear-gradient(180deg, #fffefb, #f8fbfd);
    }

    .lp-lead,
    .about-hero p:last-child {
      max-width: 720px;
      font-size: var(--fs-md);
    }

    .lp-icon-grid.five {
      counter-reset: capability-number;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 20px;
      text-align: left;
    }

    .lp-icon-grid.five article {
      counter-increment: capability-number;
      position: relative;
      grid-column: span 2;
      min-height: 260px;
      padding: 34px 30px 30px;
      border: 1px solid rgba(76, 73, 72, .11);
      background: rgba(255, 255, 255, .74);
      box-shadow: 0 16px 38px rgba(76, 73, 72, .045);
      overflow: hidden;
    }

    .lp-icon-grid.five article:nth-child(4) {
      grid-column: 2 / span 2;
    }

    .lp-icon-grid.five article:nth-child(5) {
      grid-column: 4 / span 2;
    }

    .lp-icon-grid.five article::before {
      content: "0" counter(capability-number);
      position: absolute;
      right: 16px;
      top: 5px;
      color: rgba(39, 120, 189, .07);
      font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
      font-size: 74px;
      line-height: 1;
    }

    .lp-icon-grid.five article:nth-child(odd)::after,
    .lp-icon-grid.five article:nth-child(even)::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 72px;
      height: 3px;
    }

    .lp-icon-grid.five article:nth-child(odd)::after {
      background: var(--red);
    }

    .lp-icon-grid.five article:nth-child(even)::after {
      background: var(--blue);
    }

    .lp-icon-grid.five .lp-material-icon {
      margin: 0 0 24px;
      font-size: 62px;
    }

    .lp-icon-grid.five article:nth-child(odd) .lp-material-icon {
      color: var(--red);
    }

    .lp-icon-grid.five article:nth-child(even) .lp-material-icon {
      color: var(--blue);
    }

    .lp-icon-grid h3 {
      font-size: var(--fs-lg);
    }

    .lp-icon-grid p,
    .lp-flow-grid p {
      font-size: var(--fs-sm);
    }

    .lp-icon-grid.three {
      gap: 20px;
    }

    .lp-icon-grid.three article {
      padding: 32px 28px;
      border: 1px solid rgba(76, 73, 72, .1);
      background: rgba(255, 255, 255, .58);
    }

    .lp-flow-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 20px;
    }

    .lp-flow-grid article {
      grid-column: span 2;
      min-height: 244px;
      padding: 34px 26px 28px;
    }

    .lp-flow-grid article:nth-last-child(2):nth-child(4) {
      grid-column: 2 / span 2;
    }

    .lp-flow-grid article:last-child:nth-child(5) {
      grid-column: 4 / span 2;
    }

    .lp-flow-grid article:not(:last-child)::before,
    .lp-flow-grid article:not(:last-child)::after {
      content: none;
    }

    .lp-flow-grid h3 {
      font-size: var(--fs-lg);
    }

    .about-service-grid article,
    .approach-grid article {
      min-height: 250px;
      padding: 38px 32px;
    }

    .about-service-grid h3,
    .approach-grid h3 {
      font-size: var(--fs-lg);
    }

    .about-service-grid p,
    .approach-grid p,
    .profile-list dt,
    .profile-list dd {
      font-size: var(--fs-sm);
    }

    @media (max-width: 900px) {
      :root {
        --w: calc(100% - 48px);
      }

      .lp-icon-grid.five,
      .lp-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lp-icon-grid.five article,
      .lp-icon-grid.five article:nth-child(4),
      .lp-icon-grid.five article:nth-child(5),
      .lp-flow-grid article,
      .lp-flow-grid article:nth-last-child(2):nth-child(4),
      .lp-flow-grid article:last-child:nth-child(5) {
        grid-column: auto;
      }
    }

    @media (max-width: 560px) {
      :root {
        --w: calc(100% - 28px);
        --fs-xs: 12px;
        --fs-sm: 14px;
        --fs-md: 16px;
        --fs-lg: 18px;
      }

      .lp-icon-grid.five,
      .lp-flow-grid {
        grid-template-columns: 1fr;
      }

      .lp-icon-grid.five article,
      .lp-flow-grid article {
        min-height: auto;
      }
    }

    @media (max-width: 0px) {
    /* 2026-06 editorial rebuild inspired by Japanese regional storytelling */
    :root {
      --ivory: #f8f5ef;
      --paper: #fffefa;
      --line: rgba(76, 73, 72, .18);
      --shadow: none;
    }

    html,
    body {
      background: var(--ivory);
    }

    body::before {
      content: none !important;
    }

    .page {
      background: var(--ivory);
    }

    .philosophy::before,
    .problems::before,
    .strength::before,
    .service::before,
    .works::before,
    .news::before,
    .service-card::after,
    .strength-item::before,
    .lp-icon-grid.five article::before {
      content: none !important;
    }

    .header {
      background: rgba(255, 254, 250, .96);
      border-bottom-color: rgba(76, 73, 72, .12);
      backdrop-filter: blur(10px);
    }

    .contact {
      border: 0;
      background: var(--charcoal);
      animation: contactQuiet 3.8s ease-in-out infinite;
    }

    @keyframes contactQuiet {
      0%, 100% { background: #292827; }
      50% { background: #403d3c; }
    }

    .hero {
      height: min(760px, calc(100svh - 66px));
      min-height: 650px;
      background: var(--ivory);
    }

    .hero-grid {
      width: min(94vw, 1440px);
      grid-template-columns: 43% 57%;
    }

    .hero-copy {
      z-index: 2;
      padding: clamp(104px, 12vh, 142px) 5vw 40px clamp(74px, 9vw, 132px);
      background: var(--ivory);
    }

    .hero-title {
      font-size: clamp(48px, 5vw, 76px);
      line-height: 1.32;
      letter-spacing: .12em;
    }

    .hero-lead {
      max-width: 430px;
      font-size: clamp(15px, 1.05vw, 18px);
      line-height: 2.1;
    }

    .hero-photo {
      height: calc(100% - 18px);
      background-position: center center;
      filter: saturate(.88) contrast(1.03);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H100V94C82 98 68 91 52 95C34 99 18 96 0 93Z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0H100V94C82 98 68 91 52 95C34 99 18 96 0 93Z'/%3E%3C/svg%3E");
    }

    .wave-main {
      bottom: -28px;
      height: 150px;
      opacity: .6;
      mix-blend-mode: normal;
    }

    .philosophy {
      min-height: 570px;
      padding: 132px 4vw 118px;
      display: grid;
      grid-template-columns: 170px minmax(0, 1fr);
      grid-template-rows: auto 1fr;
      align-items: center;
      column-gap: clamp(52px, 8vw, 130px);
      text-align: left;
    }

    .philosophy .eyebrow {
      grid-column: 1;
      grid-row: 1;
      align-self: end;
      margin: 0 0 20px;
    }

    .philosophy .title {
      grid-column: 1;
      grid-row: 2;
      justify-self: center;
      align-self: start;
      writing-mode: vertical-rl;
      font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
      font-size: clamp(30px, 2.7vw, 43px);
      line-height: 1.8;
      letter-spacing: .16em;
    }

    .philosophy .text {
      grid-column: 2;
      grid-row: 1 / span 2;
      max-width: 760px;
      margin: 0;
      font-size: clamp(17px, 1.2vw, 20px);
      font-weight: 500;
      line-height: 2.5;
      letter-spacing: .04em;
    }

    .problems,
    .strength,
    .service,
    .works,
    .news,
    .lp-section,
    .about-section {
      background: transparent;
    }

    .problems {
      padding-top: 118px;
      padding-bottom: 110px;
    }

    .problem-wave-lines {
      opacity: .42;
    }

    .problem-grid {
      gap: clamp(28px, 4vw, 58px);
    }

    .problem-card,
    .stack .problem-card:nth-child(n),
    .stack:first-child .problem-card:nth-child(even),
    .stack:last-child .problem-card:nth-child(odd) {
      width: 100%;
      min-height: 88px;
      margin-left: 0;
      padding: 18px 16px;
      border: 0;
      border-bottom: 1px solid var(--line);
      background: transparent;
      box-shadow: none;
    }

    .stack:first-child .problem-card {
      border-left: 0;
    }

    .stack:last-child .problem-card {
      border-left: 0;
    }

    .problem-card:hover {
      transform: translateX(6px);
      background: transparent;
    }

    .arrows .arrow {
      width: auto;
      height: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .strength {
      padding: 106px 0 118px;
    }

    .strength-grid {
      margin-top: 64px;
      gap: 0;
      border-left: 1px solid var(--line);
    }

    .strength-item {
      min-height: 250px;
      padding: 20px clamp(22px, 2.6vw, 40px) 0;
      border-right: 1px solid var(--line);
      overflow: visible;
    }

    .strength-item .strength-icon {
      color: var(--charcoal) !important;
      transition: color .35s ease, transform .35s ease;
    }

    .strength-item:hover .strength-icon {
      color: var(--red) !important;
      transform: translateY(-6px);
    }

    .service {
      padding: 112px 0 124px;
    }

    .service-lead {
      max-width: 860px;
      margin-top: 30px;
      font-size: clamp(15px, 1.05vw, 18px);
      line-height: 2.25;
    }

    .service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 54px;
      margin-top: 70px;
    }

    .service-card {
      min-height: 190px;
      grid-template-columns: 82px 1fr;
      padding: 36px 0;
      border: 0;
      border-top: 1px solid var(--line);
      background: transparent;
      box-shadow: none;
      animation: none !important;
    }

    .service-card:nth-last-child(-n + 2) {
      border-bottom: 1px solid var(--line);
    }

    .service-card:hover,
    .service-card:focus-visible {
      transform: translateX(8px);
      border-color: var(--charcoal);
      background: transparent;
      box-shadow: none;
    }

    .service-card .circle {
      width: 62px;
      height: 62px;
      border-color: rgba(76, 73, 72, .28);
      background: transparent !important;
      color: var(--charcoal) !important;
      transform: none !important;
    }

    .service-card:hover .circle {
      border-color: var(--red);
      color: var(--red) !important;
    }

    .service-card h3 {
      font-size: clamp(19px, 1.35vw, 23px);
    }

    .service-card p {
      max-width: 440px;
      font-size: clamp(14px, .92vw, 16px);
      line-height: 1.9;
    }

    .works {
      padding: 110px 0 124px;
    }

    .works-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 58px 30px;
      margin-top: 64px;
    }

    .work:first-child {
      grid-column: auto;
    }

    .work:first-child .thumb,
    .thumb {
      aspect-ratio: 1 / .9;
    }

    .work::before {
      content: none;
    }

    .work h3 {
      font-size: clamp(17px, 1.1vw, 20px);
    }

    .work:hover .thumb img,
    .work:focus-visible .thumb img {
      transform: scale(1.025);
    }

    .news {
      padding: 108px 0 120px;
    }

    .news-item {
      padding-left: 0;
      border-color: var(--line);
    }

    .news-item::before {
      content: none;
    }

    .site-cta,
    .about-cta {
      border: 1px solid var(--line);
      background: var(--paper);
      box-shadow: none;
    }

    .site-cta::before,
    .site-cta::after {
      width: 3px;
      height: 100%;
      top: 0;
      bottom: auto;
      background: linear-gradient(180deg, var(--red), rgba(222, 0, 57, .18), var(--red));
      opacity: 1;
    }

    .site-cta::before { left: 0; }
    .site-cta::after { right: 0; left: auto; }

    .lp-hero,
    .about-hero {
      background: var(--ivory);
    }

    .lp-hero::before,
    .lp-hero::after,
    .about-hero::before,
    .about-hero::after {
      opacity: .28;
    }

    .lp-icon-grid.five,
    .lp-icon-grid.four,
    .lp-icon-grid.three {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0;
      border-left: 1px solid var(--line);
      text-align: center;
    }

    .lp-icon-grid.five article,
    .lp-icon-grid.five article:nth-child(4),
    .lp-icon-grid.five article:nth-child(5),
    .lp-icon-grid.four article,
    .lp-icon-grid.three article {
      grid-column: auto;
      min-height: 300px;
      padding: 42px 28px 34px;
      border: 0;
      border-right: 1px solid var(--line);
      background: transparent;
      box-shadow: none;
      text-align: center;
    }

    .lp-icon-grid.five article::after {
      content: none !important;
    }

    .lp-icon-grid.five article:hover,
    .lp-icon-grid.three article:hover {
      transform: none;
      background: var(--paper);
      border-color: var(--line);
      box-shadow: none;
    }

    .lp-icon-grid.five .lp-material-icon {
      margin: 0 auto 28px;
      color: var(--charcoal) !important;
      font-size: 54px;
    }

    .lp-icon-grid article:hover .lp-material-icon {
      color: var(--red) !important;
      transform: translateY(-5px);
    }

    .lp-flow-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0;
      border-left: 1px solid var(--line);
    }

    .lp-flow-grid article,
    .lp-flow-grid article:nth-last-child(2):nth-child(4),
    .lp-flow-grid article:last-child:nth-child(5) {
      grid-column: auto;
      min-height: 270px;
      padding: 36px 24px 28px;
      border: 0;
      border-right: 1px solid var(--line);
      background: transparent;
      box-shadow: none;
    }

    .lp-flow-grid article:hover {
      transform: none;
      background: var(--paper);
      box-shadow: none;
    }

    .lp-flow-grid article b {
      width: auto;
      height: auto;
      margin-bottom: 22px;
      border-radius: 0;
      background: transparent !important;
      color: var(--red);
      font-size: 14px;
      letter-spacing: .12em;
    }

    .about-service-grid article,
    .approach-grid article {
      background: transparent;
      box-shadow: none;
      border-color: var(--line);
    }

    @media (max-width: 900px) {
      .hero {
        height: auto;
        min-height: 0;
      }

      .hero-grid {
        width: 100%;
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding: 100px 10vw 72px;
      }

      .hero-photo {
        height: min(66vw, 560px);
      }

      .philosophy {
        min-height: 0;
        grid-template-columns: 110px 1fr;
        column-gap: 42px;
        padding: 100px 0;
      }

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

      .lp-icon-grid.five,
      .lp-icon-grid.four,
      .lp-icon-grid.three,
      .lp-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 560px) {
      .hero-copy {
        padding: 82px 24px 58px 72px;
      }

      .hero-title {
        font-size: clamp(39px, 12vw, 52px);
      }

      .philosophy {
        display: block;
        padding: 82px 0;
      }

      .philosophy .eyebrow {
        margin-bottom: 14px;
      }

      .philosophy .title {
        writing-mode: horizontal-tb;
        margin-bottom: 28px;
        font-size: 29px;
      }

      .philosophy .text {
        font-size: 16px;
        line-height: 2.15;
      }

      .service-grid,
      .works-grid,
      .lp-icon-grid.five,
      .lp-icon-grid.four,
      .lp-icon-grid.three,
      .lp-flow-grid {
        grid-template-columns: 1fr;
      }

      .service-card:nth-last-child(-n + 2) {
        border-bottom: 0;
      }

      .service-card:last-child {
        border-bottom: 1px solid var(--line);
      }

      .lp-icon-grid.five,
      .lp-icon-grid.four,
      .lp-icon-grid.three,
      .lp-flow-grid {
        border-left: 0;
      }

      .lp-icon-grid.five article,
      .lp-icon-grid.four article,
      .lp-icon-grid.three article,
      .lp-flow-grid article {
        min-height: auto;
        border-right: 0;
        border-top: 1px solid var(--line);
      }
    }

    .lp-strength::after,
    .lp-flow::after {
      content: none !important;
    }

    .career-panel {
      border-color: var(--line);
      background: transparent;
      box-shadow: none;
    }

    .career-panel::before {
      background: var(--red);
    }

    .profile-list {
      background: transparent;
      box-shadow: none;
    }

    .about-cta {
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: none;
    }
    }

    /* 2026-06 alignment and color cleanup */
    body {
      background:
        radial-gradient(circle at 0% 15%, rgba(222, 0, 57, .025), transparent 22%),
        linear-gradient(180deg, #fffefb 0%, var(--ivory) 58%, #fffefb 100%);
    }

    body::before {
      background-image:
        radial-gradient(circle at 20% 30%, rgba(76, 73, 72, .1) 0 1px, transparent 1.4px),
        linear-gradient(115deg, transparent 0 48%, rgba(222, 0, 57, .025) 49%, transparent 52%);
    }

    .hero {
      background: var(--ivory);
    }

    .hero-photo::after {
      background: none;
    }

    .lp-hero,
    .about-hero {
      background: #fffefb;
    }

    .lp-strength::after,
    .lp-flow::after {
      content: none;
    }

    .circle {
      background: rgba(255, 255, 255, .8);
    }

    .site-cta {
      border-color: rgba(76, 73, 72, .14);
      background:
        linear-gradient(110deg, rgba(222, 0, 57, .045), transparent 36%),
        #fffdf9;
    }

    .site-cta::before {
      color: rgba(76, 73, 72, .035);
    }

    .site-cta::after {
      background: linear-gradient(180deg, var(--red), #f4a6b8 52%, var(--red));
    }

    .site-cta h2 {
      font-size: clamp(29.1px, 2.522vw, 44.62px);
    }

    .philosophy::before,
    .problems::before,
    .strength::before,
    .service::before,
    .works::before,
    .news::before,
    .strength-item::before,
    .service-card::after {
      content: none;
    }

    .stack .problem-card:nth-child(n),
    .stack:first-child .problem-card:nth-child(even),
    .stack:last-child .problem-card:nth-child(odd) {
      width: 100%;
      margin-left: 0;
    }

    .problem-card {
      border-left-width: 1px;
    }

    .strength-grid {
      align-items: stretch;
    }

    .strength-item {
      min-height: 250px;
      padding-top: 28px;
    }

    .service-card:nth-child(3n + 2) .circle {
      transform: none;
    }

    .service-grid,
    .works-grid {
      align-items: stretch;
    }

    .work:first-child {
      grid-column: auto;
    }

    .work:first-child .thumb,
    .thumb {
      aspect-ratio: 16 / 10;
    }

    .lp-icon-grid.five {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .lp-icon-grid.five article,
    .lp-icon-grid.five article:nth-child(4),
    .lp-icon-grid.five article:nth-child(5) {
      grid-column: auto;
      min-height: 280px;
    }

    .lp-flow-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }

    .lp-flow-grid article,
    .lp-flow-grid article:nth-last-child(2):nth-child(4),
    .lp-flow-grid article:last-child:nth-child(5) {
      grid-column: auto;
      min-height: 260px;
    }

    .lp-works-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 22px;
    }

    .lp-works-grid a,
    .lp-works-grid a:nth-child(4),
    .lp-works-grid a:nth-child(5) {
      grid-column: auto;
    }

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

    @media (max-width: 560px) {
      .lp-icon-grid.five,
      .lp-flow-grid,
      .lp-works-grid {
        grid-template-columns: 1fr;
      }
    }

    /* 2026-06 unified curved canvas */
    html,
    body {
      background: var(--ivory);
    }

    body::before {
      content: none;
    }

    .page {
      isolation: isolate;
      background: var(--ivory);
    }

    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 1400' preserveAspectRatio='none'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-120 205 C180 20 390 385 720 190 S1280 5 1730 235' stroke='%23DE0039' stroke-opacity='.095' stroke-width='1.2'/%3E%3Cpath d='M-110 229 C185 50 402 403 728 213 S1290 34 1720 257' stroke='%23DE0039' stroke-opacity='.06' stroke-width='.75'/%3E%3Cpath d='M-130 250 C130 402 430 55 760 245 S1305 395 1730 190' stroke='%232778BD' stroke-opacity='.09' stroke-width='1.05'/%3E%3Cpath d='M-100 650 C210 470 455 820 790 625 S1325 455 1720 684' stroke='%234C4948' stroke-opacity='.045' stroke-width='.8'/%3E%3Cpath d='M-120 680 C175 500 430 855 778 654 S1320 478 1735 714' stroke='%23DE0039' stroke-opacity='.075' stroke-width='1.1'/%3E%3Cpath d='M-110 710 C170 845 470 505 810 690 S1340 830 1720 640' stroke='%232778BD' stroke-opacity='.075' stroke-width='.85'/%3E%3Cpath d='M-130 1090 C150 920 445 1260 780 1070 S1325 900 1730 1125' stroke='%23DE0039' stroke-opacity='.065' stroke-width='.75'/%3E%3Cpath d='M-100 1122 C180 955 465 1285 802 1095 S1338 936 1720 1150' stroke='%232778BD' stroke-opacity='.085' stroke-width='1.1'/%3E%3Cpath d='M-120 1150 C165 1290 470 970 820 1140 S1370 1275 1730 1080' stroke='%234C4948' stroke-opacity='.04' stroke-width='.7'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: repeat-y;
      background-position: center 80px;
      background-size: 100% 1400px;
    }

    .page > main,
    .page > footer {
      position: relative;
      z-index: 1;
    }

    .hero,
    .lp-hero,
    .about-hero,
    .philosophy,
    .problems,
    .strength,
    .service,
    .works,
    .news,
    .lp-section,
    .about-message,
    .about-profile,
    .about-services,
    .about-career,
    .about-approach {
      background: transparent;
    }

    .profile-list div:nth-child(odd),
    .profile-list div:nth-child(even) {
      background: rgba(255, 253, 249, .72);
    }

    @media (max-width: 560px) {
      .page::before {
        background-size: 180% 1180px;
        background-position: center 40px;
      }
    }

    /* 2026-06 problem arrows and works layout */
    .arrows .arrow {
      width: auto;
      height: auto;
      min-height: 86px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .works.container {
      width: 96%;
    }

    .works-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(16px, 1.7vw, 28px);
    }

    .work:first-child {
      grid-column: auto;
    }

    .work:first-child .thumb,
    .thumb {
      aspect-ratio: 1 / .98;
    }

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

    @media (max-width: 700px) {
      .works.container {
        width: calc(100% - 32px);
      }

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

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

    /* Keep the contact message on its intended two lines */
    .site-cta h2 {
      font-size: clamp(26px, 2.35vw, 44px);
      white-space: nowrap;
    }

@media (max-width: 560px) {
  .site-cta h2 {
    font-size: clamp(23px, 6.5vw, 30px);
    letter-spacing: 0;
  }
}

/* Mobile navigation and persistent contact action */
.menu-toggle,
.mobile-contact { display: none; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  body.menu-open { overflow: hidden; }

  .header { height: 64px; }
  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 12px;
  }
  .brand,
  .brand img { width: min(164px, 48vw); }

  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--charcoal);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, background-color .2s ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); background: var(--red); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; transform: scaleX(.25); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); background: var(--blue); }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 99;
    min-height: calc(100svh - 64px);
    padding: 32px 16px 120px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    background: rgba(255, 253, 249, .98);
    border-top: 1px solid rgba(76, 73, 72, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .28s ease, transform .38s cubic-bezier(.22, 1, .36, 1), visibility .38s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav > li { width: 100%; margin: 0; list-style: none; }
  .nav a {
    min-height: 62px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(76, 73, 72, .14);
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 700;
  }
  .nav a::before { content: ""; width: 18px; height: 1px; background: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease; }
  .nav a:hover::before,
  .nav a:focus-visible::before { opacity: 1; transform: translateX(0); }
  .nav a::after { display: none; }

  .header .header-contact { display: none; }

  .mobile-contact {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 101;
    width: auto;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(222, 0, 57, .28);
    font-size: 15px;
    animation: mobileContactPulse 2.8s ease-in-out infinite;
  }
  .mobile-contact::after { content: ""; width: 18px; height: 1px; margin-left: 12px; background: #fff; }
  .mobile-contact:hover,
  .mobile-contact:focus-visible { background: #bd0030; animation-play-state: paused; }
  .footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .hero { margin-top: 64px; }
}

@keyframes mobileContactPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 12px 28px rgba(222, 0, 57, .24); }
  50% { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(222, 0, 57, .38); }
}

/* Area / SEO page */
.area-service-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 22px auto 0;
  color: var(--blue);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.area-service-link span,
.area-hero-links span {
  color: var(--red);
  transition: transform .24s ease;
}

.area-service-link:hover span,
.area-hero-links a:hover span { transform: translateX(5px); }

.area-page main { padding-top: 66px; }

.area-hero {
  position: relative;
  padding-top: clamp(96px, 11vw, 160px);
  padding-bottom: clamp(80px, 10vw, 145px);
  overflow: hidden;
}

.area-hero::after {
  content: "AREA";
  position: absolute;
  right: -2vw;
  bottom: 2vw;
  color: rgba(39, 120, 189, .045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(150px, 28vw, 420px);
  line-height: .75;
  pointer-events: none;
}

.area-hero > * { position: relative; z-index: 1; }

.area-hero h1 {
  max-width: 1020px;
  margin: 20px 0 28px;
  color: var(--charcoal);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: .04em;
}

.area-hero h1 span { color: var(--red); }

.area-hero > p:not(.eyebrow) {
  max-width: 730px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 2;
}

.area-hero-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.area-hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(39, 120, 189, .42);
  color: var(--charcoal);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .25s ease, border-color .25s ease;
}

.area-hero-links a:hover { background: rgba(39, 120, 189, .07); border-color: var(--blue); }

.area-intro,
.area-services,
.area-locations,
.area-faq { padding-top: clamp(65px, 8vw, 115px); padding-bottom: clamp(65px, 8vw, 115px); }

.area-intro { text-align: center; max-width: 980px; }

.area-intro > p:last-child {
  margin: 26px auto 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 2.05;
}

.area-services { position: relative; }

.area-services .eyebrow,
.area-services .title,
.area-locations .eyebrow,
.area-locations .title,
.area-faq .eyebrow,
.area-faq .title { text-align: center; }

.area-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgba(76, 73, 72, .18);
  background: rgba(76, 73, 72, .18);
}

.area-service-card {
  min-height: 245px;
  padding: 31px 26px 28px;
  background: rgba(248, 245, 239, .88);
  color: var(--charcoal);
  text-decoration: none;
  transition: transform .24s ease, background-color .24s ease;
}

.area-service-card:hover { background: #fff; transform: translateY(-6px); }

.area-service-card > span {
  display: block;
  color: var(--blue);
  font-size: 32px;
  margin-bottom: 30px;
}

.area-service-card h3 { margin: 0 0 12px; font-size: clamp(18px, 1.35vw, 22px); }
.area-service-card p { margin: 0; font-size: 14px; line-height: 1.8; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.location-grid article {
  position: relative;
  padding: 30px 34px 34px;
  border-top: 2px solid var(--red);
  background: rgba(255, 255, 255, .45);
}

.location-grid article:nth-child(even) { border-color: var(--blue); }
.location-grid article > p:first-child { margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.location-grid article:nth-child(odd) > p:first-child { color: var(--red); }
.location-grid h3 { margin: 0 0 14px; font-size: clamp(19px, 1.5vw, 25px); }
.location-grid article > p:last-child { margin: 0; line-height: 1.9; }

.area-faq { max-width: 1000px; }
.area-faq dl { margin: 44px 0 0; border-top: 1px solid rgba(76, 73, 72, .22); }
.area-faq dl > div { padding: 25px 12px; border-bottom: 1px solid rgba(76, 73, 72, .22); }
.area-faq dt { display: flex; gap: 16px; font-size: clamp(16px, 1.25vw, 19px); font-weight: 700; }
.area-faq dt::before { content: "Q"; color: var(--red); font-size: 13px; letter-spacing: .1em; }
.area-faq dd { margin: 14px 0 0 29px; font-size: 15px; line-height: 1.9; }

@media (max-width: 900px) {
  .area-service-grid { grid-template-columns: repeat(2, 1fr); }
  .area-hero h1 br { display: none; }
}

@media (max-width: 600px) {
  .area-page main { padding-top: 56px; }
  .area-hero { padding-top: 72px; padding-bottom: 84px; }
  .area-hero h1 { font-size: clamp(31px, 9vw, 44px); }
  .area-hero > p:not(.eyebrow) br,
  .area-intro > p:last-child br { display: none; }
  .area-hero-links { display: grid; grid-template-columns: 1fr; }
  .area-hero-links a { justify-content: space-between; }
  .area-service-grid,
  .location-grid { grid-template-columns: 1fr; }
  .area-service-card { min-height: auto; padding: 27px 24px; }
  .area-service-card > span { margin-bottom: 20px; }
  .location-grid article { padding: 25px 23px 28px; }
  .area-faq dd { margin-left: 0; }
}

/* 2026-07 editorial contrast: less uniform, more authored rhythm */
.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 12%;
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, var(--red) 0 48%, var(--blue) 48% 100%);
}

.philosophy {
  width: min(92vw, 1240px);
  max-width: 1240px;
  padding-top: clamp(74px, 8vw, 126px);
  padding-bottom: clamp(88px, 10vw, 150px);
  text-align: left;
}

.philosophy .title,
.service .title,
.works .title,
.news .title {
  letter-spacing: .055em;
}

.philosophy .title {
  max-width: 720px;
  font-size: clamp(31px, 3.5vw, 53px);
  line-height: 1.38;
}

.philosophy .text {
  max-width: 100%;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2.1;
}

.philosophy .eyebrow,
.service .eyebrow,
.works .eyebrow,
.news .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.philosophy .eyebrow::after,
.service .eyebrow::after,
.works .eyebrow::after,
.news .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--red) 0 48%, transparent 48% 56%, var(--blue) 56%);
}

.strength {
  padding-top: clamp(46px, 6vw, 88px);
  padding-bottom: clamp(68px, 8vw, 118px);
  text-align: left;
}

.strength .title {
  font-size: clamp(29px, 3vw, 45px);
  letter-spacing: .045em;
}

.strength-grid {
  margin-top: 50px;
  align-items: stretch;
}

.strength-item {
  position: relative;
  min-height: 276px;
  padding: 28px 28px 0;
}

.strength-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 54px;
  height: 2px;
  background: var(--red);
}

.strength-item:nth-child(even)::after { background: var(--blue); }
.strength-item:nth-child(2),
.strength-item:nth-child(4) { transform: none; }
.strength-item .strength-icon { margin: 14px 0 25px; }
.strength-item h3 { font-size: clamp(18px, 1.35vw, 22px); }

.service {
  padding-top: clamp(52px, 7vw, 100px);
  padding-bottom: clamp(70px, 9vw, 128px);
  text-align: left;
}

.service .title,
.works .title,
.news .title { font-size: clamp(30px, 3.2vw, 47px); }

.service-lead {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2;
  text-align: left;
}

.service .area-service-link { margin-left: 0; margin-right: 0; }

.service-grid { gap: 12px; margin-top: 42px; }

.service-card {
  position: relative;
  min-height: 154px;
  border-color: rgba(76, 73, 72, .18);
  background: rgba(255, 253, 249, .44);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 3px;
  background: var(--red);
  opacity: .82;
}

.service-card:nth-child(3n + 2)::before { background: var(--blue); }
.service-card:nth-child(3n)::before { background: var(--charcoal); opacity: .48; }
.service-card:hover,
.service-card:focus-within { border-color: rgba(76, 73, 72, .42); }

.works {
  padding-top: clamp(54px, 7vw, 100px);
  padding-bottom: clamp(84px, 10vw, 145px);
  text-align: left;
}

.works-grid { margin-top: 42px; }

.work { position: relative; }
.work .thumb { border-top: 2px solid var(--red); }
.work:nth-child(even) .thumb { border-color: var(--blue); }
.work:nth-child(3n) .thumb { border-color: var(--charcoal); }
.work h3 { font-size: clamp(15px, 1.04vw, 18px); }

/* WordPress works: keep card heights and metadata aligned with variable client names. */
.works-grid { align-items: stretch; }
.work {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.work .thumb { width: 100%; }
.work .thumb img,
.work-placeholder,
.lp-work-thumb img,
.lp-work-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-placeholder,
.lp-work-placeholder {
  background: linear-gradient(135deg, rgba(222, 0, 57, .11), rgba(39, 120, 189, .15));
}
.work-meta {
  min-width: 0;
  padding-top: 16px;
  display: grid;
  align-content: start;
  gap: 9px;
}
.work h3 { margin: 0; overflow-wrap: anywhere; }
.work-categories { margin: 0; }
.work .more { align-self: end; margin-top: 18px; }

.lp-work-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.lp-works-grid a {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(2.7em, auto) minmax(1.6em, auto) auto;
}
.lp-works-grid a > h3 { overflow-wrap: anywhere; }
.lp-works-grid a > span { position: static; margin: 15px 18px 0; justify-self: start; }
.lp-works-empty { grid-column: 1 / -1; margin: 0; text-align: center; }

.works-button { margin-left: auto; margin-right: auto; background: transparent; }

.news {
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(84px, 10vw, 142px);
  text-align: left;
}

.news-list { max-width: 100%; margin-top: 42px; }
.news-item { grid-template-columns: 138px 116px 1fr 28px; }
.news-item::after { content: "→"; color: var(--red); font-size: 20px; transition: transform .25s ease; }
.news-item:hover::after,
.news-item:focus-visible::after { transform: translateX(6px); }

.service-lp .lp-section,
.about-page .about-message,
.about-page .about-profile,
.about-page .about-services,
.about-page .about-career,
.about-page .about-approach {
  padding-top: clamp(74px, 9vw, 138px);
  padding-bottom: clamp(74px, 9vw, 138px);
}

.service-lp .lp-section .eyebrow,
.service-lp .lp-section .title,
.about-page .about-message .eyebrow,
.about-page .about-message .title,
.about-page .about-services .eyebrow,
.about-page .about-services .title,
.about-page .about-career .eyebrow,
.about-page .about-career .title,
.about-page .about-approach .eyebrow,
.about-page .about-approach .title {
  text-align: left;
}

.service-lp .lp-section .center-lines { margin-left: 0; margin-right: 0; }

.service-lp .lp-icon-grid article,
.service-lp .lp-flow-grid article,
.about-service-grid article,
.approach-grid article {
  border-top: 2px solid rgba(222, 0, 57, .8);
}

.service-lp .lp-icon-grid article:nth-child(even),
.service-lp .lp-flow-grid article:nth-child(even),
.about-service-grid article:nth-child(even),
.approach-grid article:nth-child(even) { border-top-color: rgba(39, 120, 189, .86); }

.about-page .about-message {
  max-width: min(var(--w), 1040px);
  text-align: center;
}

.about-page .about-message .eyebrow,
.about-page .about-message .title { justify-content: center; text-align: center; }

.about-page .about-message .text {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-page .about-career .career-panel {
  width: 100%;
  max-width: none;
}

.about-page .about-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.about-page .about-section-head .title { font-size: clamp(31px, 3.2vw, 48px); }

.work-categories span,
.news-category { border-radius: 0; }

@media (max-width: 760px) {
  .hero-copy::before { left: -15px; height: 35%; }
  .philosophy,
  .strength,
  .service,
  .works,
  .news { text-align: left; }
  .strength-grid { margin-top: 34px; }
  .strength-item { min-height: auto; padding: 24px 18px 26px; }
  .strength-item:nth-child(2),
  .strength-item:nth-child(4) { transform: none; }
  .strength-item::after { left: 18px; }
  .news-item { grid-template-columns: 1fr auto; gap: 8px 12px; }
  .news-item time,
  .news-category { grid-row: 1; }
  .news-item p { grid-column: 1 / -1; }
  .news-item::after { grid-column: 2; grid-row: 1; }
  .about-page .about-section-head { display: block; }
  .about-page .about-section-head .title { margin-top: 8px; }
}

/* Webサイト制作：デスクトップでは6工程を1行の横フローにする */
@media (min-width: 901px) {
  .web-site-page .lp-flow-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .web-site-page .lp-flow-grid h3 {
    font-size: 16px;
    line-height: 1.5;
    white-space: nowrap;
  }

  .web-site-page .lp-flow-grid p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.graphic-design-page .lp-title-line:first-child {
  white-space: nowrap;
}

/* Secondary pages: the same quiet editorial rhythm as the home page. */
.subpage main { padding-top: 66px; }
.subpage-hero {
  position: relative;
  padding-top: clamp(88px, 10vw, 148px);
  padding-bottom: clamp(62px, 7vw, 104px);
  overflow: hidden;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  width: min(32vw, 430px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue));
  opacity: .65;
}

.subpage-hero h1 {
  margin: 10px 0 26px;
  max-width: 940px;
  color: var(--charcoal);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  font-size: clamp(43px, 5.2vw, 78px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .06em;
}

.subpage-hero h1 span { color: var(--red); }
.subpage-hero > p:last-child { max-width: 670px; font-size: clamp(15px, 1.4vw, 18px); line-height: 2; }

.works-filter { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 36px; color: var(--charcoal); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.works-filter span:first-child { color: var(--red); }
.works-index { padding-bottom: clamp(88px, 10vw, 150px); }
.works-index-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(26px, 3.1vw, 48px) 24px; }
.work-index-card { position: relative; min-width: 0; padding-bottom: 18px; border-bottom: 1px solid rgba(76, 73, 72, .2); }
.work-index-card img { width: 100%; aspect-ratio: 1.14; object-fit: cover; display: block; transition: transform .5s ease; }
.work-index-card:hover img { transform: scale(1.025); }
.work-index-card > div { padding-top: 16px; }
.work-index-card p { margin: 0 0 7px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.work-index-card h2 { margin: 0 0 8px; font-size: clamp(18px, 1.55vw, 23px); font-weight: 700; line-height: 1.45; }
.work-index-card span { color: #777; font-size: 13px; }

.news-index { max-width: 1080px; padding-bottom: clamp(104px, 12vw, 180px); }
.news-index article { display: grid; grid-template-columns: 112px 92px minmax(0, 1fr) 40px; align-items: center; gap: 18px; padding: 28px 0; border-top: 1px solid rgba(76, 73, 72, .22); }
.news-index article:last-child { border-bottom: 1px solid rgba(76, 73, 72, .22); }
.news-index time { color: var(--charcoal); font-size: 13px; }
.news-index article > span { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.news-index h2 { margin: 0; font-size: clamp(16px, 1.55vw, 20px); line-height: 1.7; }
.news-index a { justify-self: end; color: var(--blue); transition: transform .3s ease; }
.news-index article:hover a { transform: translateX(6px); }

.contact-panel { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .8fr); gap: clamp(42px, 7vw, 120px); align-items: center; margin-bottom: clamp(90px, 10vw, 150px); padding: clamp(38px, 5vw, 74px); border-top: 1px solid var(--red); border-bottom: 1px solid rgba(39, 120, 189, .4); background: linear-gradient(110deg, rgba(222, 0, 57, .045), transparent 56%, rgba(39, 120, 189, .07)); }
.contact-panel h2 { margin: 10px 0 14px; font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif; font-size: clamp(28px, 3vw, 43px); font-weight: 400; letter-spacing: .05em; }
.contact-panel p { line-height: 1.9; }
.contact-actions a { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 66px; background: var(--red); color: #fff; font-size: 16px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease; }
.contact-actions a:hover { transform: translateY(-3px); box-shadow: 0 13px 26px rgba(222, 0, 57, .2); }
.contact-actions p { margin: 14px 0 0; color: #777; font-size: 13px; text-align: center; }

.contact-form-section { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.35fr); gap: clamp(40px, 7vw, 110px); align-items: start; padding-bottom: clamp(96px, 11vw, 164px); }
.contact-form-intro { position: sticky; top: 100px; padding-top: 6px; }
.contact-form-intro h2 { margin: 12px 0 18px; font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif; font-size: clamp(28px, 3vw, 43px); font-weight: 400; line-height: 1.42; letter-spacing: .045em; }
.contact-form-intro > p:not(.eyebrow) { margin: 0; line-height: 2; }
.contact-form-intro .form-note { display: flex; align-items: center; gap: 8px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(76, 73, 72, .25); color: #666; font-size: 13px; }
.contact-form-intro .material-symbols-outlined { color: var(--blue); font-size: 19px; }

.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 27px 24px; padding: clamp(28px, 4vw, 56px); border-top: 3px solid var(--red); border-bottom: 1px solid var(--blue); background: rgba(255, 255, 255, .66); }
.form-field { display: grid; gap: 9px; min-width: 0; }
.form-field-wide,
.form-consent,
.contact-form button { grid-column: 1 / -1; }
.form-field label { color: var(--charcoal); font-size: 14px; font-weight: 700; }
.form-field label b { margin-left: 6px; color: var(--red); font-size: 11px; letter-spacing: .06em; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-width: 0; border: 0; border-bottom: 1px solid rgba(76, 73, 72, .42); border-radius: 0; outline: 0; background: rgba(248, 245, 239, .7); color: var(--charcoal); font: inherit; line-height: 1.6; transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.form-field input,
.form-field select { min-height: 50px; padding: 10px 12px; }
.form-field textarea { min-height: 154px; padding: 12px; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%); background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--red); background-color: #fff; box-shadow: 0 7px 0 rgba(39, 120, 189, .1); }
.form-consent { display: flex; align-items: center; gap: 10px; margin-top: 3px; color: var(--charcoal); font-size: 13px; cursor: pointer; }
.form-consent input { width: 17px; height: 17px; margin: 0; accent-color: var(--red); }
.form-consent a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.contact-form button { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 64px; margin-top: 4px; border: 0; border-radius: 0; background: var(--red); color: #fff; font: inherit; font-weight: 700; cursor: pointer; transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.contact-form button:hover,
.contact-form button:focus-visible { background: var(--charcoal); box-shadow: 8px 8px 0 rgba(39, 120, 189, .45); transform: translate(-3px, -3px); }
.contact-form button .material-symbols-outlined { font-size: 20px; transition: transform .25s ease; }
.contact-form button:hover .material-symbols-outlined { transform: translateX(5px); }

/* MW WP Form: the form body is managed in the plugin, while the theme owns its presentation. */
.contact-form.mw-wp-form-wrap { display: block; }
.mw-wp-form-wrap .mailform-tbl { width: 100%; border-collapse: collapse; }
.mw-wp-form-wrap .mailform-tbl th,
.mw-wp-form-wrap .mailform-tbl td { padding: 18px 0; border-bottom: 1px solid rgba(76, 73, 72, .2); text-align: left; vertical-align: top; }
.mw-wp-form-wrap .mailform-tbl th { width: 30%; padding-right: 28px; color: var(--charcoal); font-size: var(--fs-sm); font-weight: 700; }
.mw-wp-form-wrap .mailform-tbl td { width: 70%; }
.mw-wp-form-wrap .attention { margin-left: 5px; color: var(--red); font-size: var(--fs-xs); }
.mw-wp-form-wrap input[type="text"],
.mw-wp-form-wrap input[type="email"],
.mw-wp-form-wrap input[type="tel"],
.mw-wp-form-wrap textarea { width: 100%; min-width: 0; padding: 12px 14px; border: 1px solid rgba(76, 73, 72, .24); border-radius: 0; background: rgba(255, 255, 255, .72); color: var(--charcoal); font: inherit; line-height: 1.7; transition: border-color .25s ease, box-shadow .25s ease; }
.mw-wp-form-wrap textarea { min-height: 170px; resize: vertical; }
.mw-wp-form-wrap input:focus,
.mw-wp-form-wrap textarea:focus { outline: 0; border-color: var(--red); box-shadow: 0 5px 0 rgba(39, 120, 189, .12); }
.mw-wp-form-wrap #free-submit-button { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 0; }
.mw-wp-form-wrap #free-submit-button input[type="submit"],
.mw-wp-form-wrap #free-submit-button input[type="button"] { min-width: 210px; min-height: 58px; padding: 0 28px; border: 0; border-radius: 0; background: var(--red); color: #fff; font: inherit; font-weight: 700; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease; }
.mw-wp-form-wrap #free-submit-button input[type="button"] { background: var(--charcoal); }
.mw-wp-form-wrap #free-submit-button input:hover { background: #bd0030; box-shadow: 8px 8px 0 rgba(39, 120, 189, .35); transform: translate(-3px, -3px); }
.mw-wp-form-wrap .error { display: block; margin-top: 8px; color: var(--red); font-size: var(--fs-xs); font-weight: 700; }

/* MW WP Form confirmation page */
.contact-confirmation-hero { padding-top: clamp(86px, 10vw, 150px); padding-bottom: 54px; text-align: center; }
.contact-confirmation-hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.contact-confirmation-hero .eyebrow::before,
.contact-confirmation-hero .eyebrow::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--red) 0 48%, transparent 48% 56%, var(--blue) 56%); }
.contact-confirmation-hero h1 { margin: 14px 0 18px; font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif; font-size: clamp(34px, 4.2vw, 62px); font-weight: 400; line-height: 1.38; letter-spacing: .045em; }
.contact-confirmation-hero h1 span { color: var(--red); }
.contact-confirmation-hero > p { margin: 0; color: #666; font-size: var(--fs-md); }
.contact-steps { max-width: 610px; margin: 48px auto 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; }
.contact-steps li { position: relative; display: grid; justify-items: center; gap: 9px; color: #999; font-size: var(--fs-xs); font-weight: 700; }
.contact-steps li:not(:last-child)::after { content: ""; position: absolute; top: 16px; left: calc(50% + 24px); width: calc(100% - 48px); height: 1px; background: rgba(76, 73, 72, .2); }
.contact-steps span { position: relative; z-index: 1; width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid rgba(76, 73, 72, .25); border-radius: 50%; background: var(--ivory); font-size: 11px; }
.contact-steps .is-current { color: var(--charcoal); }
.contact-steps .is-current span { border-color: var(--red); background: var(--red); color: #fff; box-shadow: 0 7px 16px rgba(222, 0, 57, .2); }
.contact-confirmation-body { max-width: 980px; padding-bottom: clamp(100px, 12vw, 180px); }
.contact-confirmation-card { padding: clamp(30px, 5vw, 68px); border-top: 3px solid var(--red); border-bottom: 1px solid var(--blue); background: rgba(255, 255, 255, .72); box-shadow: 0 22px 52px rgba(76, 73, 72, .08); }
.contact-confirmation-note { display: flex; align-items: center; gap: 9px; margin: 0 0 28px; padding-bottom: 17px; border-bottom: 1px solid rgba(76, 73, 72, .16); color: var(--charcoal); font-size: var(--fs-sm); font-weight: 700; }
.contact-confirmation-note .material-symbols-outlined { color: var(--blue); }
.contact-confirmation-card .mw_wp_form_confirm .mailform-tbl td { color: var(--charcoal); font-weight: 500; line-height: 1.85; }
.contact-confirmation-card .mw_wp_form_confirm .mailform-tbl input,
.contact-confirmation-card .mw_wp_form_confirm .mailform-tbl textarea { border: 0; background: transparent; padding: 0; }

@media (max-width: 560px) {
  .contact-confirmation-hero { padding-top: 82px; padding-bottom: 36px; text-align: left; }
  .contact-confirmation-hero .eyebrow::before { display: none; }
  .contact-confirmation-hero .eyebrow::after { width: 38px; }
  .contact-confirmation-hero h1 { font-size: clamp(31px, 9vw, 43px); }
  .contact-steps { margin-top: 34px; }
  .contact-confirmation-card { padding: 28px 20px; }
}

/* Shared header contact button */
.header .contact {
  border: 0;
  background: var(--red);
  color: #fff;
  animation: contactBrandGlow 2.8s ease-in-out infinite;
}

.header .contact:hover,
.header .contact:focus-visible {
  background: #bd0030;
  animation-play-state: paused;
}

@keyframes contactBrandGlow {
  0%, 100% { background: var(--red); box-shadow: 0 0 0 rgba(222, 0, 57, 0); }
  50% { background: #e80a43; box-shadow: 0 8px 22px rgba(222, 0, 57, .24); }
}

/* Service-page content shown automatically from each service slug. */
.wp-service-page .lp-hero h1 span { color: var(--red); }
.wp-service-page .service-message-copy { max-width: 720px; margin: 20px auto 0; font-size: var(--fs-md); font-weight: 500; line-height: 2; }
.wp-service-page .problem-solution {
  max-width: 1020px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  text-align: left;
}
.wp-service-page .problem-solution article {
  min-height: 175px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  box-shadow: var(--shadow);
}
.wp-service-page .problem-solution article:last-child { border-top: 3px solid var(--blue); }
.wp-service-page .problem-solution article:first-child { border-top: 3px solid var(--red); }
.wp-service-page .problem-solution .eyebrow { margin: 0 0 16px; }
.wp-service-page .problem-solution h3 { margin: 0; font-size: var(--fs-lg); line-height: 1.75; }
.wp-service-page .problem-solution > .material-symbols-outlined { color: var(--blue); font-size: 28px; text-align: center; }
.wp-service-page .service-page-custom-content { max-width: 860px; margin: 0 auto 84px; text-align: left; }
.wp-service-page .service-page-custom-content > *:first-child { margin-top: 0; }

@media (max-width: 760px) {
  .wp-service-page .problem-solution { grid-template-columns: 1fr; gap: 16px; }
  .wp-service-page .problem-solution > .material-symbols-outlined { transform: rotate(90deg); }
  .wp-service-page .problem-solution article { min-height: 0; padding: 24px 22px; }
}
.contact-notes { padding-bottom: clamp(104px, 12vw, 180px); }
.contact-notes > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 36px; border-top: 1px solid rgba(76, 73, 72, .2); }
.contact-notes article { padding: 28px 24px 10px; border-right: 1px solid rgba(76, 73, 72, .2); }
.contact-notes article:first-child { padding-left: 0; }
.contact-notes article:last-child { border-right: 0; }
.contact-notes .material-symbols-outlined { color: var(--blue); font-size: 32px; }
.contact-notes h3 { margin: 18px 0 8px; font-size: 17px; }
.contact-notes p { margin: 0; font-size: 14px; line-height: 1.85; }

.policy-copy { max-width: 900px; padding-bottom: clamp(104px, 12vw, 180px); }
.policy-copy h2 { margin: 0 0 28px; font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; }
.policy-copy h3 { margin: 42px 0 10px; padding-left: 14px; border-left: 2px solid var(--red); font-size: 18px; }
.policy-copy p { max-width: 780px; margin: 0; line-height: 2; }
.policy-copy a { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }
.policy-copy .policy-date { margin-top: 44px; color: #777; font-size: 14px; }

@media (max-width: 760px) {
  .subpage-hero { padding-top: 80px; padding-bottom: 64px; }
  .subpage-hero h1 { font-size: clamp(34px, 10vw, 51px); letter-spacing: .035em; }
  .subpage-hero > p:last-child br { display: none; }
  .subpage-hero::after { width: 45vw; }
  .works-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  .news-index article { grid-template-columns: 1fr auto; gap: 8px 14px; padding: 22px 0; }
  .news-index article > span { grid-column: 1; }
  .news-index h2 { grid-column: 1 / -1; grid-row: 2; }
  .news-index a { grid-column: 2; grid-row: 1; }
  .contact-panel { grid-template-columns: 1fr; padding: 30px 22px; }
  .contact-form-section { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-intro { position: static; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; gap: 23px; }
  .form-field,
  .form-field-wide,
  .form-consent,
  .contact-form button { grid-column: 1; }
  .contact-notes > div { grid-template-columns: 1fr; }
  .contact-notes article,
  .contact-notes article:first-child { padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(76, 73, 72, .2); }
  .contact-notes article:last-child { border-bottom: 0; }
}

@media (max-width: 1120px) and (min-width: 761px) {
  .works-index-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .works-index-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  .mw-wp-form-wrap .mailform-tbl,
  .mw-wp-form-wrap .mailform-tbl tbody,
  .mw-wp-form-wrap .mailform-tbl tr,
  .mw-wp-form-wrap .mailform-tbl th,
  .mw-wp-form-wrap .mailform-tbl td { display: block; width: 100%; }
  .mw-wp-form-wrap .mailform-tbl tr { padding: 18px 0; border-bottom: 1px solid rgba(76, 73, 72, .2); }
  .mw-wp-form-wrap .mailform-tbl th,
  .mw-wp-form-wrap .mailform-tbl td { padding: 0; border: 0; }
  .mw-wp-form-wrap .mailform-tbl th { margin-bottom: 9px; }
  .mw-wp-form-wrap #free-submit-button input[type="submit"],
  .mw-wp-form-wrap #free-submit-button input[type="button"] { width: 100%; min-width: 0; }
}
