/* =============================================================
   農業用無人車 R100/R200 製品ページ専用CSS（/products/r100200/）
   前半: 実サイト style.css から抽出した #header / #footer
   中盤: R100/R200 ダークデザイン本体（大地のグリーン差分入り）
   後半: 実サイトヘッダー/フッター保護（p60.css と同一）
   ============================================================= */

/* SoraNavi 実サイトのヘッダー/フッター CSS（style.css から #header/#footer 部分のみ抽出・名前空間化済み） */
/* header
----------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
  z-index: 99;
}

#header .header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 24px 8px 24px;
  gap: 10px;
  position: relative;
  z-index: 98;
}

#header .header_logo {
  max-width: 210px;
  flex-shrink: 0;
}

#header .header_logo a {
  display: block;
}

#header .header_logo a:hover {
  opacity: 0.7;
}

#header .header_mess {
  display: flex;
  align-items: center;
  gap: 24px;
}

#header .header_btn a {
  background: #241f21;
  display: flex;
  width: 110px;
  height: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transform: skewX(-15deg);
  border: 1px #fff solid;
  -webkit-border-radius: 8px 0 8px 0;
  -moz-border-radius: 8px 0 8px 0;
  -ms-border-radius: 8px 0 8px 0;
  -o-border-radius: 8px 0 8px 0;
  border-radius: 8px 0 8px 0;
  position: relative;
}

#header .header_btn a:hover {
  border: 1px #00bcff solid;
}

#header .header_btn .btn_txt {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.03em;
  display: block;
  font-weight: 700;
  transform: skewX(15deg);
  position: relative;
  z-index: 2;
}

#header .header_btn a:before {
  position: absolute;
  content: "";
  background: #89d329;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(15deg);
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
  z-index: 1;
}

#header .header_btn a:hover:before {
  width: 120%;
  height: 400%;
  background: #00bcff;
}

#header .header_navi {
  display: flex;
  gap: 24px;
}

#header .header_navi>li {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
}

#header .header_navi>li>a {
  display: block;
  position: relative;
  padding: 8px 0;
}

#header .header_navi>li>a:before {
  position: absolute;
  background: #89d329;
  width: 0;
  height: 1px;
  content: "";
  z-index: 2;
  bottom: 0;
  left: 50%;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

#header .header_navi>li>a:hover:before {
  width: 100%;
  left: 0;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

#header .header_navi .navi_name {
  padding: 8px 16px 8px 0;
  display: block;
  cursor: pointer;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
  position: relative;
}

#header .header_navi .navi_name:after {
  position: absolute;
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 8px;
  height: 4px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
  z-index: 0;
}

#header .header_navi .navi_name.on:after {
  transform: translateY(-50%) rotate(-180deg);
}

#header .header_navi .navi_name.on:before {
  width: 100%;
  left: 0;
}

#header .header_navi .navi_name:before {
  position: absolute;
  background: #89d329;
  width: 0;
  height: 1px;
  content: "";
  z-index: 2;
  bottom: 0;
  left: 50%;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

#header .header_navi .navi_name:hover:before {
  width: 100%;
  left: 0;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
}

#header .header_navi .navi_sub {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding: 24px 0 0;
  z-index: 2;
}

#header .header_navi .navi_sub .sub_box {
  background: #3e393b;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#header .header_navi .navi_sub .sub_box a {
  display: block;
  color: #b6b7b9;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 10px 0;
}

#header .header_navi .navi_sub .sub_box a:hover {
  color: #fff;
}

.navbar-toggle {
  display: none;
}

.navbar-collapse {
  display: none;
}

@media (max-width: 1024px) {
  #header .header_in {
    height: 62px;
    padding: 0 8px 0 16px;
  }

  #header .header_logo {
    max-width: 146px;
    padding: 0 0 10px;
    font-size: 0;
  }

  #header .header_logo a:hover {
    opacity: 1;
  }

  #header .header_mess {
    display: none;
  }

  .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
  }

  .navbar-toggle .toggle_menu {
    width: 54px;
    height: 54px;
    background: url("../img/common/ico_menu.svg") center center no-repeat;
    background-size: 54px 54px;
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
  }

  .navbar-toggle.on .toggle_menu {
    background: url("../img/common/ico_menu_on.svg") center center no-repeat;
    background-size: 54px 54px;
  }

  .navbar-collapse {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    background: #241f21;
    height: 100vh;
    width: 100vw;
    padding: 62px 0 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 80;
  }

  .navbar-collapse .navbar_inner {
    height: 100%;
    overflow-y: scroll;
  }

  .navbar-collapse .navbar_inner {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }

  .navbar-collapse .navbar_inner::-webkit-scrollbar {
    display: none;
  }

  .navbar-collapse .navbar_inner {
    scrollbar-width: none;
  }

  .navbar-collapse .navbar_box {
    width: 220px;
    margin: 0 auto;
  }

  .navbar-collapse .navbar_btn {
    display: flex;
    justify-content: center;
    margin: 24px 0 0;
  }

  .navbar-collapse .navbar_btn a {
    background: #241f21;
    display: flex;
    width: 100%;
    height: 52px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transform: skewX(-15deg);
    border: 1px #fff solid;
    -webkit-border-radius: 8px 0 8px 0;
    -moz-border-radius: 8px 0 8px 0;
    -ms-border-radius: 8px 0 8px 0;
    -o-border-radius: 8px 0 8px 0;
    border-radius: 8px 0 8px 0;
    position: relative;
  }

  .navbar-collapse .navbar_btn .btn_txt {
    color: #fff;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.03em;
    display: block;
    font-weight: 700;
    transform: skewX(15deg);
    position: relative;
    z-index: 2;
  }

  .navbar-collapse .navbar_list>li>a {
    border-bottom: 1px #89d329 solid;
    display: block;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
    color: #fff;
  }

  .navbar-collapse .navbar_list .navbar_par {
    border-bottom: 1px #89d329 solid;
    display: block;
    padding: 20px 15px 20px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
    color: #fff;
    margin: 0;
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    position: relative;
  }

  .navbar-collapse .navbar_list .navbar_par:before {
    position: absolute;
    content: "";
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 8px;
    height: 4px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
    z-index: 0;
  }

  .navbar-collapse .navbar_list .navbar_par.on {
    margin: 24px 0 0;
  }

  .navbar-collapse .navbar_list .navbar_par.on:before {
    transform: translateY(-50%) rotate(-180deg);
  }

  .navbar-collapse .navbar_list .navbar_sub {
    display: none;
    width: 100%;
  }

  .navbar-collapse .navbar_list .navbar_sub .sub_inner {
    display: flex;
    justify-content: center;
  }

  .navbar-collapse .navbar_list .navbar_sub .sub_cont {
    background: #3e393b;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .navbar-collapse .navbar_list .navbar_sub .sub_cont li a {
    display: block;
    padding: 8px 0;
    color: #b6b7b9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
}


/* footer
----------------------------------------------- */
#footer .pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9;
}

