@charset "UTF-8";

:root{
      --bg:#f6f7f9;
      --fg:#111827;
      --muted:rgba(17,24,39,.65);
      --line:rgba(17,24,39,.12);
      --accent:#f26a21;
      --card:rgba(255,255,255,.9);
      --shadow:0 16px 50px rgba(17,24,39,.12);
      --radius:18px;
      --container:1120px;
      --headerH:72px;
      --logo-mark-size:clamp(50px,3.8vw,54px);
      --drawer-w:min(92vw,360px);
      --logo-ja-size:clamp(13px,1.12vw,16px);
      --logo-en-size:clamp(9px,.7vw,11px);
      --mark-w:clamp(92px,11vw,128px);
      --line-w:min(360px,64vw);
      --line-h:1px;
      --ease:cubic-bezier(.2,.8,.2,1);
      --t-brand-in:900ms;
      --t-line-grow:900ms;
      --t-spark:900ms;
      --splash-hold:1200ms;
      --splash-fade:700ms;
      --main-fade:700ms;
      --main-bg:#fff;
      --main-fg:#111;
      --main-muted:rgba(0,0,0,.65);
      --splash-bg:#fff;
      --splash-fg:#111;
      --splash-muted:rgba(0,0,0,.65);
      --splash-line-base:transparent;
      --glint-core:rgba(255,215,120,.95);
      --glint-edge:rgba(255,170,60,.55);
      --glint-fade:rgba(255,170,60,0);
    }

    *{box-sizing:border-box;}

html,body{
  height:100%;
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  background:var(--bg);
  color:var(--fg);
  overflow-x:hidden;
  scroll-behavior:smooth;
}

    a{color:inherit;text-decoration:none;}
    img{max-width:100%;display:block;}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto;}
    .section{padding:96px 0;position:relative;}
    .kicker{font-size:12px;letter-spacing:.18em;color:rgba(242,106,33,.78);text-transform:uppercase;}
    .h2{
      font-size:clamp(22px,2.2vw,32px);
      margin:10px 0 14px;
      letter-spacing:.02em;
      position:relative;
      padding-bottom:16px;
    }
    .h2::after{
      content:"";
      position:absolute;
      left:0;bottom:0;
      width:76px;height:3px;
      border-radius:999px;
      background:var(--accent);
    }
