@charset "UTF-8";
/*
Theme Name: ファブエンジ株式会社
Description: 鋼構造物の設計・建設 / steel structure design & build
*/
/* =========================================================================
   ブレイクポイント & mixin
   ========================================================================= */
/* =========================================================================
   カラートークン（SCSS変数 / instruction §3）
   ========================================================================= */
/* CSSカスタムプロパティ（各パーシャルから var() で参照） */
:root {
  --paper: #ffffff;
  --paper-2: #f2f7fc;
  --paper-3: #e8f1f9;
  --navy: #0b3a5b;
  --navy-2: #0a2740;
  --ink: #0a1726;
  --ink-2: #0e2236;
  --ink-3: #142d45;
  --blue: #2864dc;
  --blue-hi: #3f86ff;
  --cyan: #3da9dc;
  --cyan-br: #5fd2f5;
  --tx: #1d3a52;
  --tx-mut: #5d7790;
  --tx-d: #33475b;
  --line: #d4e3ef;
  --line-c: rgba(61, 169, 220, 0.35);
  --line-l: rgba(11, 58, 91, 0.12);
}

/* =========================================================================
   フォント
   ========================================================================= */
/* =========================================================================
   リセット
   ========================================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #1d3a52;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================================================
   共通ユーティリティ
   ========================================================================= */
.mono {
  font-family: "JetBrains Mono", monospace;
}

.en {
  font-family: "Space Grotesk", sans-serif;
}

.wide {
  width: 90%;
  max-width: 1180px;
  margin-inline: auto;
}

/* セクション余白（白地TOP用） */
.sec {
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 74px 0;
  }
}

/* セクション見出し（白地） */
.sec-head {
  margin-bottom: 54px;
}
.sec-head .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: #3da9dc;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-head .eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #3da9dc;
}
.sec-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 10px;
  color: #0b3a5b;
}
.sec-head .ja {
  font-size: 0.95rem;
  color: #2864dc;
  font-weight: 700;
  margin-top: 2px;
}

/* =========================================================================
   スクロール fade-in（footer.php の IntersectionObserver が .in を付与）
   ========================================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s, transform 0.9s;
}
.fade-in.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
}
/* =========================================================================
   ローディング（ロゴ脈打ち → フェードアウト）
   ========================================================================= */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a2740;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.8s, visibility 0.8s;
}
#loading.done {
  opacity: 0;
  visibility: hidden;
}
#loading img {
  width: 92px;
  filter: drop-shadow(0 0 26px rgba(63, 134, 255, 0.7));
  animation: loadingPulse 1.6s ease-in-out infinite;
}
#loading .t {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #5fd2f5;
  opacity: 0.85;
}

@keyframes loadingPulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================================================================
   ページ別パーシャル
   ========================================================================= */
/* =========================================================================
   HEADER（全ページ共通 / 濃紺グラデの固定ヘッダー）
   ========================================================================= */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#header_pc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: linear-gradient(120deg, rgba(10, 39, 64, 0.92), rgba(11, 58, 91, 0.9));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(61, 169, 220, 0.28);
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #header_pc {
    padding: 12px 18px;
  }
}
#header_pc::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(95, 210, 245, 0.1) 0 1px, transparent 1px 26px);
  opacity: 0.5;
}
#header_pc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 210, 245, 0.7), transparent);
}

#siteHeader.scrolled #header_pc {
  background: linear-gradient(120deg, rgba(10, 39, 64, 0.95), rgba(11, 58, 91, 0.92));
  box-shadow: 0 4px 24px rgba(3, 12, 22, 0.45);
}

/* ロゴ */
.header_logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}
.header_logo img {
  width: 38px;
  filter: drop-shadow(0 0 8px rgba(40, 100, 220, 0.35));
}
.header_logo .tt {
  letter-spacing: 0.06em;
}
.header_logo .tt small {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  color: #5fd2f5;
  font-weight: 400;
}

