  :root{
    --bg:#f5f5f0;
    --bg-raised:#eaece7;
    --ink:#232823;
    --muted:#60675f;
    --line:#d5d9d1;
    --line-soft:#e4e6e0;
    --accent:#2454d6;
    --accent-dark:#1a3fac;
    --accent-warm:#c17d52;
    --logo-blue:#009fe3;
    --radius:0px;
    --radius-btn:6px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
  }
  body{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-feature-settings:"palt";
    word-break:keep-all;
    overflow-wrap:break-word;
    background:var(--bg);
    color:var(--ink);
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;}
  .en{font-family:'Archivo', sans-serif;}
  .jp{font-family:'Zen Kaku Gothic New', sans-serif; font-feature-settings:"palt";}
  :focus-visible{outline:2px solid var(--accent); outline-offset:3px;}
  .skip-link{
    position:absolute; left:-999px; top:auto;
    background:var(--ink); color:var(--bg); padding:0.8em 1.2em; z-index:100;
  }
  .skip-link:focus{ left:1rem; top:1rem; }

  .section-label{
    font-size:0.76rem;
    font-weight:600;
    letter-spacing:0.08em;
    color:var(--muted);
    margin-bottom:2.2rem;
  }

  @keyframes reveal{
    from{ opacity:0; }
    to{ opacity:1; }
  }
  .revealed{ animation:reveal 0.6s ease both; }
  @media (prefers-reduced-motion: reduce){
    .revealed{ animation:none; }
  }

  /* ===== HEADER ===== */
  .site-header{
    position:sticky; top:0; z-index:40;
    background:rgba(245,245,240,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
    transition:background 0.3s ease, border-color 0.3s ease;
  }
  /* Hero pages: header floats transparent over the video until scrolled */
  .has-transparent-header .site-header{
    position:fixed;
    top:0; left:0; right:0;
    background:transparent;
    backdrop-filter:none;
    border-bottom-color:transparent;
  }
  .has-transparent-header .site-header.is-scrolled{
    background:rgba(245,245,240,0.88);
    backdrop-filter:blur(10px);
    border-bottom-color:var(--line);
  }
  .has-transparent-header .wordmark img{
    filter:brightness(0) invert(1);
    transition:filter 0.3s ease;
  }
  .has-transparent-header .site-header.is-scrolled .wordmark img{
    filter:none;
  }
  .has-transparent-header .site-nav a{ color:rgba(255,255,255,0.85); }
  .has-transparent-header .site-header.is-scrolled .site-nav a{ color:var(--muted); }
  .has-transparent-header .site-header.is-scrolled .site-nav a:hover{ color:var(--ink); }
  .has-transparent-header .nav-cta{ color:#fff; border-color:rgba(255,255,255,0.75); }
  .has-transparent-header .nav-cta:hover{ background:rgba(255,255,255,0.15); }
  .has-transparent-header .site-header.is-scrolled .nav-cta{ color:var(--accent); border-color:var(--accent); }
  .has-transparent-header .site-header.is-scrolled .nav-cta:hover{ background:var(--accent); color:#fff; }
  .header-inner{
    max-width:1400px; margin:0 auto;
    padding:0 6vw;
    height:64px;
    display:flex; align-items:center; justify-content:space-between;
    gap:2rem;
  }
  .wordmark{
    display:flex; align-items:center; gap:0.55rem;
    font-size:1.1rem; font-weight:600; letter-spacing:0.01em;
    text-decoration:none;
    color:var(--logo-blue);
  }
  .wordmark img{ height:26px; width:auto; display:block; }
  .site-nav{
    display:flex; gap:2rem;
    font-size:0.78rem; font-weight:500; letter-spacing:0.04em;
  }
  .site-nav a{ text-decoration:none; color:var(--muted); }
  .site-nav a:hover{ color:var(--ink); }
  .nav-cta{
    font-size:0.76rem; font-weight:600; letter-spacing:0.02em;
    text-decoration:none;
    color:var(--accent);
    border:1px solid var(--accent);
    border-radius:var(--radius-btn);
    padding:0.55em 1.1em;
    white-space:nowrap;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .nav-cta:hover{ background:var(--accent); color:#fff; }
  @media (max-width:780px){
    .site-nav{ display:none; }
    .header-inner{ padding:0 6vw; height:58px; }
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    width:100vw;
    margin-left:calc(50% - 50vw);
    height:92svh;
    min-height:520px;
    overflow:hidden;
    background:var(--ink);
  }
  .hero video{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    animation:kenburns 26s ease-in-out infinite alternate;
    will-change:transform;
  }
  @keyframes kenburns{
    from{ transform:scale(1); }
    to{ transform:scale(1.08); }
  }
  .hero::before{
    /* film grain */
    content:"";
    position:absolute; inset:0;
    z-index:2;
    pointer-events:none;
    opacity:0.15;
    mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .hero::after{
    /* legibility scrim */
    content:"";
    position:absolute; inset:0;
    z-index:2;
    pointer-events:none;
    background:linear-gradient(0deg, rgba(8,10,8,0.8) 0%, rgba(8,10,8,0.15) 42%, rgba(8,10,8,0) 62%);
  }
  .hero-copy{
    position:absolute; z-index:3;
    left:0; right:0; bottom:0;
    padding:0 6vw 3.4rem;
  }
  .hero-label{
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:0.06em;
    color:rgba(255,255,255,0.75);
    margin-bottom:1rem;
  }
  .hero-jp{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:clamp(2.2rem, 5.6vw, 4.4rem);
    font-weight:500;
    line-height:1.3;
    color:#fff;
    word-break:keep-all;
    overflow-wrap:break-word;
    margin-bottom:1.6rem;
    max-width:16em;
  }
  .hero-scope{
    font-size:0.76rem;
    font-weight:600;
    letter-spacing:0.05em;
    color:rgba(255,255,255,0.7);
  }
  .hero-media-caption{
    position:absolute; z-index:3;
    right:6vw; bottom:3.6rem;
    display:flex; align-items:center; gap:1rem;
    font-size:0.7rem; letter-spacing:0.06em;
    color:rgba(255,255,255,0.85);
  }
  .hero-toggle{
    font-family:'Archivo', sans-serif;
    font-size:0.7rem; letter-spacing:0.06em;
    background:none; border:none; color:inherit; cursor:pointer;
    padding:0.2em 0;
  }
  .hero-toggle:hover{ text-decoration:underline; }
  .hero-foot{
    max-width:1400px;
    margin:0 auto;
    padding:1.4rem 6vw;
    border-top:1px solid var(--line);
    display:flex; justify-content:space-between; align-items:center;
    gap:1rem;
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:0.98rem;
    color:var(--ink);
  }
  .hero-foot a{
    font-family:'Archivo', sans-serif;
    font-size:0.74rem; letter-spacing:0.05em;
    text-decoration:none;
    color:var(--ink);
    white-space:nowrap;
  }
  .hero-foot a:hover{ text-decoration:underline; }

  @media (prefers-reduced-motion: reduce){
    .hero video{ animation:none; }
  }

  @media (max-width:780px){
    .hero{ height:82svh; min-height:460px; }
    .hero-jp{ font-size:clamp(1.8rem, 8vw, 2.4rem); max-width:none; }
    .hero-copy{ padding:0 6vw 2.6rem; }
    .hero-media-caption{ right:6vw; bottom:auto; top:4.4rem; }
    .hero-foot{ flex-direction:column; align-items:flex-start; gap:0.6rem; }
  }

  /* ===== SELECTED WORKS ===== */
  .works{
    padding:14vh 6vw 4vh;
    max-width:1400px;
    margin:0 auto;
  }
  .work{
    padding:8vh 0;
    border-top:1px solid var(--line);
  }
  .work-media{
    position:relative;
    aspect-ratio:16/9;
    overflow:hidden;
    background:var(--ink);
  }
  .work-media video{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
  }
  .work-info{
    padding-top:1.8rem;
  }
  .work-index{
    font-family:'Archivo', sans-serif;
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:0.04em;
    color:var(--muted);
    display:block;
    margin-bottom:0.6rem;
  }
  .work--converse .work-index{ color:var(--accent); }
  .work--nozomi .work-index, .work--ricka .work-index{ color:var(--accent-warm); }
  .work-name{
    font-family:'Archivo', sans-serif;
    font-size:clamp(1.7rem, 3vw, 2.6rem);
    font-weight:700;
    line-height:1.02;
    letter-spacing:-0.005em;
    color:var(--ink);
    margin-bottom:1rem;
  }
  .work-catch{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.05rem;
    font-weight:400;
    line-height:1.7;
    color:var(--ink);
    word-break:keep-all;
    overflow-wrap:break-word;
    margin-bottom:0.9rem;
  }
  .work-tag{
    font-family:'Archivo', sans-serif;
    font-size:0.72rem;
    font-weight:600;
    letter-spacing:0.03em;
    color:var(--muted);
    display:block;
    margin-bottom:0.9rem;
  }
  .work-desc{
    font-size:0.92rem;
    line-height:1.9;
    color:var(--muted);
    max-width:38ch;
    margin-bottom:1.4rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .work-link{
    font-family:'Archivo', sans-serif;
    font-size:0.78rem;
    font-weight:600;
    letter-spacing:0.03em;
    text-decoration:none;
    border:none;
    border-bottom:1px solid currentColor;
    background:none;
    color:var(--accent);
    cursor:pointer;
    padding:0 0 0.15em;
  }

  /* 01 CONVERSE — full width */
  .work--full .work-media{ margin-bottom:1.6rem; }
  .work--full .work-info{
    display:flex; justify-content:space-between; align-items:flex-end; gap:2rem;
    padding-top:0;
  }
  .work--full .work-info-main{ max-width:60ch; }

  /* 02 / 03 — split layout */
  .work--split{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:5vw;
    align-items:center;
  }
  .work--right .work-media{ order:2; }
  .work--right .work-info{ order:1; }
  .work--left .work-media{ order:1; }
  .work--left .work-info{ order:2; }

  @media (max-width:780px){
    .works{ padding:10vh 6vw 2vh; }
    .work{ padding:6vh 0; }
    .work--full .work-info{ flex-direction:column; align-items:flex-start; gap:0.4rem; }
    .work--split{ grid-template-columns:1fr; gap:1.6rem; }
    .work--right .work-media, .work--left .work-media{ order:1; }
    .work--right .work-info, .work--left .work-info{ order:2; }
    .work-desc{ max-width:none; }
  }

  /* ===== MORE WORKS ===== */
  .more-works{
    padding:6vh 6vw 10vh;
    max-width:1400px;
    margin:0 auto;
    border-top:1px solid var(--line);
  }
  .more-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:2.4rem;
    margin-bottom:2.6rem;
  }
  .more-card{
    text-decoration:none;
    color:inherit;
    display:block;
  }
  .more-card .more-media{
    position:relative;
    aspect-ratio:4/3;
    overflow:hidden;
    background:var(--bg-raised);
    margin-bottom:1rem;
  }
  .more-card .more-media video{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
  }
  .more-title{ font-weight:500; margin-bottom:0.3rem; }
  .more-tag{
    font-family:'Archivo', sans-serif;
    font-size:0.72rem; letter-spacing:0.03em; color:var(--muted);
  }
  .clients-note{
    font-size:0.85rem;
    line-height:1.9;
    color:var(--muted);
    border-top:1px solid var(--line-soft);
    padding-top:1.6rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .clients-note .en{ color:var(--ink); letter-spacing:0.02em; }

  @media (max-width:780px){
    .more-grid{ grid-template-columns:1fr; gap:2rem; }
  }

  /* ===== ABOUT / CLOSER TO YOUR STORY ===== */
  .about{
    position:relative;
    padding:14vh 6vw;
    background:var(--bg-raised);
  }
  .about::before{
    content:"";
    position:absolute; top:0; left:0; right:0;
    height:2px;
    background:linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
  }
  .about-inner{
    max-width:1400px;
    margin:0 auto;
  }
  .about-grid{
    display:grid;
    grid-template-columns:minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap:6vw;
    align-items:start;
  }
  .about-photo{
    aspect-ratio:4/5;
    overflow:hidden;
    background:var(--line-soft);
  }
  .about-photo img{
    width:100%; height:100%; object-fit:cover;
  }
  .about-en{
    font-size:0.82rem; font-weight:600; letter-spacing:0.06em;
    color:var(--accent-warm);
    margin-bottom:1rem;
  }
  .about-jp{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:clamp(2rem, 4vw, 3.1rem);
    font-weight:500;
    line-height:1.5;
    max-width:9em;
    word-break:keep-all;
    overflow-wrap:break-word;
    margin-bottom:2.6rem;
  }
  .about-body{
    font-size:1rem;
    line-height:2.1;
    color:var(--ink);
    max-width:42ch;
    margin-bottom:2rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .about-bio{
    font-size:0.9rem;
    line-height:2;
    color:var(--muted);
    max-width:48ch;
    margin-bottom:2rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .about-credit{
    font-size:0.85rem;
    letter-spacing:0.02em;
    color:var(--accent-warm);
    padding-top:1.4rem;
    border-top:1px solid var(--line);
    max-width:48ch;
  }
  @media (max-width:780px){
    .about-grid{ grid-template-columns:1fr; gap:2rem; }
    .about-photo{ aspect-ratio:4/3; max-width:320px; }
  }

  /* ===== WHAT WE DO / HOW WE WORK / PRICE — one understandable cluster ===== */
  .service{
    padding:10vh 6vw 5vh;
    max-width:1400px;
    margin:0 auto;
  }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    border-top:1px solid var(--line);
  }
  .service-card{
    padding:2rem 1.8rem 2rem 0;
    border-bottom:1px solid var(--line);
  }
  .service-card + .service-card{ padding-left:1.8rem; }
  .service-card h3{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.1rem;
    font-weight:500;
    margin-bottom:1rem;
  }
  .service-card p{
    font-size:0.88rem;
    line-height:1.9;
    color:var(--muted);
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  @media (max-width:780px){
    .service-grid{ grid-template-columns:1fr; }
    .service-card{ padding:1.8rem 0; }
    .service-card + .service-card{ padding-left:0; }
  }

  /* ===== HOW WE WORK ===== */
  .process{
    padding:5vh 6vw;
    max-width:1400px;
    margin:0 auto;
  }
  .process-steps{
    display:flex;
    flex-wrap:wrap;
    gap:0.6rem 0;
    list-style:none;
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:clamp(1.05rem, 2vw, 1.4rem);
    font-weight:500;
    margin-bottom:1.4rem;
  }
  .process-steps li{ display:flex; align-items:center; }
  .process-steps li:not(:last-child)::after{
    content:"→";
    margin:0 0.9rem;
    color:var(--muted);
    font-weight:400;
  }
  .process-note{
    font-size:0.86rem;
    color:var(--muted);
    word-break:keep-all;
    overflow-wrap:break-word;
  }

  /* ===== PROJECT & PRICE ===== */
  .price{
    padding:5vh 6vw 14vh;
    max-width:1400px;
    margin:0 auto;
  }
  .price-lead{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.2rem;
    font-weight:500;
    margin-bottom:2rem;
  }
  .price-rows{ border-top:1px solid var(--line); }
  .price-row{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    column-gap:2rem;
    row-gap:0.3rem;
    align-items:baseline;
    padding:1.6rem 0;
    border-bottom:1px solid var(--line);
  }
  .price-row-label{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.05rem;
    font-weight:500;
    grid-column:1;
  }
  .price-row-value{
    font-family:'Archivo', sans-serif;
    font-size:1.4rem;
    font-weight:700;
    color:var(--accent);
    white-space:nowrap;
    grid-column:2;
    grid-row:1 / span 2;
    align-self:center;
  }
  .price-row-desc{
    font-size:0.86rem;
    color:var(--muted);
    grid-column:1;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .price-includes{
    grid-column:1 / -1;
    list-style:none;
    font-size:0.82rem;
    color:var(--muted);
    line-height:1.8;
    margin-top:0.6rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .price-includes li{ padding-left:1.1em; position:relative; }
  .price-includes li::before{
    content:"—";
    position:absolute; left:0;
  }
  .price-note{
    font-size:0.8rem;
    line-height:1.9;
    color:var(--muted);
    margin-top:1.8rem;
    max-width:60ch;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  @media (max-width:780px){
    .price-row{ grid-template-columns:1fr; }
    .price-row-value{ grid-column:1; grid-row:auto; margin-top:0.4rem; }
  }

  /* ===== CONTACT ===== */
  .contact{
    padding:10vh 6vw 12vh;
    max-width:900px;
    margin:0 auto;
    border-top:1px solid var(--line);
  }
  .contact-en{
    font-size:0.82rem; font-weight:600; letter-spacing:0.06em;
    color:var(--accent);
    margin-bottom:1rem;
  }
  .contact h2{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight:500;
    line-height:1.5;
    margin-bottom:1.4rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .contact-lead{
    font-size:0.98rem;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:2.4rem;
    max-width:44ch;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .contact-cta{
    display:inline-block;
    font-family:'Archivo', sans-serif;
    font-size:0.95rem;
    font-weight:600;
    letter-spacing:0.02em;
    color:#ffffff;
    background:var(--accent);
    border:1px solid var(--accent);
    border-radius:var(--radius-btn);
    padding:1rem 1.9rem;
    text-decoration:none;
    margin-bottom:3rem;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .contact-cta:hover{ background:var(--accent-dark); border-color:var(--accent-dark); }
  .contact-form{
    display:grid;
    gap:1.2rem;
    max-width:560px;
    margin-bottom:1rem;
  }
  .field label{
    display:block;
    font-size:0.78rem;
    letter-spacing:0.02em;
    color:var(--muted);
    margin-bottom:0.4rem;
  }
  .field input, .field textarea, .field select{
    width:100%;
    font:inherit;
    font-size:0.95rem;
    background:var(--bg);
    color:var(--ink);
    border:none;
    border-bottom:1px solid var(--line);
    padding:0.6rem 0.2rem;
  }
  .field input:focus, .field textarea:focus, .field select:focus{
    border-bottom-color:var(--accent);
  }
  .field textarea{ min-height:7em; resize:vertical; }
  .field-row{ display:flex; gap:1.2rem; flex-wrap:wrap; }
  .field-row .field{ flex:1 1 200px; }
  .form-submit{
    justify-self:start;
    font-family:'Archivo', sans-serif;
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:0.03em;
    background:none;
    color:var(--accent);
    border:1px solid var(--accent);
    border-radius:var(--radius-btn);
    padding:0.85rem 1.7rem;
    cursor:pointer;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .form-submit:hover{ background:var(--accent); color:#fff; }
  .contact-note{
    font-size:0.78rem;
    color:var(--muted);
    max-width:44ch;
    margin-top:1rem;
  }
  .field-checkbox{
    display:flex;
    align-items:flex-start;
    gap:0.6rem;
    font-size:0.85rem;
    color:var(--muted);
    cursor:pointer;
  }
  .field-checkbox input{ margin-top:0.2em; }
  .field-checkbox a{ color:var(--accent); text-decoration:underline; }
  .contact-success{
    max-width:560px;
    padding:2rem 0;
  }
  .contact-success p{
    font-size:1rem;
    line-height:2;
    color:var(--ink);
    margin-bottom:1.6rem;
  }

  /* ===== LEGAL (PRIVACY POLICY) ===== */
  .legal{
    padding:8vh 6vw 14vh;
    max-width:760px;
    margin:0 auto;
  }
  .legal h1{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight:500;
    margin-bottom:2.4rem;
  }
  .legal h2{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.05rem;
    font-weight:500;
    margin:2.4rem 0 0.8rem;
  }
  .legal p{
    font-size:0.92rem;
    line-height:2;
    color:var(--muted);
  }
  .legal-date{
    margin-top:3rem;
    padding-top:1.4rem;
    border-top:1px solid var(--line);
  }

  /* ===== FOOTER ===== */
  .site-footer{
    padding:2.4rem 6vw;
    display:flex; justify-content:space-between; align-items:center;
    border-top:1px solid var(--line);
    font-size:0.8rem;
    color:var(--muted);
  }
  .site-footer a{ text-decoration:none; color:var(--muted); letter-spacing:0.03em; }
  .site-footer a:hover{ color:var(--ink); }
  .footer-links{ display:flex; align-items:center; gap:1.4rem; }
  .footer-icon{ display:flex; align-items:center; color:var(--muted); }
  .footer-icon:hover{ color:var(--ink); }

  /* ===== WORK DETAIL PAGES ===== */
  .detail-back{
    display:inline-block;
    margin:4vh 6vw 0;
    font-family:'Archivo', sans-serif;
    font-size:0.78rem;
    font-weight:600;
    letter-spacing:0.03em;
    text-decoration:none;
    color:var(--muted);
  }
  .detail-back:hover{ color:var(--ink); }
  .detail-hero{
    max-width:1100px;
    margin:3vh auto 0;
    padding:0 6vw;
  }
  .detail-video{
    aspect-ratio:16/9;
    background:var(--ink);
    overflow:hidden;
    margin-bottom:2.4rem;
  }
  .detail-video video{ width:100%; height:100%; display:block; }
  .detail-index{
    font-family:'Archivo', sans-serif;
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:0.04em;
    color:var(--muted);
    display:block;
    margin-bottom:0.6rem;
  }
  .detail-name{
    font-family:'Archivo', sans-serif;
    font-size:clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight:700;
    line-height:1.05;
    color:var(--ink);
    margin-bottom:1rem;
  }
  .detail-catch{
    font-family:'Zen Kaku Gothic New', sans-serif;
    font-size:1.1rem;
    color:var(--ink);
    margin-bottom:0.9rem;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .detail-tag{
    font-family:'Archivo', sans-serif;
    font-size:0.75rem;
    font-weight:600;
    letter-spacing:0.03em;
    color:var(--muted);
    display:block;
    margin-bottom:1.2rem;
  }
  .detail-desc{
    font-size:0.98rem;
    line-height:2;
    color:var(--muted);
    max-width:60ch;
    margin-bottom:5vh;
    word-break:keep-all;
    overflow-wrap:break-word;
  }
  .detail-foot{
    max-width:1100px;
    margin:0 auto;
    padding:4vh 6vw 12vh;
    border-top:1px solid var(--line);
  }
  .detail-foot-inner{
    padding-top:4vh;
    display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap;
  }