/*  .lead{color:var(--muted);max-width:80ch;} */
    .lead{color:var(--muted);max-width:100ch;}
    .btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px;}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      height:44px;padding:0 16px;border-radius:12px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.75);
      transition:transform .15s ease,background .15s ease,border-color .15s ease;
      font-weight:700;
    }
    .btn:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.92);
      border-color:rgba(17,24,39,.22);
    }
    .btn.primary{
      color:#e46a1a;
      background:rgba(228,106,26,.11);
      border-color:rgba(228,106,26,.30);
      box-shadow:none;
    }
    .btn.primary:hover{
      background:rgba(228,106,26,.92);
      border-color:#e46a1a;
      color:#fff;
      box-shadow:0 12px 28px rgba(228,106,26,.18);
    }

    header{
      position:fixed;top:0;left:0;right:0;
      height:var(--headerH);
      z-index:3000;
      display:flex;
      border-bottom:1px solid rgba(255,255,255,.18);
      background:rgba(0,0,0,.18);
      backdrop-filter:blur(10px);
      transition:background .25s ease,border-color .25s ease;
    }
    header.is-solid{
      background:rgba(246,247,249,.88);
      border-color:var(--line);
    }
    .nav{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
      display:flex;align-items:center;justify-content:space-between;gap:16px;
    }
    .logo{
      display:inline-flex;align-items:center;gap:12px;
      min-width:0;color:#fff;
    }
    .logoMark{
      width:var(--logo-mark-size);
      height:var(--logo-mark-size);
      object-fit:contain;
      flex:0 0 auto;
      filter:drop-shadow(0 6px 18px rgba(0,0,0,.22));
    }
    .logoText{
      display:flex;flex-direction:column;gap:3px;min-width:0;
      line-height:1.1;
    }
    .logoJa{
      font-size:var(--logo-ja-size);
      font-weight:800;
      letter-spacing:.08em;
      white-space:nowrap;
    }
    .logoEn{
      font-size:var(--logo-en-size);
      letter-spacing:.12em;
      color:rgba(255,255,255,.74);
      white-space:nowrap;
    }
    header.is-solid .logo{color:var(--fg);}
    header.is-solid .logoEn{color:rgba(17,24,39,.56);}
    nav a{
      color:rgba(255,255,255,.85);
      padding:10px 10px;border-radius:10px;font-weight:600;
    }
    header.is-solid nav a{color:var(--muted);}
    nav a:hover{background:rgba(255,255,255,.12);color:#fff;}
    header.is-solid nav a:hover{background:rgba(228,106,26,.08);color:var(--accent);}
    .navRight{display:flex;align-items:center;gap:12px;}
    .navLinks{display:flex;gap:6px;align-items:center;}
    .menuToggle{
      display:none;
      position:relative;
      width:48px;height:48px;
      border:1px solid rgba(255,255,255,.22);
      border-radius:14px;
      background:rgba(255,255,255,.06);
      color:#fff;
      cursor:pointer;
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
      -webkit-tap-highlight-color:transparent;
    }
    .menuToggle:hover{transform:translateY(-1px);background:rgba(255,255,255,.12);}
    .menuToggle span,
    .menuToggle::before,
    .menuToggle::after{
      content:"";
      position:absolute;left:50%;width:20px;height:2px;
      border-radius:999px;background:currentColor;
      transform:translateX(-50%);
      transition:transform .28s ease,top .28s ease,opacity .2s ease,background .2s ease;
    }
    .menuToggle::before{top:16px;}
    .menuToggle span{top:23px;}
    .menuToggle::after{top:30px;}
    .menuToggle[aria-expanded="true"]::before{top:23px;transform:translateX(-50%) rotate(45deg);}
    .menuToggle[aria-expanded="true"] span{opacity:0;}
    .menuToggle[aria-expanded="true"]::after{top:23px;transform:translateX(-50%) rotate(-45deg);}
    header.is-solid .menuToggle{
      color:var(--fg);
      border-color:rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
    }
    header.is-solid .menuToggle:hover{background:#fff;border-color:rgba(17,24,39,.2);}
    .mobileNavBackdrop{
      position:fixed;inset:0;z-index:2950;
      background:rgba(11,18,32,.42);
      opacity:0;pointer-events:none;
      transition:opacity .28s ease;
      backdrop-filter:blur(4px);
    }
    .mobileNavBackdrop.is-open{opacity:1;pointer-events:auto;}
    .mobileNav{
      position:fixed;top:0;right:0;bottom:0;z-index:2960;
      width:var(--drawer-w);max-width:100%;
      background:rgba(255,255,255,.96);
      border-left:1px solid rgba(17,24,39,.08);
      box-shadow:-24px 0 60px rgba(17,24,39,.16);
      transform:translateX(102%);
      transition:transform .32s cubic-bezier(.22,.8,.24,1);
      display:flex;flex-direction:column;
    }
    .mobileNav.is-open{transform:translateX(0);}
    .mobileNav__head{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:18px 18px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .mobileNav__brand{display:flex;align-items:center;gap:12px;min-width:0;}
    .mobileNav__brand .logoMark{filter:none;}
    .mobileNav__close{
      width:42px;height:42px;border:none;border-radius:12px;
      background:rgba(17,24,39,.05);color:var(--fg);cursor:pointer;
      font-size:24px;line-height:1;
    }
    .mobileNav__body{padding:14px 14px 18px;display:flex;flex-direction:column;gap:10px;}
    .mobileNav__body a{
      display:flex;align-items:center;justify-content:space-between;
      min-height:54px;padding:0 16px;border-radius:16px;
      font-weight:700;color:var(--fg);
      background:#fff;border:1px solid rgba(17,24,39,.08);
      box-shadow:0 10px 26px rgba(17,24,39,.05);
      transition:transform .18s ease,border-color .18s ease,color .18s ease,background .18s ease;
    }
    .mobileNav__body a::after{
      content:"\2192";font-size:18px;color:rgba(17,24,39,.36);
      transition:transform .18s ease,color .18s ease;
    }
    .mobileNav__body a:hover{transform:translateX(3px);border-color:rgba(242,106,33,.28);color:var(--accent);background:rgba(242,106,33,.04);}
    .mobileNav__body a:hover::after{transform:translateX(2px);color:var(--accent);}
    .mobileNav__cta{padding:4px 14px 20px;margin-top:auto;}
    .mobileNav__cta .btn.primary{display:flex;width:100%;height:48px;border-radius:14px;}
    body.menu-open{overflow:hidden;touch-action:none;}
    @media (max-width:920px){
      .navLinks,.navRight > .btn.primary{display:none;}
      .menuToggle{display:inline-flex;align-items:center;justify-content:center;}
    }
    @media (min-width:921px){
      .mobileNav,.mobileNavBackdrop{display:none !important;}
    }
    @media (max-width:640px){
      :root{--headerH:64px;}
      .nav{width:min(var(--container),calc(100% - 24px));}
      .logo{gap:10px;}
      .logoJa{letter-spacing:.05em;}
      .logoEn{display:none;}
      .btn.primary{height:40px;padding:0 14px;font-size:13px;}
    }

    .splash{
      position:fixed;inset:0;
      display:grid;place-items:center;
      background:var(--splash-bg);
      color:var(--splash-fg);
      z-index:4000;
      opacity:1;
      transition:opacity var(--splash-fade) ease;
    }
    .splash.is-hidden{opacity:0;pointer-events:none;}
    .brand{text-align:center;width:min(900px,92vw);}
    .brand-inner{
      opacity:0;
      transform:translateY(8px) scale(.985);
      animation:brandIn var(--t-brand-in) var(--ease) forwards;
      animation-delay:120ms;
    }
    .mark{width:var(--mark-w);height:auto;display:block;margin:-6px auto 10px;}
    .ja{
      margin:0;
      font-family:"Noto Serif JP",serif;
      font-weight:700;
      font-size:clamp(22px,3vw,34px);
      letter-spacing:.08em;
      color:var(--splash-fg);
    }
    .en{
      margin:0;
      font-family:"Libre Baskerville",serif;
      font-weight:400;
      font-size:clamp(14px,2vw,18px);
      letter-spacing:.10em;
      color:var(--splash-muted);
    }
    .line{
      width:var(--line-w);
      height:var(--line-h);
      margin:14px auto 14px;
      position:relative;
      border-radius:999px;
      background:var(--splash-line-base);
      overflow:visible;
    }
    .line-fill{
      position:absolute;left:0;top:0;height:100%;width:0%;
      border-radius:999px;
      background:linear-gradient(90deg,rgba(255,138,0,.98),rgba(255,138,0,.98));
      animation:lineGrow var(--t-line-grow) var(--ease) forwards;
      animation-delay:920ms;
    }
    .line-spark{
      position:absolute;top:50%;left:0%;
      width:1px;height:1px;transform:translate(-50%,-50%);
      pointer-events:none;opacity:0;mix-blend-mode:screen;
      animation:sparkMove var(--t-spark) var(--ease) forwards;
      animation-delay:920ms;
    }
    .line-spark::before{
      content:"";
      position:absolute;left:50%;top:50%;
      width:180px;height:6px;transform:translate(-50%,-50%);
      background:linear-gradient(90deg,var(--glint-fade) 0%,var(--glint-edge) 25%,var(--glint-core) 50%,var(--glint-edge) 75%,var(--glint-fade) 100%);
      opacity:0;filter:blur(.2px);
      animation:glint 520ms ease-out forwards;
      animation-delay:980ms;border-radius:999px;
    }
    .line-spark::after{
      content:"";
      position:absolute;left:50%;top:50%;
      width:140px;height:6px;transform:translate(-50%,-50%) rotate(-28deg);
      background:linear-gradient(90deg,var(--glint-fade) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,0) 75%,var(--glint-fade) 100%);
      opacity:0;filter:blur(.3px);
      animation:glint 520ms ease-out forwards;
      animation-delay:980ms;border-radius:999px;
    }
    @keyframes glint{
      0%{opacity:0;transform:translate(-50%,-50%) scaleX(.5);}
      35%{opacity:1;transform:translate(-50%,-50%) scaleX(1);}
      100%{opacity:0;transform:translate(-50%,-50%) scaleX(.85);}
    }
    @keyframes brandIn{to{opacity:1;transform:translateY(0) scale(1);}}
    @keyframes lineGrow{from{width:0%;}to{width:100%;}}
    @keyframes sparkMove{
      0%{left:0%;opacity:0;transform:translate(-50%,-50%) scale(.7);}
      12%{opacity:1;transform:translate(-50%,-50%) scale(1);}
      88%{opacity:1;transform:translate(-50%,-50%) scale(.95);}
      100%{left:100%;opacity:0;transform:translate(-50%,-50%) scale(.7);}
    }

    .main{
      min-height:100%;
      opacity:0;
      transition:opacity var(--main-fade) ease;
      background:var(--main-bg);
      color:var(--main-fg);
    }
    .main.is-visible{opacity:1;}

    .hero{
      position:relative;
      min-height:100vh;
      overflow:hidden;
      background:#000;
    }
    .hero video{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
      filter:brightness(.72) contrast(1.08) saturate(.95);
    }
    .hero::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(to bottom,rgba(0,0,0,.60),rgba(0,0,0,.28) 40%,rgba(0,0,0,.12) 70%,rgba(255,255,255,0) 100%);
      pointer-events:none;
    }
    .hero-catch{
      position:relative;z-index:1;
      max-width:1100px;margin:0 auto;
      padding:22vh 20px 0;
      color:#fff;
    }
    .catch-main,.catch-sub,.catch-desc{
      opacity:0;transform:translateY(10px);
      will-change:transform,opacity;
      text-shadow:0 10px 30px rgba(0,0,0,.55);
    }
    .catch-main{
      margin:0;
      font-family:"Libre Baskerville",serif;
      font-weight:700;
      font-size:clamp(30px,4.6vw,64px);
      line-height:1.05;
      letter-spacing:.08em;
      color:#ff8a00;
      animation:resolveIn 900ms cubic-bezier(.2,.8,.2,1) forwards;
    }
    .hero-catch.is-anim .catch-sub{
      animation:slideInFromRight 520ms cubic-bezier(.2,.8,.2,1) forwards;
      animation-delay:900ms;
    }
    .hero-catch.is-anim .catch-desc{
      animation:popIn 420ms cubic-bezier(.2,.8,.2,1) forwards;
      animation-delay:2120ms;
    }
    .catch-sub{
      margin:12px 0 0;
      font-size:clamp(18px,2.4vw,26px);
      letter-spacing:.12em;
      line-height:1.25;
      color:rgba(255,255,255,.98);
    }
    .catch-desc{
      margin:16px 0 0;
      font-size:clamp(14px,2.1vw,18px);
      line-height:2;
      max-width:62ch;
      color:rgba(255,255,255,.86);
    }
    @keyframes resolveIn{
      0%{opacity:0;transform:scale(1.12);letter-spacing:.14em;filter:blur(1px);}
      60%{opacity:1;filter:blur(0);}
      100%{opacity:1;transform:scale(1);letter-spacing:.08em;filter:blur(0);}
    }
    @keyframes slideInFromRight{
      0%{opacity:0;transform:translateX(8px);}
      100%{opacity:1;transform:translateX(0);}
    }
    @keyframes popIn{
      0%{opacity:0;transform:scale(1.01);filter:blur(1px);}
      60%{opacity:1;filter:blur(0);}
      100%{opacity:1;transform:scale(1);filter:blur(0);}
    }
    .sp-br{display:none;}
    @media (max-width:768px){
      .sp-br{display:inline;}
      .catch-desc{line-height:1.8;}
    }

    .scrollCue{
      position:absolute;
      left:50%;bottom:22px;
      transform:translateX(-50%);
      color:rgba(255,255,255,.78);
      font-size:12px;
      letter-spacing:.12em;
      display:flex;flex-direction:column;align-items:center;gap:8px;
      user-select:none;
      z-index:2;
      cursor:pointer;
    }
    .scrollDot{
      width:24px;height:38px;
      border:1px solid rgba(255,255,255,.45);
      border-radius:14px;
      position:relative;
      background:rgba(0,0,0,.20);
    }
    .scrollDot::after{
      content:"";
      width:4px;height:8px;
      background:rgba(255,255,255,.75);
      border-radius:2px;
      position:absolute;left:50%;top:8px;
      transform:translateX(-50%);
      animation:wheel 1.6s infinite;
    }
    @keyframes wheel{
      0%{opacity:.2;transform:translate(-50%,0);}
      35%{opacity:1;}
      100%{opacity:.2;transform:translate(-50%,12px);}
    }

		#philosophy{
			scroll-margin-top: 90px;
		}

    .philosophy{
      padding:88px 0 56px;
      background:#fff;
      border-bottom:1px solid var(--line);
    }
    .philosophy__inner{
      width:min(820px,calc(100% - 40px));
      margin:0 auto;
      text-align:center;
    }
    .philosophy .kicker{display:block;margin-bottom:14px;}
    .philosophy__title{
      margin:0 auto;
      max-width:760px;
      font-size:clamp(16px,1.8vw,24px);
      line-height:1.9;
      letter-spacing:.04em;
      font-weight:600;
      color:var(--muted);
    }
    .philosophy__lead{
      margin:20px auto 0;
      max-width:760px;
      color:rgba(17,24,39,.78);
      font-size:clamp(14px,1.08vw,18px);
      line-height:2;
      font-weight:400;
      letter-spacing:.01em;
    }
    .philosophy__lead strong{color:var(--fg);font-weight:800;}

    #products{
      padding-top:112px;
      padding-bottom:112px;
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .productsSplit{
      display:grid;
      grid-template-columns:minmax(420px,1.12fr) minmax(0,.88fr);
      gap:clamp(18px,1.4vw,24px);
      align-items:start;
    }
    .productsIntro{
      position:sticky;
      top:calc(var(--headerH) + 28px);
      align-self:start;
      min-width:0;
    }
    .productsIntro .lead{
      max-width:none;
      width:100%;
      font-size:15px;
      line-height:1.95;
      margin-top:18px;
    }
    .productsIndex{display:grid;gap:18px;min-width:0;}
    .productPanel{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(0,1fr);
      gap:0;
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.96);
      box-shadow:0 14px 40px rgba(17,24,39,.08);
      min-height:238px;
      transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
    }
    .productPanel:hover{
      border-color:rgba(242,106,33,.32);
      box-shadow:0 18px 46px rgba(17,24,39,.11);
      background:#fff;
    }
    .productPanel__media{
      position:relative;
      min-height:100%;
      overflow:hidden;
      background:#e9edf2;
    }
    .productPanel__image{
      position:absolute;inset:0;
      background-size:cover;background-position:center;
      transform:scale(1.01);
      transition:transform .45s ease;
    }
    .productPanel:hover .productPanel__image{transform:scale(1.06);}
    .productPanel__body{
      display:flex;
      flex-direction:column;
      justify-content:center;
      min-width:0;
      padding:clamp(22px,2.2vw,30px) clamp(20px,2.2vw,30px) clamp(20px,2vw,28px);
    }
    .productPanel__eyebrow{
      margin:0 0 8px;
      font-size:11px;
      letter-spacing:.20em;
      text-transform:uppercase;
      color:rgba(17,24,39,.42);
      font-weight:800;
      overflow-wrap:anywhere;
    }
    .productPanel__title{
      margin:0;
      font-size:clamp(22px,1.9vw,30px);
      line-height:1.35;
      letter-spacing:.02em;
      font-weight:800;
      transition:color .18s ease;
      display:inline-block;
      position:relative;
      padding-bottom:6px;
      overflow-wrap:anywhere;
    }
    .productPanel__title::after{
      content:"";
      position:absolute;left:0;bottom:0;
      width:100%;height:1px;
      background:rgba(242,106,33,.9);
      transform:scaleX(0);
      transform-origin:left center;
      transition:transform .28s ease;
      border-radius:999px;
    }
    .productPanel:hover .productPanel__title{color:var(--accent);}
    .productPanel:hover .productPanel__title::after{transform:scaleX(1);}
    .productPanel__desc{
      margin:14px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.95;
      overflow-wrap:anywhere;
      word-break:auto-phrase;
    }
    .productPanel__actions{margin-top:18px;display:flex;align-items:center;gap:12px;}
    .productPanel__link{
      display:inline-flex;align-items:center;justify-content:center;
      min-width:124px;height:42px;padding:0 16px;border-radius:999px;
      border:1px solid rgba(242,106,33,.22);
      background:rgba(242,106,33,.06);
      color:rgba(17,24,39,.84);
      font-weight:700;
      transition:background .18s ease,border-color .18s ease,transform .18s ease,color .18s ease;
    }
    .productPanel:hover .productPanel__link{
      background:rgba(242,106,33,.10);
      border-color:rgba(242,106,33,.30);
      color:var(--accent);
      transform:translateX(2px);
    }

    .miniReveal{
      position:relative;
      background-image:url('../../images/factory.webp');
      background-position:center 55%;
      background-repeat:no-repeat;
      background-attachment:fixed;
      background-size:108% auto;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      overflow:hidden;
    }
    .miniReveal__panel{position:relative;z-index:1;}
    .miniReveal__block{background:var(--bg);}
    .miniReveal__top{padding:72px 0 52px;}
    .miniReveal__window{position:relative;height:clamp(260px,40vh,520px);}
    .miniReveal__bottom{padding:52px 0 72px;}
    .miniReveal__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px;}
    .miniReveal__top .lead,.miniReveal__bottom .lead{max-width:none;width:100%;}
    .feature{
      padding:18px;border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      box-shadow:0 10px 35px rgba(17,24,39,.08);
    }
    .feature h3{margin:0 0 6px;font-size:16px;}
    .feature p{margin:0;color:var(--muted);font-size:13px;}

    .sectionCoverUp{
      position:relative;z-index:10;
      margin-top:0;
      background:var(--bg);
      border-top:0;
      padding:0;
    }
    .coverStage{
      display:flex;
      align-items:flex-start;
      padding:54px 0 46px;
      min-height:auto;
    }
    .coverStageInner{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:start;}
    .worksBig{
      font-size:clamp(22px,2.2vw,32px);
      letter-spacing:.02em;margin:10px 0 14px;line-height:1.25;font-weight:700;
    }
    .worksSub{color:var(--muted);max-width:70ch;margin:0;font-size:15px;}
    .worksMetaRow{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px;color:var(--muted);font-size:13px;}
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      border:1px solid var(--line);
      border-radius:999px;padding:8px 12px;
      background:rgba(255,255,255,.72);
    }
    .stageCard{
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      box-shadow:var(--shadow);
      overflow:hidden;
      align-self:start;
      margin-top:34px;
    }
    .stageCardMedia{
      height:260px;
      background:url("../../images/our_works/factory_view.webp");
      background-size:cover;
      background-position:center;
    }
    .stageCardBody{padding:16px;color:var(--muted);font-size:13px;}
    .worksWrap{
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      box-shadow:var(--shadow);
      padding:14px 14px 16px;
      overflow:hidden;
    }
    .worksHead{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:10px;}
    .worksHint{color:var(--muted);font-size:12px;}