/* PCメニュー */
.header_menu {
  position: relative;
  z-index: 1;
}
.header_menu ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header_menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 4px 0;
  transition: 0.25s;
}
.header_menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #5fd2f5;
  transition: 0.25s;
  box-shadow: 0 0 8px rgba(95, 210, 245, 0.8);
}
.header_menu a:hover {
  color: #fff;
}
.header_menu a:hover::after, .header_menu a.current::after {
  width: 100%;
}
.header_menu a.current {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header_menu {
    display: none;
  }
}

/* お問い合わせCTAボタン */
.h-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  padding: 13px 30px !important;
  border-radius: 10px;
  background: linear-gradient(120deg, #2864dc, #3f86ff);
  font-weight: 700;
  font-size: 0.88rem !important;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: box-shadow 0.35s, transform 0.3s, background 0.35s;
  box-shadow: 0 6px 18px rgba(40, 100, 220, 0.28);
  overflow: hidden;
}
.h-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s;
}
.h-cta::after {
  display: none !important;
}
.h-cta i {
  position: relative;
  z-index: 1;
  font-size: 0.74rem;
  transition: transform 0.3s;
}
.h-cta:hover {
  background: linear-gradient(120deg, #3f86ff, #2864dc);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(95, 210, 245, 0.55), 0 10px 26px rgba(40, 100, 220, 0.4);
}
.h-cta:hover::before {
  transform: translateX(120%);
}
.h-cta:hover i {
  transform: translateX(4px);
}

/* =========================================================================
   ハンバーガーボタン（SPのみ表示）
   ========================================================================= */
#hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
@media screen and (max-width: 768px) {
  #hamburger {
    display: block;
  }
}
#hamburger span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.35s cubic-bezier(0.7, 0, 0.2, 1);
}
#hamburger span:nth-child(1) {
  top: 15px;
}
#hamburger span:nth-child(2) {
  top: 21px;
}
#hamburger span:nth-child(3) {
  top: 27px;
}
#hamburger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
}
#hamburger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* =========================================================================
   SPスライドインメニュー
   ========================================================================= */
#spMenuOverlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 39, 64, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#spMenuOverlay.open {
  opacity: 1;
  visibility: visible;
}

#spMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1060;
  background: #0a2740;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
  overflow-y: auto;
}
#spMenu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(95, 210, 245, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 210, 245, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
#spMenu.open {
  transform: translateX(0);
}
#spMenu .sp_inner {
  position: relative;
  padding: 90px 7vw 50px;
  min-height: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#spMenu .sp_eyebrow {
  color: #5fd2f5;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 26px;
}
#spMenu ul {
  flex: 1;
}
#spMenu li {
  border-bottom: 1px solid rgba(95, 210, 245, 0.14);
}
#spMenu li a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 4px;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  transition: 0.25s;
}
#spMenu li a:hover, #spMenu li a:active {
  color: #5fd2f5;
  padding-left: 12px;
}
#spMenu li .n {
  color: #5fd2f5;
  font-size: 0.72rem;
  opacity: 0.7;
}
#spMenu li .e {
  margin-left: auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: #5d7790;
  align-self: center;
}
#spMenu .sp_sns {
  display: flex;
  gap: 16px;
  flex: none;
  margin-top: 24px;
}
#spMenu .sp_sns li {
  border: none;
}
#spMenu .sp_sns li a {
  padding: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 210, 245, 0.3);
  border-radius: 50%;
  font-size: 1rem;
}
#spMenu .sp_foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(95, 210, 245, 0.14);
}
#spMenu .sp_foot img {
  width: 34px;
  filter: drop-shadow(0 0 8px rgba(63, 134, 255, 0.6));
}
#spMenu .sp_foot p {
  font-size: 0.78rem;
  color: #cfe0f0;
  font-weight: 700;
  line-height: 1.5;
}
#spMenu .sp_foot p span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: #5fd2f5;
  font-weight: 400;
  letter-spacing: 0.1em;
}

