/* ============================================================
   センダ技研HP 複製 — トップ／共通スタイル
   原本(sendagiken.com・STUDIO製)の実測スペックに基づくクリーン再構築
   ブランド赤 #e60211 ／ 和文 Noto Sans JP ／ 英字見出し Bebas Neue
   ============================================================ */

/* ---- リセット ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none}

/* ---- デザイントークン（実測カラー／フォント） ---- */
:root{
  --red:#e60211;        /* ブランド赤・メイン */
  --navy:#272f90;
  --blue:#4f5ad9;
  --dark:#222222;       /* 見出し・本文 */
  --ink:#1f1d1d;
  --gray:#a7a7a7;
  --light:#f2f3f6;      /* 薄グレー背景 */
  --offwhite:#fbfbfb;   /* 製品白セクション */
  --linkblue:#007cff;
  --white:#ffffff;
  --black:#000000;
  --container:1168px; /* 内容幅=1168-左右padding48=1120（原本実測1120に一致） */
  --font-jp:"Noto Sans JP",-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  --font-en:"Bebas Neue",sans-serif;
  --header-h:60px;
}

body{
  font-family:var(--font-jp);
  color:var(--dark);
  background:var(--red);          /* ベース背景は赤（原本踏襲） */
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* 中央寄せコンテナ */
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:24px}

/* 共通セクションタイトル（英字見出し・Bebas Neue） */
.section-title{
  font-family:var(--font-en);
  font-size:40px;
  letter-spacing:.04em;
  color:var(--white);
  text-align:center;
  margin-bottom:40px;
}
.section-title--dark{color:var(--dark)}

/* ---- ボタン ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 36px;border-radius:999px;font-weight:700;font-size:15px;
  letter-spacing:.04em;transition:transform .2s ease,background .2s ease,color .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--white);color:var(--red)}
.btn-primary:hover{background:var(--dark);color:var(--white)}
.btn-outline-light{border:1.5px solid var(--white);color:var(--white)}
.btn-outline-light:hover{background:var(--white);color:var(--red)}
.btn-outline-dark{border:1.5px solid var(--dark);color:var(--dark)}
.btn-outline-dark:hover{background:var(--dark);color:var(--white)}

/* ============================================================
   ヘッダー（sticky・赤背景）
   ============================================================ */
.site-header{position:sticky;top:0;z-index:100;background:var(--red)}
.header-inner{
  max-width:var(--container);margin-inline:auto;
  padding:10px 24px;min-height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo img{width:160px;height:auto;display:block}
.gnav ul{display:flex;align-items:center;gap:26px}
.gnav a{color:var(--white);font-weight:600;font-size:15px;letter-spacing:.03em;transition:opacity .2s}
.gnav a:hover{opacity:.7}
.gnav .nav-contact{border:1.5px solid var(--white);border-radius:999px;padding:7px 20px}
.gnav .nav-contact:hover{background:var(--white);color:var(--red);opacity:1}

/* ハンバーガー（PCは非表示） */
.hamburger{display:none;width:36px;height:30px;flex-direction:column;justify-content:center;gap:6px;z-index:120}
.hamburger span{display:block;height:2px;background:var(--white);border-radius:2px;transition:transform .3s,opacity .3s}
body.nav-open .hamburger span:nth-child(1){transform:translateY(8px) rotate(45deg)}
body.nav-open .hamburger span:nth-child(2){opacity:0}
body.nav-open .hamburger span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ============================================================
   ヒーロー（動画背景＋中央コピー）
   ============================================================ */
.hero{position:relative;height:78vh;min-height:480px;overflow:hidden;display:flex;align-items:center;justify-content:center}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.22)}
.hero-content{position:relative;z-index:2;text-align:center;color:var(--white);padding:0 20px;display:flex;flex-direction:column;align-items:center;gap:32px}
.hero-copy{font-size:52px;font-weight:700;line-height:1.4;color:var(--white);text-shadow:0 2px 16px rgba(0,0,0,.45)}

/* ============================================================
   製品3つ（交互背景・フルブリード／コンテンツは中央max-width）
   ============================================================ */
.product{
  display:flex;align-items:center;gap:56px;
  padding-block:80px;
  /* フルブリード背景のまま中身をcontainer幅に中央寄せ */
  padding-inline:max(24px, calc((100% - var(--container)) / 2));
}
.product--reverse{flex-direction:row-reverse}
.product--red{background:var(--red);color:var(--white)}
.product--white{background:var(--offwhite);color:var(--dark)}
.product-media{flex:1 1 50%}
.product-media img{width:100%;border-radius:10px;box-shadow:0 12px 40px rgba(0,0,0,.18)}
.product-body{flex:1 1 50%}
.product-label{font-family:var(--font-en);font-size:20px;letter-spacing:.4px;margin-bottom:14px;opacity:.9}
.product-catch{font-size:17px;font-weight:600;margin-bottom:6px}
.product-name{font-size:26px;font-weight:800;line-height:1.3;margin-bottom:26px}

/* ============================================================
   SNS導線（YouTube／LINE）
   ============================================================ */
.sns{background:var(--red);padding-block:48px}
.sns-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.sns-card{display:flex;align-items:center;gap:18px;padding:26px 30px;border-radius:14px;background:rgba(255,255,255,.12);color:var(--white);transition:transform .2s,background .2s}
.sns-card:hover{transform:translateY(-3px);background:rgba(255,255,255,.2)}
.sns-card .material-symbols-rounded{font-size:40px}
.sns-title{font-family:var(--font-en);font-size:24px;letter-spacing:.04em}
.sns-sub{font-size:13px;line-height:1.6;opacity:.9}