.worksTrack{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:auto;
  padding-bottom:10px;
}

    .worksTrack::-webkit-scrollbar{height:10px;}
    .worksTrack::-webkit-scrollbar-thumb{background:rgba(17,24,39,.22);border-radius:999px;}
    .worksTrack::-webkit-scrollbar-track{background:rgba(17,24,39,.06);border-radius:999px;}
    .workItem{
      flex:0 0 340px;
      border-radius:16px;
      overflow:hidden;
      border:1px solid var(--line);
      background:rgba(255,255,255,.92);
      box-shadow:0 10px 30px rgba(17,24,39,.10);
      transition:transform .18s ease,border-color .18s ease;
    }
    .workItem:hover{transform:translateY(-2px);border-color:rgba(17,24,39,.20);}
    .workMedia{height:210px;background-size:cover;background-position:center;filter:saturate(1.02) contrast(1.03);}
    .workBody{padding:12px 12px 14px;}
    .workTitle{margin:0 0 4px;font-weight:900;font-size:14px;}
    .workMeta{margin:0;color:var(--muted);font-size:12px;}

    .equipmentSection{
      padding:120px 0 0;
      background:#f7f8fa;
      border-top:1px solid var(--line);
    }
    .equipmentLayout{
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:60px;
      align-items:center;
    }
    .equipmentVisual{
      position:relative;
      overflow:visible;
    }
    .equipMain{
      width:100%;
      border-radius:12px;
      position:relative;
      z-index:1;
    }
    .equipCircle{
      position:absolute;
      border-radius:50%;
      object-fit:cover;
      border:3px solid #fff;
      outline:1px solid #d9d9d9;
      box-shadow:0 12px 35px rgba(0,0,0,.15);
      opacity:0;
      will-change:transform,opacity;
      transition:
        transform 1.25s cubic-bezier(.22,.61,.36,1),
        opacity .9s ease;
      z-index:2;
    }
    .circle1{
      width:160px;
      height:160px;
      left:-40px;
      bottom:40px;
      transform:translate(-150px,-130px) scale(.82);
    }
    .circle2{
      width:210px;
      height:210px;
      right:-50px;
      top:40px;
      transform:translate(170px,-150px) scale(.8);
    }
    .equipmentVisual.is-active .circle1{
      opacity:1;
      transform:translate(0,0) scale(1);
    }
    .equipmentVisual.is-active .circle2{
      opacity:1;
      transform:translate(0,0) scale(1);
    }

    .equipmentBand{
      margin-top:72px;
      height:190px;
      position:relative;
      overflow:hidden;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:#e9edf2;
    }
    .equipmentBand__inner{
      position:absolute;
      top:0;
      left:50%;
      width:160%;
      height:100%;
      transform:translateX(-50%);
      will-change:transform;
      animation:equipmentBandLoop 16s ease-in-out infinite alternate;
    }
    .equipmentBand__inner img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    @keyframes equipmentBandLoop{
      0%{transform:translateX(calc(-50% - 90px));}
      100%{transform:translateX(calc(-50% + 90px));}
    }

    .split{display:grid;grid-template-columns:1.18fr .82fr;gap:0;align-items:center;margin-top:28px;position:relative;}
    .panel{
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .companyVisual{
      position:relative;
      min-height:460px;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.08);
      box-shadow:0 24px 60px rgba(17,24,39,.12);
      background:#e8edf2;
    }
    .panelMedia{
      position:absolute;inset:0;
      background:
        linear-gradient(90deg, rgba(17,24,39,.14) 0%, rgba(17,24,39,.06) 28%, rgba(255,255,255,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 28%, rgba(17,24,39,.10) 100%),
        url("../images/facilities/large_machining_center.webp");
      background-size:cover;
      background-position:center;
      transform:scale(1.01);
    }
    .companyInfo{
      position:relative;
      z-index:2;
      margin-left:-54px;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(10px);
      border:1px solid rgba(17,24,39,.10);
      border-radius:24px;
      box-shadow:0 22px 54px rgba(17,24,39,.12);
      overflow:hidden;
    }
    .panelBody{padding:28px 30px 30px;}
    .companyMiniKicker{
      margin:0 0 14px;
      font-size:11px;
      letter-spacing:.20em;
      text-transform:uppercase;
      color:rgba(242,106,33,.82);
      font-weight:800;
    }
    .companyCatch{margin:0;line-height:1.18;}
    .companyCatchMain{
      display:block;
      font-size:clamp(28px,2.6vw,40px);
      font-weight:900;
      letter-spacing:.02em;
      color:var(--accent);
    }
    .companyCatchSub{
      display:block;
      margin-top:6px;
      font-size:clamp(22px,2vw,32px);
      font-weight:800;
      letter-spacing:.01em;
      color:var(--fg);
    }
    .companyCopy{margin:18px 0 0;color:var(--muted);font-size:15px;line-height:2;}
    .companyNote{margin:16px 0 0;color:rgba(17,24,39,.52);font-size:12px;line-height:1.8;letter-spacing:.04em;}

    .news{
      margin-top:26px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .news a{display:flex;gap:12px;align-items:center;padding:16px;border-top:1px solid var(--line);}
    .news a:first-child{border-top:none;}
    .news a:hover{background:rgba(17,24,39,.03);}
    .date{width:110px;color:var(--muted);font-variant-numeric:tabular-nums;font-size:13px;flex:0 0 auto;}
    .title{font-weight:800;font-size:14px;}
    .news-badge-new{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:48px;
      height:22px;
      padding:0 9px;
      border-radius:999px;
      background:rgba(242,106,33,.12);
      border:1px solid rgba(242,106,33,.32);
      color:var(--accent);
      font-size:11px;
      line-height:1;
      font-weight:900;
      letter-spacing:.02em;
    }

    .cta{
      border-top:1px solid var(--line);
      background:
        radial-gradient(900px 320px at 20% 20%, rgba(11,99,206,.12), transparent 60%),
        radial-gradient(700px 320px at 80% 60%, rgba(17,24,39,.06), transparent 55%),
        rgba(255,255,255,.55);
    }
    .ctaBox{
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.88);
      box-shadow:var(--shadow);
      padding:22px;
      display:flex;gap:18px;align-items:center;justify-content:space-between;flex-wrap:wrap;
		 	overflow:hidden; /* 追加 20260317 */
    }
    .ctaBox .h2{margin:0;}

/* 2026/03/17
*/

    .toTop{
      position:fixed;
      right:22px;bottom:22px;
      width:56px;height:56px;
      border-radius:999px;
      border:1px solid rgba(228,106,26,.26);
      background:rgba(255,248,242,.96);
      color:var(--accent);
      box-shadow:0 12px 30px rgba(17,24,39,.14);
      display:grid;place-items:center;
      cursor:pointer;
      z-index:9999;
      opacity:0;pointer-events:none;
      transform:translateY(14px);
      transition:opacity .24s ease,transform .24s ease,background .18s ease,border-color .18s ease;
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
    }
    .toTop::before{
			content:"↑";
      position:absolute;top:9px;left:50%;
      transform:translateX(-50%);
      font-size:22px;font-weight:900;line-height:1;
    }
    .toTop::after{
      content:"TOP";
      position:absolute;bottom:9px;left:50%;
      transform:translateX(-50%);
      font-size:10px;font-weight:800;letter-spacing:.12em;
    }
    .toTop.is-visible{opacity:1;pointer-events:auto;transform:translateY(0);}
    .toTop:hover{
      background:rgba(255,243,233,.98);
      border-color:rgba(228,106,26,.42);
      transform:translateY(-2px);
    }

    @media (max-width:1200px){
      .philosophy__lead{font-size:16px;}
    }
    @media (max-width:980px){
      #products{padding-top:88px;padding-bottom:88px;}
      .productsSplit{grid-template-columns:minmax(280px,.94fr) minmax(0,1.06fr);gap:18px;}
      .productsIndex{gap:16px;}
      .productPanel{grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);min-height:0;}
      .productPanel__body{padding:20px 18px 18px;}
      .productPanel__title{font-size:clamp(20px,2vw,24px);}
      .productPanel__desc{font-size:13px;line-height:1.85;}
    }
    @media (max-width:900px){

				#philosophy{
					scroll-margin-top: 70px;
				}

      .philosophy{padding:56px 0 46px;}
      .philosophy__title{font-size:clamp(14px,3.8vw,18px);line-height:1.85;}
      .philosophy__lead{max-width:660px;font-size:15px;line-height:1.95;}

      .coverStageInner{grid-template-columns:1fr;}
      .coverStage{padding:44px 0 40px;}
      .stageCard{margin-top:0;}
      .split{grid-template-columns:1fr;gap:18px;}
      .companyVisual{min-height:320px;}
      .companyInfo{margin-left:0;}
      .panelBody{padding:24px 22px 24px;}
      .companyCatchMain{font-size:30px;}
      .companyCatchSub{font-size:24px;}
      .footerGrid{grid-template-columns:1fr;}

      .equipmentLayout{
        grid-template-columns:1fr;
        gap:28px;
      }
      .equipmentVisual{
        max-width:680px;
        margin:0 auto;
      }
      .circle1{
        width:130px;height:130px;
        left:-20px;bottom:24px;
        transform:translate(-110px,-90px) scale(.84);
      }
      .circle2{
        width:170px;height:170px;
        right:-18px;top:24px;
        transform:translate(120px,-100px) scale(.82);
      }
      .equipmentBand{height:170px;}
      .equipmentBand__inner{
        width:165%;
        animation:equipmentBandLoopSp 18s ease-in-out infinite alternate;
      }
      @keyframes equipmentBandLoopSp{
        0%{transform:translateX(calc(-50% - 70px));}
        100%{transform:translateX(calc(-50% + 70px));}
      }

      .toTop{right:14px;bottom:14px;width:52px;height:52px;}
      .toTop::before{top:8px;font-size:20px;}
      .toTop::after{font-size:9px;bottom:8px;}
    }
    @media (max-width:760px){
      .productsSplit{grid-template-columns:1fr;gap:26px;}
      .productsIntro{position:static;max-width:680px;}
      .productPanel{grid-template-columns:1fr;min-height:0;}
      .productPanel__media{min-height:210px;}
      .productPanel__body{padding:22px 20px 20px;}
      .productPanel__title{font-size:24px;}
      .miniReveal{
        background-attachment:scroll;
        background-position:center center;
        background-size:cover;
      }
      .miniReveal__grid{grid-template-columns:1fr;}
      .miniReveal__top{padding:56px 0 36px;}
      .miniReveal__window{height:clamp(180px,28vh,300px);}
      .miniReveal__bottom{padding:36px 0 56px;}
    }
    @media (max-width:640px){
      .philosophy__lead{font-size:14px;line-height:1.9;}
    }

    @media (prefers-reduced-motion:reduce){
      .brand-inner{animation:none;opacity:1;transform:none;}
      .line-fill{animation:none;width:100%;}
      .line-spark{display:none;}
      .splash{transition:none;}
      .main{transition:none;opacity:1;}
      .catch-main,.catch-sub,.catch-desc{
        opacity:1 !important;
        transform:none !important;
        animation:none !important;
        filter:none !important;
      }
      .equipmentBand__inner{animation:none !important;transform:translateX(-50%) !important;}
      .equipCircle{transition:none !important;}
    }
    .main{opacity:1;}