#spClose {
  position: absolute;
  top: 24px;
  right: 7vw;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid rgba(95, 210, 245, 0.35);
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
#spClose::before, #spClose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
#spClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#spClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#spClose:hover {
  border-color: #5fd2f5;
  background: rgba(61, 169, 220, 0.12);
  transform: rotate(90deg);
}

body.menu-open {
  overflow: hidden;
}

/* =========================================================================
   FRONT PAGE / TOP
   ========================================================================= */
/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0a2740;
}
@media screen and (max-width: 768px) {
  #hero .reticle,
  #hero .slits {
    display: none;
  }
}

.hero_photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s;
}
.hero_photos.show {
  opacity: 1;
}
.hero_photos .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s;
}
.hero_photos .ph.cur {
  opacity: 1;
}

#hero .veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(10, 39, 64, 0.92), rgba(11, 58, 91, 0.55) 50%, rgba(40, 100, 220, 0.3));
}
#hero .veil2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(120% 80% at 80% 50%, transparent 30%, rgba(10, 39, 64, 0.6));
}
#hero .hud {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.38;
  background-image: linear-gradient(rgba(95, 210, 245, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 210, 245, 0.16) 1px, transparent 1px);
  background-size: 60px 60px;
}
#hero .slits {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(95, 210, 245, 0.18) 0 2px, transparent 2px 22px);
  -webkit-mask: linear-gradient(90deg, #000, transparent);
          mask: linear-gradient(90deg, #000, transparent);
  opacity: 0.55;
}
#hero .scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(rgba(95, 210, 245, 0), rgba(95, 210, 245, 0.04) 50%, rgba(95, 210, 245, 0));
  opacity: 0.4;
}
#hero .reticle {
  position: absolute;
  z-index: 4;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(95, 210, 245, 0.55);
}
#hero .reticle.tl {
  top: 100px;
  left: 40px;
  border-right: 0;
  border-bottom: 0;
}
#hero .reticle.br {
  bottom: 40px;
  right: 40px;
  border-left: 0;
  border-top: 0;
}

#scanline {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3da9dc, transparent);
  box-shadow: 0 0 14px #3da9dc;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.hero_inner {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 7%;
  width: 86%;
  max-width: 620px;
  opacity: 0;
  transform: translateY(calc(-50% + 30px));
  transition: opacity 1s, transform 1s;
}
.hero_inner.show {
  opacity: 1;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .hero_inner {
    left: 5%;
    width: 90%;
  }
}

.hero_eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: #5fd2f5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 0 12px rgba(95, 210, 245, 0.6);
}
.hero_eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: #5fd2f5;
  box-shadow: 0 0 8px #5fd2f5;
}

.hero_title {
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  line-height: 1.3;
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.5);
}
.hero_title .ac {
  color: #5fd2f5;
  text-shadow: 0 0 30px rgba(95, 210, 245, 0.6);
}

.hero_sub {
  margin-top: 24px;
  font-size: clamp(0.92rem, 1.3vw, 1.12rem);
  max-width: 33em;
  color: #dbe7f5;
  opacity: 0.95;
}

.hero_en {
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 6;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: rgba(95, 210, 245, 0.7);
  writing-mode: vertical-rl;
}

.statusbar {
  position: absolute;
  left: 40px;
  bottom: 38px;
  z-index: 6;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #8aa3bf;
  letter-spacing: 0.12em;
}
.statusbar b {
  color: #5fd2f5;
}

.hero_count {
  position: absolute;
  right: 40px;
  bottom: 38px;
  z-index: 6;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: opacity 1s;
}
.hero_count.show {
  opacity: 1;
}
.hero_count b {
  color: #5fd2f5;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 6;
  color: rgba(255, 255, 255, 0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-align: center;
  opacity: 0;
  transition: opacity 1s;
}
.scroll-cue.show {
  opacity: 1;
}
.scroll-cue .bar {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.35);
  margin: 8px auto 0;
  position: relative;
  overflow: hidden;
}
.scroll-cue .bar::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #5fd2f5;
  box-shadow: 0 0 8px #5fd2f5;
  animation: scrollDrop 1.8s infinite;
}