#footer .pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  color: #fff;
  width: 64px;
  height: 64px;
  font-weight: 700;
  padding: 5px 0 0;
}

#footer .pagetop a:hover {
  color: #00bcff;
}

#footer .pagetop a .arrow {
  font-size: 25px;
  line-height: 1;
}

#footer .pagetop a .txt {
  font-size: 12px;
  line-height: 1.2;
}

#footer {
  padding: 64px 0 0;
}

#footer .footer_box {
  padding: 64px 20px;
  border-bottom: 1px #b6b7b9 solid;
  border-top: 1px #b6b7b9 solid;
}

#footer .footer_inner {
  max-width: 1256px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

#footer .footer_logo a {
  display: block;
}

#footer .footer_logo a:hover {
  opacity: 0.7;
}

#footer .footer_btn {
  margin: 24px 0 0;
}

#footer .footer_btn a {
  background: #241f21;
  display: flex;
  width: 230px;
  height: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transform: skewX(-15deg);
  margin: 0 0 0 5px;
  border: 1px #fff solid;
  -webkit-border-radius: 8px 0 8px 0;
  -moz-border-radius: 8px 0 8px 0;
  -ms-border-radius: 8px 0 8px 0;
  -o-border-radius: 8px 0 8px 0;
  border-radius: 8px 0 8px 0;
  position: relative;
}

#footer .footer_btn a:hover {
  border: 1px #00bcff solid;
}

#footer .footer_btn .btn_txt {
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.03em;
  display: block;
  font-weight: 700;
  transform: skewX(15deg);
  position: relative;
  z-index: 2;
}

#footer .footer_btn a:before {
  position: absolute;
  content: "";
  background: #89d329;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skewX(15deg);
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  /* Firefox */
  -webkit-transition: all 0.5s !important;
  /* Chrome&Safari */
  z-index: 1;
}

#footer .footer_btn a:hover:before {
  width: 120%;
  height: 400%;
  background: #00bcff;
}

#footer .footer_line {
  margin: 46px 0 0;
  display: flex;
}

#footer .footer_line a {
  display: block;
  max-width: 240px;
}

#footer .footer_line a:hover {
  opacity: 0.7;
}

#footer .footer_link {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

#footer .footer_link .link_box {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  color: #b6b7b9;
}

#footer .footer_link .link_box a {
  color: #b6b7b9;
}

#footer .footer_link .link_in {
  width: 200px;
}

#footer .footer_link .link_name {
  border-bottom: 1px #b6b7b9 solid;
}

#footer .footer_link .link_name .name_in {
  padding: 7px 15px 7px 0;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

#footer .footer_link .link_name .name_in:before {
  position: absolute;
  content: "";
  background: #b6b7b9;
  width: 8px;
  height: 4px;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 0;
}

#footer .footer_link .link_name a.name_in:before {
  display: none;
}

#footer .footer_link .link_name a:hover {
  color: #fff;
}

#footer .footer_link .link_navi {
  margin: 8px 0 0;
}

#footer .footer_link .link_navi a {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  padding: 10px 0;
  font-weight: 600;
}

#footer .footer_link .link_navi a:hover {
  color: #fff;
}

#footer .footer_other {
  max-width: 1296px;
  margin: 40px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#footer .footer_other .other_home {
  flex-shrink: 0;
}

#footer .footer_other .other_home a {
  display: block;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

#footer .footer_other .other_home a:hover {
  opacity: 0.7;
}

#footer .footer_other .other_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}

#footer .footer_other .other_cont a {
  display: block;
  color: #b6b7b9;
  font-size: 11px;
  line-height: 1.5;
}

#footer .footer_other .other_cont a:hover {
  color: #fff;
}

#footer .copy_box {
  padding: 104px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}

#footer .copyright {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

@media (max-width: 767px) {
  #footer .pagetop {
    right: 0;
    bottom: 35px;
  }

  #footer .pagetop a:hover {
    color: #fff;
  }

  #footer .footer_logo a:hover {
    opacity: 1;
  }

  #footer .footer_box {
    padding: 40px 20px;
  }

  #footer .footer_inner {
    flex-direction: column;
    align-items: center;
    gap: 64px 0;
  }

  #footer .footer_logo {
    max-width: 240px;
  }

  #footer .footer_btn {
    margin: 16px 0 0;
  }

  #footer .footer_btn a {
    width: 220px;
    height: 52px;
  }

  #footer .footer_btn a:hover {
    border: 1px #fff solid;
  }

  #footer .footer_btn .btn_txt {
    font-size: 15px;
    letter-spacing: 0.03em;
  }

  #footer .footer_btn a:before {
    display: none;
  }

  #footer .footer_line {
    margin: 40px 0 0;
  }

  #footer .footer_line a:hover {
    opacity: 1;
  }

  #footer .footer_link {
    gap: 40px;
    flex-direction: column;
  }

  #footer .footer_link .link_box {
    gap: 40px 0;
  }

  #footer .footer_link .link_name a:hover {
    color: #b6b7b9;
  }

  #footer .footer_link .link_navi a:hover {
    color: #b6b7b9;
  }

  #footer .footer_other {
    margin: 64px auto 0;
    flex-direction: column;
    gap: 40px;
  }

  #footer .footer_other .other_home a {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  #footer .footer_other .other_home a:hover {
    opacity: 1;
  }

  #footer .footer_other .other_cont {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  #footer .footer_other .other_cont a {
    padding: 10px 0;
    color: #b6b7b9;
  }

  #footer .footer_other .other_cont a:hover {
    color: #b6b7b9;
  }

  #footer .copy_box {
    padding: 104px 20px 62px;
    gap: 10px 16px;
    flex-wrap: wrap;
  }
}