.cta.section{padding-top:64px;padding-bottom:24px;}


/* === final home header compatibility override === */
body.home-page header{
  background:transparent;
  border-bottom:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
body.home-page .hero{
  min-height:100vh;
}
body.home-page .hero-catch{
  padding:20vh 20px 0;
}
@media (max-width: 920px){
  body.home-page .hero-catch{
    padding:18vh 20px 0;
  }
}


/* === top hero sits back under the unified sticky header === */
body.home-page .hero{
  margin-top:calc(var(--ss-header-h) * -1);
}

.companyCsrTeaser{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:20px 0 0;
}

.companyCsrTeaser__item{
  display:grid;
  gap:4px;
  padding:14px 16px;
  border:1px solid rgba(20,20,20,.08);
  border-radius:18px;
  background:rgba(255,255,255,.72);
  text-decoration:none;
  color:inherit;
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.companyCsrTeaser__item:hover{
  transform:translateY(-2px);
  border-color:rgba(232,112,31,.28);
  box-shadow:0 10px 22px rgba(20,20,20,.06);
}

.companyCsrTeaser__label{
  font-size:.72rem;
  letter-spacing:.16em;
  color:var(--ss-accent);
  font-weight:700;
}

.companyCsrTeaser__item strong{
  font-size:1rem;
}

.companyCsrTeaser__item span:last-child{
  font-size:.9rem;
  line-height:1.6;
  color:#555;
}

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


/* ===== client requested TOP products redesign / 2026-05-02 ===== */
.productsShowcase{
  padding-top:clamp(72px, 8vw, 104px) !important;
  padding-bottom:clamp(76px, 8vw, 108px) !important;
  background:linear-gradient(180deg,#fff 0%,#fffaf6 100%) !important;
}
.productsShowcase__inner{display:grid; gap:clamp(24px,3vw,38px);}
.productsShowcase__head{display:grid; grid-template-columns:minmax(0,.8fr) minmax(320px,1.2fr); gap:clamp(22px,3vw,44px); align-items:end;}
.productsShowcase__head .h2{margin-bottom:0;}
.productsShowcase__lead{margin:0; color:var(--muted); font-size:clamp(15px,1.2vw,17px); line-height:2;}
.productsShowcase__main{display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); gap:0; align-items:stretch; overflow:hidden; border:1px solid rgba(17,24,39,.08); border-radius:30px; background:#fff; box-shadow:0 24px 70px rgba(17,24,39,.08);}
.productsShowcase__visual{min-height:clamp(280px,30vw,420px); background:#f3f5f7; overflow:hidden;}
.productsShowcase__visual img{width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.01);}
.productsShowcase__copy{display:flex; flex-direction:column; justify-content:center; padding:clamp(28px,3.2vw,46px); background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,247,240,.96));}
.productsShowcase__copy span{color:var(--accent); font-size:12px; font-weight:800; letter-spacing:.22em;}
.productsShowcase__copy h3{margin:14px 0 14px; font-size:clamp(24px,2.4vw,36px); line-height:1.45; letter-spacing:.035em;}
.productsShowcase__copy p{margin:0; color:var(--muted); line-height:2; font-size:15px;}
.productsIndex--four{display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important; gap:clamp(14px,1.6vw,22px) !important;}
.productsIndex--four .productPanel{display:flex !important; flex-direction:column; min-height:100%; border-radius:24px; box-shadow:0 16px 42px rgba(17,24,39,.075);}
.productsIndex--four .productPanel__media{min-height:auto; aspect-ratio:4 / 3; flex:0 0 auto;}
.productsIndex--four .productPanel__body{justify-content:flex-start; flex:1 1 auto; padding:22px 20px 20px;}
.productsIndex--four .productPanel__title{font-size:clamp(19px,1.5vw,23px); line-height:1.45;}
.productsIndex--four .productPanel__desc{font-size:13px; line-height:1.8;}
.productsIndex--four .productPanel__actions{margin-top:auto; padding-top:16px;}
.productsIndex--four .productPanel__link{min-width:112px; height:38px; font-size:13px;}
@media (max-width:1100px){
  .productsIndex--four{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media (max-width:760px){
  .productsShowcase__head{grid-template-columns:1fr; gap:14px;}
  .productsIndex--four{grid-template-columns:1fr !important;}
  .productsIndex--four .productPanel__media{aspect-ratio:16 / 10;}
}