@keyframes scrollDrop {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}
/* ---------- FLOW帯（濃紺） ---------- */
.flow-strip {
  background: #0b3a5b;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(61, 169, 220, 0.35);
}
.flow-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(95, 210, 245, 0.05) 0 1px, transparent 1px 60px);
}
.flow-strip ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.flow-strip li {
  flex: 1 1 33%;
  min-width: 240px;
  padding: 42px 34px;
  border-right: 1px solid rgba(95, 210, 245, 0.15);
  position: relative;
  transition: 0.3s;
}
.flow-strip li:hover {
  background: rgba(40, 100, 220, 0.12);
}
.flow-strip li:last-child {
  border-right: none;
}
.flow-strip .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  color: #5fd2f5;
  letter-spacing: 0.2em;
}
.flow-strip h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 12px 0 8px;
}
.flow-strip p {
  font-size: 0.86rem;
  color: #9fb6cf;
  line-height: 1.7;
}
.flow-strip .arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #5fd2f5;
  font-size: 1rem;
  background: #0b3a5b;
  padding: 4px;
  text-shadow: 0 0 8px #5fd2f5;
}
@media screen and (max-width: 768px) {
  .flow-strip .arrow {
    display: none;
  }
}

/* ---------- ABOUT / STRENGTH（白地） ---------- */
#about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
#about .hexbg {
  position: absolute;
  right: -130px;
  top: -50px;
  width: 440px;
  height: 480px;
  border: 1px solid rgba(61, 169, 220, 0.35);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.about_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about_row.rev {
  direction: rtl;
}
.about_row.rev > * {
  direction: ltr;
}
.about_row + .about_row {
  margin-top: 96px;
}
@media screen and (max-width: 1024px) {
  .about_row {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }
  .about_row.rev {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }
}

.about_img {
  position: relative;
}
.about_img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(11, 58, 91, 0.15);
}
.about_img .frame {
  position: absolute;
  inset: 14px;
  border: 1px solid #3da9dc;
  pointer-events: none;
}
.about_img .tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2864dc, #3da9dc);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  padding: 6px 14px;
  letter-spacing: 0.1em;
}

.about_txt .idx {
  font-family: "JetBrains Mono", monospace;
  color: #2864dc;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.about_txt h3 {
  color: #0b3a5b;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 10px 0 8px;
  line-height: 1.4;
}
.about_txt .en-s {
  font-family: "Space Grotesk", sans-serif;
  color: #2864dc;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.about_txt p {
  font-size: 0.95rem;
  color: #5d7790;
}

/* ---------- DIVIDE帯 ---------- */
#divide {
  height: 460px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #divide {
    height: 320px;
  }
}
#divide .cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 39, 64, 0.72), rgba(40, 100, 220, 0.42));
}
#divide .hud {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(90deg, rgba(95, 210, 245, 0.2) 1px, transparent 1px);
  background-size: 60px 100%;
}
#divide .copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
#divide .copy .en {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 0 36px rgba(95, 210, 245, 0.5);
}
#divide .copy p {
  font-size: 0.95rem;
  opacity: 0.92;
  margin-top: 10px;
}

/* ---------- WORKS（淡背景） ---------- */
#works {
  background: #f2f7fc;
}
#works .works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 1024px) {
  #works .works_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #works .works_grid {
    grid-template-columns: 1fr;
  }
}