/* ============================================================
   ニュース（黒背景・白カード）
   ============================================================ */
.news{background:var(--black);padding-block:80px}
.news-list{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.news-card{background:var(--white);border-radius:12px;padding:26px;display:flex;flex-direction:column;gap:10px;transition:transform .2s,box-shadow .2s}
.news-card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.3)}
.news-cat{align-self:flex-start;background:var(--red);color:var(--white);font-size:12px;font-weight:700;padding:4px 12px;border-radius:999px}
.news-date{font-family:var(--font-en);font-size:18px;letter-spacing:.04em;color:var(--gray)}
.news-headline{font-size:15px;font-weight:600;color:var(--dark);line-height:1.6}
.news-more{display:inline-flex;align-items:center;gap:6px;margin-top:40px;color:var(--white);font-weight:600;justify-content:center;width:100%}
.news-more .material-symbols-rounded{font-size:20px}

/* ============================================================
   Instagram（プレースホルダ・薄背景）
   ============================================================ */
.insta{background:var(--offwhite);padding-block:80px;text-align:center}
.insta-note{margin-bottom:28px;color:var(--dark)}

/* ============================================================
   BASEショップ（横スクロール）
   ============================================================ */
.shop{background:var(--light);padding-block:80px}
.shop-scroller{display:flex;gap:20px;overflow-x:auto;padding-bottom:14px;scroll-snap-type:x mandatory}
.shop-item{flex:0 0 230px;scroll-snap-align:start;background:var(--white);border-radius:12px;overflow:hidden;transition:transform .2s,box-shadow .2s}
.shop-item:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.15)}
.shop-thumb{aspect-ratio:1/1;background:var(--light)}
.shop-thumb img{width:100%;height:100%;object-fit:cover}
.shop-name{padding:14px 16px;font-size:13px;font-weight:600;line-height:1.6;color:var(--dark)}

/* ============================================================
   フッター（赤背景）
   ============================================================ */
.site-footer{background:var(--red);color:var(--white);padding-block:44px}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:18px;text-align:center}
.footer-sns{display:flex;flex-wrap:wrap;justify-content:center;gap:22px;font-size:14px}
.footer-sns a:hover,.footer-nav a:hover{opacity:.7}
.footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:22px;font-size:14px;font-weight:600}
.copyright{font-size:12px;opacity:.85;margin-top:8px}

/* ============================================================
   appearフェードイン（IntersectionObserverで is-visible 付与）
   原本のsd appearスクロール連動アニメを軽量に再現
   ============================================================ */
.js-appear{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
.js-appear.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js-appear{opacity:1;transform:none;transition:none}
}

/* ============================================================
   レスポンシブ（〜768px：ハンバーガー／1カラム／余白圧縮）
   ============================================================ */
@media (max-width:768px){
  .hamburger{display:flex}
  .gnav{
    position:fixed;inset:0 0 0 0;background:var(--red);
    transform:translateX(100%);transition:transform .3s ease;
    display:flex;align-items:center;justify-content:center;padding:80px 24px;
  }
  body.nav-open{overflow:hidden}
  body.nav-open .gnav{transform:translateX(0)}
  .gnav ul{flex-direction:column;gap:22px;text-align:center}
  .gnav a{font-size:20px}

  .hero{height:62vh;min-height:380px}
  .hero-copy{font-size:23px;line-height:1.5}
  .hero-content{gap:24px}

  .product{flex-direction:column;gap:28px;padding-block:40px;padding-inline:16px;text-align:center}
  .product--reverse{flex-direction:column}
  .product-media,.product-body{flex:1 1 auto;width:100%}
  .product-body{display:flex;flex-direction:column;align-items:center}
  .product-name{font-size:20px;margin-bottom:20px}

  .sns-grid{grid-template-columns:1fr;gap:16px}
  .news{padding-block:48px}
  .news-list{grid-template-columns:1fr;gap:16px}
  .section-title{font-size:32px;margin-bottom:28px}
  .insta,.shop{padding-block:48px}
  .shop-item{flex-basis:180px}
}

/* ============================================================
   製品詳細ページ（stand-tt360 ほか）共通スタイル
   ＝全製品ページで再利用する雛形。原本の実測レイアウトに準拠
   ============================================================ */

