  :root {
    color-scheme: light;
    --pink: #D65580;
    --pink-soft: #F3C3D4;
    --berry: #9A4F90;
    --violet: #6D5299;
    --blue: #3B55A5;
    --ink: #2A3570;
    --ink-soft: #56608F;
    --paper: #FCFAFD;
    --mist: #F2EFF8;
    --line: rgba(42, 53, 112, .14);
    --white: #FFFFFF;
    --grad: linear-gradient(100deg, var(--pink) 0%, var(--berry) 38%, var(--violet) 62%, var(--blue) 100%);
    --f-logo: "Courier Prime", "American Typewriter", "Courier New", monospace;
    --f-en: "Jost", "Avenir Next", "Century Gothic", Futura, sans-serif;
    --f-jp: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
    --f-hand: "Klee One", "Hiragino Mincho ProN", "Yu Mincho", serif;
    --gutter: clamp(16px, 4vw, 48px);
    --ease-out: cubic-bezier(.2, .8, .2, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  }
  * { box-sizing: border-box; }
  html.menu-lock { overflow: hidden; }
  [hidden] { display: none !important; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-jp);
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .04em;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; }
  :focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }
  .wrap { width: min(1120px, 100%); margin-inline: auto; padding-inline: var(--gutter); }

  /* ---------- Header ---------- */
  .site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 50;
    padding-top: env(safe-area-inset-top, 0px);
    transition: background .4s, box-shadow .4s, color .4s;
    color: var(--white);
  }
  .site-header .bar {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; padding-inline: var(--gutter);
  }
  /* blurred bar lives on a pseudo-element: backdrop-filter on the header itself
     would become the containing block of the fixed mobile menu and clip it to 72px */
  .site-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(252, 250, 253, 0); box-shadow: 0 1px 0 transparent;
    transition: background-color .4s, box-shadow .4s;
  }
  /* the blur is only switched on once scrolled: Chrome still paints backdrop-filter at opacity 0 */
  .site-header.scrolled::before, .site-header.solid::before {
    background: rgba(252, 250, 253, .96); box-shadow: 0 1px 0 var(--line);
  }
  .site-header.scrolled, .site-header.solid { color: var(--ink); }
  .brand { position: relative; z-index: 2; }
  .brand { display: inline-flex; align-items: center; text-decoration: none; --h: 19px; }
  .nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
  .nav a {
    font-family: var(--f-en); font-weight: 600; font-size: 12px; letter-spacing: .22em;
    text-decoration: none; position: relative; padding-block: 6px;
  }
  .nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .35s var(--ease-out);
  }
  .nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-cta {
    padding: 9px 22px !important; border-radius: 999px;
    background: var(--white); color: var(--blue);
    transition: transform .3s var(--ease-spring), box-shadow .3s;
  }
  .site-header.scrolled .nav-cta { background: var(--grad); color: var(--white); }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 85, 165, .3); }
  .menu-btn {
    display: none; width: 44px; height: 44px; border: 0; background: transparent;
    color: inherit; cursor: pointer; position: relative;
  }
  .menu-btn span {
    position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor;
    transition: transform .35s var(--ease-out), opacity .2s;
  }
  .menu-btn span:nth-child(1) { top: 15px; }
  .menu-btn span:nth-child(2) { top: 21px; }
  .menu-btn span:nth-child(3) { top: 27px; }
  .menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-btn span:nth-child(2) { opacity: 0; }
  .menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; isolation: isolate;
    min-height: clamp(600px, 94svh, 880px);
    display: grid; place-items: center;
    color: var(--white); overflow: hidden;
    background: var(--grad);
    background-size: 180% 100%;
    animation: gradShift 14s ease-in-out infinite alternate;
  }
  @keyframes gradShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
  .hero::before, .hero::after {
    content: ""; position: absolute; z-index: -1; border-radius: 50%;
    filter: blur(60px); mix-blend-mode: soft-light; pointer-events: none;
  }
  .hero::before {
    width: 55vw; height: 55vw; left: -12vw; top: -18vw;
    background: #FFD2E2; opacity: .9; animation: blobA 16s ease-in-out infinite alternate;
  }
  .hero::after {
    width: 45vw; height: 45vw; right: -10vw; bottom: -8vw;
    background: #B9C8FF; opacity: .9; animation: blobB 18s ease-in-out infinite alternate;
  }
  @keyframes blobA { to { transform: translate(18vw, 10vw) scale(1.15); } }
  @keyframes blobB { to { transform: translate(-16vw, -8vw) scale(.9); } }

  /* artboard: trim marks + document tab */
  .artboard {
    position: absolute; inset: 104px var(--gutter) 150px; pointer-events: none; z-index: 0;
  }
  .trim { position: absolute; width: 34px; height: 34px; opacity: 0; animation: fadeIn .8s .2s forwards; }
  .trim::before, .trim::after { content: ""; position: absolute; background: rgba(255, 255, 255, .55); }
  .trim::before { width: 100%; height: 1px; }
  .trim::after { width: 1px; height: 100%; }
  .trim.tl { left: -14px; top: -14px; } .trim.tl::before { top: 14px; } .trim.tl::after { left: 14px; }
  .trim.tr { right: -14px; top: -14px; } .trim.tr::before { top: 14px; } .trim.tr::after { right: 14px; }
  .trim.bl { left: -14px; bottom: -14px; } .trim.bl::before { bottom: 14px; } .trim.bl::after { left: 14px; }
  .trim.br { right: -14px; bottom: -14px; } .trim.br::before { bottom: 14px; } .trim.br::after { right: 14px; }
  .cmyk { position: absolute; right: 28px; bottom: 8px; display: flex; gap: 6px; opacity: .85; }
  .cmyk span { width: 14px; height: 14px; border-radius: 3px; border: 1px solid rgba(255, 255, 255, .5); }
  .cmyk span:nth-child(1) { background: #00AEEF; }
  .cmyk span:nth-child(2) { background: #EC008C; }
  .cmyk span:nth-child(3) { background: #FFF200; }
  .cmyk span:nth-child(4) { background: #231F20; }
  .cmyk small { font-family: var(--f-en); font-size: 10px; letter-spacing: .2em; margin-left: 6px; line-height: 14px; }

  /* pen-tool bezier */
  .pen {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  }
  .pen .curve {
    fill: none; stroke: rgba(255, 255, 255, .55); stroke-width: 1.5;
    stroke-dasharray: 1900; stroke-dashoffset: 1900;
    animation: draw 2.6s .5s var(--ease-out) forwards;
  }
  .pen .handle { stroke: rgba(255, 255, 255, .45); stroke-width: 1; opacity: 0; animation: fadeIn .6s forwards; }
  .pen .anchor { fill: var(--white); opacity: 0; animation: fadeIn .4s forwards; }
  .pen .knob { fill: none; stroke: var(--white); stroke-width: 1.2; opacity: 0; animation: fadeIn .4s forwards; }
  @keyframes draw { to { stroke-dashoffset: 0; } }

  /* floating shapes */
  .floaters { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
  .fl { position: absolute; will-change: transform; transition: transform .6s var(--ease-out); }
  .fl > * { animation: bob 7s ease-in-out infinite alternate; display: block; }
  .fl.f1 { left: 9%; top: 24%; }
  .fl.f1 > * { width: 88px; height: 88px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .6); }
  .fl.f2 { right: 12%; top: 20%; }
  .fl.f2 > * { width: 26px; height: 26px; border-radius: 50%; background: var(--pink-soft); animation-duration: 5s; }
  .fl.f3 { right: 8%; top: 56%; }
  .fl.f3 > * { width: 64px; height: 64px; border-radius: 16px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .45); rotate: 18deg; animation-duration: 9s; }
  .fl.f4 { left: 15%; bottom: 30%; }
  .fl.f4 > * { width: 30px; height: 30px; color: #FFF0B8; animation-duration: 6s; }
  .fl.f5 { left: 30%; top: 16%; }
  .fl.f5 > * { width: 12px; height: 12px; border-radius: 50%; background: var(--white); opacity: .8; animation-duration: 4.5s; }
  .fl.f6 { right: 26%; bottom: 28%; }
  .fl.f6 > * { width: 20px; height: 20px; color: var(--white); animation-duration: 5.5s; }
  @keyframes bob { from { transform: translateY(-10px) rotate(-6deg); } to { transform: translateY(12px) rotate(8deg); } }

  .hero-inner { position: relative; z-index: 2; text-align: center; padding: 120px var(--gutter) 170px; }
  .logo {
    /* never wider than the screen: the logo is 6.8x as wide as it is tall */
    --h: min(clamp(46px, 8.4vw, 104px), calc((100vw - 48px) / 6.8));
    margin: 0; font-size: var(--h); line-height: 1;
    display: inline-flex; align-items: center; white-space: nowrap; color: var(--white);
  }
  .logo .ch {
    height: var(--h); width: calc(var(--h) * var(--w));
    background: url(../images/logo-vividus-white.png) no-repeat;
    background-size: calc(var(--h) * 6.7043) var(--h);
    background-position: calc(var(--h) * var(--x) * -1) 0;
  }
  /* same logo as one piece (header, footer, about) */
  .logo-mark {
    display: inline-block; vertical-align: middle; height: var(--h, 20px); aspect-ratio: 1542 / 230; max-width: 100%;
    background: url(../images/logo-vividus-white.png) center / contain no-repeat;
  }
  .logo-mark.blue, .site-header.scrolled .logo-mark, .site-header.solid .logo-mark { background-image: url(../images/logo-vividus-blue.png); }
  .site-header.menu-open .logo-mark { background-image: url(../images/logo-vividus-white.png); }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .logo .ch { display: inline-block; animation: typeIn .14s ease-out backwards; }
  .logo .ch { cursor: default; transition: transform .45s var(--ease-spring), color .3s, filter .3s; }
  .logo .ch.pop { transform: translateY(-.16em) rotate(-10deg) scale(1.1); filter: drop-shadow(0 .05em 0 var(--pink)) drop-shadow(0 0 .25em rgba(255, 255, 255, .7)); transition-duration: .18s; }
  .logo .ch.pop.alt { transform: translateY(-.16em) rotate(10deg) scale(1.08); }
  .logo .ch:nth-child(1) { animation-delay: .35s; }
  .logo .ch:nth-child(2) { animation-delay: .5s; }
  .logo .ch:nth-child(3) { animation-delay: .65s; }
  .logo .ch:nth-child(4) { animation-delay: .8s; }
  .logo .ch:nth-child(5) { animation-delay: .95s; }
  .logo .ch:nth-child(6) { animation-delay: 1.1s; }
  .logo .ch:nth-child(7) { animation-delay: 1.25s; }
  @keyframes typeIn { from { opacity: 0; transform: translateY(.25em); } to { opacity: 1; transform: none; } }
  .logo .caret {
    width: .05em; height: .8em; background: var(--white); margin-left: .12em; align-self: center;
    animation: blink .7s steps(1) infinite, caretOut .3s 2.4s forwards;
  }
  @keyframes blink { 50% { opacity: 0; } }
  @keyframes caretOut { to { opacity: 0; visibility: hidden; } }

  .sub {
    margin: 22px 0 0; font-family: var(--f-en); font-weight: 600;
    font-size: clamp(14px, 1.6vw, 18px); letter-spacing: .32em;
    opacity: 0; animation: rise .8s 1.45s var(--ease-out) forwards;
  }
  .tagline {
    margin: clamp(40px, 6vw, 64px) 0 0; display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 6px 14px;
    opacity: 0; animation: rise .8s 1.7s var(--ease-out) forwards;
  }
  .tagline .lead { font-size: clamp(13px, 1.4vw, 16px); font-weight: 500; letter-spacing: .1em; }
  .move {
    position: relative; font-family: var(--f-hand); font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2; padding: 0 .25em; letter-spacing: .08em;
  }
  .move::before {
    content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: .12em; height: .42em;
    background: var(--pink); border-radius: 3px; transform: scaleX(0); transform-origin: left;
    animation: marker .7s 2.2s var(--ease-out) forwards;
  }
  @keyframes marker { to { transform: scaleX(1); } }
  .move .w { display: inline-block; animation: handIn .5s var(--ease-spring) backwards; }
  .move .w:nth-child(1) { animation-delay: 1.9s; }
  .move .w:nth-child(2) { animation-delay: 1.98s; }
  .move .w:nth-child(3) { animation-delay: 2.06s; }
  .move .w:nth-child(4) { animation-delay: 2.14s; }
  .move .w:nth-child(5) { animation-delay: 2.22s; }
  @keyframes handIn { from { opacity: 0; transform: translateY(12px) rotate(-10deg) scale(.7); } to { opacity: 1; transform: none; } }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn { to { opacity: 1; } }

  .hero-hint {
    margin-top: 28px; font-family: var(--f-en); font-size: 11px; letter-spacing: .24em; opacity: 0;
    animation: fadeIn 1s 2.8s forwards;
  }
  .hero-hint b { font-weight: 500; opacity: .75; }

  .scroll-cue {
    position: absolute; right: calc(var(--gutter) + 8px); bottom: 190px; z-index: 3;
    writing-mode: vertical-rl; font-family: var(--f-en); font-size: 11px; letter-spacing: .3em;
    display: flex; align-items: center; gap: 12px; text-decoration: none;
  }
  .scroll-cue::after {
    content: ""; width: 1px; height: 64px; background: linear-gradient(var(--white), transparent);
    animation: cue 2s ease-in-out infinite;
  }
  @keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

  .waves { position: absolute; left: 0; right: 0; bottom: -1px; height: 150px; z-index: 2; pointer-events: none; }
  .waves svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
  .waves .w1 { animation: waveX 22s linear infinite; opacity: .35; }
  .waves .w2 { animation: waveX 14s linear infinite reverse; }
  .waves path { fill: var(--paper); }
  @keyframes waveX { to { transform: translateX(-50%); } }

  #sparks { position: absolute; inset: 0; z-index: 4; pointer-events: none; width: 100%; height: 100%; }

  /* ---------- Marquee ---------- */
  .marquee {
    overflow: hidden; padding-block: 18px 8px; border-bottom: 1px solid var(--line);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
  .marquee-track span {
    font-family: var(--f-en); font-weight: 700; font-style: italic;
    font-size: clamp(22px, 3.2vw, 36px); letter-spacing: .02em; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 28px; padding-right: 28px;
    color: transparent; -webkit-text-stroke: 1px var(--blue);
  }
  .marquee-track span:nth-child(3n+1) { color: var(--ink); -webkit-text-stroke: 0; }
  .marquee-track span::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ---------- Section titles ---------- */
  .sec-title {
    margin: 0; font-family: var(--f-en); font-style: italic; font-weight: 800;
    line-height: .9; letter-spacing: -.01em; position: relative; display: inline-block;
    font-size: clamp(64px, 10vw, 120px);
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
    transform: rotate(-6deg); transform-origin: left bottom;
  }
  .sec-title .tiny {
    position: absolute; left: .55em; bottom: -.36em; white-space: nowrap;
    font-size: .32em; font-weight: 800; letter-spacing: .01em;
    background: var(--grad); -webkit-background-clip: text; background-clip: text;
  }
  .sec-title .tiny em { font-style: italic; font-size: .62em; color: var(--paper); -webkit-text-stroke: 1.2px var(--pink); margin-right: .15em; }
  .kicker {
    font-family: var(--f-en); font-weight: 600; font-size: 12px; letter-spacing: .3em; color: var(--pink);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }

  /* reveal on scroll (progressive enhancement) */
  .js .reveal { opacity: 0; transform: translate3d(0, 28px, 0); }
  .js .reveal.in { opacity: 1; transform: none; transition: opacity .8s ease-out, transform .9s var(--ease-out); }

  /* headings: the word slides up out of a mask, then the small line follows */
  .st-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .06em .16em .08em .04em; margin: -.06em -.16em -.08em -.04em; }
  .st-in { display: inline-block; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .js .sec-title .st-in { transform: translate3d(0, 110%, 0); }
  .js .sec-title.in .st-in { transform: none; transition: transform 1s cubic-bezier(.16, 1, .3, 1); }
  .js .sec-title .tiny { opacity: 0; transform: translate3d(-16px, 0, 0); }
  .js .sec-title.in .tiny { opacity: 1; transform: none; transition: opacity .6s .45s ease-out, transform .8s .45s var(--ease-out); }
  /* sub headings: simple rise + fade */
  .js .wipe { opacity: 0; transform: translate3d(0, 18px, 0); }
  .js .wipe.in { opacity: 1; transform: none; transition: opacity .7s .1s ease-out, transform .8s .1s var(--ease-out); }
  .js .kicker::before { transform: scaleX(0); transform-origin: left; }
  .js .in .kicker::before, .js .kicker.in::before { transform: scaleX(1); transition: transform .6s .1s var(--ease-out); }

  /* ---------- About ---------- */
  .about { padding-block: clamp(80px, 11vw, 140px) clamp(60px, 8vw, 100px); position: relative; }
  .about-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 88px); align-items: start;
  }
  .about-text { display: grid; gap: 36px; padding-top: 10px; }
  .timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; position: relative; }
  .timeline::before {
    content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px;
    background: linear-gradient(var(--pink), var(--blue));
  }
  .timeline li { display: grid; grid-template-columns: 15px 88px 1fr; gap: 14px; align-items: baseline; padding-block: 10px; }
  .timeline li::before {
    content: ""; width: 15px; height: 15px; border-radius: 50%; background: var(--paper);
    border: 2px solid var(--blue); position: relative; top: 3px; transition: background .3s, transform .3s var(--ease-spring);
  }
  .timeline li:last-child::before { background: var(--pink); border-color: var(--pink); box-shadow: 0 0 0 6px rgba(214, 85, 128, .18); animation: pulse 2s infinite; }
  @keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(214, 85, 128, 0); } }
  .timeline .when { font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .12em; color: var(--pink); white-space: nowrap; }
  .timeline p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
  .timeline p strong { color: var(--ink); font-weight: 700; }

  .statement {
    margin: 0; padding: 28px 30px; border-radius: 20px; position: relative;
    background: var(--mist); font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; line-height: 1.9; color: var(--ink);
  }
  .statement .hl {
    font-family: var(--f-hand); font-weight: 600; font-size: 1.35em; color: var(--pink);
    background: linear-gradient(transparent 62%, rgba(214, 85, 128, .2) 62%); padding: 0 .1em;
  }
  .statement small { display: block; margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
  .statement::before {
    content: "“"; position: absolute; top: -.35em; right: 18px; font-family: var(--f-en); font-weight: 800;
    font-size: 96px; line-height: 1; color: var(--pink); opacity: .9;
  }

  /* collage */
  .collage {
    position: relative; display: grid; gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: clamp(60px, 7vw, 86px);
  }
  .ph {
    position: relative; border-radius: 22px; overflow: hidden; margin: 0;
    background: linear-gradient(135deg, #F8D5E2, #DCD6F2 55%, #C9D5F5);
    transition: transform .6s var(--ease-out), box-shadow .6s;
    box-shadow: 0 16px 40px -18px rgba(42, 53, 112, .35);
  }
  .ph .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s var(--ease-out); }
  .ph figcaption {
    position: absolute; left: 14px; bottom: 12px; font-family: var(--f-en); font-size: 11px; letter-spacing: .2em;
    color: var(--ink-soft); z-index: 0;
  }
  .ph .img { z-index: 1; }
  .ph.p1 { grid-column: 1 / 7; grid-row: span 4; }
  .ph.p2 { grid-column: 1 / 4; grid-row: span 3; background: linear-gradient(135deg, #FBD9E4, #F4C6D6); }
  .ph.p3 { grid-column: 4 / 7; grid-row: span 4; background: linear-gradient(160deg, #CFE0FB, #D9D2F3); }
  .ph.p4 { grid-column: 1 / 4; grid-row: span 3; background: linear-gradient(135deg, #E4D8F4, #CFD8F6); }
  .ph.p5 { grid-column: 4 / 7; grid-row: span 2; background: linear-gradient(135deg, #F7DDE6, #DDE3FA); }

  .badge {
    position: absolute; z-index: 3; width: clamp(104px, 11vw, 132px); aspect-ratio: 1; max-width: 100%;
    left: -34px; top: 41%; display: grid; place-items: center;
    border-radius: 50%; background: var(--grad); color: var(--white);
    box-shadow: 0 14px 30px -10px rgba(154, 79, 144, .55);
  }
  .badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
  .badge text { font-family: var(--f-en); font-weight: 600; font-size: 10.4px; letter-spacing: .24em; fill: var(--white); }
  .badge .core { font-family: var(--f-hand); font-size: 15px; line-height: 1.2; text-align: center; transition: transform .4s var(--ease-spring); }
  .badge:hover .core { transform: scale(1.18) rotate(-8deg); }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* skills */
  .skills { margin-top: clamp(56px, 8vw, 96px); display: grid; gap: 22px; }
  .skills-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
  .skills-head h3 { margin: 0; font-family: var(--f-en); font-weight: 700; font-size: 26px; letter-spacing: .14em; color: var(--ink); }
  .apps { display: flex; gap: 10px; flex-wrap: wrap; }
  .app {
    width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
    font-family: var(--f-en); font-weight: 700; font-size: 18px; letter-spacing: 0;
    transition: transform .35s var(--ease-spring);
  }
  .app.ai { background: #330000; color: #FF9A00; }
  .app.ps { background: #001E36; color: #31A8FF; }
  .app.pr { background: #00005B; color: #9999FF; }
  .app.ae { background: #00005B; color: #9999FF; }
  .app.xd { background: #470137; color: #FF61F6; }
  .skill-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .skill {
    position: relative; overflow: hidden; border-radius: 24px; padding: 28px 30px 30px;
    background: var(--white); border: 1px solid var(--line);
    transition: transform .5s var(--ease-out), border-color .5s;
  }
  .skill::after {
    content: ""; position: absolute; inset: auto -30% -70% auto; width: 70%; aspect-ratio: 1; border-radius: 50%;
    background: var(--grad); opacity: .1; transition: transform .8s var(--ease-out), opacity .5s;
  }
  .skill h4 { margin: 0 0 16px; font-family: var(--f-en); font-weight: 600; font-size: 22px; letter-spacing: .06em; color: var(--blue); display: flex; align-items: baseline; gap: 10px; }
  .skill h4 small { font-family: var(--f-jp); font-size: 12px; font-weight: 500; color: var(--ink-soft); letter-spacing: .1em; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
  .chips span {
    font-family: var(--f-en); font-weight: 500; font-size: 13.5px; letter-spacing: .06em;
    padding: 6px 14px; border-radius: 999px; background: var(--mist); color: var(--ink);
    transition: background .3s, color .3s;
  }
  .chips span.more { background: transparent; border: 1px dashed var(--line); color: var(--ink-soft); }

  /* ---------- Work ---------- */
  .work { padding-block: clamp(70px, 10vw, 130px) clamp(80px, 10vw, 120px); position: relative; overflow: hidden; }
  .work::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 100%; z-index: -1;
    background: radial-gradient(60% 50% at 80% 10%, rgba(59, 85, 165, .07), transparent 70%),
                radial-gradient(50% 45% at 10% 80%, rgba(214, 85, 128, .07), transparent 70%);
  }
  .work-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 36px 48px; }
  .work-head p { margin: 0; max-width: 34em; color: var(--ink-soft); }
  .work-head p strong { color: var(--ink); }
  .reel { margin-top: clamp(56px, 7vw, 84px); display: grid; gap: clamp(14px, 2vw, 22px); }
  .row { display: flex; width: max-content; gap: clamp(14px, 2vw, 22px); animation: reel 48s linear infinite; }
  .row.rev { animation-direction: reverse; animation-duration: 56s; }
  .reel:hover .row { animation-play-state: paused; }
  @keyframes reel { to { transform: translateX(calc(-50% - clamp(7px, 1vw, 11px))); } }
  .frame {
    --size: clamp(150px, 19vw, 240px);
    width: var(--size); height: var(--size); flex: none; border-radius: 50%;
    position: relative; overflow: hidden; display: grid; place-items: center; text-align: center;
    text-decoration: none; color: var(--ink);
    background: var(--tint, linear-gradient(135deg, #F7D6E2, #D8DCF6));
    transition: transform .55s var(--ease-spring), border-radius .55s var(--ease-out), box-shadow .5s;
  }
  .frame.sq { border-radius: 28%; }
  .frame::before {
    content: ""; position: absolute; inset: 10px; border-radius: inherit; border: 1.5px dashed rgba(42, 53, 112, .25);
    transition: inset .5s var(--ease-out), border-color .4s;
  }
  .frame .cat { font-family: var(--f-en); font-weight: 700; font-style: italic; font-size: clamp(20px, 2.2vw, 28px); line-height: 1; position: relative; }
  .frame .jp { display: block; margin-top: 8px; font-size: 11.5px; font-weight: 500; letter-spacing: .12em; color: var(--ink-soft); font-style: normal; font-family: var(--f-jp); }
  .frame .view {
    position: absolute; inset: 0; display: grid; place-items: center; background: var(--grad); color: var(--white);
    font-family: var(--f-en); font-weight: 600; letter-spacing: .24em; font-size: 12px;
    clip-path: circle(0% at 50% 50%); transition: clip-path .55s var(--ease-out);
  }
  .frame:hover, .frame:focus-visible { transform: scale(1.06) rotate(-4deg); box-shadow: 0 24px 40px -18px rgba(154, 79, 144, .55); }
  .frame:hover::before { inset: 16px; border-color: rgba(255, 255, 255, .7); z-index: 1; }
  .frame:hover .view, .frame:focus-visible .view { clip-path: circle(75% at 50% 50%); }
  .t1 { --tint: linear-gradient(135deg, #F7D2DF, #F0B8CB); }
  .t2 { --tint: linear-gradient(135deg, #D5DDF7, #BFCBF2); }
  .t3 { --tint: linear-gradient(135deg, #E7D9F3, #D6C6EE); }
  .t4 { --tint: linear-gradient(135deg, #FBE3EA, #E1E6FA); }

  .more-btn {
    margin: clamp(48px, 6vw, 72px) auto 0; display: flex; width: fit-content; align-items: center; gap: 18px;
    padding: 14px 16px 14px 34px; border-radius: 999px; text-decoration: none;
    background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--grad) border-box;
    border: 1.5px solid transparent; color: var(--ink);
    font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .24em;
    transition: color .35s, background .35s;
    position: relative; overflow: hidden;
  }
  .more-btn .arr {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    background: var(--grad); color: var(--white); transition: transform .45s var(--ease-spring);
  }
  .more-btn:hover { background: var(--grad) padding-box, var(--grad) border-box; color: var(--white); }
  .more-btn:hover .arr { transform: rotate(45deg) scale(1.1); background: var(--white); color: var(--pink); }

  /* ---------- Service (ご依頼について) ---------- */
  .service { margin-top: clamp(72px, 9vw, 120px); }
  .service-box {
    display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 64px);
    padding: clamp(28px, 4.5vw, 56px); border-radius: 32px; background: var(--white);
    border: 1px solid var(--line); position: relative; overflow: hidden;
  }
  .service-box::before {
    content: ""; position: absolute; width: 380px; aspect-ratio: 1; max-width: 100%; border-radius: 50%;
    left: -140px; bottom: -200px; background: var(--grad); opacity: .08;
  }
  .service-lead h3 { margin: 14px 0 0; font-size: clamp(20px, 2.3vw, 26px); line-height: 1.7; font-weight: 700; text-wrap: balance; }
  .service-lead h3 em { font-style: normal; background: linear-gradient(transparent 64%, rgba(214, 85, 128, .22) 64%); }
  .service-lead p { margin: 18px 0 0; color: var(--ink-soft); }
  .service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; position: relative; }
  .service-list li {
    display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center;
    padding: 16px 20px; border-radius: 18px; background: var(--mist);
    font-weight: 700; font-size: 15.5px; transition: transform .45s var(--ease-spring), background .3s;
  }
  .service-list .ic {
    width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
    background: var(--white); color: var(--pink);
  }
  .service-list .ic svg { width: 24px; height: 24px; }
  .service-list small { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }
  .service-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
  .pill-btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 12px 14px 12px 26px; border-radius: 999px;
    background: var(--grad); color: var(--white); text-decoration: none;
    font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .22em;
    box-shadow: 0 12px 24px -12px rgba(154, 79, 144, .7); transition: transform .4s var(--ease-spring), box-shadow .4s;
  }
  .pill-btn .arr { width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, .22); display: grid; place-items: center; transition: transform .4s var(--ease-spring); }
  .pill-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 30px -12px rgba(154, 79, 144, .8); }
  .pill-btn:hover .arr { transform: rotate(45deg); }

  /* ---------- Project ---------- */
  .project { padding-block: clamp(40px, 6vw, 80px) clamp(90px, 11vw, 140px); }
  .project-card {
    position: relative; text-align: center; border-radius: 40px;
    padding: clamp(44px, 6vw, 80px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 72px);
    background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--grad) border-box;
    border: 2px solid transparent;
  }
  .project-card .hook { font-weight: 700; letter-spacing: .14em; font-size: 14px; color: var(--ink); }
  .project-title { margin: 18px auto 0; line-height: 1; position: relative; display: block; width: min(620px, 100%); }
  .project-title img { display: block; width: 100%; height: auto; }
  .js .project-title img { opacity: 0; transform: translate3d(0, -14px, 0) scale(1.04); }
  .js .in .project-title img { opacity: 1; transform: none; transition: opacity .7s .2s ease-out, transform 1s .2s var(--ease-out); }
  .project-title .jp {
    display: block; font-family: var(--f-hand); font-weight: 600; font-size: clamp(46px, 8vw, 92px);
    letter-spacing: .02em; color: var(--pink);
  }
  .project-title .jp .pop { display: inline-block; animation: pop 2.6s var(--ease-spring) infinite; transform-origin: 50% 100%; }
  @keyframes pop { 0%, 70%, 100% { transform: none; } 78% { transform: translateY(-12px) scale(1.12) rotate(-6deg); } 88% { transform: translateY(2px) scale(.96); } }
  .project-title .en {
    display: block; margin-top: -6px; text-align: right; font-family: var(--f-en); font-style: italic; font-weight: 800;
    font-size: clamp(22px, 3vw, 34px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .bubble {
    margin: 32px auto 0; width: fit-content; max-width: 100%; position: relative;
    padding: 14px 28px; border-radius: 999px; background: var(--white); border: 2px solid var(--blue);
    font-weight: 700; font-size: clamp(14px, 1.7vw, 17px); line-height: 1.7; text-wrap: balance;
  }
  .bubble::after {
    content: ""; position: absolute; left: 50%; bottom: -10px; width: 16px; height: 16px; background: var(--white);
    border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: translateX(-50%) rotate(45deg);
  }
  .bubble b { color: var(--pink); }
  .project-card > p { max-width: 40em; margin: 34px auto 0; color: var(--ink-soft); text-wrap: pretty; }
  .worries { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(14px, 3vw, 36px); margin-top: 40px; }
  .worry {
    --s: clamp(118px, 15vw, 150px);
    width: var(--s); height: var(--s); border-radius: 50%; border: 0; padding: 0; cursor: pointer;
    background: transparent; perspective: 600px; position: relative; font: inherit; color: var(--white);
  }
  .worry .base { position: absolute; inset: 8px 0 -8px; border-radius: 50%; background: #A23A63; }
  .worry .face {
    position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center;
    transition: transform .6s var(--ease-spring), translate .15s;
    transform-style: preserve-3d;
  }
  .worry .side {
    position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center; text-align: center;
    backface-visibility: hidden; -webkit-backface-visibility: hidden; padding: 12px;
    font-weight: 700; font-size: clamp(14px, 1.6vw, 17px); line-height: 1.45;
  }
  .worry .front { background: var(--pink); }
  .worry .back { background: var(--grad); transform: rotateY(180deg); font-size: clamp(12.5px, 1.3vw, 14px); }
  .worry .back::before { content: "ビビッと解決"; display: block; font-family: var(--f-hand); font-weight: 600; font-size: 1.05em; opacity: .9; margin-bottom: 2px; }
  .worry:hover .face { translate: 0 3px; }
  .worry:active .face { translate: 0 8px; }
  .worry[aria-pressed="true"] .face { transform: rotateY(180deg); }
  .worry .tap {
    position: absolute; right: -4px; top: -4px; z-index: 2; background: var(--white); color: var(--pink);
    font-family: var(--f-en); font-weight: 700; font-size: 10px; letter-spacing: .16em; padding: 4px 9px; border-radius: 999px;
    box-shadow: 0 4px 10px rgba(42, 53, 112, .15); animation: bob 1.8s ease-in-out infinite alternate;
  }
  .worry[aria-pressed="true"] .tap { opacity: 0; }
  .worry-note { margin-top: 30px !important; font-weight: 700; color: var(--ink) !important; }
  .worry-note b { color: var(--pink); }

  /* ---------- Blog (Travel) ---------- */
  section.blog { /* トップページの帯だけ（WordPressの body.blog と区別） */
    position: relative; isolation: isolate; overflow: hidden; color: var(--white);
    background: var(--grad); background-size: 180% 100%; animation: gradShift 14s ease-in-out infinite alternate;
    padding-block: clamp(90px, 11vw, 150px);
  }
  .blog-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
  .blog-title { margin: 0; line-height: 1; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
  .blog-title .hand { font-family: var(--f-hand); font-weight: 600; font-size: clamp(42px, 6vw, 72px); }
  .blog-title .en { font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: clamp(56px, 8vw, 104px); letter-spacing: -.01em; }
  .blog-copy { margin: 26px 0 0; font-size: 15px; line-height: 2.1; }
  .blog-copy strong { font-weight: 700; background: linear-gradient(transparent 60%, rgba(255, 255, 255, .25) 60%); }
  .note-btn {
    margin-top: 34px; display: inline-flex; align-items: center; gap: 16px; padding: 12px 14px 12px 28px;
    border-radius: 999px; background: var(--white); color: var(--ink); text-decoration: none;
    font-weight: 700; font-size: 14px; letter-spacing: .1em; transition: transform .4s var(--ease-spring), box-shadow .4s;
  }
  .note-btn .note-mark { font-family: var(--f-en); font-weight: 700; font-size: 17px; letter-spacing: 0; }
  .note-btn .arr { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: var(--white); display: grid; place-items: center; transition: transform .45s var(--ease-spring); }
  .note-btn:hover { transform: translateY(-3px) rotate(-1.5deg); box-shadow: 0 18px 30px -14px rgba(0, 0, 0, .35); }
  .note-btn:hover .arr { transform: rotate(45deg) scale(1.1); }
  .blog-hint { display: block; margin-top: 12px; font-size: 12px; opacity: .8; letter-spacing: .08em; }

  .stamps { position: relative; height: clamp(320px, 38vw, 440px); }
  .flight { position: absolute; inset: -10% -8%; width: 116%; height: 120%; z-index: 0; pointer-events: none; }
  .flight .route { fill: none; stroke: rgba(255, 255, 255, .6); stroke-width: 1.6; stroke-dasharray: 2 9; stroke-linecap: round; }
  .flight .plane { fill: var(--white); }
  .stamp {
    --w: 204px; --h: 252px;
    position: absolute; width: var(--w); height: var(--h); padding: 12px; z-index: 1;
    background: radial-gradient(circle at 50% 50%, transparent 4.5px, var(--white) 5px) -6px -6px / 12px 12px;
    filter: drop-shadow(0 18px 24px rgba(20, 20, 60, .25));
    transition: transform .6s var(--ease-spring), z-index 0s;
  }
  .stamp .in { position: relative; height: 100%; background: var(--white); padding: 8px; display: flex; flex-direction: column; gap: 8px; }
  .stamp .pic { flex: 1; position: relative; overflow: hidden; background: linear-gradient(160deg, #CFE0FB, #F6CFDD); }
  .stamp .pic .img { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .stamp .meta { display: flex; justify-content: space-between; align-items: baseline; color: var(--ink); font-family: var(--f-en); font-weight: 700; font-size: 11px; letter-spacing: .14em; }
  .stamp .meta b { font-size: 18px; color: var(--pink); letter-spacing: 0; }
  .stamp.s1 { left: 2%; top: 14%; transform: rotate(-9deg); }
  .stamp.s2 { left: 34%; top: 0; transform: rotate(4deg); z-index: 2; }
  .stamp.s3 { right: 3%; top: 46%; transform: rotate(7deg); --w: 240px; --h: 168px; }
  .stamp .pic.t-a { background: linear-gradient(160deg, #BFD8F7, #9FC2F0); }
  .stamp .pic.t-b { background: linear-gradient(160deg, #F8D2DE, #F1B0C6); }
  .stamp .pic.t-c { background: linear-gradient(160deg, #E0D5F4, #C9D5F6); }
  .postmark {
    position: absolute; z-index: 4; left: 26%; bottom: 4%; width: 116px; height: 116px; max-width: 100%; border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .85); display: grid; place-items: center; text-align: center;
    font-family: var(--f-en); font-weight: 700; font-size: 11px; letter-spacing: .18em; line-height: 1.5;
    transform: rotate(-16deg);
  }
  .postmark::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, .7); }
  .postmark b { display: block; font-family: var(--f-hand); font-weight: 600; font-size: 17px; letter-spacing: .04em; }

  /* ---------- Contact ---------- */
  .contact { padding-block: clamp(90px, 11vw, 140px); }
  .contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
  .contact-side { display: grid; gap: 26px; align-content: start; }
  .contact-side p { margin: 0; color: var(--ink-soft); }
  .contact-side .big { font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--ink); line-height: 1.8; }
  .contact-types { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
  .contact-types li { display: flex; gap: 12px; align-items: baseline; font-size: 14px; color: var(--ink-soft); }
  .contact-types li b { font-weight: 700; color: var(--ink); min-width: 9em; }
  .form {
    display: grid; gap: 26px; padding: clamp(24px, 4vw, 48px); border-radius: 32px; background: var(--white);
    border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(42, 53, 112, .35);
  }
  .form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  .field { display: grid; gap: 8px; }
  .field label, .field legend { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; padding: 0; }
  .req { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; color: var(--white); background: var(--pink); padding: 1px 8px; border-radius: 999px; }
  .opt { font-size: 10.5px; font-weight: 500; letter-spacing: .1em; color: var(--ink-soft); border: 1px solid var(--line); padding: 0 8px; border-radius: 999px; }
  .input {
    width: 100%; font: inherit; font-size: 15px; color: var(--ink); letter-spacing: .03em;
    padding: 13px 16px; border-radius: 14px; border: 1.5px solid transparent;
    background: linear-gradient(var(--mist), var(--mist)) padding-box, linear-gradient(var(--line), var(--line)) border-box;
    transition: background .3s, box-shadow .3s;
  }
  .input::placeholder { color: #A3A8C4; }
  .input:hover { background: linear-gradient(#EEEAF6, #EEEAF6) padding-box, linear-gradient(var(--line), var(--line)) border-box; }
  .input:focus { outline: none; background: linear-gradient(var(--white), var(--white)) padding-box, var(--grad) border-box; box-shadow: 0 8px 22px -12px rgba(154, 79, 144, .55); }
  textarea.input { min-height: 180px; resize: vertical; line-height: 1.8; }
  fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
  .radios { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
  .radios input { position: absolute; opacity: 0; pointer-events: none; }
  .radios label {
    font-weight: 500; font-size: 14px; padding: 9px 18px; border-radius: 999px; cursor: pointer;
    background: var(--mist); border: 1.5px solid transparent; transition: background .3s, color .3s, transform .35s var(--ease-spring);
  }
  .radios label:hover { transform: translateY(-2px); }
  .radios input:checked + label { background: var(--grad); color: var(--white); }
  .radios input:focus-visible + label { outline: 2px solid var(--pink); outline-offset: 3px; }
  .privacy-note { margin: 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.9; }
  .privacy-note a { color: var(--blue); }
  .send-wrap { display: grid; justify-items: center; gap: 12px; }
  .send {
    position: relative; overflow: hidden; border: 0; cursor: pointer;
    min-width: min(280px, 100%); padding: 18px 40px; border-radius: 999px;
    background: var(--grad); color: var(--white);
    font-family: var(--f-en); font-weight: 700; font-size: 15px; letter-spacing: .34em;
    box-shadow: 0 16px 30px -14px rgba(154, 79, 144, .8); transition: transform .4s var(--ease-spring), box-shadow .4s;
  }
  .send:hover { transform: translateY(-3px) scale(1.02); }
  .send .lbl { display: inline-flex; align-items: center; gap: 12px; transition: transform .5s var(--ease-out), opacity .3s; }
  .send .lbl svg { width: 18px; height: 18px; transition: transform .5s var(--ease-spring); }
  .send:hover .lbl svg { transform: translate(4px, -4px) rotate(-8deg); }
  .send.fly .lbl svg { animation: fly 1s var(--ease-out) forwards; }
  @keyframes fly { 40% { transform: translate(-6px, 4px); } 100% { transform: translate(260px, -80px) rotate(-20deg); opacity: 0; } }
  .form-status { min-height: 1.6em; margin: 0; font-size: 13px; color: var(--pink); font-weight: 700; text-align: center; }

  /* ---------- Footer ---------- */
  .site-footer {
    position: relative; isolation: isolate; color: var(--white); background: var(--grad);
    padding-block: 150px 36px; padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px)); overflow: hidden;
  }
  .site-footer .waves { top: -1px; bottom: auto; transform: scaleY(-1); }
  .foot-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px 64px; align-items: end; }
  .foot-logo { margin: 0; line-height: 1; --h: clamp(38px, 5.6vw, 66px); }
  .foot-tag { margin: 18px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; font-size: 13px; }
  .foot-tag .move { font-size: 26px; }
  .foot-tag .move::before { transform: scaleX(1); animation: none; }
  .foot-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; }
  .foot-nav a { font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .2em; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; padding-block: 4px; width: fit-content; }
  .foot-nav a.sub-link { font-family: var(--f-jp); font-weight: 500; letter-spacing: .08em; font-size: 12.5px; opacity: .85; padding-left: 14px; position: relative; }
  .foot-nav a.sub-link::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 1px; background: currentColor; }
  .foot-nav a:hover { opacity: .75; }
  .foot-bottom {
    margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .3);
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; font-size: 12px;
  }
  .foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
  .foot-bottom a { text-decoration: none; opacity: .85; }
  .foot-bottom a:hover { opacity: 1; text-decoration: underline; }
  .foot-bottom small { font-family: var(--f-en); letter-spacing: .2em; font-size: 12px; }
  .to-top {
    position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 40;
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; text-decoration: none;
    background: var(--white); color: var(--pink); font-family: var(--f-en); font-weight: 700; font-size: 10px; letter-spacing: .12em;
    box-shadow: 0 10px 24px -10px rgba(42, 53, 112, .45); border: 1.5px solid rgba(214, 85, 128, .35);
    opacity: 0; transform: translateY(16px) scale(.8); pointer-events: none;
    transition: opacity .4s, transform .5s var(--ease-spring);
  }
  .to-top.show { opacity: 1; transform: none; pointer-events: auto; }
  .to-top:hover { transform: translateY(-4px) rotate(-8deg); }

  /* ---------- Responsive ---------- */
  @media (max-width: 860px) {
    .menu-btn { display: block; z-index: 2; }
    .nav {
      position: fixed; inset: 0; z-index: 1; height: 100vh; height: 100dvh;
      flex-direction: column; justify-content: center; gap: 22px;
      padding: calc(72px + env(safe-area-inset-top, 0px)) var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px));
      background: var(--grad); color: var(--white); overflow-y: auto;
      clip-path: circle(0% at calc(100% - var(--gutter) - 22px) calc(36px + env(safe-area-inset-top, 0px)));
      visibility: hidden;
      transition: clip-path .4s cubic-bezier(.4, 0, .2, 1), visibility 0s .4s;
    }
    .nav a { font-size: 20px; }
    .menu-open .nav {
      clip-path: circle(150% at calc(100% - var(--gutter) - 22px) calc(36px + env(safe-area-inset-top, 0px)));
      visibility: visible; transition: clip-path .45s cubic-bezier(.4, 0, .2, 1), visibility 0s;
    }
    .site-header.menu-open { color: var(--white); }
    .site-header.menu-open::before { background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .nav .nav-cta, .site-header.scrolled .nav-cta, .site-header.solid .nav-cta { background: var(--white); color: var(--blue); margin-top: 10px; }
    .about-grid { grid-template-columns: minmax(0, 1fr); }
    .collage { order: -1; }
    .badge { left: auto; right: -6px; top: -40px; }
    .skill-cards { grid-template-columns: minmax(0, 1fr); }
    .artboard { inset: 92px 16px 140px; }
    .fl.f1 { left: 4%; top: 17%; } .fl.f1 > * { width: 56px; height: 56px; }
    .fl.f3 { right: 4%; top: 64%; } .fl.f3 > * { width: 44px; height: 44px; }
    .scroll-cue { display: none; }
    .service-box, .blog-grid, .contact-grid, .foot-grid { grid-template-columns: minmax(0, 1fr); }
    .contact-side { position: static; }
    .stamps { max-width: 520px; width: 100%; margin-inline: auto; }
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: minmax(0, 1fr); }
    .stamp { --w: 144px; --h: 180px; }
    .stamp.s3 { --w: 168px; --h: 120px; }
    .stamps { height: 300px; }
    .postmark { width: 92px; height: 92px; font-size: 9px; left: 30%; }
    .contact-types li { flex-direction: column; gap: 0; }
  }
  @media (max-width: 480px) {
    .timeline li { grid-template-columns: 15px 1fr; }
    .timeline .when { grid-column: 2; }
    .timeline p { grid-column: 2; margin-top: -8px; }
    .cmyk small { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .01ms !important; }
    .row, .marquee-track, .waves svg, .badge svg { animation: none !important; }
    html { scroll-behavior: auto; }
  }

/* =====================================================
   Sub pages (About / Portfolio)
   ===================================================== */
.hero.page-hero { min-height: clamp(460px, 64svh, 620px); }
.page-hero .hero-inner { padding: 136px var(--gutter) 176px; }
.crumbs {
  margin: 0 0 22px; font-family: var(--f-en); font-size: 11px; letter-spacing: .28em;
  display: flex; justify-content: center; gap: 10px; opacity: 0; animation: fadeIn .8s .2s forwards;
}
.crumbs a { text-decoration: none; opacity: .75; }
.crumbs a:hover { opacity: 1; text-decoration: underline; }
.page-title {
  margin: 0; font-family: var(--f-en); font-style: italic; font-weight: 800;
  font-size: clamp(76px, 14vw, 180px); line-height: .9; letter-spacing: -.01em;
  display: inline-flex; transform: rotate(-5deg);
}
.page-title .l { display: inline-block; animation: handIn .6s var(--ease-spring) backwards; }
.page-title .l:nth-child(1) { animation-delay: .30s; } .page-title .l:nth-child(2) { animation-delay: .38s; }
.page-title .l:nth-child(3) { animation-delay: .46s; } .page-title .l:nth-child(4) { animation-delay: .54s; }
.page-title .l:nth-child(5) { animation-delay: .62s; } .page-title .l:nth-child(6) { animation-delay: .70s; }
.page-title .l:nth-child(7) { animation-delay: .78s; } .page-title .l:nth-child(8) { animation-delay: .86s; }
.page-title .l:nth-child(9) { animation-delay: .94s; }
.page-sub {
  margin: 30px 0 0; font-family: var(--f-logo); font-weight: 700; font-size: clamp(15px, 1.8vw, 20px); letter-spacing: .3em;
  opacity: 0; animation: rise .8s 1.1s var(--ease-out) forwards;
}
.sec { padding-block: clamp(80px, 10vw, 130px) 0; }
.sec-head { display: grid; gap: 14px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 700; line-height: 1.5; text-wrap: balance; }
.sec-head h2 em { font-style: normal; font-family: var(--f-hand); font-weight: 600; color: var(--pink); font-size: 1.15em; }

/* ----- About: What is vividus ----- */
.what { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.word-card {
  position: relative; border-radius: 32px; padding: clamp(32px, 5vw, 56px); color: var(--white); overflow: hidden;
  background: var(--grad); background-size: 180% 100%; animation: gradShift 10s ease-in-out infinite alternate;
  display: grid; gap: 14px; isolation: isolate;
}
.word-card::after {
  content: ""; position: absolute; z-index: -1; width: 70%; aspect-ratio: 1; border-radius: 50%;
  right: -20%; top: -30%; border: 1.5px solid rgba(255, 255, 255, .35);
}
.word-card .lang { font-family: var(--f-en); font-size: 12px; letter-spacing: .3em; opacity: .85; }
.word-card .word { line-height: 1; --h: clamp(34px, 4.6vw, 60px); }
.word-card .pos { font-family: var(--f-en); font-style: italic; font-size: 14px; opacity: .85; letter-spacing: .06em; }
.word-card .def { font-size: 13px; opacity: .9; letter-spacing: .06em; border-top: 1px solid rgba(255, 255, 255, .35); padding-top: 14px; margin-top: 6px; }
.what-text p { margin: 0; color: var(--ink-soft); }
.what-text p + p { margin-top: 18px; }
.what-text strong { color: var(--ink); }
.meanings { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.mean {
  border-radius: 22px; padding: 18px 8px; text-align: center; background: var(--mist); color: var(--ink);
  transition: background .5s, color .5s, transform .5s var(--ease-spring), box-shadow .5s; cursor: default;
}
.mean b { display: block; font-size: clamp(14px, 1.35vw, 17px); white-space: nowrap; font-weight: 700; line-height: 1.5; }
.mean span { display: block; font-family: var(--f-en); font-style: italic; font-size: 12.5px; color: var(--ink-soft); letter-spacing: .08em; transition: color .5s; }
.mean.is-on { background: var(--grad); color: var(--white); transform: translateY(-6px) rotate(-2deg); box-shadow: 0 16px 28px -14px rgba(154, 79, 144, .7); }
.mean.is-on span { color: rgba(255, 255, 255, .85); }

/* ----- About: profile ----- */
.profile { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
.profile-photos { position: relative; padding-bottom: 18%; }
.profile-photos .ph { border-radius: 28px; }
.profile-photos .pp1 { aspect-ratio: 760 / 586; transform: rotate(-3deg); }
.profile-photos .pp2 {
  position: absolute; right: -4%; bottom: 0; width: 62%; aspect-ratio: 760 / 392; max-width: 100%;
  transform: rotate(4deg); border: 6px solid var(--white); border-radius: 22px;
}
.profile-photos .badge { left: -26px; top: auto; bottom: 30%; }
.name-block { display: grid; gap: 6px; margin-bottom: 30px; }
.name-block .role { font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .3em; color: var(--pink); }
.name-block .name {
  margin: 0; font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: clamp(56px, 8vw, 96px); line-height: .95;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .02em;
}
.profile .timeline { margin-bottom: 30px; }

/* ----- About: favorites ----- */
.favs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.fav {
  --c: var(--pink);
  position: relative; border-radius: 26px; padding: 26px 20px 24px; background: var(--white); border: 1px solid var(--line);
  display: grid; gap: 12px; align-content: start; text-align: center; justify-items: center;
  transition: transform .5s var(--ease-spring), box-shadow .5s, border-color .4s;
}
.fav:nth-child(2) { --c: var(--berry); } .fav:nth-child(3) { --c: var(--violet); } .fav:nth-child(4) { --c: var(--blue); } .fav:nth-child(5) { --c: var(--pink); }
.fav-ic {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--c);
  transition: transform .6s var(--ease-spring);
}
.fav-ic svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fav h3 { margin: 4px 0 0; font-family: var(--f-en); font-weight: 700; font-size: 19px; line-height: 1.15; letter-spacing: .06em; color: var(--c); }
.fav h3 small { display: block; font-size: 11px; font-weight: 500; letter-spacing: .2em; color: var(--ink-soft); }
.fav p { margin: 0; font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); font-weight: 500; }
.fav a { color: var(--c); font-weight: 700; }

/* ----- About: treasure ----- */
.treasure {
  position: relative; overflow: hidden; border-radius: clamp(24px, 4vw, 44px); isolation: isolate;
  min-height: clamp(420px, 56vw, 640px); display: grid; align-items: end; color: var(--white);
}
.treasure .img { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 40%; }
.treasure::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(42, 30, 90, .75)); }
@supports (animation-timeline: view()) {
  .treasure .img { animation: slowZoom linear both; animation-timeline: view(); animation-range: entry 0% exit 20%; }
  @keyframes slowZoom { from { transform: scale(1.18); } to { transform: scale(1); } }
}
.treasure-text { padding: clamp(28px, 5vw, 64px); display: grid; gap: 8px; }
.treasure-text p { margin: 0; font-weight: 700; font-size: clamp(15px, 1.8vw, 20px); letter-spacing: .08em; }
.treasure-text .move { font-size: clamp(44px, 7vw, 88px); width: fit-content; padding: 0 .12em; }
.treasure-text .move::before { animation: none; transform: scaleX(1); opacity: .85; }

/* CTA pair */
.cta-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-block: clamp(70px, 9vw, 110px) clamp(90px, 11vw, 140px); }
.cta {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(28px, 4vw, 44px); text-decoration: none;
  display: grid; gap: 8px; border: 1.5px solid var(--line); background: var(--white); isolation: isolate;
  transition: color .45s, border-color .45s;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grad);
  clip-path: circle(0% at 90% 85%); transition: clip-path .6s var(--ease-out);
}
.cta:hover { color: var(--white); border-color: transparent; }
.cta:hover::before { clip-path: circle(150% at 90% 85%); }
.cta .en { font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: clamp(34px, 4.6vw, 54px); line-height: 1; }
.cta .jp { font-size: 14px; font-weight: 500; }
.cta .arr {
  position: absolute; right: 26px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: var(--white); transition: transform .5s var(--ease-spring), background .3s, color .3s;
}
.cta:hover .arr { transform: rotate(45deg); background: var(--white); color: var(--pink); }

/* ----- Portfolio ----- */
.pf-intro { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 20px 40px; margin-bottom: 28px; }
.pf-intro p { margin: 0; color: var(--ink-soft); max-width: 34em; }
.filter-bar {
  position: sticky; top: calc(72px + env(safe-area-inset-top, 0px)); z-index: 20;
  padding-block: 14px; margin-bottom: 30px;
  background: linear-gradient(var(--paper) 70%, rgba(252, 250, 253, 0));
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn {
  font: inherit; font-family: var(--f-en); font-weight: 600; font-size: 12.5px; letter-spacing: .12em; cursor: pointer;
  padding: 8px 10px 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; transition: transform .35s var(--ease-spring), border-color .3s, background .3s, color .3s;
}
.chip-btn:hover { transform: translateY(-2px); border-color: var(--pink); }
.chip-btn .count { min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--mist); font-size: 11px; display: grid; place-items: center; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.chip-btn[aria-pressed="true"] { background: var(--grad); color: var(--white); border-color: transparent; }
.chip-btn[aria-pressed="true"] .count { background: rgba(255, 255, 255, .25); }
.works { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.work-card {
  width: 100%; font: inherit; color: inherit; text-align: left; cursor: pointer; background: transparent; border: 0; padding: 0;
  display: grid; gap: 14px;
}
.thumb {
  position: relative; display: grid; place-items: center; aspect-ratio: 4 / 3; max-width: 100%; border-radius: 24px; overflow: hidden;
  background: var(--tint, linear-gradient(135deg, #F7D6E2, #D8DCF6));
  transition: transform .6s var(--ease-out), box-shadow .6s, border-radius .6s var(--ease-out);
}
.thumb-in {
  position: absolute; inset: 14px; border-radius: 14px; border: 1.5px dashed rgba(42, 53, 112, .25);
  display: grid; place-content: center; justify-items: center; gap: 8px;
  font-family: var(--f-en); font-size: 11px; font-weight: 600; letter-spacing: .26em; color: var(--ink-soft);
}
.thumb-in svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: .7; }
.view-dot {
  position: absolute; right: 16px; bottom: 16px; width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: var(--white); font-family: var(--f-en); font-weight: 700; font-size: 11px; letter-spacing: .16em;
  transform: scale(0) rotate(-90deg); transition: transform .5s var(--ease-spring);
}
.work-card:hover .thumb, .work-card:focus-visible .thumb { transform: translateY(-6px) rotate(-1.2deg); box-shadow: 0 26px 44px -24px rgba(42, 53, 112, .5); border-radius: 32px; }
.work-card:hover .view-dot, .work-card:focus-visible .view-dot { transform: none; }
.work-meta { display: grid; gap: 4px; padding-inline: 4px; }
.work-meta .tag { font-family: var(--f-en); font-weight: 600; font-size: 11px; letter-spacing: .2em; color: var(--pink); }
.work-meta .work-title { font-weight: 700; font-size: 15.5px; }
.work-meta .work-type { font-size: 12.5px; color: var(--ink-soft); }
.works-empty { text-align: center; color: var(--ink-soft); padding-block: 40px; }
::view-transition-group(*) { animation-duration: .45s; animation-timing-function: cubic-bezier(.2, .8, .2, 1); }

.work-dialog {
  width: min(880px, calc(100% - 32px)); max-height: calc(100% - 32px); padding: 0; border: 0; border-radius: 32px;
  background: var(--paper); color: var(--ink); overflow: auto; box-shadow: 0 40px 80px -30px rgba(20, 20, 60, .5);
}
.work-dialog::backdrop { background: rgba(42, 53, 112, .45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.work-dialog[open] { animation: dlgIn .5s var(--ease-spring); }
@keyframes dlgIn { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.dlg-body { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 0; }
.dlg-thumb { border-radius: 0; aspect-ratio: auto; min-height: 360px; }
.dlg-info { padding: clamp(24px, 4vw, 40px); display: grid; gap: 16px; align-content: start; }
.dlg-info .tag { font-family: var(--f-en); font-weight: 600; font-size: 12px; letter-spacing: .2em; color: var(--pink); }
.dlg-info h3 { margin: 0; font-size: 22px; line-height: 1.5; }
.dlg-info dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 14px; }
.dlg-info dt { font-weight: 700; color: var(--ink-soft); font-size: 12.5px; }
.dlg-info dd { margin: 0; }
.dlg-info p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.dlg-nav { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.dlg-nav .count { font-family: var(--f-en); font-weight: 600; letter-spacing: .12em; font-size: 13px; margin-right: auto; font-variant-numeric: tabular-nums; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; font-size: 16px; transition: transform .35s var(--ease-spring), border-color .3s, background .3s, color .3s;
}
.icon-btn:hover { transform: scale(1.08); border-color: var(--pink); background: var(--pink); color: var(--white); }
.dlg-close { position: absolute; right: 14px; top: 14px; z-index: 2; }

.pf-cta { margin-top: clamp(70px, 9vw, 110px); }

@media (max-width: 1000px) {
  .favs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .what, .profile { grid-template-columns: minmax(0, 1fr); }
  .profile-photos { max-width: 560px; }
  .profile-photos .pp2 { right: 0; }
  .profile-photos .badge { left: auto; right: 6px; top: -34px; bottom: auto; }
  .works { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dlg-body { grid-template-columns: minmax(0, 1fr); }
  .dlg-thumb { min-height: 240px; aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .favs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .favs .fav:last-child { grid-column: 1 / -1; }
  .meanings { grid-template-columns: minmax(0, 1fr); }
  .mean b { white-space: normal; }
  .cta-pair { grid-template-columns: minmax(0, 1fr); }
  .works { grid-template-columns: minmax(0, 1fr); }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .chip-btn { flex: none; }
}

/* =====================================================
   Project page
   ===================================================== */
.pj-hook { margin: 0 0 14px; font-weight: 700; letter-spacing: .14em; font-size: clamp(13px, 1.6vw, 16px); opacity: 0; animation: rise .7s .25s var(--ease-out) forwards; }
.pj-title { margin: 0; display: inline-grid; line-height: 1; }
.pj-title .jp { font-family: var(--f-hand); font-weight: 600; font-size: clamp(50px, 10vw, 128px); letter-spacing: .02em; white-space: nowrap; }
.pj-title .jp .w { display: inline-block; animation: handIn .55s var(--ease-spring) backwards; }
.pj-title .jp .sm { font-size: .7em; }
.pj-title .jp .big { font-size: 1.18em; }
.pj-title .jp .w:nth-child(1) { animation-delay: .40s; } .pj-title .jp .w:nth-child(2) { animation-delay: .48s; }
.pj-title .jp .w:nth-child(3) { animation-delay: .56s; } .pj-title .jp .w:nth-child(4) { animation-delay: .64s; }
.pj-title .jp .w:nth-child(5) { animation-delay: .72s; } .pj-title .jp .w:nth-child(6) { animation-delay: .80s; }
.pj-title .jp .w:nth-child(7) { animation-delay: 1.0s; animation-name: pushIn; animation-duration: .8s; }
.pj-title .jp .w:nth-child(8) { animation-delay: .96s; } .pj-title .jp .w:nth-child(9) { animation-delay: 1.04s; }
@keyframes pushIn { 0% { opacity: 0; transform: translateY(-60px) scale(1.4); } 55% { opacity: 1; transform: translateY(6px) scale(.9, 1.08); } 75% { transform: translateY(-4px) scale(1.04, .96); } 100% { opacity: 1; transform: none; } }
.pj-title .en {
  justify-self: end; margin-top: .08em; font-family: var(--f-en); font-style: italic; font-weight: 800;
  font-size: clamp(30px, 5vw, 60px); transform: rotate(-6deg); opacity: 0; animation: rise .7s 1.35s var(--ease-out) forwards;
}

.pj-intro { display: grid; justify-items: center; gap: 36px; text-align: center; }
.pj-intro .bubble { margin: 0; }
.pj-intro .worries { margin: 0; }
.pj-ask { display: grid; gap: 10px; }
.pj-ask p { margin: 0; color: var(--ink-soft); }
.pj-ask .shout { font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--pink); letter-spacing: .08em; }

.case-head { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px); margin-bottom: clamp(32px, 4vw, 48px); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.case-no {
  flex: none; display: grid; place-items: center; width: clamp(92px, 11vw, 124px); aspect-ratio: 1; max-width: 100%; border-radius: 50%;
  background: var(--grad); color: var(--white); font-family: var(--f-en); font-weight: 600; font-size: 12px; letter-spacing: .24em; line-height: 1; text-align: center;
  box-shadow: 0 16px 30px -16px rgba(154, 79, 144, .8);
}
.case-no b { display: block; font-size: clamp(34px, 4.4vw, 48px); font-style: italic; font-weight: 800; letter-spacing: 0; margin-top: 4px; }
.case-head h2 { margin: 0; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.3; }
.case-where { margin: 6px 0 0; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--pink); font-size: 14px; letter-spacing: .1em; }
.case-where svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.case-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.case-visual { position: relative; padding-bottom: 150px; }
.poster, .sheet { display: block; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; }
.poster { width: 86%; max-width: 100%; transform: rotate(-3deg); transition: transform .6s var(--ease-spring); }
.poster img, .sheet img { display: block; width: 100%; height: auto; border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(42, 53, 112, .55); }
.poster:hover { transform: rotate(0) scale(1.02); }
.zoom-hint {
  position: absolute; right: 14px; bottom: 14px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--pink); font-size: 22px; font-weight: 700; box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  transition: transform .4s var(--ease-spring);
}
.poster:hover .zoom-hint { transform: rotate(90deg) scale(1.1); }
.sheets { position: absolute; right: 0; bottom: 0; width: 50%; height: 40%; }
.sheet { position: absolute; bottom: 0; width: 58%; transition: transform .55s var(--ease-spring); transform-origin: 50% 110%; }
.sheet:nth-child(1) { right: 34%; transform: rotate(-12deg); }
.sheet:nth-child(2) { right: 18%; transform: rotate(-2deg); z-index: 1; }
.sheet:nth-child(3) { right: 0; transform: rotate(9deg); z-index: 2; }
.sheets:hover .sheet:nth-child(1) { transform: rotate(-22deg) translate(-24px, -10px); }
.sheets:hover .sheet:nth-child(2) { transform: rotate(-4deg) translateY(-22px); }
.sheets:hover .sheet:nth-child(3) { transform: rotate(18deg) translate(20px, -6px); }
.sheet:hover { z-index: 3; }
.sheets-label {
  position: absolute; left: -8px; top: -16px; z-index: 4; background: var(--ink); color: var(--white);
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; padding: 4px 12px; border-radius: 999px; transform: rotate(-6deg);
}

.case-body { display: grid; gap: 30px; }
.kpi {
  position: relative; overflow: hidden; border-radius: 28px; padding: 28px 30px; color: var(--white); background: var(--grad);
  display: grid; gap: 2px; isolation: isolate;
}
.kpi::after { content: ""; position: absolute; z-index: -1; right: -60px; top: -60px; width: 220px; aspect-ratio: 1; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .35); }
.kpi-lead { font-weight: 700; font-size: 15px; letter-spacing: .08em; }
.kpi-lead b { font-size: 1.4em; }
.kpi-num { font-family: var(--f-en); font-weight: 800; font-style: italic; font-size: clamp(64px, 9vw, 104px); line-height: 1; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.kpi-num small { font-size: .32em; font-family: var(--f-jp); font-style: normal; font-weight: 700; margin-left: 6px; letter-spacing: .06em; }
.kpi-tail { font-weight: 700; font-size: 18px; letter-spacing: .2em; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.steps li { display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; padding: 14px 18px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); transition: transform .45s var(--ease-spring), border-color .3s; }
.steps .st { font-family: var(--f-en); font-weight: 700; font-size: 12px; letter-spacing: .16em; color: var(--pink); text-align: center; padding: 6px 0; border-radius: 999px; background: var(--mist); }
.steps p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.steps strong { color: var(--ink); }

.deliver { display: grid; gap: 12px; }
.deliver h3 { margin: 0; font-size: 14px; letter-spacing: .14em; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.deliver h3::before { content: ""; width: 22px; height: 2px; background: var(--pink); }
.deliver ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.deliver li { padding: 7px 16px; border-radius: 999px; background: var(--mist); font-weight: 700; font-size: 14px; transition: background .3s, color .3s, transform .35s var(--ease-spring); }
.deliver p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

.results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.result {
  border-radius: 28px; padding: clamp(24px, 3.4vw, 36px); background: var(--white); border: 1px solid var(--line);
  display: grid; gap: 22px; align-content: start;
}
.result-top { display: flex; align-items: center; gap: 18px 24px; flex-wrap: wrap; }
.result .kpi-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.result .kpi-num small { color: var(--pink); -webkit-text-fill-color: var(--pink); }
.result h3 { margin: 0; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.55; }
.result p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.meter { display: grid; gap: 12px; }
.meter-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; font-size: 12.5px; }
.meter-row span { font-weight: 700; color: var(--ink-soft); }
.meter-row b { font-size: 12.5px; white-space: nowrap; }
.meter-bar { height: 14px; border-radius: 999px; background: var(--mist); overflow: hidden; }
.meter-bar i { display: block; height: 100%; width: var(--to); border-radius: inherit; background: #C7C9DD; }
.meter-bar i.full { background: var(--grad); }
.js .reveal .meter-bar i { width: 0; }
.js .reveal.in .meter-bar i { width: var(--to); transition: width 1.4s .4s var(--ease-out); }
.up-graph { position: relative; height: 110px; display: flex; align-items: flex-end; gap: 18px; padding-left: 8px; }
.up-graph .col { display: grid; justify-items: center; gap: 6px; width: 64px; }
.up-graph .col i { display: block; width: 100%; border-radius: 12px 12px 4px 4px; }
.up-graph .before i { height: 50px; background: #C7C9DD; }
.up-graph .after i { height: 76px; background: var(--grad); }
.up-graph em { font-style: normal; font-family: var(--f-en); font-weight: 600; font-size: 10.5px; letter-spacing: .2em; color: var(--ink-soft); }
.up-graph .after i { transform-origin: bottom; }
.js .reveal .up-graph .after i { transform: scaleY(.66); }
.js .reveal.in .up-graph .after i { transform: none; transition: transform 1.2s .5s var(--ease-spring); }

.case-bottom { margin-top: 26px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 20px 48px; align-items: start; }
.points { list-style: none; margin: 0; padding: 26px 28px; border-radius: 24px; background: var(--mist); display: grid; gap: 14px; }
.points li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-weight: 700; font-size: 14.5px; line-height: 1.8; }
.pt-ic { color: var(--pink); }

.pj-more { margin: 0 0 clamp(48px, 6vw, 72px); display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 20px; color: var(--ink-soft); font-weight: 500; text-align: center; }
.closing {
  position: relative; overflow: hidden; isolation: isolate; text-align: center; border-radius: 40px;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 56px); color: var(--white);
  background: var(--grad); background-size: 180% 100%; animation: gradShift 12s ease-in-out infinite alternate;
}
.closing::before, .closing::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .3); }
.closing::before { width: 320px; height: 320px; left: -100px; top: -120px; }
.closing::after { width: 200px; height: 200px; right: -50px; bottom: -70px; }
.closing-msg { margin: 0; font-weight: 700; font-size: clamp(18px, 2.6vw, 28px); line-height: 1.9; text-wrap: balance; }
.closing-msg .move { font-size: 1.5em; }
.closing-msg .move::before { animation: none; transform: scaleX(1); opacity: .9; }
.closing-btn { background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(var(--white), var(--white)) border-box !important; }
.closing-btn:hover { background: linear-gradient(var(--ink), var(--ink)) padding-box, linear-gradient(var(--white), var(--white)) border-box !important; }

.img-dialog { padding: 0; border: 0; background: transparent; max-width: min(92vw, 900px); max-height: 92vh; overflow: visible; }
.img-dialog::backdrop { background: rgba(30, 30, 60, .7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.img-dialog[open] { animation: dlgIn .45s var(--ease-spring); }
.img-dialog img { display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto; border-radius: 12px; }
.img-dialog .dlg-close { right: -10px; top: -10px; }

@media (max-width: 860px) {
  .case-grid, .results, .case-bottom { grid-template-columns: minmax(0, 1fr); }
  .case-visual { max-width: 520px; width: 100%; margin-inline: auto; }
}
@media (max-width: 600px) {
  .case-head { align-items: flex-start; }
  .steps li { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .steps .st { width: fit-content; padding: 4px 12px; }
  .pj-title .jp { font-size: clamp(40px, 12vw, 60px); }
}


/* portfolio thumbnails with real work: shown as a mounted print */
.thumb.has-img { background: var(--mat, var(--mist)); }
.thumb.has-img .thumb-in { display: none; }
.thumb .work-img {
  position: absolute; left: 50%; top: 50%; max-width: 78%; max-height: 84%; width: auto; height: auto;
  transform: translate(-50%, -50%) rotate(-2.5deg); box-shadow: 0 22px 34px -18px rgba(20, 20, 60, .5); border-radius: 4px;
  transition: transform .6s var(--ease-spring);
}
.thumb .work-img.logo { max-width: 86%; box-shadow: none; transform: translate(-50%, -50%); filter: drop-shadow(0 14px 18px rgba(20, 40, 30, .22)); }
.work-card:hover .thumb .work-img { transform: translate(-50%, -54%) rotate(0) scale(1.04); }
.works .thumb { aspect-ratio: 4 / 5; }
.dlg-thumb.has-img { display: grid; place-items: center; padding: 28px; }
.dlg-thumb .work-img { position: static; transform: none; max-width: 100%; max-height: 70vh; }
.dlg-thumb .work-img.logo { transform: none; }

/* project page: title image on a white "button" sign */
.pj-sign {
  position: relative; display: inline-block; margin: 0; padding: clamp(18px, 3vw, 34px) clamp(22px, 4vw, 48px);
  background: var(--white); border-radius: 28px; width: min(680px, 100%);
  box-shadow: 0 12px 0 #B9447A, 0 30px 50px -20px rgba(40, 20, 80, .5);
  animation: signPush 1.1s .35s var(--ease-out) both;
}
.pj-sign img { display: block; width: 100%; height: auto; }
@keyframes signPush {
  0% { opacity: 0; transform: translateY(-50px) rotate(-3deg); }
  40% { opacity: 1; transform: translateY(0) rotate(-3deg); box-shadow: 0 12px 0 #B9447A, 0 30px 50px -20px rgba(40, 20, 80, .5); }
  55% { transform: translateY(10px) rotate(-3deg); box-shadow: 0 2px 0 #B9447A, 0 10px 20px -10px rgba(40, 20, 80, .5); }
  75% { transform: translateY(-2px) rotate(-3deg); }
  100% { opacity: 1; transform: rotate(-3deg); box-shadow: 0 12px 0 #B9447A, 0 30px 50px -20px rgba(40, 20, 80, .5); }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .wipe, .js .sec-title .st-in, .js .sec-title .tiny, .js .project-title img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
.sec-title { white-space: nowrap; }
.contact-side .sec-title { font-size: clamp(56px, 7vw, 96px); }

.js .contact .reveal { transform: translateY(20px); }
.js .contact .reveal.in { transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .contact .form.reveal.in { transition-delay: .15s; }

/* Work reel: frames with real work */
.frame.has-img { background: var(--mat, var(--mist)); }
.frame .fimg { position: absolute; inset: 0; background-size: cover; background-position: center 22%; transition: transform .8s var(--ease-out); }
.frame .fimg.contain { background-size: 82% auto; background-position: center; background-repeat: no-repeat; }
.frame.has-img::before { border-color: rgba(255, 255, 255, .75); z-index: 1; }
.frame.has-img:hover .fimg { transform: scale(1.08); }
.frame .view { z-index: 2; }

.is-off, .is-off *, .is-off::before, .is-off::after, .is-off *::before, .is-off *::after { animation-play-state: paused !important; }
.hero::before, .hero::after { will-change: transform; }
/* about: the logo always fits inside the card, whatever its width */
.word-card .word { display: block; }
.word-card .word .logo-mark { display: block; height: auto; width: min(100%, 400px); }
.word-card { min-width: 0; }
/* card whose title is the pink "ビビッとひと押し。" logo: light fill on hover so the logo stays readable */
.cta-img { display: block; width: min(300px, 78%); height: auto; margin-bottom: 4px; transition: transform .5s var(--ease-spring); }
.cta-logo::before { background: #FCE8EF; }
.cta-logo:hover { color: var(--ink); }
.cta-logo:hover .cta-img { transform: rotate(-3deg) scale(1.04); }

@media (max-width: 860px) { .brand { --h: 21px; padding-block: 10px; } }

/* =====================================================
   ✦ Magic touches (test site)
   ===================================================== */
/* 1. magic-dust cursor trail */
.dust { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 70; pointer-events: none; }

/* 3. footer turns into a night sky with fireworks */
.site-footer .night {
  position: absolute; inset: 0; z-index: -2; opacity: 0; transition: opacity 1.6s ease;
  background:
    radial-gradient(1.5px 1.5px at 12% 22%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 64%, #fff 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 46% 18%, #FFE9A8 50%, transparent 51%),
    radial-gradient(1px 1px at 63% 48%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 78% 26%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 70%, #C9D4FF 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 36% 84%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 94% 12%, #fff 50%, transparent 51%),
    linear-gradient(180deg, #1C1846 0%, #2B2466 55%, #4A2F6E 100%);
}
.site-footer .night::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 20% 40%, #fff 50%, transparent 51%),
    radial-gradient(1px 1px at 54% 30%, #fff 50%, transparent 51%),
    radial-gradient(2px 2px at 70% 60%, #FFE9A8 50%, transparent 51%),
    radial-gradient(1px 1px at 8% 76%, #fff 50%, transparent 51%);
  animation: twinkle 2.6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .2; } to { opacity: 1; } }
.site-footer.is-night .night { opacity: 1; }
.site-footer .fireworks { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.foot-thanks {
  margin: 14px 0 0; font-size: 12.5px; letter-spacing: .12em; opacity: 0; transform: translateY(8px);
  transition: opacity 1s .8s, transform 1s .8s var(--ease-out);
}
.site-footer.is-night .foot-thanks { opacity: .9; transform: none; }
.site-footer.is-night .foot-tag .move::before { background: #E86A9A; }
.site-footer .waves .w1 { transition: opacity 1.6s; }
.site-footer.is-night .waves .w1 { opacity: .1; }

/* never let anything push the page sideways on phones (clip keeps sticky elements working) */
html { overflow-x: hidden; }
@supports (overflow-x: clip) { html { overflow-x: clip; } }
.badge { overflow: hidden; }
@media (max-width: 860px) { .sheets { right: 16px; } }

/* =====================================================
   Legal pages (privacy / personal information)
   ===================================================== */
.hero.page-hero.slim { min-height: clamp(380px, 50svh, 480px); }
.hero.page-hero.slim .page-title { font-size: clamp(64px, 11vw, 140px); }
.legal { max-width: 860px; display: grid; gap: 22px; }
.legal-lead { margin: 0 0 12px; font-size: clamp(15px, 1.6vw, 17px); font-weight: 500; line-height: 2.1; color: var(--ink); }
.legal-sec { padding: clamp(22px, 3vw, 32px) clamp(20px, 3.4vw, 36px); border-radius: 22px; background: var(--white); border: 1px solid var(--line); }
.legal-sec h2 { margin: 0 0 12px; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.6; display: flex; align-items: baseline; gap: 12px; }
.legal-sec h2::before { content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); transform: translateY(-2px); }
.legal-ol .legal-sec h2::before { display: none; }
.legal-sec .num { font-family: var(--f-en); font-weight: 700; font-style: italic; color: var(--pink); font-size: 1.1em; min-width: 1.6em; }
.legal-sec p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 2; }
.legal-sec p + p, .legal-sec ul + p { margin-top: 12px; }
.legal-sec ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.legal-sec li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.9; color: var(--ink); }
.legal-sec li::before { content: ""; position: absolute; left: 4px; top: .8em; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.legal-ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.legal-ol > li { padding-left: clamp(20px, 3.4vw, 36px); }
.legal-ol > li::before { display: none; }
.legal-contact {
  margin-top: 10px; padding: clamp(26px, 4vw, 40px); border-radius: 28px; color: var(--white);
  background: var(--grad); display: grid; gap: 16px; justify-items: start;
}
.legal-contact h2 { margin: 0; font-size: 18px; letter-spacing: .1em; }
.legal-contact dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; font-size: 14.5px; }
.legal-contact dt { font-weight: 700; opacity: .85; }
.legal-contact dd { margin: 0; overflow-wrap: anywhere; }
.legal-contact .pill-btn { background: var(--white); color: var(--ink); }
.legal-contact .pill-btn .arr { background: var(--grad); color: var(--white); }
.legal-date { margin: 0; text-align: right; color: var(--ink-soft); font-size: 13px; }
.legal-link { margin: 6px 0 0; text-align: center; }
.legal-link a { color: var(--blue); font-weight: 700; letter-spacing: .06em; }
@media (max-width: 600px) { .legal-contact dl { grid-template-columns: minmax(0, 1fr); gap: 2px; } .legal-contact dd { margin-bottom: 8px; } }

/* contact form: bot trap field stays off screen */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form { position: relative; }
.send[disabled] { opacity: .7; cursor: progress; }
.form-status.ok { color: #2E8B57; }

/* =====================================================
   Travel BLOG
   ===================================================== */
.blog-hero .hero-inner { padding-bottom: 190px; }
.blog-h1 { margin: 0; display: grid; justify-items: center; line-height: .9; }
.blog-h1 .hand { font-family: var(--f-hand); font-weight: 600; font-size: clamp(40px, 6vw, 72px); opacity: 0; animation: rise .8s .2s var(--ease-out) forwards; }
.blog-h1 .page-title { font-size: clamp(80px, 13vw, 170px); margin-top: -.08em; }
.blog-catch { margin: 26px 0 0; font-size: clamp(13px, 1.5vw, 15px); font-weight: 700; letter-spacing: .12em; opacity: 0; animation: rise .8s 1.1s var(--ease-out) forwards; }
.blog-route { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.blog-route path#heroRoute { fill: none; stroke: rgba(255, 255, 255, .5); stroke-width: 1.6; stroke-dasharray: 2 10; stroke-linecap: round; }
.blog-route .plane { fill: var(--white); }

/* pick up slider */
.pick-wrap { position: relative; z-index: 3; margin-top: -120px; }
.pick-view { overflow: hidden; border-radius: 30px; box-shadow: 0 40px 60px -40px rgba(42, 53, 112, .55); background: var(--white); }
.pick-track { display: flex; transition: transform .8s var(--ease-out); touch-action: pan-y; }
.pick { flex: 0 0 100%; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); text-decoration: none; color: var(--ink); min-height: clamp(300px, 34vw, 420px); }
.pick-img { position: relative; overflow: hidden; }
.pick-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.pick:hover .pick-img img { transform: scale(1.05); }
.pick-body { display: grid; align-content: center; gap: 12px; padding: clamp(24px, 4vw, 52px); }
.pick-label { font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: 13px; letter-spacing: .2em; color: var(--pink); }
.pick-cat { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); letter-spacing: .08em; }
.pick-title { font-size: clamp(19px, 2.2vw, 26px); font-weight: 700; line-height: 1.6; text-wrap: balance; }
.pick-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.9; }
.pick-more { margin-top: 6px; font-family: var(--f-en); font-weight: 700; letter-spacing: .24em; font-size: 13px; color: var(--pink); display: inline-flex; gap: 10px; }
.pick:hover .pick-more span { transform: translateX(6px); }
.pick-more span { transition: transform .4s var(--ease-spring); }
.pick-ctrl { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 18px; }
.pick-dots { display: flex; gap: 8px; }
.pick-dots button { width: 10px; height: 10px; padding: 0; border-radius: 999px; border: 0; background: #D6D2E6; cursor: pointer; transition: width .4s var(--ease-out), background .3s; }
.pick-dots button[aria-current="true"] { width: 30px; background: var(--grad); }

/* section heads */
.blog-sec { padding-top: clamp(70px, 9vw, 110px); }
.blog-head { display: flex; align-items: flex-end; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.blog-head .sec-title { font-size: clamp(52px, 7vw, 84px); }
.blog-head-jp { margin: 0 0 8px; font-weight: 700; letter-spacing: .14em; color: var(--ink); }
.blog-head.small { margin: 34px 0 14px; }
.blog-head.small .blog-head-jp { font-size: 14px; }

/* category tabs */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cat-tabs button {
  font: inherit; font-weight: 700; font-size: 13.5px; letter-spacing: .06em; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: transform .35s var(--ease-spring), border-color .3s, background .3s, color .3s;
}
.cat-tabs button:hover { transform: translateY(-2px); border-color: var(--pink); }
.cat-tabs button[aria-selected="true"] { background: var(--grad); color: var(--white); border-color: transparent; }
.filter-label { margin: -6px 0 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.filter-label span { color: var(--pink); }
.filter-label button { font: inherit; font-size: 12.5px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); cursor: pointer; color: var(--ink-soft); }

/* post cards */
.post-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 32px); }
.post-card a { display: grid; gap: 14px; text-decoration: none; color: var(--ink); }
.js .post-card.reveal.in { transition-delay: var(--d, 0ms); }
.pc-img { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; background: var(--mist); box-shadow: 0 24px 36px -28px rgba(42, 53, 112, .5); }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.post-card a:hover .pc-img img { transform: scale(1.06); }
.pc-cat { position: absolute; left: 14px; top: 14px; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); font-size: 11.5px; font-weight: 700; letter-spacing: .06em; color: var(--pink); }
.pc-body { display: grid; gap: 6px; padding-inline: 4px; }
.pc-area { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.pc-area svg, .post-area svg { width: 14px; height: 14px; fill: none; stroke: var(--pink); stroke-width: 2; }
.pc-title { font-weight: 700; font-size: 15.5px; line-height: 1.7; transition: color .3s; }
.post-card a:hover .pc-title { color: var(--pink); }
.pc-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 12px; color: var(--ink-soft); }
.pc-meta time { font-family: var(--f-en); letter-spacing: .1em; }
.pc-tags { color: var(--blue); }
.post-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 40px 0; }
.load-more { font: inherit; font-family: var(--f-en); font-weight: 600; font-size: 13px; letter-spacing: .2em; cursor: pointer; }

/* ranking + areas */
.blog-two { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); }
.ranking { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rank a { display: grid; grid-template-columns: 54px 120px minmax(0, 1fr); gap: 16px; align-items: center; text-decoration: none; color: var(--ink); padding: 14px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); transition: transform .45s var(--ease-spring), border-color .3s; }
.rank a:hover { transform: translateX(6px); border-color: var(--pink); }
.rank-no { font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: 44px; line-height: 1; text-align: center; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rank:first-child .rank-no { font-size: 54px; }
.rank-img { display: block; aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-body { display: grid; gap: 4px; }
.rank-cat { font-size: 11.5px; font-weight: 700; color: var(--pink); }
.rank-title { font-weight: 700; font-size: 14.5px; line-height: 1.6; }
.rank-body time { font-family: var(--f-en); font-size: 12px; letter-spacing: .1em; color: var(--ink-soft); }
.areas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.area {
  font: inherit; text-align: left; cursor: pointer; border: 0; padding: 16px 18px; border-radius: 18px; color: var(--ink);
  background: var(--tint); display: grid; gap: 2px; transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.area:hover:not(:disabled) { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 16px 26px -18px rgba(42, 53, 112, .6); }
.area:disabled { cursor: default; opacity: .5; }
.area-en { font-family: var(--f-en); font-weight: 600; font-size: 10.5px; letter-spacing: .18em; color: var(--ink-soft); }
.area-jp { font-weight: 700; font-size: 16px; }
.area-n { font-size: 11.5px; color: var(--pink); font-weight: 700; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud button { font: inherit; font-size: 13px; font-weight: 700; color: var(--blue); cursor: pointer; padding: 7px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); display: inline-flex; gap: 6px; align-items: baseline; transition: background .3s, color .3s, transform .35s var(--ease-spring); }
.tag-cloud button small { font-size: 10.5px; color: var(--ink-soft); }
.tag-cloud button:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.tag-cloud button:hover small { color: var(--white); }

/* writer */
.writer { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; padding: clamp(28px, 4.5vw, 56px); border-radius: 36px; background: var(--grad); color: var(--white); position: relative; overflow: hidden; }
.writer::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; aspect-ratio: 1; max-width: 100%; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .3); pointer-events: none; }
.w-stamp { position: relative !important; --w: 204px; --h: 252px; transform: rotate(-5deg); }
.w-stamp .pic { height: 100%; }
.writer-body { display: grid; gap: 14px; position: relative; z-index: 1; }
.writer .kicker { color: var(--white); }
.writer-name { margin: 0; font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: clamp(36px, 5vw, 56px); line-height: 1; }
.writer-name span { display: block; font-family: var(--f-hand); font-style: normal; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.writer-body > p:not(.writer-name) { margin: 0; line-height: 2; font-size: 14.5px; }
.writer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.writer .pill-btn { background: var(--white); color: var(--ink); }
.writer .pill-btn .arr { background: var(--grad); color: var(--white); }
.writer .more-btn { background: transparent; border-color: rgba(255, 255, 255, .7); color: var(--white); }
.writer .more-btn:hover { background: var(--white); color: var(--ink); }

/* ---------- article ---------- */
.read-bar { position: fixed; left: 0; right: 0; top: calc(72px + env(safe-area-inset-top, 0px)); height: 3px; z-index: 49; pointer-events: none; }
.read-bar i { display: block; height: 100%; background: var(--grad); transform: scaleX(0); transform-origin: left; }
.post-page { padding-top: calc(110px + env(safe-area-inset-top, 0px)); }
.crumbs.dark { justify-content: flex-start; color: var(--ink-soft); opacity: 1; animation: none; }
.post-head { display: grid; gap: 16px; max-width: 900px; }
.post-cats { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.chip-cat { padding: 6px 14px; border-radius: 999px; background: var(--grad); color: var(--white); font-size: 12.5px; font-weight: 700; text-decoration: none; letter-spacing: .06em; }
.post-area { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.post-title { margin: 0; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.6; text-wrap: balance; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.postmark-date {
  width: 74px; height: 74px; border-radius: 50%; border: 2px solid var(--pink); color: var(--pink); display: grid; place-content: center; text-align: center;
  font-family: var(--f-en); font-weight: 700; font-size: 14px; letter-spacing: .06em; line-height: 1.2; transform: rotate(-12deg); position: relative;
}
.postmark-date::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1px dashed currentColor; opacity: .6; }
.postmark-date b { display: block; font-size: 11px; letter-spacing: .2em; }
.post-author { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-en); font-weight: 700; letter-spacing: .1em; }
.post-author small { font-family: var(--f-jp); font-weight: 500; font-size: 11.5px; color: var(--ink-soft); letter-spacing: .04em; }
.post-author .av { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: 72% 40%; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tags a { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; }
.post-cover { margin-top: 30px; margin-bottom: 0; }
.post-cover img { display: block; width: 100%; max-height: 560px; object-fit: cover; border-radius: 30px; box-shadow: 0 40px 60px -44px rgba(42, 53, 112, .6); }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(36px, 5vw, 64px); align-items: start; margin-top: clamp(40px, 5vw, 64px); }
.post-body { max-width: 720px; font-size: 16px; line-height: 2.1; color: var(--ink); }
.post-body > p { margin: 0 0 1.6em; }
.post-body .lead { font-size: 17px; font-weight: 500; }
.sample-note { font-size: 12.5px !important; color: var(--pink); background: #FCE8EF; padding: 8px 14px; border-radius: 10px; }
.post-body h2 { margin: 2.6em 0 1em; padding: 16px 20px; border-radius: 16px; background: var(--mist); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.6; position: relative; scroll-margin-top: 100px; }
.post-body h2::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 5px; border-radius: 0 4px 4px 0; background: var(--grad); }
.post-body h3 { margin: 2em 0 .6em; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.post-body h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); flex: none; }
.post-body figure { margin: 2em 0; }
.post-body figure img { width: 100%; height: auto; max-height: 620px; object-fit: cover; border-radius: 20px; display: block; }
.post-body figcaption { margin-top: 10px; font-size: 13px; color: var(--ink-soft); text-align: center; }
.toc-box { margin: 2em 0 2.4em; padding: 22px 26px; border-radius: 22px; border: 1.5px solid var(--line); background: var(--white); }
.toc-title { margin: 0 0 10px; font-weight: 700; letter-spacing: .2em; font-size: 14px; }
.toc { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.toc a { display: flex; gap: 12px; padding: 6px 8px; border-radius: 10px; text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 500; line-height: 1.7; transition: background .3s, color .3s; }
.toc a span { font-family: var(--f-en); font-weight: 700; color: var(--pink); }
.toc a:hover, .toc a.on { background: #FCE8EF; }
.vivid-point { margin: 2.4em 0; padding: 24px 26px; border-radius: 24px; background: linear-gradient(135deg, #FCE8EF, #E9E6F8); position: relative; }
.vp-title { margin: 0 0 8px !important; font-family: var(--f-hand); font-size: 19px; color: var(--pink); display: flex; align-items: center; gap: 8px; }
.vp-title svg { width: 18px; height: 18px; fill: currentColor; }
.vivid-point p { margin: 0; font-size: 15px; }
dl.spot { margin: 0 0 1.6em; display: grid; grid-template-columns: 9em minmax(0, 1fr); border-radius: 18px; overflow: hidden; border: 1px solid var(--line); font-size: 14.5px; }
dl.spot dt, .spot dd { margin: 0; padding: 12px 16px; border-bottom: 1px solid var(--line); }
dl.spot dt { background: var(--mist); font-weight: 700; }
dl.spot dt:last-of-type, .spot dd:last-of-type { border-bottom: 0; }
.share { margin: 3em 0 2em; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); }
.share-label { font-family: var(--f-en); font-weight: 700; letter-spacing: .24em; font-size: 12px; margin-right: 6px; }
.sh { font: inherit; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; cursor: pointer; position: relative; transition: border-color .3s, background .3s, color .3s; }
.sh:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
#shareCopy[data-done]::after { content: attr(data-done); position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%); white-space: nowrap; background: var(--ink); color: var(--white); font-size: 12px; padding: 4px 10px; border-radius: 8px; }
.pager { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.pg { display: grid; gap: 6px; padding: 18px 20px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 700; line-height: 1.6; transition: border-color .3s, transform .4s var(--ease-spring); }
.pg small { font-family: var(--f-en); font-size: 11.5px; letter-spacing: .14em; color: var(--pink); }
.pg.next { text-align: right; }
.pg:hover { border-color: var(--pink); transform: translateY(-3px); }
.post-side { display: grid; gap: 20px; position: sticky; top: calc(100px + env(safe-area-inset-top, 0px)); }
.side-card { padding: 22px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.writer-mini { display: grid; justify-items: center; text-align: center; gap: 10px; }
.wm-photo { width: 96px; height: 96px; border-radius: 50%; background-size: cover; background-position: 72% 40%; box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--pink-soft); }
.wm-name { margin: 0; font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: 26px; line-height: 1.1; }
.wm-name small { display: block; font-family: var(--f-hand); font-style: normal; font-weight: 600; font-size: 12.5px; color: var(--pink); margin-bottom: 4px; }
.wm-text { margin: 0; font-size: 13px; color: var(--ink-soft); line-height: 1.9; }
.side-title { margin: 0 0 12px; font-weight: 700; letter-spacing: .14em; font-size: 14px; }
.side-popular { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.side-popular a { display: grid; grid-template-columns: 22px 64px minmax(0, 1fr); gap: 10px; align-items: center; text-decoration: none; color: var(--ink); font-size: 12.5px; font-weight: 700; line-height: 1.6; }
.side-popular img { width: 64px; height: 48px; object-fit: cover; border-radius: 10px; }
.sp-no { font-family: var(--f-en); font-style: italic; font-weight: 800; font-size: 20px; color: var(--pink); }
.side-popular a:hover span:last-child { color: var(--pink); }

@media (max-width: 1000px) {
  .post-layout { grid-template-columns: minmax(0, 1fr); }
  .post-side { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .pick { grid-template-columns: minmax(0, 1fr); }
  .pick-img { aspect-ratio: 16 / 10; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-two { grid-template-columns: minmax(0, 1fr); }
  .writer { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: left; }
  .pick-wrap { margin-top: -90px; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: minmax(0, 1fr); }
  .rank a { grid-template-columns: 40px 92px minmax(0, 1fr); gap: 12px; padding: 12px; }
  .rank-no { font-size: 34px; } .rank:first-child .rank-no { font-size: 40px; }
  .post-side { grid-template-columns: minmax(0, 1fr); }
  .pager { grid-template-columns: minmax(0, 1fr); }
  dl.spot { grid-template-columns: minmax(0, 1fr); }
  dl.spot dt { border-bottom: 0; padding-bottom: 4px; }
  .w-stamp { --w: 168px; --h: 204px; }
  .post-body { font-size: 15.5px; }
}
@media (min-width: 861px) { .site-header.solid .nav-cta { background: var(--grad); color: var(--white); } }

/* =====================================================
   WordPress: links instead of buttons, editor blocks in articles
   ===================================================== */
.cat-tabs a {
  font-weight: 700; font-size: 13.5px; letter-spacing: .06em; text-decoration: none;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: transform .35s var(--ease-spring), border-color .3s, background .3s, color .3s;
}
.cat-tabs a:hover { transform: translateY(-2px); border-color: var(--pink); }
.cat-tabs a[aria-current="page"] { background: var(--grad); color: var(--white); border-color: transparent; }
.tag-cloud a { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; padding: 7px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); display: inline-flex; gap: 6px; align-items: baseline; transition: background .3s, color .3s, transform .35s var(--ease-spring); }
.tag-cloud a small { font-size: 10.5px; color: var(--ink-soft); }
.tag-cloud a:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.tag-cloud a:hover small { color: var(--white); }
a.area { text-decoration: none; }
a.area:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 16px 26px -18px rgba(42, 53, 112, .6); }
.area.is-empty { opacity: .5; }
.post-area { text-decoration: none; }
.blog-pager { margin-top: 44px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.blog-pager .page-numbers {
  min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; display: grid; place-items: center;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; font-family: var(--f-en); font-weight: 700;
}
.blog-pager .page-numbers.current { background: var(--grad); color: var(--white); border-color: transparent; }
.blog-pager a.page-numbers:hover { border-color: var(--pink); color: var(--pink); }
.blog-pager .dots { border: 0; background: none; }

/* blocks written in the WordPress editor */
.post-body ul, .post-body ol:not(.toc) { margin: 0 0 1.6em; padding-left: 1.4em; }
.post-body li { margin-bottom: .4em; }
.post-body a:not(.sh):not(.pg) { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-body blockquote { margin: 2em 0; padding: 20px 24px; border-radius: 18px; background: var(--mist); color: var(--ink-soft); }
.post-body blockquote p { margin: 0; }
.post-body .wp-block-image { margin: 2em 0; }
.post-body .wp-block-image img { width: 100%; height: auto; border-radius: 20px; display: block; }
.post-body .wp-block-image figcaption, .post-body .wp-element-caption { margin-top: 10px; font-size: 13px; color: var(--ink-soft); text-align: center; }
.post-body .wp-block-gallery img { border-radius: 14px; }
.post-body .vivid-point { margin: 2.4em 0; padding: 24px 26px; border-radius: 24px; background: linear-gradient(135deg, #FCE8EF, #E9E6F8); }
.post-body .vivid-point p { margin: 0; font-size: 15px; }
.post-body .vivid-point p + p { margin-top: .6em; }
.post-body .vivid-point .vp-title { margin: 0 0 8px; font-family: var(--f-hand); font-size: 19px; color: var(--pink); display: flex; align-items: center; gap: 8px; }
.post-body .vivid-point .vp-title::before { content: "✦"; font-family: var(--f-en); }
.post-body .wp-block-table.spot { margin: 0 0 1.6em; }
.post-body .wp-block-table.spot table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; font-size: 14.5px; }
.post-body .wp-block-table.spot th, .post-body .wp-block-table.spot td { padding: 12px 16px; border: 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.post-body .wp-block-table.spot th { width: 9em; background: var(--mist); font-weight: 700; }
.post-body .wp-block-table.spot tr:last-child th, .post-body .wp-block-table.spot tr:last-child td { border-bottom: 0; }
.post-body .wp-block-embed { margin: 2em 0; }
.post-body .wp-block-embed iframe { max-width: 100%; border-radius: 16px; }
.post-body .aligncenter { margin-inline: auto; }
@media (max-width: 600px) {
  .post-body .wp-block-table.spot th, .post-body .wp-block-table.spot td { display: block; width: auto; }
  .post-body .wp-block-table.spot th { border-bottom: 0; padding-bottom: 4px; }
}
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
/* WordPress admin bar (only shown while logged in) */
.admin-bar .site-header { top: 32px; }
.admin-bar .read-bar { top: calc(104px + env(safe-area-inset-top, 0px)); }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } .admin-bar .read-bar { top: calc(118px + env(safe-area-inset-top, 0px)); } }
@media (max-width: 782px) { .admin-bar #wpadminbar { position: fixed; } }

@media (min-width: 601px) { .post-body .wp-block-table.spot th { width: auto; min-width: 9em; white-space: nowrap; } }