.work_card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid #d4e3ef;
  background: #fff;
}
.work_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.work_card:hover {
  border-color: #3da9dc;
  box-shadow: 0 10px 30px rgba(40, 100, 220, 0.2);
}
.work_card:hover img {
  transform: scale(1.08);
}
.work_card .meta {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(10, 39, 64, 0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  transition: 0.3s;
}
.work_card .meta .c {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #5fd2f5;
  letter-spacing: 0.15em;
}
.work_card .meta .t {
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 4px;
}
.work_card .hexnum {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 34px;
  background: rgba(40, 100, 220, 0.95);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.works_more {
  text-align: center;
  margin-top: 48px;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #2864dc, #3f86ff);
  padding: 15px 40px;
  border-radius: 40px;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(40, 100, 220, 0.3);
}
.btn-line:hover {
  gap: 16px;
  box-shadow: 0 8px 30px rgba(40, 100, 220, 0.5);
}

/* ---------- FLEX 3カード ---------- */
#flex {
  padding: 0;
}
#flex .flex_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #flex .flex_cards {
    grid-template-columns: 1fr;
  }
}

.flex_card {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex_card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.flex_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 39, 64, 0.6);
  z-index: 1;
  transition: 0.3s;
}
.flex_card:hover::before {
  background: rgba(40, 100, 220, 0.66);
}
.flex_card:hover img {
  transform: scale(1.1);
}
.flex_card .lbl {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.flex_card .lbl .en {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.flex_card .lbl .ja {
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}
.flex_card .lbl .ar {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #5fd2f5;
  display: block;
}

/* ---------- RECRUIT（濃紺） ---------- */
#recruit {
  position: relative;
  background: #0b3a5b;
  overflow: hidden;
}
#recruit .recruit_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
#recruit .l .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: #5fd2f5;
}
#recruit .l h2 {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 8px 0;
}
#recruit .l p {
  color: #9fb6cf;
  font-size: 0.92rem;
  max-width: 30em;
}

/* =========================================================================
   下層共通（#lower ヒーロー + 白地ベース）
   ========================================================================= */
/* ---------- 下層ヘッダー #lower ---------- */
#lower {
  position: relative;
  height: 46vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lower .lower {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
#lower .lower_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 38, 0.78), rgba(10, 23, 38, 0.6)), linear-gradient(110deg, rgba(40, 100, 220, 0.35), transparent);
}
#lower .hud {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgba(95, 210, 245, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(95, 210, 245, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
}
#lower .reticle {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(95, 210, 245, 0.5);
}
#lower .reticle.tl {
  top: 24px;
  left: 30px;
  border-right: 0;
  border-bottom: 0;
}
#lower .reticle.br {
  bottom: 24px;
  right: 30px;
  border-left: 0;
  border-top: 0;
}

.lower_contents {
  position: relative;
  z-index: 2;
  text-align: center;
}
.lower_contents .headline {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  text-shadow: 0 0 30px rgba(40, 100, 220, 0.5);
}
.lower_contents p {
  font-family: "Space Grotesk", sans-serif;
  color: #5fd2f5;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin-top: 8px;
  text-transform: uppercase;
}

.bread {
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  z-index: 3;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: #5d7790;
  text-align: center;
  letter-spacing: 0.1em;
}
.bread a:hover {
  color: #5fd2f5;
}

/* ---------- 下層セクション（白地ベース・交互背景） ---------- */
.lsec {
  padding: 96px 0;
  position: relative;
  z-index: 1;
  background: #ffffff;
}
.lsec:nth-of-type(even) {
  background: #f2f7fc;
}
@media screen and (max-width: 768px) {
  .lsec {
    padding: 64px 0;
  }
}

/* 下層見出し（英字サブ付き） */
.lower_headline {
  font-family: "Space Grotesk", sans-serif;
  color: #0b3a5b;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
  display: inline-flex;
  flex-direction: column;
}
.lower_headline::after {
  content: attr(data-en);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: #2864dc;
  margin-top: 4px;
  font-weight: 400;
}

.lead {
  color: #33475b;
  max-width: 42em;
  margin: 0 auto 56px;
  text-align: center;
}

.sec-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: #2864dc;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

/* =========================================================================
   SERVICE（事業内容）
   ========================================================================= */