/* ---- パンくず ---- */
.breadcrumb{background:var(--white);padding-block:14px;border-bottom:1px solid #eee}
.breadcrumb .container{display:flex;align-items:center;gap:6px;font-size:13px;color:#666}
.breadcrumb a{color:#666}
.breadcrumb a:hover{color:var(--red)}
.breadcrumb .material-symbols-rounded{font-size:16px;color:#bbb}
.breadcrumb [aria-current]{color:var(--dark);font-weight:600}

/* ---- 製品ヒーロー（白背景・中央寄せ） ---- */
.phero{background:var(--white);padding-block:56px 64px;text-align:center;color:var(--dark)}
.phero-label{font-family:var(--font-en);font-size:24px;letter-spacing:.06em;color:var(--red);margin-bottom:16px}
.phero-num{display:inline-block;background:var(--red);color:var(--white);font-family:var(--font-en);padding:1px 10px;margin-left:6px;border-radius:3px}
.phero-title{font-size:48px;font-weight:800;line-height:1.3;color:var(--dark)}
.phero-rule{display:block;width:70px;height:4px;background:var(--red);border-radius:2px;margin:22px auto 26px}
.phero-lead{font-size:17px;font-weight:500;max-width:860px;margin:0 auto 40px;color:#333}
.phero-figure{margin:0 auto;max-width:1000px}
.phero-figure img{width:100%;border-radius:10px;box-shadow:0 14px 44px rgba(0,0,0,.16)}
.phero-note{font-size:12px;color:#888;margin-top:12px;text-align:left}
.phero-note .ast{color:var(--red)}
.phero-makuake{margin-top:40px;font-size:20px;font-weight:700;line-height:1.6;color:var(--dark)}
.phero-makuake strong{color:var(--red);font-size:28px;font-family:var(--font-en);letter-spacing:.02em;padding:0 2px}

/* ---- 3大特徴（赤背景・白カード） ---- */
.features{background:var(--red);padding-block:64px}
.features-card{background:var(--white);border-radius:18px;padding:54px 40px 48px;box-shadow:0 20px 50px rgba(0,0,0,.18)}
.features-title{text-align:center;font-size:30px;font-weight:800;color:var(--red);line-height:1.4}
.features-rule{display:block;width:60px;height:4px;background:var(--red);border-radius:2px;margin:18px auto 44px}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.feature-name{font-size:21px;font-weight:800;color:var(--dark);display:flex;align-items:center;flex-wrap:wrap;gap:8px;line-height:1.3}
.feature-badge{background:var(--red);color:var(--white);font-size:15px;font-weight:700;padding:4px 14px;border-radius:999px;white-space:nowrap}
.feature-sub{color:var(--red);font-size:19px;font-weight:700;margin:10px 0 18px}
.feature-media{border-radius:12px;overflow:hidden;aspect-ratio:1/1;background:#000;margin-bottom:20px}
.feature-video{width:100%;height:100%;object-fit:cover;display:block}
.feature-list{display:flex;flex-direction:column;gap:16px}
.feature-list li{display:flex;gap:10px;font-size:14px;line-height:1.7;color:#333}
.feature-list .chk{color:var(--red);font-size:22px;flex-shrink:0;line-height:1.5}
.feature-list b{font-weight:700;color:var(--dark)}
.badge-new{display:inline-block;background:var(--red);color:var(--white);font-family:var(--font-en);font-size:12px;letter-spacing:.04em;padding:1px 8px;border-radius:4px;margin-right:6px;vertical-align:1px}

/* ---- STORY（価値訴求・#fbfbfb） ---- */
.stories{background:var(--offwhite);padding-block:72px}
.story{display:flex;align-items:center;gap:52px}
.story--reverse{flex-direction:row-reverse}
.story-media{flex:1 1 46%}
.story-media img{width:100%;border-radius:10px;box-shadow:0 12px 36px rgba(0,0,0,.14)}
.story-body{flex:1 1 54%}
.story-badge{display:inline-flex;flex-direction:column;align-items:center;justify-content:center;width:66px;height:66px;border-radius:50%;background:var(--red);color:var(--white);margin-bottom:18px;line-height:1}
.story-badge small{font-size:9px;letter-spacing:.08em;font-weight:600}
.story-badge b{font-family:var(--font-en);font-size:26px;margin-top:2px}
.story-name{font-size:27px;font-weight:800;color:var(--dark);line-height:1.4;margin-bottom:18px}
.story-text{font-size:15px;line-height:1.9;color:#333}
.story-note{font-size:12px;color:#999;margin-top:10px}
.story-link{display:inline-flex;align-items:center;gap:8px;margin-top:22px;color:var(--red);font-weight:700;border-bottom:2px solid var(--red);padding-bottom:3px}
.story-link .material-symbols-rounded{font-size:18px}
.story-link:hover{opacity:.7}
.story-divider{border:none;border-top:2px dashed var(--red);opacity:.45;margin-block:52px}

/* ---- 仕様ゾーン（#f2f3f6） ---- */
.spec-zone{background:var(--light)}
.spec-section{padding-block:56px}
.spec-title{text-align:center;font-size:34px;font-weight:800;color:var(--dark);margin-bottom:44px}
.spec-figure{max-width:560px;margin:0 auto 44px}
.spec-figure img{width:100%;border-radius:10px}
.spec-table{display:flex;flex-direction:column}
.spec-row{display:grid;grid-template-columns:240px 1fr;gap:30px;padding:26px 0;border-bottom:1px solid #d7d9de;align-items:start}
.spec-row:first-child{border-top:1px solid #d7d9de}
.spec-row dt{font-size:16px;font-weight:700;color:var(--dark)}
.spec-row dd p{font-size:15px;color:#333;line-height:1.8}
.spec-note{font-size:12px;color:#999;margin-top:6px}
.spec-note.center{text-align:center;margin-top:24px}
.note-list{display:flex;flex-direction:column;gap:14px}
.note-list li{position:relative;padding-left:20px;font-size:15px;line-height:1.7;color:#333}
.note-list li::before{content:"";position:absolute;left:4px;top:11px;width:6px;height:6px;border-radius:50%;background:var(--dark)}
.note-list b{font-weight:700;color:var(--dark)}

/* ---- 購入フロー ---- */
.flow-sub{text-align:center;font-size:17px;font-weight:600;color:#444;margin-top:-30px;margin-bottom:34px}
.flow-steps{max-width:640px;margin:0 auto;display:flex;flex-direction:column;gap:16px}
.flow-step{display:flex;align-items:center;gap:18px;background:var(--white);border-radius:12px;padding:20px 26px;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.flow-num{flex-shrink:0;width:38px;height:38px;border-radius:50%;background:var(--red);color:var(--white);font-family:var(--font-en);font-size:22px;display:flex;align-items:center;justify-content:center}
.flow-step p{font-size:15px;color:#333}
.flow-step a{color:var(--linkblue);font-weight:600;border-bottom:1px solid var(--linkblue)}

/* ---- FAQ（白カード） ---- */
.faq-section{padding-block:20px 60px}
.faq-card{background:var(--white);border-radius:18px;padding:48px 44px;box-shadow:0 14px 40px rgba(0,0,0,.08)}
.faq-title{text-align:center;font-size:32px;font-weight:800;color:var(--dark);margin-bottom:36px}
.faq-item{padding:22px 0;border-bottom:1px solid #eee}
.faq-item:last-child{border-bottom:none}
.faq-q{display:flex;gap:12px;font-size:16px;font-weight:700;color:var(--dark);line-height:1.6}
.faq-a{display:flex;gap:12px;margin-top:10px}
.faq-a p{font-size:14px;line-height:1.8;color:#444}
.qa{font-family:var(--font-en);font-size:22px;color:var(--red);flex-shrink:0;line-height:1.4}

/* ---- 購入CTA（白背景・ネイビーボタン） ---- */
.buy-cta{background:var(--white);padding-block:54px 64px;text-align:center}
.buy-lead{color:var(--red);font-weight:700;font-size:16px;margin-bottom:22px}
.btn-buy{display:inline-flex;align-items:center;gap:10px;background:var(--navy);color:var(--white);font-weight:700;font-size:18px;padding:20px 56px;border-radius:999px;box-shadow:0 12px 30px rgba(39,47,144,.3);transition:transform .2s,background .2s}
.btn-buy:hover{transform:translateY(-2px);background:#1d2475}
.btn-buy .material-symbols-rounded{font-size:22px}
.btn-buy .ext{font-size:18px}

/* ---- 製品ページ レスポンシブ（〜768px） ---- */
@media (max-width:768px){
  .phero{padding-block:36px 44px}
  .phero-title{font-size:28px}
  .phero-lead{font-size:15px;text-align:left}
  .phero-makuake{font-size:17px}
  .phero-makuake strong{font-size:23px}

  .features{padding-block:40px}
  .features-card{padding:34px 18px 30px;border-radius:14px}
  .features-title{font-size:22px}
  .feature-grid{grid-template-columns:1fr;gap:40px}

  .stories{padding-block:48px}
  .story,.story--reverse{flex-direction:column;gap:24px}
  .story-media,.story-body{width:100%}
  .story-name{font-size:21px}
  .story-divider{margin-block:40px}

  .spec-section{padding-block:40px}
  .spec-title{font-size:26px;margin-bottom:30px}
  .spec-row{grid-template-columns:1fr;gap:8px;padding:20px 0}
  .flow-sub{margin-top:-20px}
  .faq-card{padding:32px 20px}
  .faq-title{font-size:26px}

  .buy-cta{padding-block:40px 48px}
  .btn-buy{font-size:16px;padding:18px 36px}
}

/* ============================================================
   製品タグライン＋マイクロガレージ式 特徴（赤背景・白ピル・正方形画像）
   ＝製品②③で使う追加バリエーション
   ============================================================ */

/* ヒーロー直下の中央強調タグライン */
.product-tagline{background:var(--white);text-align:center;padding-block:8px 56px}
.product-tagline p{font-size:24px;font-weight:800;line-height:1.6;color:var(--dark)}

/* 赤背景・白ピル・正方形画像・白本文（カードなし） */
.mfeatures{background:var(--red);padding-block:64px;color:var(--white)}
.mfeatures-title{text-align:center;font-size:30px;font-weight:800;color:var(--white);line-height:1.4}
.mfeatures-rule{display:block;width:60px;height:4px;background:var(--white);border-radius:2px;margin:18px auto 48px}
.mfeature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.mfeature-badge{display:inline-block;background:var(--white);color:var(--red);font-size:16px;font-weight:800;padding:6px 18px;border-radius:999px;line-height:1.4}
.mfeature-sub{color:var(--white);font-size:20px;font-weight:800;margin:10px 0 18px;line-height:1.4}
.mfeature-media{border-radius:12px;overflow:hidden;aspect-ratio:1/1;margin-bottom:18px;box-shadow:0 10px 28px rgba(0,0,0,.2)}
.mfeature-media img{width:100%;height:100%;object-fit:cover;display:block}
.mfeature-text{font-size:14px;line-height:1.9;color:var(--white)}

@media (max-width:768px){
  .product-tagline{padding-block:4px 40px}
  .product-tagline p{font-size:19px}
  .mfeatures{padding-block:40px}
  .mfeatures-title{font-size:22px}
  .mfeature-grid{grid-template-columns:1fr;gap:36px}
}

/* ============================================================
   ツールボックス式 特徴（TT360型の白カード・見出しは上段ダーク＋下段=赤ピル・単一段落本文）
   ＋ ヒーローH1上の小見出し（【完全受注生産】等）
   ============================================================ */
.phero-pretitle{font-size:28px;font-weight:800;color:var(--dark);line-height:1.3;margin-bottom:4px}
.feat-cap{font-size:16px;font-weight:700;color:var(--dark);margin-bottom:10px;line-height:1.4}
.feat-pill{display:inline-block;background:var(--red);color:var(--white);font-size:18px;font-weight:800;padding:6px 16px;border-radius:999px;line-height:1.4;margin-bottom:18px}
.feat-body{font-size:14px;line-height:1.8;color:#333}
.notes-subhead{font-weight:700;color:var(--dark);font-size:15px;margin-bottom:10px}

@media (max-width:768px){
  .phero-pretitle{font-size:19px}
}

/* ============================================================
   下層ページ共通：英字ページタイトル（ABOUT / CONTACT / NEWS 等）
   ============================================================ */
.page-title-en{font-family:var(--font-en);font-size:42px;letter-spacing:.04em;color:var(--red);text-align:center}
.page-rule{display:block;width:70px;height:4px;background:var(--red);border-radius:2px;margin:18px auto 0}

/* ============================================================
   about（会社概要・創業ストーリー）
   ============================================================ */
.about-hero{background:var(--white);padding-block:56px 36px;text-align:center}
.about-lead-title{font-size:32px;font-weight:800;line-height:1.6;color:var(--dark);margin:40px 0 28px}
.about-lead{font-size:15px;line-height:2.05;color:#333;max-width:900px;margin:0 auto;text-align:left}

/* 画像ギャラリー行（2〜3カラム・キャプション付き） */
.about-gallery{background:var(--white);padding-block:8px 24px}
.about-gallery .container{display:grid;gap:22px}
.about-gallery.cols-3 .container{grid-template-columns:repeat(3,1fr)}
.about-gallery.cols-2 .container{grid-template-columns:repeat(2,1fr)}
.about-figure{margin:0}
.about-figure img{width:100%;border-radius:8px;box-shadow:0 10px 26px rgba(0,0,0,.12);aspect-ratio:4/3;object-fit:cover}
.about-cap{margin-top:10px;font-size:13px;color:#888;text-align:center}

/* ストーリーブロック（見出し＋本文の2カラム・交互） */
.about-block{background:var(--white);padding-block:30px}
.about-block .container{display:flex;gap:48px;align-items:flex-start}
.about-block--reverse .container{flex-direction:row-reverse}
.about-block-head{flex:0 0 38%;font-size:28px;font-weight:800;line-height:1.55;color:var(--dark)}
.about-block-body{flex:1 1 62%;font-size:15px;line-height:2.05;color:#333}

/* 転換行 */
.about-transition{background:var(--white);text-align:center;padding-block:44px 12px}
.about-transition p{font-size:24px;font-weight:800;color:var(--dark)}

/* COMPANY 会社概要（左=見出し / 右=テーブル） */
.company{background:var(--white);padding-block:44px 64px}
.company .container{display:flex;gap:44px;align-items:flex-start}
.company-head{flex:0 0 220px}
.company-head .page-title-en{text-align:left}
.company-head .page-rule{margin:16px 0 0}
.company-table{flex:1 1 auto}
.company-table .spec-row{grid-template-columns:150px 1fr;gap:24px}
.company-table .spec-row:first-child{border-top:none}
.company-table a{color:var(--linkblue)}
.company-table a:hover{border-bottom:1px solid var(--linkblue)}
.company-multi{display:flex;flex-direction:column;gap:6px}

@media (max-width:768px){
  .page-title-en{font-size:34px}
  .about-hero{padding-block:40px 24px}
  .about-lead-title{font-size:23px;margin:28px 0 22px}
  .about-lead{font-size:14px;line-height:1.95;text-align:left}
  .about-gallery.cols-3 .container,.about-gallery.cols-2 .container{grid-template-columns:1fr;gap:18px}
  .about-block .container,.about-block--reverse .container{flex-direction:column;gap:18px}
  .about-block-head{font-size:21px}
  .about-transition p{font-size:18px}
  .company .container{flex-direction:column;gap:24px}
  .company-head{flex-basis:auto}
  .company-table .spec-row{grid-template-columns:1fr;gap:6px}
}

/* ============================================================
   news（一覧 ＋ 記事詳細）
   ============================================================ */
.news-page{background:var(--white);padding-block:52px 64px}
.news-filter{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin:36px 0 44px}
.news-filter button{border:1.5px solid var(--red);color:var(--red);background:var(--white);font-weight:700;font-size:14px;padding:8px 22px;border-radius:999px;transition:background .2s,color .2s}
.news-filter button.is-active,.news-filter button:hover{background:var(--red);color:var(--white)}
.news-index{max-width:860px;margin:0 auto}
.news-row{display:block;padding:22px 4px;border-bottom:1px solid #e5e5e5}
.news-row:first-child{border-top:1px solid #e5e5e5}
.news-row-meta{display:flex;align-items:center;gap:14px;margin-bottom:10px}
.news-cat-badge{background:var(--red);color:var(--white);font-size:12px;font-weight:700;padding:4px 14px;border-radius:6px}
.news-row-date{font-family:var(--font-en);font-size:17px;letter-spacing:.04em;color:var(--red)}
.news-row-title{font-size:18px;font-weight:700;color:var(--dark);line-height:1.6;transition:color .2s}
.news-row:hover .news-row-title{color:var(--red)}
.news-empty{text-align:center;color:#999;padding:40px 0}

/* 記事詳細 */
.article-page{background:var(--white);padding-block:40px 60px}
.article{max-width:760px;margin:0 auto}
.article-meta{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.article-title{font-size:27px;font-weight:800;line-height:1.5;color:var(--dark)}
.article-rule{border:none;border-top:1px solid #ddd;margin:24px 0 32px}
.article-img{width:100%;border-radius:8px;margin-bottom:30px;box-shadow:0 10px 28px rgba(0,0,0,.12)}
.article-body{font-size:15px;line-height:2;color:#333}
.article-body p{margin-bottom:20px}
.article-body b{font-weight:700;color:var(--dark)}
.article-subhead{font-size:17px;font-weight:800;color:var(--dark);margin:30px 0 14px}
.article-list{margin:0 0 20px;padding-left:0;list-style:none;counter-reset:art}
.article-list li{position:relative;padding-left:30px;margin-bottom:14px;line-height:1.9}
.article-list li::before{counter-increment:art;content:counter(art) ".";position:absolute;left:0;top:0;font-weight:700;color:var(--red)}
.article-sign{margin-top:28px;color:#555}
.article-linkblock{margin:22px 0}
.article-linkblock .lb-label{font-weight:700;color:var(--dark);margin-bottom:6px;font-size:14px}
.article-linkblock a{color:var(--linkblue);line-height:1.7}
.article-linkblock a:hover{border-bottom:1px solid var(--linkblue)}
.article-event{margin-bottom:26px;padding-bottom:24px;border-bottom:1px dashed #ddd}
.article-event:last-of-type{border-bottom:none}
.article-event .ev-date{display:inline-block;background:var(--dark);color:var(--white);font-weight:700;font-size:14px;padding:4px 14px;border-radius:6px;margin-bottom:10px}
.article-event .ev-name{font-weight:700;color:var(--dark);margin-bottom:6px}
.article-event a{color:var(--linkblue);word-break:break-all}
.article-event .ev-info{font-size:14px;color:#555;line-height:1.9;white-space:pre-line}
.article-back{display:inline-flex;align-items:center;gap:6px;margin-top:34px;color:var(--red);font-weight:700}
.article-back:hover{opacity:.7}

@media (max-width:768px){
  .news-page{padding-block:36px 44px}
  .news-filter{gap:10px;margin:28px 0 30px}
  .news-filter button{font-size:13px;padding:7px 15px}
  .news-row-title{font-size:16px}
  .article-page{padding-block:30px 44px}
  .article-title{font-size:21px}
}

/* ============================================================
   privacy policy（プライバシーポリシー）
   ============================================================ */
.page-subtitle{text-align:center;font-size:15px;font-weight:700;color:var(--dark);margin-top:10px}
.policy-page{background:var(--white);padding-block:52px 64px}
.policy-box{max-width:880px;margin:36px auto 0;border:1px solid var(--red);border-radius:10px;padding:44px 48px}
.policy-intro{font-size:15px;line-height:2;color:#333;margin-bottom:34px}
.policy-sec{margin-bottom:30px}
.policy-h{font-size:19px;font-weight:800;color:var(--dark);margin-bottom:14px}
.policy-sec p{font-size:15px;line-height:2;color:#333;margin-bottom:12px}
.policy-sec a{color:var(--linkblue);word-break:break-all}
.policy-sec a:hover{border-bottom:1px solid var(--linkblue)}
.policy-list{list-style:none;counter-reset:pol;margin:6px 0 12px;padding:0}
.policy-list li{position:relative;padding-left:26px;margin-bottom:12px;font-size:15px;line-height:1.9;color:#333}
.policy-list li::before{counter-increment:pol;content:counter(pol) ".";position:absolute;left:0;top:0;color:#333}
.policy-provider{font-weight:700;color:var(--dark);margin:14px 0 4px}
.policy-linklist{display:flex;flex-direction:column;gap:4px;margin:6px 0 14px}
.policy-linklist .ll-label{font-weight:600;color:var(--dark);font-size:14px}

@media (max-width:768px){
  .policy-page{padding-block:36px 44px}
  .policy-box{padding:28px 20px;margin-top:28px}
  .policy-h{font-size:17px}
}

/* ============================================================
   トップページ刷新（原本準拠）＋ 共通フッター刷新（全ページ）
   ※後勝ちで上の旧定義（.products/.sns/.news/.shop/.footer-inner）を上書き
   ============================================================ */

/* ナビは大文字（原本踏襲・text-transform） */
.gnav a{text-transform:uppercase}
.gnav .nav-contact{text-transform:uppercase}

/* ---- ヒーロー：サブコピー追加 ---- */
.hero-content{gap:20px}
.hero-sub{font-size:24px;font-weight:700;color:var(--white);text-shadow:0 2px 14px rgba(0,0,0,.5);margin-top:-8px}

/* ---- 製品3カード（赤背景・白カード横並び） ---- */
.products{background:var(--red);padding-block:70px}
.product-grid{display:flex;gap:32px}
.pcard{flex:1 1 0;background:var(--white);border-radius:14px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 14px 38px rgba(0,0,0,.22);transition:transform .25s ease,box-shadow .25s ease}
.pcard:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(0,0,0,.3)}
.pcard-media{aspect-ratio:4/3;background:#111;overflow:hidden}
.pcard-media img{width:100%;height:100%;object-fit:cover;display:block;border-radius:0;box-shadow:none}
.pcard-body{padding:18px 22px 22px;display:flex;flex-direction:column;gap:6px}
.pcard-label{font-family:var(--font-en);font-size:18px;letter-spacing:.06em;color:var(--red)}
.pcard-catch{font-size:14px;font-weight:600;color:#555;line-height:1.6}
.pcard-name{font-size:22px;font-weight:800;color:var(--dark);line-height:1.4;margin-top:auto}

/* ---- SNS導線（YOUTUBE/LINE 大見出し・赤背景） ---- */
.sns{background:var(--red);padding-block:64px}
.sns-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.sns-block{display:flex;flex-direction:column;align-items:center;text-align:center;color:var(--white);padding:14px;transition:opacity .2s}
.sns-block:hover{opacity:.82}
.sns-en{font-family:var(--font-en);font-size:46px;letter-spacing:.04em;color:var(--white);line-height:1}
.sns-rule{display:block;width:60px;height:3px;background:var(--white);border-radius:2px;margin:16px 0 20px}
.sns-desc{font-size:15px;line-height:1.8;color:var(--white)}

/* ---- ニュース（黒背景＋白パネル・行リスト） ---- */
.news{background:var(--black);padding-block:72px}
.news-panel{background:var(--white);border-radius:18px;padding:48px 56px 40px;max-width:none;margin:0 auto;box-shadow:0 18px 46px rgba(0,0,0,.28)}
.news-en{margin:0}
.news-panel .news-index{max-width:none;margin:36px 0 0}
.news-more{display:flex;align-items:center;justify-content:flex-end;gap:14px;width:100%;margin-top:30px;color:var(--dark);font-weight:700;font-size:15px}
.news-more:hover{opacity:.7}
.news-more-arrow{width:44px;height:44px;border-radius:50%;background:var(--red);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:22px}

/* ---- Other products（白背景・カルーセル＋操作ボタン） ---- */
.shop{background:var(--white);padding-block:70px}
.shop-title{margin:0}
.shop .page-rule{margin-bottom:40px}
.shop-viewport{overflow:hidden}
.shop-scroller{display:flex;gap:20px;overflow-x:auto;padding-bottom:10px;scrollbar-width:none;scroll-snap-type:none}
.shop .shop-item{scroll-snap-align:none}
.shop-scroller::-webkit-scrollbar{display:none}
.shop-item{flex:0 0 230px;scroll-snap-align:start;background:var(--white);border-radius:12px;overflow:hidden;border:1px solid #eee;transition:transform .2s,box-shadow .2s}
.shop-item:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.15)}
.shop-thumb{aspect-ratio:1/1;background:var(--light)}
.shop-thumb img{width:100%;height:100%;object-fit:cover}
.shop-name{padding:14px 16px;font-size:13px;font-weight:600;line-height:1.6;color:var(--dark)}
.shop-controls{display:flex;justify-content:center;gap:14px;margin-top:32px}
.shop-ctrl{width:46px;height:46px;border-radius:50%;background:var(--red);color:var(--white);display:flex;align-items:center;justify-content:center;transition:transform .2s,background .2s}
.shop-ctrl:hover{transform:translateY(-2px);background:#c80210}
.shop-ctrl .material-symbols-rounded{font-size:24px}

/* ---- フッター刷新（赤背景・ロゴ＋SNSアイコン丸／全ページ共通） ---- */
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:22px}
.footer-top{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;width:100%;gap:20px}
.footer-brand{grid-column:1;justify-self:start;display:flex;flex-direction:column;gap:8px;align-items:flex-start}
.footer-logo{width:150px;height:auto;display:block}
.footer-privacy{font-size:13px;color:var(--white)}
.footer-privacy:hover{opacity:.7}
.footer-socials{grid-column:2;display:flex;gap:14px}
.footer-socials a{width:40px;height:40px;border-radius:50%;background:var(--white);color:var(--red);display:flex;align-items:center;justify-content:center;font-size:17px;transition:transform .2s}
.footer-socials a:hover{transform:translateY(-2px)}
.copyright{font-size:12px;opacity:.9;color:var(--white);margin:0}

@media (max-width:768px){
  .hero-sub{font-size:16px;margin-top:-4px}
  .products{padding-block:44px}
  .product-grid{flex-direction:column;gap:22px}
  .pcard-name{font-size:20px}
  .sns{padding-block:44px}
  .sns-grid{grid-template-columns:1fr;gap:20px}
  .sns-en{font-size:36px}
  .news{padding-block:44px}
  .news-panel{padding:30px 18px 26px}
  .news-more{justify-content:center}
  .shop{padding-block:44px}
  .shop-item{flex-basis:180px}
  .footer-top{grid-template-columns:1fr;justify-items:center;gap:18px}
  .footer-brand{grid-column:1;align-items:center}
  .footer-socials{grid-column:1;flex-wrap:wrap;justify-content:center}
}

/* ============================================================
   トップ微修正（原本実測：幅／ヒーローボタン／製品背景／カルーセル）
   ============================================================ */

/* ① ヘッダーを原本どおり全幅に（左右パディングのみ・コンテンツ枠1120は据え置き） */
.header-inner{max-width:none;padding:10px clamp(18px,3vw,48px)}

/* ② ヒーロー「製品を見る」ボタン：角ばった白・濃色文字（原本＝radius0/透明背景の白ボタン） */
.hero .btn-primary{background:var(--white);color:#333;border-radius:2px;padding:12px 28px;font-size:16px;font-weight:700}
.hero .btn-primary:hover{background:#333;color:var(--white);transform:translateY(-2px)}

/* ③ 製品セクション背景：暗いグラデーション＋ドット＋Sの透かし（原本準拠） */
.products{
  background:
    radial-gradient(rgba(255,255,255,.05) 1.4px, transparent 1.6px) 0 0 / 20px 20px,
    linear-gradient(#000 20%, #625e5e 50%, #1f1d1d 100%);
  position:relative;
  overflow:hidden;
}
.products::before{
  content:"S";
  position:absolute;left:1%;top:50%;transform:translateY(-50%);
  font-family:var(--font-en);font-size:520px;line-height:1;font-weight:400;
  color:rgba(230,2,17,.15);pointer-events:none;z-index:0;
}
.products .container{position:relative;z-index:1}

@media (max-width:768px){
  .products::before{font-size:260px}
}

/* ============================================================
   トップ 第2次合わせ込み（原本computed style 総当たり実測の差分）
   ============================================================ */
/* 英字Bebas見出しを原本実測の64pxに（NEWS/YOUTUBE/ABOUT/COMPANY/PRIVACY POLICY等が42-46pxで小さすぎた） */
.page-title-en{font-size:64px}
.sns-en{font-size:64px}
/* ヒーローサブ 28px（原本実測） */
.hero-sub{font-size:28px;margin-top:0}
/* 製品名 24px（原本実測） */
.pcard-name{font-size:24px}
/* 製品カード：角丸なし＋原本の影（原本実測 radius0 / shadow rgba(0,0,0,.5) 0 2px 8px 1px） */
.pcard{border-radius:0;box-shadow:rgba(0,0,0,.5) 0 2px 8px 1px}
.pcard:hover{box-shadow:rgba(0,0,0,.55) 0 8px 22px 1px}
/* ヒーロー「製品を見る」：透明地＋白2px枠・濃色文字・角丸0（原本実測） */
.hero .btn-primary{background:transparent;color:#333;border:2px solid #fff;border-radius:0;padding:8px 15px;font-size:16px;font-weight:400}
.hero .btn-primary:hover{background:#fff;color:#333;transform:none}
/* ナビ間隔45px・ロゴ幅190px（原本実測） */
.gnav ul{gap:42px}
.logo img{width:190px}

@media (max-width:768px){
  .page-title-en{font-size:40px}
  .sns-en{font-size:44px}
  .gnav ul{gap:22px}
}

/* ============================================================
   contact（お問い合わせ・白背景＋中央見出し＋赤枠フォーム）
   原本=STUDIOネイティブform を見た目だけ忠実再現（送信機能なし＝プレビュー用）
   ============================================================ */
.contact-page{background:var(--white);padding-block:52px 72px;color:var(--dark)}
.contact-page .page-rule{margin-bottom:0}
.contact-intro{text-align:center;font-size:15px;line-height:1.95;color:#333;margin:30px auto 0;max-width:780px}
/* 赤枠ボックス（原本踏襲・policy-boxと同系） */
.contact-box{max-width:940px;margin:40px auto 0;border:1px solid var(--red);border-radius:4px;padding:48px 56px}
.contact-box .req{color:var(--red);margin-left:2px;font-weight:700}
.req-note{font-size:14px;color:#555;margin-bottom:26px}
/* ラベル左・入力右の2カラム（原本踏襲） */
.contact-field{display:grid;grid-template-columns:230px 1fr;gap:24px;align-items:start;padding:16px 0}
.contact-field>label{font-weight:700;font-size:15px;padding-top:11px;line-height:1.5}
.contact-field input,.contact-field select,.contact-field textarea{
  width:100%;font:inherit;font-size:15px;color:var(--dark);background:#fff;
  border:1px solid #cfcfcf;border-radius:4px;padding:12px 14px;transition:border-color .15s ease}
.contact-field input:focus,.contact-field select:focus,.contact-field textarea:focus{outline:none;border-color:var(--red)}
.contact-field textarea{min-height:140px;resize:vertical;line-height:1.7}
.contact-field input::placeholder,.contact-field textarea::placeholder{color:#bcbcbc}
.contact-field select{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23888'><path d='M7 10l5 5 5-5z'/></svg>");background-repeat:no-repeat;background-position:right 10px center;padding-right:38px}
/* 住所群の小見出し */
.contact-group-head{font-weight:700;font-size:15px;margin-top:26px;padding-top:22px;border-top:1px solid #eee}
/* 個人情報同意 */
.contact-consent{display:flex;align-items:flex-start;gap:10px;justify-content:center;margin-top:32px;font-size:15px;line-height:1.6}
.contact-consent input{margin-top:5px;width:16px;height:16px;flex:none}
.contact-consent a{color:var(--linkblue)}
.contact-consent a:hover{border-bottom:1px solid var(--linkblue)}
/* 送信ボタン（赤・原本ブランド色） */
.contact-submit{text-align:center;margin-top:36px}
.btn-contact{display:inline-block;background:var(--red);color:#fff;border-radius:4px;padding:15px 60px;font-weight:700;font-size:16px;letter-spacing:.04em;transition:background .2s ease}
.btn-contact:hover{background:#c40110}
.contact-preview-note{margin-top:16px;font-size:13px;color:#999}
.contact-submit-msg{margin-top:12px;font-size:14px;color:var(--red);font-weight:700}

@media (max-width:768px){
  .contact-page{padding-block:36px 48px}
  .contact-intro{font-size:14px;text-align:left;line-height:1.9}
  .contact-box{padding:26px 18px;margin-top:28px}
  .contact-field{grid-template-columns:1fr;gap:8px;padding:13px 0}
  .contact-field>label{padding-top:0}
  .btn-contact{padding:14px 44px;width:100%}
}