/* ===== ここから R100/R200 ダークデザイン本体 ===== */

  :root {
    --bg-0: #050608;
    --bg-1: #0d0c0e;
    --bg-2: #161519;
    --bg-3: #1f1d22;
    --text: #ffffff;
    --text-mute: #b6b7b9;
    --text-soft: #7c7b80;
    --line: rgba(255,255,255,.06);
    --line-strong: rgba(255,255,255,.14);
    --accent: #00bcff;       /* SoraNavi シアン */
    --accent-dim: #0091df;   /* バイエル ブルー */
    --accent-fade: rgba(0,188,255,.06);
    --font-jp: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
    --font-jp-mincho: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif;
    --font-num: "Inter","Noto Sans",sans-serif;
  }

  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg-0); color: var(--text); font-family: var(--font-jp); -webkit-font-smoothing: antialiased; font-feature-settings: "palt" 1; line-height: 1.7; letter-spacing: .04em; }
  img { display: block; max-width: 100%; height: auto; }
  a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
  a:hover { opacity: .7; }
  h1, h2, h3, h4 { font-weight: 700; letter-spacing: .04em; margin: 0; }
  .site-header {
    position: sticky; top: 30px; z-index: 50;
    background: rgba(8,7,9,.78); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }
  .site-header .row { display: flex; align-items: center; justify-content: space-between; padding: 18px 56px; }
  .logo { font-family: var(--font-num); font-weight: 900; letter-spacing: .18em; font-size: 18px; color: #fff; }
  .logo .small { color: var(--text-soft); font-size: 11px; font-weight: 500; letter-spacing: .14em; margin-left: 8px; }
  .nav { display: flex; gap: 32px; font-size: 13px; font-weight: 700; letter-spacing: .12em; }
  .nav a { color: var(--text); position: relative; padding: 4px 0; }
  .nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
  .nav a:hover::after { transform: scaleX(1); }
  .nav a:hover { color: var(--accent); opacity: 1; }
  .nav-cta { background: var(--accent); color: var(--bg-0); padding: 10px 22px; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
  .nav-cta:hover { background: #fff; opacity: 1; }

  /* ===== 共通装飾 ===== */
  .grid-bg::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  }
  section { position: relative; overflow: hidden; }
  .container { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
  .ghost-text {
    position: absolute; font-family: var(--font-num); font-weight: 900;
    color: rgba(255,255,255,.03); pointer-events: none; user-select: none;
    line-height: .85; letter-spacing: -.04em; white-space: nowrap;
  }

  /* ===== セクションヘッダー ===== */
  .sec-head { position: relative; margin-bottom: 72px; }
  .num-deco {
    font-family: var(--font-num); font-size: 14px; letter-spacing: .42em;
    color: var(--accent); font-weight: 800; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 14px;
  }
  .num-deco::before { content: ""; width: 32px; height: 1px; background: var(--accent); display: inline-block; }
  .sec-head h2 {
    font-family: var(--font-jp); font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 900; line-height: 1.15; letter-spacing: .04em; margin-bottom: 24px;
  }
  .sec-head h2 .q { color: var(--accent); font-family: var(--font-jp-mincho); font-weight: 400; }
  .sec-head .lede { font-size: 16px; color: var(--text-mute); line-height: 2.1; max-width: 820px; }
  .sec-head .lede strong { color: var(--accent); font-weight: 700; }

  /* ===== HERO ===== */
  .hero {
    min-height: 720px; padding: 132px 56px 88px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-0);
  }
  /* 全面背景：実際の農地・散布中の実写（ケンバーンズ＋スクリム） */
  .hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
  .hero-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 54%;
    animation: kenburns 26s ease-in-out infinite alternate;
  }
  @keyframes kenburns { 0% { transform: scale(1.0); } 100% { transform: scale(1.07); } }
  .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 90% 70% at 50% 44%, rgba(137,211,41,.10) 0%, transparent 60%),
      linear-gradient(180deg, rgba(5,6,8,.60) 0%, rgba(5,6,8,.40) 42%, rgba(5,6,8,.72) 80%, var(--bg-0) 100%);
  }
  .hero > *:not(.hero-bg) { position: relative; z-index: 2; }
  .hero .kicker {
    font-family: var(--font-num); font-size: 12px; letter-spacing: .36em;
    color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: 30px;
    padding: 7px 16px; border: 1px solid var(--accent); background: var(--accent-fade);
  }
  .hero h1 {
    font-family: var(--font-jp); font-size: clamp(46px, 7vw, 108px);
    font-weight: 900; line-height: 1.08; letter-spacing: .06em; text-align: center; margin-bottom: 20px;
    text-shadow: 0 8px 40px rgba(0,0,0,.55);
  }
  .hero h1 .accent { color: var(--accent); }
  .hero h1 .quotation { color: var(--accent); font-weight: 400; font-family: var(--font-jp-mincho); }
  .hero .sub {
    font-family: var(--font-num); font-size: 13px; color: var(--text-mute);
    letter-spacing: .42em; font-weight: 500; text-transform: uppercase; margin-bottom: 8px;
    text-shadow: 0 2px 14px rgba(0,0,0,.7);
  }
  .hero .product-image {
    width: min(1040px, 94%); margin: 8px 0 4px;
    filter: drop-shadow(0 50px 90px rgba(0,188,255,.28));
    animation: float 7s ease-in-out infinite;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  .hero .lede {
    max-width: 760px; text-align: center; color: #e8eaed;
    font-size: 16px; line-height: 2.15; margin: 12px 0 0;
    text-shadow: 0 2px 16px rgba(0,0,0,.6);
  }
  .hero .lede strong { color: var(--green); font-weight: 700; }
  .hero .cta-row { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
  .btn-primary {
    background: var(--accent); color: var(--bg-0); padding: 19px 42px;
    font-weight: 800; letter-spacing: .12em; font-size: 13px;
    display: inline-flex; align-items: center; gap: 12px; position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ""; position: absolute; top: 50%; left: -50%; width: 30%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: translateY(-50%) rotate(20deg); transition: left .6s;
  }
  .btn-primary:hover::before { left: 130%; }
  .btn-primary:hover { background: #fff; opacity: 1; }
  .btn-ghost {
    background: transparent; color: var(--text); border: 1px solid var(--text);
    padding: 19px 42px; font-weight: 700; letter-spacing: .12em; font-size: 13px;
    display: inline-flex; align-items: center; gap: 12px; transition: all .3s;
  }
  .btn-ghost:hover { background: var(--text); color: var(--bg-0); opacity: 1; }

  /* ===== 01 主要諸元 ===== */
  .key-stats { padding: 170px 0 180px; background: var(--bg-1); }
  .key-stats .ghost-text { font-size: 200px; top: 6%; right: -2%; }
  .key-stats .container { position: relative; z-index: 2; }
  .stats-mega { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 88px; }
  .stat-mega { position: relative; padding: 52px 32px 44px; background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; }
  .stat-mega::before { content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); transition: width .8s ease; }
  .stat-mega:hover::before { width: 100%; }
  .stat-mega .label { font-family: var(--font-num); font-size: 11px; letter-spacing: .26em; color: var(--accent); font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
  .stat-mega .ja-label { font-size: 13px; color: var(--text-mute); letter-spacing: .14em; font-weight: 500; margin-bottom: 28px; }
  .stat-mega .value {
    font-family: var(--font-num); font-size: clamp(52px, 6.4vw, 92px);
    font-weight: 600; line-height: .95; letter-spacing: -.02em; color: #fff;
    display: flex; align-items: baseline; gap: 6px;
  }
  .stat-mega .unit { font-size: 19px; color: var(--text-mute); font-weight: 500; letter-spacing: 0; }
  .stat-mega .value-sub { font-family: var(--font-num); font-size: 15px; color: var(--text-mute); font-weight: 500; margin-top: 10px; }
  /* 2機種で数値が異なる項目：両方を同じ扱いで併記（色による優劣をつけない） */
  .by-model { display: flex; flex-direction: column; gap: 14px; }
  .by-model .bm { display: flex; align-items: baseline; gap: 14px; }
  .by-model .m {
    font-family: var(--font-num); font-size: 13px; font-weight: 700; letter-spacing: .1em;
    color: var(--text-mute); min-width: 46px; padding-bottom: 2px;
  }
  .by-model .v {
    font-family: var(--font-num); font-size: clamp(38px, 4.4vw, 62px); font-weight: 600;
    line-height: .95; letter-spacing: -.02em; color: #fff;
  }
  .by-model .u { font-size: 17px; color: var(--text-mute); font-weight: 500; margin-left: 3px; }

  /* モデルカード */
  .model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 88px; }
  .model-card {
    position: relative; background: linear-gradient(180deg, rgba(0,188,255,.05), transparent 60%);
    border: 1px solid var(--line-strong); padding: 44px 40px 40px; overflow: hidden;
    transition: border-color .3s, transform .3s;
  }
  .model-card:hover { border-color: var(--accent); transform: translateY(-6px); }
  .model-card .mc-name { font-family: var(--font-num); font-size: 54px; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: #fff; }
  .model-card .mc-tag { display: inline-block; margin-top: 14px; font-size: 12px; letter-spacing: .2em; color: var(--accent); border: 1px solid var(--accent); padding: 5px 12px; font-weight: 700; }
  .model-card .mc-copy { color: var(--text-mute); font-size: 15px; line-height: 1.95; margin: 20px 0 0; min-height: 60px; }
  /* R100/R200は同一スケールで書き出し済み。高さ基準で並べると実寸比が正しく見える */
  .model-card .mc-img { margin: 10px 0 26px; display: flex; align-items: flex-end; justify-content: center; height: 260px; }
  .model-card .mc-img img { height: 100%; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 24px 46px rgba(0,188,255,.22)); transition: transform .6s cubic-bezier(.16,1,.3,1); }
  .model-card:hover .mc-img img { transform: scale(1.05); }
  .mc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-strong); }
  .mc-stats .s { padding: 20px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mc-stats .s:nth-child(2n) { border-right: none; }
  .mc-stats .s:nth-last-child(-n+2) { border-bottom: none; }
  .mc-stats .v { font-family: var(--font-num); font-size: 30px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.01em; }
  .mc-stats .u { font-size: 13px; color: var(--text-mute); margin-left: 4px; font-weight: 500; }
  .mc-stats .l { font-size: 11px; letter-spacing: .12em; color: var(--text-soft); margin-top: 9px; font-weight: 600; }

  /* 比較表 */
  .cmp-wrap { border: 1px solid var(--line-strong); overflow-x: auto; }
  table.cmp { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
  table.cmp th, table.cmp td { padding: 17px 24px; text-align: left; border-bottom: 1px solid var(--line); }
  table.cmp thead th { background: var(--bg-3); font-family: var(--font-num); font-size: 12px; letter-spacing: .2em; color: var(--accent); font-weight: 800; text-transform: uppercase; }
  table.cmp thead th:first-child { color: var(--text-soft); }
  table.cmp tbody th { font-weight: 600; color: var(--text-mute); font-size: 13px; letter-spacing: .08em; width: 34%; }
  table.cmp tbody td { font-family: var(--font-num); font-weight: 500; color: #fff; letter-spacing: .02em; }
  table.cmp tbody tr:nth-child(odd) { background: rgba(255,255,255,.014); }
  table.cmp tbody tr:hover { background: rgba(0,188,255,.05); }
  table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: none; }
  .tbl-note { font-size: 12px; color: var(--text-soft); margin-top: 16px; line-height: 1.9; }

  /* ===== 02 走破性 ===== */
  .chassis { padding: 170px 0; background: var(--bg-0); }
  .chassis .ghost-text { font-size: 210px; top: 8%; left: -3%; }
  .chassis .container { position: relative; z-index: 2; }
  .ch-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; margin-bottom: 72px; }
  .ch-visual { position: relative; border: 1px solid var(--line-strong); background: radial-gradient(ellipse at center, rgba(0,188,255,.14), transparent 70%); padding: 34px; overflow: hidden; }
  .ch-visual::before, .ch-visual::after { content: ""; position: absolute; width: 42px; height: 42px; border: 1px solid var(--accent); transition: width .4s, height .4s; }
  .ch-visual::before { top: 0; left: 0; border-right: none; border-bottom: none; }
  .ch-visual::after { bottom: 0; right: 0; border-left: none; border-top: none; }
  .ch-visual:hover::before, .ch-visual:hover::after { width: 58px; height: 58px; }
  .ch-visual img { width: 100%; transition: transform .6s cubic-bezier(.16,1,.3,1); }
  .ch-visual:hover img { transform: scale(1.05); }
  .ch-visual .scan-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .5; animation: scan 5s linear infinite; pointer-events: none; }
  @keyframes scan { 0% { top: 0; opacity: 0; } 10% { opacity: .6; } 90% { opacity: .6; } 100% { top: 100%; opacity: 0; } }
  .ch-mega { font-family: var(--font-num); font-size: 150px; font-weight: 600; color: var(--accent); line-height: .9; letter-spacing: -.04em; display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
  .ch-mega .u { font-size: 44px; font-weight: 500; }
  .ch-mega .ja { font-family: var(--font-jp); font-size: 19px; color: var(--text-mute); font-weight: 500; letter-spacing: .12em; margin-left: 16px; }
  .ch-lede { font-size: 16px; color: var(--text-mute); line-height: 2.05; margin: 0 0 32px; }
  .ch-lede strong { color: #fff; font-weight: 700; }
  .ch-specs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-strong); }
  .ch-specs .s { padding: 20px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .ch-specs .s:nth-child(2n) { border-right: none; }
  .ch-specs .s:nth-last-child(-n+2) { border-bottom: none; }
  .ch-specs .v { font-family: var(--font-num); font-size: 28px; font-weight: 600; color: #fff; line-height: 1; }
  .ch-specs .u { font-size: 13px; color: var(--text-mute); margin-left: 3px; font-weight: 500; }
  .ch-specs .l { font-size: 11px; letter-spacing: .12em; color: var(--text-soft); margin-top: 9px; font-weight: 600; }
  .ch-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .ch-shot { background: var(--bg-2); border: 1px solid var(--line); padding: 28px 24px 24px; transition: border-color .3s, transform .3s; }
  .ch-shot:hover { border-color: var(--accent); transform: translateY(-4px); }
  .ch-shot .im { height: 190px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .ch-shot .im img { max-height: 100%; width: auto; }
  .ch-shot .t { font-size: 11px; letter-spacing: .24em; color: var(--accent); font-family: var(--font-num); font-weight: 800; }
  .ch-shot h4 { font-size: 17px; font-weight: 900; margin: 10px 0 8px; line-height: 1.45; }
  .ch-shot p { font-size: 13px; color: var(--text-mute); line-height: 1.85; margin: 0; }

  /* ===== 03 散布システム ===== */
  .spray { padding: 170px 0 110px; background: var(--bg-1); }
  .spray .ghost-text { font-size: 220px; top: 6%; right: -3%; }
  .spray .container { position: relative; z-index: 2; }
  .sys-block { padding: 92px 0; border-bottom: 1px solid var(--line); }
  .sys-block:last-of-type { border-bottom: none; }
  .sys-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 76px; align-items: center; }
  .sys-row.reverse { direction: rtl; }
  .sys-row.reverse > * { direction: ltr; }
  .sys-img { position: relative; opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1); }
  .sys-img.is-in { opacity: 1; transform: translateY(0); }
  .sys-img .frame {
    background: radial-gradient(ellipse at center, rgba(0,188,255,.16), transparent 68%);
    padding: 36px; position: relative; overflow: hidden; border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center; min-height: 340px;
  }
  .sys-img .frame::before, .sys-img .frame::after { content: ""; position: absolute; width: 42px; height: 42px; border: 1px solid var(--accent); transition: width .4s, height .4s; }
  .sys-img .frame::before { top: 0; left: 0; border-right: none; border-bottom: none; }
  .sys-img .frame::after { bottom: 0; right: 0; border-left: none; border-top: none; }
  .sys-img:hover .frame::before, .sys-img:hover .frame::after { width: 58px; height: 58px; }
  .sys-img .frame img { max-width: 100%; max-height: 420px; width: auto; transition: transform .6s cubic-bezier(.16,1,.3,1); filter: drop-shadow(0 24px 46px rgba(0,188,255,.2)); }
  .sys-img:hover .frame img { transform: scale(1.06); }
  .sys-text .tag { font-family: var(--font-num); font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 800; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
  .sys-text .tag::before { content: ""; width: 24px; height: 1px; background: var(--accent); display: inline-block; }
  .sys-text h3 { font-family: var(--font-jp); font-size: clamp(32px, 4vw, 50px); font-weight: 900; line-height: 1.2; letter-spacing: .04em; margin-bottom: 18px; }
  .sys-text h3 .product-name { color: var(--accent); font-family: var(--font-jp); font-weight: 900; display: block; margin-top: 4px; }
  .sys-text .body { color: var(--text-mute); font-size: 16px; line-height: 2.05; margin: 0 0 30px; }
  .sys-text .body strong { color: #fff; font-weight: 700; }
  .sys-specs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-strong); margin-top: 30px; }
  .sys-specs .spec { padding: 22px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .sys-specs .spec:nth-child(2n) { border-right: none; }
  .sys-specs .spec:nth-last-child(-n+2) { border-bottom: none; }
  .sys-specs .v { font-family: var(--font-num); font-size: 30px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.01em; }
  .sys-specs .u { font-size: 13px; color: var(--text-mute); margin-left: 4px; font-weight: 500; }
  .sys-specs .l { font-size: 11px; letter-spacing: .12em; color: var(--text-soft); margin-top: 9px; font-weight: 600; }
  .sys-feat { list-style: none; padding: 0; margin: 30px 0 0; }
  .sys-feat li { padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: 14px; color: var(--text); line-height: 1.85; }
  .sys-feat li::before { content: ""; position: absolute; left: 0; top: 22px; width: 14px; height: 1px; background: var(--accent); }
  .sys-feat li:last-child { border-bottom: none; }
  .sys-feat li strong { color: var(--accent); font-weight: 700; }

  /* R200 ミストキャノン ハイライト */
  .cannon { margin-top: 40px; padding: 64px; background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--accent); position: relative; overflow: hidden; }
  .cannon::before { content: ""; position: absolute; top: -40%; right: -8%; width: 60%; height: 190%; background: radial-gradient(ellipse, rgba(0,188,255,.16), transparent 70%); pointer-events: none; }
  .cannon-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
  .cannon .tag { font-family: var(--font-num); font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 800; margin-bottom: 16px; }
  .cannon h3 { font-family: var(--font-jp); font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; line-height: 1.2; margin-bottom: 18px; }
  .cannon h3 .q { color: var(--accent); font-family: var(--font-jp-mincho); font-weight: 400; }
  .cannon .body { color: var(--text-mute); font-size: 15px; line-height: 2; margin-bottom: 28px; }
  .cannon .body strong { color: var(--accent); font-weight: 700; }
  .cannon-nums { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cannon-nums .n .v { font-family: var(--font-num); font-size: 44px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.02em; }
  .cannon-nums .n .u { font-size: 15px; color: var(--text-mute); margin-left: 4px; font-weight: 500; }
  .cannon-nums .n .l { font-size: 11px; letter-spacing: .14em; color: var(--text-soft); margin-top: 9px; font-weight: 600; }
  .cannon-img img { width: 100%; filter: drop-shadow(0 30px 60px rgba(0,188,255,.25)); animation: float 8s ease-in-out infinite; }

  /* ===== 04 操作 ===== */
  .control { padding: 170px 0; background: var(--bg-0); }
  .control .ghost-text { font-size: 230px; top: 7%; left: -3%; }
  .control .container { position: relative; z-index: 2; }
  .ctl-core { padding: 60px; background: var(--bg-2); border: 1px solid var(--line-strong); margin-bottom: 40px; }
  .ctl-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
  .ctl-img img { width: 100%; filter: drop-shadow(0 28px 56px rgba(0,188,255,.2)); }
  .ctl-core .tag { font-family: var(--font-num); font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 800; margin-bottom: 16px; }
  .ctl-core h3 { font-family: var(--font-jp); font-size: clamp(30px, 3.6vw, 46px); font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
  .ctl-core h3 .product-name { color: var(--accent); display: block; margin-top: 4px; }
  .ctl-core .body { color: var(--text-mute); font-size: 15px; line-height: 2; margin-bottom: 30px; }
  .ctl-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line-strong); }
  .ctl-nums .n { padding: 22px 24px; border-right: 1px solid var(--line); }
  .ctl-nums .n:last-child { border-right: none; }
  .ctl-nums .v { font-family: var(--font-num); font-size: 30px; font-weight: 600; color: #fff; line-height: 1; }
  .ctl-nums .u { font-size: 13px; color: var(--text-mute); margin-left: 3px; font-weight: 500; }
  .ctl-nums .l { font-size: 11px; letter-spacing: .12em; color: var(--text-soft); margin-top: 9px; font-weight: 600; }
  .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .icon-grid.three { grid-template-columns: repeat(3, 1fr); }
  .icon-card { background: var(--bg-2); border: 1px solid var(--line); padding: 34px 28px 30px; transition: border-color .3s, transform .3s; }
  .icon-card:hover { border-color: var(--accent); transform: translateY(-4px); }
  .icon-card img { width: 46px; height: auto; margin-bottom: 20px; }
  .icon-card h4 { font-size: 16px; font-weight: 900; line-height: 1.45; margin-bottom: 10px; }
  .icon-card p { font-size: 13px; color: var(--text-mute); line-height: 1.85; margin: 0; }
  .icon-card p strong { color: var(--accent); font-weight: 700; }

  /* ===== 05 自動運転 ===== */
  .autonomy { padding: 170px 0; background: var(--bg-1); }
  .autonomy .ghost-text { font-size: 200px; top: 6%; right: -2%; }
  .autonomy .container { position: relative; z-index: 2; }
  .auto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
  .safety { padding: 56px 60px; background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--accent); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
  .safety-icon { width: 52px; margin-bottom: 20px; }
  .safety .tag { font-family: var(--font-num); font-size: 12px; letter-spacing: .3em; color: var(--accent); font-weight: 800; margin-bottom: 14px; }
  .safety h3 { font-family: var(--font-jp); font-size: clamp(26px, 3vw, 38px); font-weight: 900; line-height: 1.25; margin-bottom: 14px; }
  .safety h3 .q { color: var(--accent); font-family: var(--font-jp-mincho); font-weight: 400; }
  .safety p { color: var(--text-mute); font-size: 15px; line-height: 2; margin: 0; max-width: 640px; }
  .safety-nums { display: flex; gap: 40px; }
  .safety-nums .n { text-align: center; }
  .safety-nums .v { font-family: var(--font-num); font-size: 82px; font-weight: 600; color: var(--accent); line-height: .95; letter-spacing: -.03em; }
  .safety-nums .u { font-size: 26px; font-weight: 500; }
  .safety-nums .l { font-size: 12px; letter-spacing: .16em; color: var(--text-mute); margin-top: 12px; font-weight: 600; }

  /* ===== 06 電源 ===== */
  .power { padding: 170px 0; background: var(--bg-0); }
  .power .ghost-text { font-size: 230px; top: 8%; left: -3%; }
  .power .container { position: relative; z-index: 2; }
  .power-mega { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; margin-bottom: 56px; }
  .power-mega-num { font-family: var(--font-num); font-size: 190px; font-weight: 600; color: var(--accent); line-height: .9; letter-spacing: -.04em; display: flex; align-items: baseline; gap: 6px; }
  .power-mega-num .u { font-size: 56px; font-weight: 500; }
  .power-mega-num .ja { font-family: var(--font-jp); font-size: 20px; color: var(--text-mute); font-weight: 500; letter-spacing: .12em; margin-left: 16px; }
  .mega-note { font-family: var(--font-jp); font-size: 12px; color: var(--text-soft); margin: 10px 0 0; letter-spacing: .06em; }
  .power-mega .body { font-size: 16px; color: var(--text-mute); line-height: 2.05; }
  .power-mega .body strong { color: var(--accent); font-weight: 700; }
  .power-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .power-card { padding: 36px 30px 32px; background: var(--bg-2); border: 1px solid var(--line); transition: border-color .3s; }
  .power-card:hover { border-color: var(--accent); }
  .power-card .v { font-family: var(--font-num); font-size: 40px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.02em; }
  .power-card .u { font-size: 16px; color: var(--text-mute); margin-left: 3px; font-weight: 500; }
  .power-card .l { font-size: 12px; letter-spacing: .14em; color: var(--accent); margin-top: 14px; font-weight: 700; font-family: var(--font-num); }
  .power-card p { font-size: 12px; color: var(--text-mute); line-height: 1.85; margin: 10px 0 0; }

  /* ===== 07 拡張性 ===== */
  .platform { padding: 170px 0; background: var(--bg-1); }
  .platform .ghost-text { font-size: 200px; top: 8%; right: -2%; }
  .platform .container { position: relative; z-index: 2; }
  .pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pf-card { background: var(--bg-2); border: 1px solid var(--line); padding: 44px 36px 38px; transition: border-color .3s, transform .3s; }
  .pf-card:hover { border-color: var(--accent); transform: translateY(-4px); }
  .pf-card img { width: 54px; margin-bottom: 22px; }
  .pf-card h4 { font-size: 20px; font-weight: 900; line-height: 1.45; margin-bottom: 12px; }
  .pf-card p { font-size: 14px; color: var(--text-mute); line-height: 1.95; margin: 0; }

  /* ===== フルブリード レンダーバンド ===== */
  .photo-band {
    min-height: 460px; display: flex; align-items: center; justify-content: center; text-align: center;
    background:
      radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,188,255,.18) 0%, transparent 65%),
      linear-gradient(180deg, var(--bg-1) 0%, #01131c 55%, var(--bg-0) 100%);
    padding: 90px 24px;
  }
  .photo-band-inner { position: relative; z-index: 2; }
  .photo-band-inner h2 { font-family: var(--font-jp); font-size: clamp(32px, 5vw, 66px); font-weight: 900; letter-spacing: .04em; line-height: 1.22; margin-bottom: 34px; }
  .photo-band-inner h2 .q { color: var(--accent); font-family: var(--font-jp-mincho); font-weight: 400; }
  .photo-band-inner img { width: min(880px, 92%); margin: 0 auto; filter: drop-shadow(0 40px 80px rgba(0,188,255,.3)); animation: float 9s ease-in-out infinite; }

  /* ===== CTA ===== */
  .cta-section {
    padding: 180px 56px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-0) 0%, #002033 60%, #003a52 100%);
    text-align: center;
  }
  .cta-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,188,255,.15), transparent 60%); pointer-events: none; }
  .cta-section h2 { font-family: var(--font-jp); font-size: clamp(36px, 5.5vw, 74px); font-weight: 900; line-height: 1.18; letter-spacing: .04em; margin-bottom: 24px; position: relative; }
  .cta-section h2 .q { color: var(--accent); font-family: var(--font-jp-mincho); font-weight: 400; }
  .cta-section p { color: var(--text-mute); font-size: 16px; max-width: 660px; margin: 30px auto 52px; line-height: 2.05; position: relative; }
  /* 文節の途中で改行して「い。」だけ残るのを防ぐ（P60と同じ作法） */
  .cta-section p .nowrap { white-space: nowrap; }
  @media (max-width: 480px) {
    /* 極小画面では nowrap を解除しつつ、文節単位で折り返す */
    .cta-section p .nowrap { white-space: normal; display: inline-block; }
  }
  .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; }

  /* ===== 注釈 ===== */
  .footnotes { background: var(--bg-0); padding: 60px 56px 80px; border-top: 1px solid var(--line); }
  .footnotes .container { padding: 0; }
  .footnotes h5 { font-family: var(--font-num); font-size: 11px; letter-spacing: .28em; color: var(--text-soft); font-weight: 800; margin-bottom: 18px; }
  .footnotes ol { margin: 0; padding-left: 20px; }
  .footnotes li { font-size: 12px; color: var(--text-soft); line-height: 2; }

  /* ===== Footer ===== */
  .site-footer { background: var(--bg-1); border-top: 1px solid var(--line); padding: 52px 56px; }
  .site-footer .row { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 20px; }
  .site-footer .links { display: flex; gap: 30px; font-size: 13px; flex-wrap: wrap; }
  .site-footer .links a { color: var(--text-mute); }
  .site-footer .copy { font-size: 11px; letter-spacing: .14em; color: var(--text-soft); font-family: var(--font-num); }

  /* ===== レスポンシブ ===== */
  @media (max-width: 1024px) {
    .stats-mega, .power-grid, .icon-grid, .icon-grid.three { grid-template-columns: repeat(2, 1fr); }
    .model-grid, .ch-row, .sys-row, .cannon-row, .ctl-row, .power-mega { grid-template-columns: 1fr; gap: 48px; }
    .sys-row.reverse { direction: ltr; }
    .ch-gallery, .auto-grid, .pf-grid { grid-template-columns: repeat(2, 1fr); }
    .safety { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hero { padding: 100px 24px 72px; min-height: 640px; }
    .key-stats, .chassis, .spray, .control, .autonomy, .power, .platform { padding: 96px 0; }
    .stats-mega, .power-grid, .icon-grid, .icon-grid.three, .ch-gallery, .auto-grid, .pf-grid { grid-template-columns: 1fr; }
    .cannon, .ctl-core, .safety { padding: 34px 26px; }
    .ch-mega, .power-mega-num { font-size: 110px; }
    .safety-nums .v { font-size: 62px; }
    .nav { display: none; }
    .site-header .row { padding: 16px 24px; }
    .cta-section, .footnotes, .site-footer { padding-left: 24px; padding-right: 24px; }
  }

  /* ===== 動画（16:9レスポンシブ） ===== */
  .video-wrap {
    position: relative; width: 100%; margin: 0 0 56px; background: #000;
    border: 1px solid var(--line-strong); aspect-ratio: 16 / 9; overflow: hidden;
  }
  .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

  .video-wrap .chassis-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  /* ===== 製品紹介動画セクション ===== */
  .video-section { padding: 170px 0; background: var(--bg-1); }
  .video-section .video-wrap { margin-bottom: 0; }

  /* ===== セクション内の中見出し ===== */
  .sub-hd {
    font-family: var(--font-jp); font-size: clamp(22px, 2.4vw, 30px); font-weight: 900;
    letter-spacing: .04em; margin: 0 0 28px; padding-left: 16px; position: relative;
  }
  .sub-hd::before { content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 3px; background: var(--green, var(--accent)); }

  /* ===== 走行ルートの設計（コントローラー画面2点） ===== */
  .route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 52px; }
  .route-card { background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; transition: border-color .3s, transform .3s; }
  .route-card:hover { border-color: var(--accent); transform: translateY(-4px); }
  .route-card .im { background: radial-gradient(ellipse at center, rgba(0,188,255,.10), transparent 72%); padding: 30px 30px 0; display: flex; align-items: flex-end; justify-content: center; }
  .route-card .im img { width: 100%; max-width: 470px; height: auto; }
  .route-card .cap { padding: 24px 32px 32px; }
  .route-card .cap h4 { font-size: 20px; font-weight: 900; line-height: 1.4; margin-bottom: 10px; letter-spacing: .04em; }
  .route-card .cap p { font-size: 14px; color: var(--text-mute); line-height: 1.95; margin: 0; }

  /* ===== コントローラー実機フレームに映像をはめ込む ===== */
  .device { position: relative; width: 100%; max-width: 470px; line-height: 0; }
  .device > img { width: 100%; display: block; }
  .device .screen {
    position: absolute; left: 19.5%; top: 39.9%; width: 61.2%; height: 51.8%;
    object-fit: cover; border: 0; display: block; background: #000;
  }

  /* ===== 走破性ギャラリー2枚 / 自動走行3枚 ===== */
  .ch-gallery.two { grid-template-columns: 1fr 1fr; }
  .auto-grid.three { grid-template-columns: repeat(3, 1fr); }

  /* ===== 電源カード（写真つき） ===== */
  .power-card .im { height: 168px; display: flex; align-items: center; justify-content: center; background: var(--bg-1); margin-bottom: 22px; padding: 10px; }
  .power-card .im img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
  .power-card h4 { font-family: var(--font-jp); font-size: 17px; font-weight: 900; line-height: 1.45; margin-bottom: 10px; letter-spacing: .04em; }

  @media (max-width: 1024px) {
    .route-grid { grid-template-columns: 1fr; }
    .auto-grid.three { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .ch-gallery.two, .auto-grid.three { grid-template-columns: 1fr; }
  }

  /* =============================================================
     スマートフォン最適化（P60ページと同じ作法で末尾に集約）
     ※ 実機幅360pxで検出した崩れのみをピンポイントで補正
     ============================================================= */
  @media (max-width: 767px) {

    /* SRC5の3数値：3列のままだと1文字ずつ縦積みになるため1列に */
    .ctl-nums { grid-template-columns: 1fr; }
    .ctl-nums .n { border-right: none; border-bottom: 1px solid var(--line); }
    .ctl-nums .n:last-child { border-bottom: none; }

    /* 比較表：横スクロールさせず画面内に収める */
    table.cmp { min-width: 0; font-size: 12px; }
    table.cmp th, table.cmp td { padding: 11px 8px; }
    table.cmp tbody th { width: 42%; font-size: 11.5px; letter-spacing: 0; }
    table.cmp thead th { font-size: 10px; letter-spacing: .08em; }

    /* モデルカードの項目名が2行に折れるのを防ぐ */
    .mc-stats .l { font-size: 10px; letter-spacing: .02em; }
    .mc-stats .s { padding: 16px 14px; }

    /* 巨大数字：単位ラベルが横で詰まるので折り返し可＋サイズ調整 */
    .power-mega-num { font-size: 88px; flex-wrap: wrap; row-gap: 2px; }
    .power-mega-num .u { font-size: 34px; }
    .power-mega-num .ja { font-size: 15px; margin-left: 12px; letter-spacing: .06em; }
    .ch-mega { font-size: 88px; flex-wrap: wrap; row-gap: 2px; }
    .ch-mega .ja { font-size: 15px; margin-left: 12px; }

    /* 2機種併記：数値と単位が窮屈になるため微調整 */
    .by-model .m { min-width: 40px; font-size: 12px; }
    .stat-mega { padding: 40px 24px 34px; }

    /* セクション見出し・中見出しの行間を詰める */
    .sec-head { margin-bottom: 48px; }
    .sub-hd { font-size: 20px; }

    /* フォトバンド：見出しが大きすぎて窮屈になるのを回避 */
    .photo-band { min-height: 380px; padding: 64px 20px; }
    .photo-band-inner h2 { font-size: min(30px, 7.6vw); line-height: 1.45; }

    /* 各セクションの上下余白を圧縮 */
    .video-section { padding: 96px 0; }
    .cta-section { padding: 96px 24px; }
  }

  /* ===== 大地のグリーン（UGV系統の差分。シアン=空/リンク、グリーン=大地/UGV） ===== */
  :root { --green:#89d329; --green-d:#66b512; --green-fade:rgba(137,211,41,.10); }
  .hero .kicker { color: var(--green); border-color: var(--green); background: var(--green-fade); }
  .hero h1 .accent { color: var(--green); }
  .hero h1 .quotation { color: var(--green); }
  .num-deco { color: var(--green); }
  .num-deco::before { background: var(--green); }
  .sec-head h2 .q { color: var(--green); }
  .stat-mega::before { background: linear-gradient(90deg, var(--green), var(--accent)); }
  .model-card .mc-tag { color: var(--green); border-color: var(--green); }
  .ch-mega { color: var(--green); }
  .sys-text .tag { color: var(--green); }
  .sys-text .tag::before { background: var(--green); }
  .cannon { border-color: rgba(137,211,41,.55); }
  .cannon .tag { color: var(--green); }
  .cannon h3 .q { color: var(--green); }
  .ctl-core .tag { color: var(--green); }
  .safety { border-color: rgba(137,211,41,.55); }
  .safety .tag { color: var(--green); }
  .safety h3 .q { color: var(--green); }
  .power-mega-num { color: var(--green); }
  .photo-band-inner h2 .q { color: var(--green); }
  .cta-section h2 .q { color: var(--green); }
  .cta-section { background: linear-gradient(135deg, var(--bg-0) 0%, #12240a 55%, #003a52 100%); }

  /* ===== リッチモーション（P60と同等） ===== */
  .hero .kicker, .hero h1, .hero .sub, .hero .product-image, .hero .lede, .hero .cta-row {
    opacity: 0; transform: translateY(28px);
    animation: hero-in 1.1s cubic-bezier(.16,1,.3,1) forwards;
  }
  .hero .kicker { animation-delay: .15s; }
  .hero h1 { animation-delay: .3s; }
  .hero .sub { animation-delay: .45s; }
  .hero .product-image { animation-delay: .55s; }
  .hero .lede { animation-delay: .75s; }
  .hero .cta-row { animation-delay: .95s; }
  @keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
  [data-reveal] { opacity: 0; transform: translateY(44px); }
  [data-reveal].is-in { opacity: 1; transform: translateY(0); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); transition-delay: var(--d, 0s); }
  .ghost-text { transform: translateY(var(--ghost, 0px)); will-change: transform; }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .hero .kicker, .hero h1, .hero .sub, .hero .product-image, .hero .lede, .hero .cta-row { opacity: 1 !important; transform: none !important; }
  }


/* =============================================================
   実サイトヘッダー/フッター保護
   （ダーク版のグローバル a / ul スタイルの影響を打ち消す。
     値は実サイト style.css の基本値と同一）
   ============================================================= */
/* 基準値をテーマと同一にする（ダーク版 body の 16px/1.7/.04em を打ち消す） */
#header, #footer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  text-align: left;
}

/* テーマの全称リセット相当（ダーク版CSSは p 等をリセットしないため必須） */
#header p, #footer p,
#header nav, #footer nav,
#header span, #footer span {
  margin: 0;
  padding: 0;
}

#header ul, #footer ul,
#header ol, #footer ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header li, #footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#header a, #footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s !important;
}

#header a:hover, #footer a:hover {
  opacity: 1;
}

#header .header_navi>li>a:hover,
#header .header_navi .navi_sub .sub_box a:hover {
  color: #00bcff;
}

#footer .footer_link .link_navi a,
#footer .footer_other .other_cont a {
  color: #b6b7b9;
}

#footer .footer_link .link_navi a:hover,
#footer .footer_other .other_cont a:hover,
#footer .footer_other .other_home a:hover {
  color: #00bcff;
}

/* パンくず内リンクの保護 */
.breadcrumb a {
  transition: all 0.3s;
}

.breadcrumb a:hover {
  color: #00bcff !important;
  opacity: 1;
}