#service .service_text {
  text-align: center;
  margin-bottom: 60px;
}
#service .service_text h2 {
  color: #0b3a5b;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.5;
  margin-bottom: 18px;
}
#service .service_text h2 .ac {
  color: #2864dc;
}
#service {
  /* ---------- フロー 4ステップ ---------- */
}
#service .flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 50px 0 80px;
}
@media screen and (max-width: 1024px) {
  #service .flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
#service .flow .step {
  background: #ffffff;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 6px;
  padding: 26px 20px;
  position: relative;
  transition: 0.3s;
}
#service .flow .step:hover {
  border-color: #2864dc;
  box-shadow: 0 8px 24px rgba(11, 58, 91, 0.12);
  transform: translateY(-4px);
}
#service .flow .step .n {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #2864dc;
  letter-spacing: 0.15em;
}
#service .flow .step h4 {
  color: #0b3a5b;
  font-size: 1.05rem;
  margin: 8px 0 6px;
}
#service .flow .step p {
  font-size: 0.82rem;
  color: #33475b;
}
#service {
  /* ---------- サービス内容リスト ---------- */
}
#service .service_contents ul {
  display: grid;
  gap: 20px;
}
#service .service_contents li {
  position: relative;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(11, 58, 91, 0.12);
}
#service .service_contents li .bgimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s;
}
#service .service_contents li:hover .bgimg {
  transform: scale(1.06);
}
#service .service_contents li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10, 23, 38, 0.92));
}
#service .service_contents .list_writing {
  position: relative;
  z-index: 2;
  padding: 34px;
}
#service .service_contents .list_writing h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
#service .service_contents .list_writing h2 .en-s {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  color: #5fd2f5;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
#service .service_contents .list_writing p {
  font-size: 0.9rem;
  color: #fff;
}

/* =========================================================================
   COMPANY（会社概要）
   ========================================================================= */
#company table {
  width: 100%;
  border-collapse: collapse;
  max-width: 760px;
  margin: 0 auto;
}
#company th,
#company td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(11, 58, 91, 0.12);
  text-align: left;
  font-size: 0.92rem;
  vertical-align: top;
}
#company th {
  color: #2864dc;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  width: 30%;
  white-space: nowrap;
}
#company td {
  color: #33475b;
}
#company {
  /* ---------- アクセス ---------- */
}
#company .access {
  margin-top: 70px;
}
#company .map_box {
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #company .map_box {
    grid-template-columns: 1fr;
  }
}
#company .map_box .b {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#company .map_box .b .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: #2864dc;
  letter-spacing: 0.15em;
}
#company .map_box .b .a {
  color: #0b3a5b;
  font-size: 1.02rem;
  font-weight: 700;
}
#company .map_box .b .s {
  color: #33475b;
  font-size: 0.86rem;
}
#company .map_embed {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
}
#company .map_embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* =========================================================================
   WORKS（施工事例アーカイブ）
   ========================================================================= */
#works .works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  #works .works_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #works .works_grid {
    grid-template-columns: 1fr;
  }
}
#works .wcard {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(11, 58, 91, 0.12);
  cursor: pointer;
}
#works .wcard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
#works .wcard:hover {
  border-color: #2864dc;
  box-shadow: 0 8px 24px rgba(11, 58, 91, 0.12);
}
#works .wcard:hover img {
  transform: scale(1.08);
}
#works .wcard .m {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(10, 23, 38, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
#works .wcard .m .c {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  color: #5fd2f5;
  letter-spacing: 0.12em;
}
#works .wcard .m .t {
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
  margin-top: 3px;
}

/* NG集（施工事例ページ内・worksと同じカードレイアウト） */
#ng .works_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  #ng .works_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #ng .works_grid {
    grid-template-columns: 1fr;
  }
}
#ng .wcard {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(11, 58, 91, 0.12);
  cursor: pointer;
}
#ng .wcard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
#ng .wcard:hover {
  border-color: #2864dc;
  box-shadow: 0 8px 24px rgba(11, 58, 91, 0.12);
}
#ng .wcard:hover img {
  transform: scale(1.08);
}
#ng .wcard .m {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(10, 23, 38, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
#ng .wcard .m .c {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  color: #5fd2f5;
  letter-spacing: 0.12em;
}
#ng .wcard .m .t {
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
  margin-top: 3px;
}

#works {
  /* ---------- ページャ ---------- */
}
#works .pager {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#works .pager .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#works .pager .page-numbers {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: #33475b;
  transition: 0.25s;
}
#works .pager .page-numbers.current {
  background: #2864dc;
  color: #fff;
  border-color: #2864dc;
  box-shadow: 0 0 16px rgba(63, 134, 255, 0.4);
}
#works .pager .page-numbers:hover:not(.current) {
  border-color: #2864dc;
  color: #2864dc;
}

/* =========================================================================
   CONTACT（お問い合わせ）
   ※ フォームは Contact Form 7 出力。CF7の標準マークアップにも効くよう指定。
   ========================================================================= */
#contact .cintro {
  text-align: center;
  margin-bottom: 50px;
}
#contact {
  /* ---------- 情報カード ---------- */
}
#contact .ccards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #contact .ccards {
    grid-template-columns: 1fr;
  }
}
#contact .ccard {
  background: #ffffff;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}
#contact .ccard:hover {
  border-color: #2864dc;
  box-shadow: 0 8px 24px rgba(11, 58, 91, 0.12);
}
#contact .ccard i {
  font-size: 1.6rem;
  color: #2864dc;
  margin-bottom: 12px;
}
#contact .ccard h4 {
  color: #0b3a5b;
  margin-bottom: 6px;
}
#contact .ccard p {
  color: #33475b;
  font-size: 0.88rem;
}
#contact {
  /* ---------- フォーム本体 ---------- */
}
#contact .cform {
  max-width: 680px;
  margin: 0 auto;
  background: #f2f7fc;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 10px;
  padding: 40px;
}
#contact .cform .frow,
#contact .cform p {
  margin-bottom: 22px;
}
#contact .cform label {
  display: block;
  font-size: 0.86rem;
  color: #2864dc;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
#contact .cform label .req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 3px;
  background: #ff6b8a;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
#contact .cform input,
#contact .cform textarea,
#contact .cform select {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 5px;
  padding: 13px 14px;
  color: #0b3a5b;
  font-family: inherit;
  font-size: 0.92rem;
  transition: 0.25s;
}
#contact .cform input:focus,
#contact .cform textarea:focus,
#contact .cform select:focus {
  outline: none;
  border-color: #3da9dc;
  box-shadow: 0 0 0 3px rgba(95, 210, 245, 0.15);
}
#contact .cform .fsubmit {
  text-align: center;
  margin-top: 30px;
}
#contact .cform .wpcf7-spinner {
  margin: 14px auto 0;
  display: block;
}
#contact .cform {
  /* ---------- CF7 バリデーション表示 ---------- */
}
#contact .cform .req-mark {
  color: #ff6b8a;
  margin-left: 4px;
}
#contact .cform .wpcf7-not-valid {
  border-color: #ff6b8a !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.15) !important;
}
#contact .cform .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #ff6b8a;
  font-size: 0.78rem;
  font-weight: 500;
}
#contact .cform .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}
#contact .cform .wpcf7-form.invalid .wpcf7-response-output,
#contact .cform .wpcf7-form.unaccepted .wpcf7-response-output,
#contact .cform .wpcf7-form.spam .wpcf7-response-output {
  border-color: #ff6b8a !important;
  background: rgba(255, 107, 138, 0.08);
  color: #c2385a;
}
#contact .cform .wpcf7-form.sent .wpcf7-response-output {
  border-color: #3da9dc !important;
  background: rgba(95, 210, 245, 0.1);
  color: #0b3a5b;
}
#contact .cform .wpcf7-form.failed .wpcf7-response-output,
#contact .cform .wpcf7-form.aborted .wpcf7-response-output {
  border-color: #e0a100 !important;
  background: rgba(224, 161, 0, 0.08);
  color: #8a6400;
}
#contact .cform .wpcf7-checkbox .wpcf7-list-item,
#contact .cform .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0 16px 6px 0;
}
#contact .cform .wpcf7-checkbox .wpcf7-list-item input,
#contact .cform .wpcf7-radio .wpcf7-list-item input {
  width: auto;
  margin-right: 6px;
}
#contact .fbtn,
#contact .cform input[type=submit],
#contact .cform .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  background: linear-gradient(135deg, #2864dc, #3f86ff);
  color: #fff;
  border: none;
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 22px rgba(63, 134, 255, 0.4);
}
#contact .fbtn:hover,
#contact .cform input[type=submit]:hover,
#contact .cform .wpcf7-submit:hover {
  gap: 16px;
  box-shadow: 0 0 34px rgba(63, 134, 255, 0.75);
}
#contact {
  /* ---------- 採用情報の案内 ---------- */
}
#contact .recruit_note {
  margin-top: 50px;
  padding: 26px 30px;
  border: 1px dashed rgba(11, 58, 91, 0.12);
  border-radius: 8px;
  background: rgba(40, 100, 220, 0.05);
  text-align: center;
}
#contact .recruit_note h4 {
  color: #2864dc;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 8px;
}
#contact .recruit_note p {
  color: #33475b;
  font-size: 0.9rem;
}

/* =========================================================================
   PRIVACY POLICY（プライバシーポリシー）
   ========================================================================= */
#policy .policy_body {
  max-width: 760px;
  margin: 0 auto;
}
#policy .policy_body h3 {
  color: #0b3a5b;
  font-size: 1.1rem;
  margin: 34px 0 10px;
  padding-left: 14px;
  border-left: 3px solid #2864dc;
}
#policy .policy_body p {
  color: #33475b;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

/* =========================================================================
   FOOTER CONTACT（TOP下部の大バー / 淡背景）
   ========================================================================= */
#footer_contact {
  background: #f2f7fc;
  padding: 100px 0;
  text-align: center;
}
#footer_contact .eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: #3da9dc;
}
#footer_contact h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 6px;
  color: #0b3a5b;
}
#footer_contact .lead {
  font-size: 0.95rem;
  color: #5d7790;
  margin-bottom: 32px;
}
#footer_contact .fbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2864dc, #3f86ff);
  color: #fff;
  padding: 18px 52px;
  border-radius: 0;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 6px 24px rgba(40, 100, 220, 0.35);
}
#footer_contact .fbtn:hover {
  gap: 16px;
  box-shadow: 0 8px 36px rgba(40, 100, 220, 0.6);
}
#footer_contact .note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #5d7790;
}

/* =========================================================================
   FOOTER（全ページ共通 / ダークネイビー）
   ========================================================================= */
footer {
  background: #0a2740;
  color: #cfe0f0;
  padding: 54px 0 28px;
  border-top: 1px solid rgba(61, 169, 220, 0.35);
}
footer .foot_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
footer .foot_logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
}
footer .foot_logo img {
  width: 36px;
  filter: drop-shadow(0 0 10px rgba(63, 134, 255, 0.6));
}
footer .foot_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
footer .foot_menu a {
  font-size: 0.85rem;
  color: #8aa3bf;
}
footer .foot_menu a:hover {
  color: #5fd2f5;
}
footer .copyright {
  margin-top: 38px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #8aa3bf;
  opacity: 0.7;
  letter-spacing: 0.1em;
}

/* フッター電話番号 */
.foot_tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
.foot_tel i {
  font-size: 0.95rem;
  color: #5fd2f5;
}
.foot_tel:hover {
  color: #5fd2f5;
}
.foot_tel .num {
  line-height: 1;
}/*# sourceMappingURL=style.css.map */