@charset "UTF-8";
/* top.css — トップページ専用（base2内包） */

/* =============================================================================
   2. ヘッダー & ナビゲーション（完全新規）
   - PC: 2段ヘッダー（ロゴ行 + ナビバー）+ ドロップダウン
   - SP: ハンバーガーメニュー + アコーディオン + 下部固定バー
   ============================================================================= */

/* ─────────────────────────────
   共通ベース
───────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  background: #fff;
}

.h_logo p {
  font-family: "Good Times", sans-serif;
  font-weight: 900;
  font-size: 20px;
  font-style: italic;
  margin: 10px 0 0 40px;
  position: relative;
}
.h_logo p span {
  display: block;
  font-size: 12px;
  font-weight: 100;
  line-height: 20px;
  font-family: "ヒラギノ丸ゴ Pro", sans-serif;
}
.h_logo p::after {
  content: url(https://aksam.jp/img/aksamlogo.webp);
  transform: scale(0.2);
  position: absolute;
  top: -55px; left: -95px;
}

/* PC用要素はデフォルト非表示（PCメディアクエリで表示） */
.h-upper-right { display: none; }
.nav-line-pc   { display: none; }
.nav-mail-pc   { display: none; }

/* gNavはSPではJSが制御 */
#gNav { display: none; }

/* ─────────────────────────────
   SP ハンバーガーボタン
───────────────────────────── */
.sp-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  height: 60px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.sp-header-logo {
  display: flex;
  align-items: center;
  padding-left: 12px;
  flex: 1;
}
.sp-header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.sp-logo-img {
  width: 36px;
  height: auto;
}
.sp-logo-text {
  font-family: "Good Times", sans-serif;
  font-weight: 900;
  font-size: 16px;
  font-style: italic;
  color: #00364b;
  line-height: 1;
}
.sp-header-logo .lp-tittle {
  display: block;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  font-family: "ヒラギノ丸ゴ Pro", sans-serif;
  color: #666;
  margin-top: 5px;
}

.sp-menu-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px; height: 60px;
  padding: 0;
  background: #00364b;
  border: none;
  cursor: pointer;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 100;
}
.sp-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: all 0.4s ease;
  position: absolute;
  left: 50%; margin-left: -8px;
}
.sp-menu-btn span:nth-child(1) { top: 16px; }
.sp-menu-btn span:nth-child(2) { top: 24px; }
.sp-menu-btn span:nth-child(3) { top: 32px; }
.sp-menu-btn em {
  position: absolute;
  bottom: 6px; left: 0;
  width: 100%; text-align: center;
  font-size: 9px; font-style: normal; font-weight: bold;
  color: #fff;
  font-family: "ヒラギノ丸ゴ Pro", sans-serif;
  padding-left: 4px;
}
.sp-menu-btn.is-active span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.sp-menu-btn.is-active span:nth-child(2) { opacity: 0; }
.sp-menu-btn.is-active span:nth-child(3) { top: 24px; transform: rotate(-45deg); }
.sp-menu-btn.is-active em { font-size: 0; }
.sp-menu-btn.is-active em::after { content: "とじる"; font-size: 9px; }

/* ─────────────────────────────
   SP オーバーレイマスク
───────────────────────────── */
.sp-menu-mask {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,20,30,0.4);
  z-index: 96;
}

/* ─────────────────────────────
   SP メニュー本体
───────────────────────────── */
.sp-menu-open { position: fixed; width: 100%; height: 100%; z-index: 1; }

#gNav.is-open {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 97;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}
#gNav.is-open::-webkit-scrollbar { display: none; }

#gNav.is-open > ul.nav {
  display: block;
  padding: 80px 0 40px;
  margin: 0; list-style: none;
  background: #f0f5fa;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
#gNav.is-open ul.nav > li {
  width: 100%;
  border-bottom: 1px solid #d4e3f0;
  box-sizing: border-box;
}
#header #gNav.is-open ul.nav > li > a {
  display: flex; align-items: center;
  padding: 12px 20px;
  color: #333; font-size: 15px; font-weight: 400;
  letter-spacing: 0.02em; line-height: 1.4;
  text-decoration: none;
}
#header #gNav.is-open .has-submenu > span.header-nolink {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  color: #333; font-size: 15px; font-weight: 400;
  cursor: pointer; letter-spacing: 0.02em; line-height: 1.4;
}

/* SP アコーディオンボタン */
.sp-accordion-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  margin-left: 12px; padding: 0;
  background: transparent; border: none; cursor: pointer;
  flex-shrink: 0; position: relative;
  transition: transform 0.2s ease;
}
.sp-accordion-btn::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: #6aabdf; position: absolute;
}
.sp-accordion-btn::after {
  content: ''; display: block;
  width: 2px; height: 18px;
  background: #6aabdf; position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sp-accordion-btn.is-open::after { transform: rotate(90deg); opacity: 0; }
.sp-accordion-btn.is-open::before { background: #d85e27; }

/* SP サブメニュー */
#gNav.is-open .has-submenu > .sub-menu {
  display: none;
  padding: 0; margin: 0; list-style: none;
  background: #e6eef6; overflow: hidden;
  width: 100%; box-sizing: border-box;
  position: static;
  visibility: visible; opacity: 1;
}
#gNav.is-open .has-submenu > .sub-menu > li {
  width: 100%; border-bottom: 1px solid #ccdced;
}
#gNav.is-open .has-submenu > .sub-menu > li:last-child { border-bottom: none; }
#header #gNav.is-open .has-submenu > .sub-menu > li > a {
  display: flex; align-items: center;
  padding: 10px 20px 10px 36px;
  color: #555; font-size: 14px; font-weight: 500;
  text-decoration: none; line-height: 1.4;
  width: 100%; box-sizing: border-box;
}
#gNav.is-open .has-submenu > .sub-menu > li > a:hover { background: #e8eff6; color: #5B9BD5; }

/* SP CTA */
#gNav.is-open .nav-contact-flex-wrap { border-bottom: none; padding: 0; }
#gNav.is-open .nav-contact-flex {
  display: flex; flex-direction: column; gap: 10px;
  margin: 20px 20px 36px; padding: 24px 20px;
  background: #f8f9fa; border-radius: 16px;
}
.nav-cta-label {
  text-align: center; font-size: 15px; font-weight: 700;
  color: #222; margin: 0 0 4px; line-height: 1.4;
}
.nav-cta-label span {
  display: block; font-size: 11px; font-weight: 500;
  color: #999; letter-spacing: 0.06em; margin-top: 2px;
}
.nav-cta-row { display: flex; gap: 8px; margin: 12px 0 8px; align-items: stretch; }
.nav-cta-tel {
  flex: 3; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 0; border-radius: 10px; font-weight: 900;
  text-decoration: none; line-height: 1; color: #fff !important; background: #5B9BD5;
}
.nav-cta-tel i { font-size: 18px; color: #fff !important; }
.nav-cta-tel-inner { display: flex; flex-direction: column; gap: 3px; }
.nav-cta-tel-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.85) !important; letter-spacing: 0.06em; }
.nav-cta-tel-number { font-size: 16px; font-weight: 900; color: #fff !important; letter-spacing: 0.02em; }
.nav-cta-line {
  flex: 2; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 0; border-radius: 10px; font-size: 14px; font-weight: 900;
  text-decoration: none; line-height: 1; color: #fff !important; background: #06C755;
}
.nav-cta-line svg { flex-shrink: 0; }
.nav-cta-line-inner { display: flex; flex-direction: column; gap: 2px; }
.nav-cta-line-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.95) !important; letter-spacing: 0.04em; }
.nav-cta-line-text { font-size: 14px; font-weight: 900; }
.nav-cta-mail {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 0; border-radius: 10px;
  border: 1px solid #e0e0e0; background: #fff;
  color: #555 !important; font-size: 13px; font-weight: 600; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-cta-mail::before { content: '\f0e0'; font-family: 'FontAwesome'; font-size: 13px; color: #555; }
.nav-cta-dl {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px 0; border-radius: 8px;
  background: #f5f7f8; border: 1px solid #e0e4e7;
  color: #003549 !important; font-size: 12px; font-weight: 600; text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-cta-dl::before { content: '\f019'; font-family: 'FontAwesome'; font-size: 11px; color: #003549; }

/* SP 英語サブテキスト */
.nav-en {
  font-size: 11px; font-weight: 400;
  color: #b0c4d8; margin-left: 10px; letter-spacing: 0.06em;
}

/* ─────────────────────────────
   SP 下部固定CTAバー
───────────────────────────── */
@media only screen and (max-width: 1025px) {
  body { padding-bottom: 70px; }

  .sp-fixed-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0;
    width: 100%; z-index: 9500;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "BIZ UDPGothic", "Yu Gothic", sans-serif;
  }
  .sp-fixed-cta-tel {
    flex: 3; display: flex; align-items: center; justify-content: flex-start;
    gap: 10px; padding: 10px 10px 10px 24px;
    background: #fff; color: #003549; text-decoration: none;
    border-right: 1px solid #e0e0e0;
  }
  .sp-fixed-cta-tel i { font-size: 30px; color: #1a5c7a; }
  .sp-fixed-cta-tel-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
  .sp-fixed-cta-tel-text em { font-size: 11px; font-style: normal; font-weight: 600; color: #003549; }
  .sp-fixed-cta-tel-row { display: flex; align-items: center; gap: 6px; }
  .sp-fixed-cta-tel-text strong { font-size: 19px; font-weight: 900; color: #1a5c7a; letter-spacing: 0.02em; }
  .sp-fixed-cta-badges { display: flex; flex-direction: column; gap: 2px; align-self: flex-end; }
  .sp-fixed-cta-badge {
    display: block; font-size: 9px; font-weight: 700; color: #fff;
    background: #e85d26; padding: 2px 0; border-radius: 3px;
    min-width: 62px; text-align: center; white-space: nowrap;
  }
  .sp-fixed-cta-tag { font-size: 9px; font-weight: 600; color: #e85d26; }
  .sp-fixed-cta-line {
    flex: 1.2; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 8px 0;
    background: #06C755; color: #fff; text-decoration: none;
    font-size: 11px; font-weight: 700;
  }
  .sp-fixed-cta-line-sub { font-size: 10px; font-weight: 600; opacity: 0.9; }
  .sp-fixed-cta-line-icon { width: 40px; height: 40px; }
}

/* ─────────────────────────────
   PC 2段ヘッダー（1025px+）
───────────────────────────── */
@media screen and (min-width: 1026px) {

  /* SP要素を非表示 */
  .sp-header-bar  { display: none; }
  .sp-menu-mask   { display: none !important; }
  .sp-accordion-btn { display: none; }
  .nav-en         { display: none; }
  .sp-fixed-cta   { display: none; }
  .header-contact { display: none; }
  .lp-tel         { display: none; }
  .lp-line        { display: none; }
  .lp-tel-tab     { display: none; }

  /* ヘッダー全体 */
  #header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  #h_top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── 上段：ロゴ + CTAエリア ── */
  .h-row-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  .h-row-upper .h_logo p,
  .h-row-upper .h_logo h1 { position: relative; top: auto; left: auto; margin-left: 0; }
  .h-upper-right { display: flex; align-items: center; gap: 8px; }

  /* 資料DL */
  .h-upper-right .nav-contact { margin: 0; padding: 0; background: none; }
  .h-upper-right .nav-contact span { display: none; }
  .h-upper-right .nav-contact a {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: #003549; font-weight: 600;
    background: #f5f7f8; padding: 10px 16px;
    border: 1px solid #e0e4e7; border-radius: 8px;
    text-decoration: none; transition: all 0.2s; line-height: 1;
  }
  .h-upper-right .nav-contact a::before { content: '\f019'; font-family: 'FontAwesome'; font-size: 11px; }
  .h-upper-right .nav-contact a:hover { border-color: #003549; background: #edf1f3; }

  /* メール */
  .nav-mail-pc { display: block; }
  .h-upper-right .nav-mail-pc a {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: #fff; font-weight: 700;
    background: #00364b; padding: 10px 16px; border-radius: 8px;
    text-decoration: none; transition: all 0.2s; line-height: 1;
  }
  .h-upper-right .nav-mail-pc a::before { content: '\f0e0'; font-family: 'FontAwesome'; font-size: 10px; }
  .h-upper-right .nav-mail-pc a:hover { background: #004a66; }

  /* LINE */
  .nav-line-pc { display: block; }
  .nav-line-pc a {
    display: inline-flex; align-items: center; gap: 6px;
    background: #06C755; color: #fff; font-size: 12px; font-weight: 700;
    padding: 10px 16px; border-radius: 8px;
    text-decoration: none; transition: all 0.2s; line-height: 1;
  }
  .nav-line-pc a:hover { background: #05a648; }
  .nav-line-pc a svg { flex-shrink: 0; }

  /* 電話 */
  .h-upper-right .nav-tell {
    margin: 0; padding-left: 20px; margin-left: 12px;
    border-left: 2px solid #e8ecee;
  }
  .h-upper-right .nav-tell span.nav-tell-badges {
    display: flex; gap: 4px; margin-bottom: 6px;
    background: none; padding: 0; box-shadow: none;
  }
  .h-upper-right .nav-tell .nav-tell-badge {
    display: inline-block; font-size: 11px; color: #fff; line-height: 1;
    background: linear-gradient(135deg, #d85e27 0%, #c44d1a 100%);
    padding: 4px 10px; font-weight: 700; border-radius: 4px;
  }
  .h-upper-right .nav-tell a {
    font-size: 26px; color: #2a6e8f; font-weight: 900;
    text-decoration: none; background: none; padding: 0;
    letter-spacing: 0.04em; line-height: 1; display: block;
    position: static;
  }
  .h-upper-right .nav-tell a i { margin-right: 5px; font-size: 24px; color: #2a6e8f; }
  .h-upper-right .nav-tell .nav-tell-sub {
    display: block; font-size: 12px; font-weight: 600; color: #333;
    line-height: 1; margin-top: 4px; background: none; padding: 0 0 4px;
  }

  /* ── 下段：ナビバー ── */
  #h_top .h_nav {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00364b 0%, #004a66 50%, #00364b 100%);
    margin-bottom: 0;
  }
  /* ヘッダー全高さ = 上段 + ナビ50px + オレンジ3px → padding-topで吸収 */
  body { padding-top: 190px; }
  /* オレンジアクセントライン */
  #h_top .h_nav::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #00364b 0%, #d85e27 15%, #e8a45a 50%, #d85e27 85%, #00364b 100%);
    pointer-events: none;
  }

  /* gNav */
  #gNav { display: block; }
  #gNav .nav-contact-flex { display: none; }

  #gNav > .nav {
    display: flex;
    justify-content: center;
    align-items: stretch;
    list-style: none;
    margin: 0; padding: 0;
    height: 50px;
  }

  #gNav > .nav > li {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
  }

  /* ── ナビリンク共通スタイル ── */
  #gNav > .nav > li > a,
  #gNav > .nav > li > span.header-nolink {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: pointer;
    box-sizing: border-box;
  }
  #gNav > .nav > li:hover > a,
  #gNav > .nav > li:hover > span.header-nolink { color: #fff; }

  /* ホバー下線 */
  #gNav > .nav > li > a { position: relative; }
  #gNav > .nav > li > a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: #d85e27;
    transform: translateX(-50%);
    transition: width 0.25s;
  }
  #gNav > .nav > li:hover > a::after { width: 60%; }

  /* ▾ドロップダウン矢印 */
  #gNav > .nav > li > span.header-nolink > .nav-arrow {
    display: inline-block;
    font-size: 10px;
    color: #d85e27;
    margin-left: 4px;
    line-height: 1;
    transition: transform 0.25s;
  }
  #gNav > .nav > li:hover > span.header-nolink > .nav-arrow {
    transform: rotate(180deg);
    color: #e8a45a;
  }

  /* ── ドロップダウン ── */
  #gNav .has-submenu > .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-top: 3px solid #d85e27;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.15s ease, visibility 0s linear 0.15s;
    z-index: 9999;
    padding: 6px 0;
    margin: 0; list-style: none;
  }
  #gNav .has-submenu:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.15s ease, visibility 0s;
  }
  #gNav .has-submenu > .sub-menu > li { display: block; margin: 0; padding: 0; }
  #gNav .has-submenu > .sub-menu > li > a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  #gNav .has-submenu > .sub-menu > li > a::before {
    content: '–';
    margin-right: 8px;
    color: #d85e27;
    font-weight: 700;
  }
  #gNav .has-submenu > .sub-menu > li > a:hover {
    background: #faf6f3;
    color: #d85e27;
  }

  /* PC nav-en非表示 */
  .nav-en { display: none; }
  .nav-logo { display: none; }
}


/* =============================================================================
   base.css — aksam.jp 全ページ共通基盤
   Phase 1: ヘッダー / フッター / リセット / 共通ユーティリティ
   
   ▸ searvice.css + common-header.css + meanmenu.css を統合
   ▸ !important は原則排除（外部ライブラリ上書き等の最小限のみ）
   ▸ このファイルを全ページで読み込み、ページ固有CSSは別ファイルで管理
   ============================================================================= */

/* --- Google Fonts（1回だけ読み込み） --- */

@font-face {
  font-family: "Good Times";
  src: url("https://aksam.jp/fonts/good times rg.otf") format("opentype");
  font-display: swap;
}


/* =============================================================================
   1. リセット・ベース
   ============================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.6em;
  font-family: "ヒラギノ丸ゴ Pro", sans-serif;
  font-weight: 500;
  color: #535761;
  -webkit-text-size-adjust: 100%;
}

table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

a {
  outline: none;
  color: #333;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  transition: 0.5s;
}

main { overflow: hidden; }

/* --- ユーティリティ --- */
.container { margin: 0 auto; }
.clr::after, .col::after, .container::after, .group::after, .row::after {
  content: "";
  display: table;
  clear: both;
}
.row { padding-bottom: 0; }
.col { display: block; float: left; width: 100%; }

.taC { text-align: center; }
.taR { text-align: right; }
.taL { text-align: left; }

.nolink { pointer-events: none; }

@media (min-width: 769px), print {
  .gutters .col { margin-left: 2%; }
  .gutters .col:first-child { margin-left: 0; }
  .gutters .colR:first-child { margin-right: 0; }
  .sp { display: none; }
}
@media (max-width: 768px) {
  .sp_none { display: none; }
}


/* =============================================================================
   6. フッター（刷新版）
   ============================================================================= */

.site-footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 上段 */
.footer-top {
  display: flex;
  gap: 60px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ブランドエリア */
.footer-brand {
  flex-shrink: 0;
  width: 220px;
}
.footer-logo-link img {
  display: block;
  max-width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-logo-text {
  font-family: "Good Times", sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 10px 0 20px;
  letter-spacing: 0.06em;
}
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer-tel i { font-size: 16px; color: #d85e27; }
.footer-tel:hover { color: #d85e27; }
.footer-tel-note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ナビエリア */
.footer-nav-new {
  display: flex;
  gap: 48px;
  flex: 1;
}
.footer-nav-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-nav-heading {
  font-family: "Good Times", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #d85e27;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-nav-col ul li { margin-bottom: 8px; }
.footer-nav-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav-col ul li a:hover { color: #fff; }

/* 下段 */
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-left img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-jres-text {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-address {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-copy {
  margin: 0 0 0 auto;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* SP */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .footer-brand { width: 100%; }
  .footer-nav-new { gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-copy { margin: 0; }
}

/* =============================================================================
   7. SPハンバーガーメニュー（自作）
   ============================================================================= */

@media only screen and (max-width: 1025px) {

  /* --- body固定 --- */
  .sp-menu-open {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* --- SPヘッダーバー --- */
  .sp-header-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 98;
  }

  /* --- ハンバーガーボタン --- */
  .sp-menu-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 60px;
    padding: 0;
    background: #00364b;
    border: none;
    cursor: pointer;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 100;
  }
  .sp-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease;
    position: absolute;
    left: 50%;
    margin-left: -8px;
  }
  .sp-menu-btn span:nth-child(1) { top: 16px; }
  .sp-menu-btn span:nth-child(2) { top: 24px; }
  .sp-menu-btn span:nth-child(3) { top: 32px; }
  .sp-menu-btn em {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 9px;
    font-style: normal;
    font-weight: bold;
    color: #fff;
    font-family: "ヒラギノ丸ゴ Pro", sans-serif;
    padding-left: 4px;
  }
  .sp-menu-btn.is-active span:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
  }
  .sp-menu-btn.is-active span:nth-child(2) { opacity: 0; }
  .sp-menu-btn.is-active span:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg);
  }
  .sp-menu-btn.is-active em { font-size: 0; }
  .sp-menu-btn.is-active em::after {
    content: "とじる";
    font-size: 9px;
  }

  /* --- 背景マスク --- */
  .sp-menu-mask {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,20,30,0.4);
    z-index: 96;
  }

  /* --- ナビ本体 --- */
  #gNav.is-open::-webkit-scrollbar { display: none; }

  #gNav.is-open > ul.nav {
    display: block;
    padding: 80px 0 40px 0;
    margin: 0;
    width: 100%;
    list-style: none;
    background: #f0f5fa;
    min-height: 100vh;
  }

  /* --- ナビ項目共通 --- */
  #gNav.is-open ul.nav > li {
    width: 100%;
    border-bottom: 1px solid #d4e3f0;
    box-sizing: border-box;
  }

  /* --- リンク項目 --- */
  #header #gNav.is-open ul.nav > li > a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }


  /* --- サブメニュー親 --- */
  #header #gNav.is-open .has-submenu > span.header-nolink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }

  /* --- ＋/−ボタン --- */
  .sp-accordion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 12px;
    padding: 0;
    font-size: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.2s ease;
  }
  .sp-accordion-btn::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #6aabdf;
    position: absolute;
  }
  .sp-accordion-btn::after {
    content: '';
    display: block;
    width: 2px;
    height: 18px;
    background: #6aabdf;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .sp-accordion-btn.is-open::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  .sp-accordion-btn.is-open::before {
    background: #d85e27;
  }
  .sp-accordion-btn:active {
    transform: scale(0.9);
  }

  /* --- サブメニュー（PC用リセット） --- */
  #gNav.is-open .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    z-index: auto;
    transition: none;
  }
  #gNav.is-open .has-submenu > .sub-menu {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #e6eef6;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  #gNav.is-open .has-submenu > .sub-menu > li {
    width: 100%;
    border-bottom: 1px solid #ccdced;
  }
  #gNav.is-open .has-submenu > .sub-menu > li:last-child {
    border-bottom: none;
  }
  #header #gNav.is-open .has-submenu > .sub-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 36px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
  }

  #gNav.is-open .has-submenu > .sub-menu > li > a:hover,
  #gNav.is-open .has-submenu > .sub-menu > li > a:active {
    background: #e8eff6;
    color: #5B9BD5;
  }

  /* --- CTA --- */
  #gNav.is-open .nav-contact-flex-wrap {
    border-bottom: none;
    padding: 0;
  }
  #gNav.is-open .nav-contact-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 20px 36px;
    padding: 24px 20px;
    background: #f8f9fa;
    border-radius: 16px;
  }
  #gNav.is-open .nav-cta-row {
    display: flex;
    gap: 8px;
    margin: 12px 0 8px;
    align-items: stretch;
  }
  #gNav.is-open .nav-cta-tel {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
    color: #fff;
    background: #5B9BD5;
  }
  #gNav.is-open .nav-cta-line {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
    color: #fff;
    background: #06C755;
  }
  #gNav.is-open .nav-cta-line svg {
    flex-shrink: 0;
  }
  #gNav.is-open .nav-cta-line-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  #gNav.is-open .nav-cta-line .nav-cta-line-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.04em;
  }
  #gNav.is-open .nav-cta-line .nav-cta-line-text {
    font-size: 14px;
    font-weight: 900;
  }
  #gNav.is-open .nav-cta-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  #gNav.is-open .nav-cta-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
    border-radius: 8px;
    background: #f5f7f8;
    border: 1px solid #e0e4e7;
    color: #003549;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
  }

  /* --- SP専用要素 --- */
  .sp-header-bar { display: flex; }
  .nav-arrow { display: none; }
  .sp-accordion-btn { display: inline-flex; }

  /* --- ナビ英語サブテキスト --- */
  .nav-en {
    font-family: "Good Times", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #b0c4d8;
    margin-left: 10px;
    letter-spacing: 0.06em;
  }
}

/* PCではSP専用要素を非表示 */
@media only screen and (min-width: 1026px) {
  .sp-header-bar { display: none; }
  .sp-menu-mask { display: none; }
  .sp-accordion-btn { display: none; }
  .nav-en { display: none; }
  .has-submenu > .sub-menu { display: block; }
  .sp-fixed-cta { display: none; }
}

/* --- SP下部固定CTAバー --- */
@media only screen and (max-width: 1025px) {
  .sp-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 95;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  }

  /* 電話エリア（白背景・ブルー文字） */
  .sp-fixed-cta-tel {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 10px 10px 24px;
    background: #fff;
    color: #003549;
    text-decoration: none;
    border-right: 1px solid #e0e0e0;
  }
  .sp-fixed-cta-tel i {
    font-size: 30px;
    color: #1a5c7a;
  }
  .sp-fixed-cta-tel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
  }
  .sp-fixed-cta-tel-text em {
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    color: #003549;
    letter-spacing: 0.02em;
  }
  .sp-fixed-cta-tel-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sp-fixed-cta-tel-text strong {
    font-size: 19px;
    font-weight: 900;
    color: #1a5c7a;
    letter-spacing: 0.02em;
    font-family: 'Arial', sans-serif;
    line-height: 1;
  }
  .sp-fixed-cta-badges {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-self: flex-end;
  }
  .sp-fixed-cta-badge {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: #e85d26;
    padding: 2px 0;
    border-radius: 3px;
    letter-spacing: 0.04em;
    line-height: 1.3;
    white-space: nowrap;
    text-align: center;
    min-width: 62px;
  }
  .sp-fixed-cta-tag {
    font-size: 9px;
    font-weight: 600;
    color: #e85d26;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-top: 4px;
  }

  /* LINEエリア */
  .sp-fixed-cta-line {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 0;
    background: #06C755;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .sp-fixed-cta-line-sub {
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    opacity: 0.9;
  }
  .sp-fixed-cta-line-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  /* ページ最下部のパディング（固定バーに隠れないように） */
  body { padding-bottom: 70px; }
}


/* =============================================================================
   8. color-change（スクロールでヘッダー背景変化）
   ============================================================================= */

.color-change {
  color: transparent;
  transition: all 0.8s ease;
}

.color-change.invert {
  color: #111111;
  background-color: rgba(255,255,255,0.70);
  transition: 0.5s 0.5s linear;
}

.color-change2 { color: transparent; }
.color-change2.invert2 { color: #000; text-align: left; }

@media screen and (min-width: 1025px) {
  .color-bk-pc { color: #000; }
}

.color-bk { color: #000; }


/* =============================================================================
   9. パンくずリスト
   ============================================================================= */

.Breadcrumb {
  background-color: #F5F5F5;
  position: relative;
  z-index: 1;
  margin-top: 70px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
}

.Breadcrumb-ListGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25em 0;
}

.Breadcrumb-ListGroup-Item {
  margin: 0;
  padding: 0;
  min-width: 0;
}

.Breadcrumb-ListGroup-Item:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.55em;
  font-size: 0.9em;
  opacity: 0.5;
}

.Breadcrumb-ListGroup-Item-Link {
  text-decoration: none;
  color: inherit;
  opacity: 0.9;
  white-space: nowrap;
}

.Breadcrumb-ListGroup-Item-Link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.Breadcrumb-ListGroup-Item:last-child {
  flex: 1 1 240px;
  min-width: 0;
}

.Breadcrumb-ListGroup-Item:last-child .bread-last {
  display: inline;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-weight: 600;
  font-size: inherit;
}

@media (max-width: 600px) {
  .Breadcrumb {
    margin-top: 60px;
    padding: 8px 14px;
    font-size: 12px;
  }
  .Breadcrumb li a { font-size: inherit; }
  .Breadcrumb-ListGroup-Item:last-child { flex-basis: auto; }
  .Breadcrumb-ListGroup-Item:last-child .bread-last {
    display: inline;
    margin-top: 0;
    font-size: inherit;
    font-weight: 600;
  }
  .Breadcrumb-ListGroup-Item:not(:last-child)::after {
    margin: 0 0.45em;
    opacity: 0.35;
  }
}

@media screen and (min-width: 1500px) {
  .Breadcrumb { padding: 15px 20% 5px; margin-top: 0; }
}

/* PC表示：bodyのpadding-topでヘッダー固定分を確保済み */
@media screen and (min-width: 1025px) {
  .Breadcrumb { margin-top: 0; }
}


/* =============================================================================
   10. 共通アニメーション
   ============================================================================= */

/* その場でフェードイン */
.fadeIn { animation: fadeInAnime 1s forwards; opacity: 0; }
@keyframes fadeInAnime { from { opacity: 0; } to { opacity: 1; } }

/* 下から */
.fadeUp { animation: fadeUpAnime 1s forwards; opacity: 0; }
@keyframes fadeUpAnime { from { opacity: 0; transform: translateY(100px); } to { opacity: 1; transform: translateY(0); } }

/* 上から */
.fadeDown { animation: fadeDownAnime 0.5s forwards; opacity: 0; }
@keyframes fadeDownAnime { from { opacity: 0; transform: translateY(-100px); } to { opacity: 1; transform: translateY(0); } }

/* 左から */
.fadeLeft { animation: fadeLeftAnime 0.5s forwards; opacity: 0; }
@keyframes fadeLeftAnime { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }

/* 右から */
.fadeRight { animation: fadeRightAnime 1s forwards; opacity: 0; }
@keyframes fadeRightAnime { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }

/* タイピング */
.TextTyping span { display: none; }
.TextTyping::after { content: "|"; animation: typinganime 0.8s ease infinite; }
@keyframes typinganime { from { opacity: 0; } to { opacity: 1; } }

/* 背景色が伸びて出現 */
.bgextend { animation: bgextendAnimeBase 1s forwards; position: relative; overflow: hidden; opacity: 0; }
@keyframes bgextendAnimeBase { from { opacity: 0; } to { opacity: 1; } }

.bgappear { animation: bgextendAnimeSecond 1s 0.6s forwards; opacity: 0; }
@keyframes bgextendAnimeSecond { 0% { opacity: 0; } 100% { opacity: 1; } }

.bgLRextend::before {
  animation: bgLRextendAnime 1s forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background-color: #d85e27;
}
@keyframes bgLRextendAnime {
  0% { transform-origin: left; transform: scaleX(0); }
  50% { transform-origin: left; transform: scaleX(1); }
  50.001% { transform-origin: right; }
  100% { transform-origin: right; transform: scaleX(0); }
}

/* 1文字ずつ出現 */
.eachTextAnime span { opacity: 0; }
.eachTextAnime.appeartext span { animation: text_anime_on 2s ease-out forwards; }
@keyframes text_anime_on { 0% { opacity: 0; } 100% { opacity: 1; } }

/* スクロールフェード */
.scroll-fade-up { margin: auto; width: auto; }
.scroll-fade-left { margin: auto; width: auto; }
.scroll-fade-right { margin: auto; width: auto; }


/* =============================================================================
   11. 共通コンタクトセクション
   ============================================================================= */

.contact {
  background-color: #fff;
  padding: 10px 0 100px;
  text-align: center;
}

.address {
  display: block;
  margin: auto;
  width: 70%;
  text-align: left;
}

.contact a {
  text-decoration: none;
  color: #000;
  padding: 20px;
  border: 2px solid #000;
  display: block;
  margin: 30px auto;
  width: 70%;
  text-align: center;
}
.contact a span { margin-right: 10px; }
.contact a:hover { background-color: #000; color: #fff; }
.contact a i { font-size: 20px; margin-right: 10px; }

.contact-bannar-flex { }
.tel-bannar { }
.mail-bannar { }

@media screen and (min-width: 1025px) {
  .contact { padding: 100px 20%; }
  .contact a { width: auto; }
  .contact-bannar-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 10%;
  }
  .contact-bannar-flex div { width: 35%; margin: 0; padding: 0; }
}

@media screen and (min-width: 1500px) {
  .contact { padding: 100px 30%; }
}


/* =============================================================================
   12. 共通セクションタイトル
   ============================================================================= */

.section-tittle-wrap {
  text-align: left;
  margin: 50px 0 20px 20px;
}

span.section-tittle {
  font-size: 28px;
  color: #000000;
  margin: auto;
  font-family: "Good Times", sans-serif;
  border-bottom: 1px solid #eee;
}

span.section-tittle-wh {
  font-size: 28px;
  color: #fff;
  margin: auto;
  font-family: "Good Times", sans-serif;
  border-bottom: 1px solid #fff;
}

h1.section-tittle-mini,
h2.section-tittle-mini {
  font-size: 18px;
  text-align: left;
  display: block;
  color: #d85e27;
  font-weight: 300;
}

h2.section-tittle-mini-wh { color: #fff; font-size: 18px; }

span.section-tittle-mini-wh {
  font-size: 16px;
  text-align: left;
  display: block;
  color: #fff;
  font-weight: 300;
}

span.section-tittle2 {
  font-size: 20px;
  color: #fff;
  margin: auto;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  border-bottom: 1px solid #eee;
  background-color: #3E3D3D;
  border-left: 7px solid #d85e27;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
  width: auto;
}

.content-more { text-align: right; margin-top: 10px; }
.content-more a {
  background-color: #3F3F3F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}
.content-more a:hover { background-color: #000; padding: 10px 20px; color: #fff; }
.content-more a i { margin-left: 20px; }

/* Font Awesome font-display: swap 上書き */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://aksam.jp/fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2');
  font-display: swap;
}


/* ========================================
   ヒーロー（動画オーバーレイ版）
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: linear-gradient(105deg, rgba(14,47,68,0.92) 0%, rgba(14,47,68,0.88) 38%, rgba(14,47,68,0.4) 52%, transparent 65%);
}
.hero-slant-accent {
  position: absolute;
  top: 0; left: 48%;
  width: 2px; height: 100%;
  z-index: 2;
  transform: skewX(-6deg);
  background: linear-gradient(to bottom, transparent 5%, rgba(41,128,185,0.4) 30%, rgba(41,128,185,0.6) 50%, rgba(41,128,185,0.4) 70%, transparent 95%);
}
.hero-slant-accent::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 15%, rgba(41,128,185,0.15) 40%, rgba(41,128,185,0.15) 60%, transparent 85%);
}
.hero-float {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.hero-float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0;
}
.hero-float--1 { right: 6%; top: 22%; animation: float-card 5s ease-in-out infinite; }
.hero-float--2 { right: 20%; bottom: 18%; animation: float-card 6s ease-in-out infinite reverse; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding: 80px 40px 80px 8%;
}
.hero-label {
  display: inline-block;
  color: rgba(255,255,255,0.5);
  border-left: 3px solid #c82828;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-family: "Good Times";
}
.hero-title { font-size: 40px; font-weight: 900; line-height: 1.35; margin: 0 0 28px; color: #fff; }
.hero-title .accent { color: #fff; display: block; font-size: 46px; margin-top: 8px; }
.hero-subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 35px; line-height: 2; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); padding: 10px 20px; font-size: 13px; font-weight: 600; border-radius: 6px; backdrop-filter: blur(4px); transition: all 0.3s; }
.hero-tag:hover { background: #c82828; border-color: #c82828; color: #fff; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: #001f2d; padding: 18px 40px; font-size: 18px; font-weight: 700; text-decoration: none; border-radius: 50px; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); background: #c82828; color: #fff; }
.hero-scroll { position: absolute; bottom: 30px; left: 8%; z-index: 3; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll::after { content: ""; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scroll-line 1.5s ease-in-out infinite; }
@keyframes scroll-line { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 968px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-video { position: absolute; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(14,47,68,0.3) 0%,
      rgba(14,47,68,0.6) 35%,
      rgba(14,47,68,0.88) 60%,
      rgba(14,47,68,0.95) 100%
    );
  }
  .hero-slant-accent { display: none; }
  .hero-float { display: none; }
  .hero-inner {
    position: relative;
    padding: 0 20px 40px;
    max-width: 100%;
    background: none;
    margin-top: auto;
  }
  .hero-label { margin-bottom: 20px; }
  .hero-title { font-size: 28px; }
  .hero-title .accent { font-size: 32px; margin-top: 5px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 25px; line-height: 1.9; }
  .hero-tags { gap: 8px; margin-bottom: 30px; }
  .hero-tag { padding: 8px 14px; font-size: 12px; }
  .hero-cta { width: 100%; justify-content: center; padding: 16px 30px; font-size: 16px; }
  .hero-scroll { display: none; }
}

/* ============================================================
   トップページ固有スタイル
   ============================================================ */

:root {
  --navy:#003549; --navy-dark:#001f2d; --navy-light:#00516e;
  --red:#c82828; --red-light:#e03c3c;
  --gold:#c9a84c;
  --gray-50:#f8f9fa; --gray-100:#f0f4f6; --gray-200:#e0e6ea; --gray-500:#6b7280;
  --text-dark:#1a1e24; --text-body:#374151;
}
*{box-sizing:border-box}
main{background:var(--gray-50);overflow-x:hidden}

/* ヒーロー */
.top-hero{position:relative;width:100%;height:100vh;min-height:600px;overflow:hidden;display:flex;align-items:flex-end}
.top-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;opacity:0;transition:opacity 1s ease}
.top-hero-video.visible{opacity:1}
.top-hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(135deg,rgba(0,29,45,0.88) 0%,rgba(0,29,45,0.75) 40%,rgba(0,29,45,0.3) 70%,transparent 100%)}
.top-hero-inner{position:relative;z-index:2;width:100%;max-width:1200px;margin:0 auto;padding:0 5% 80px}
.top-hero-label{display:inline-block;font-family:"Good Times",sans-serif;font-size:10px;letter-spacing:4px;color:rgba(255,255,255,0.5);border-left:2px solid var(--gold);padding-left:12px;margin-bottom:28px}
.top-hero-h1{font-size:clamp(26px,4vw,52px);font-weight:900;color:#fff;line-height:1.3;margin:0 0 12px;letter-spacing:-0.01em}
.top-hero-h1 span{display:block;font-size:clamp(14px,2vw,26px);font-weight:500;color:rgba(255,255,255,0.7);margin-top:8px;letter-spacing:0}
.top-hero-sub{font-size:clamp(13px,1.4vw,15px);color:rgba(255,255,255,0.65);line-height:1.8;margin:0 0 36px;max-width:480px}
.top-hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.top-hero-btn-tel{display:inline-flex;align-items:center;gap:10px;background:#fff;color:var(--navy-dark);font-size:20px;font-weight:900;padding:16px 32px;border-radius:50px;text-decoration:none;transition:all 0.3s;letter-spacing:0.04em}
.top-hero-btn-tel:hover{background:var(--navy);color:#fff}
.top-hero-btn-line{display:inline-flex;align-items:center;gap:8px;background:#06C755;color:#fff;font-size:15px;font-weight:700;padding:16px 28px;border-radius:50px;text-decoration:none;transition:all 0.3s}
.top-hero-btn-line:hover{background:#05a648}
.top-hero-scroll{position:absolute;bottom:32px;right:5%;z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,0.4);font-size:9px;letter-spacing:3px;text-transform:uppercase}
.top-hero-scroll::after{content:"";width:1px;height:48px;background:linear-gradient(to bottom,rgba(255,255,255,0.4),transparent);animation:scrollline 1.8s ease-in-out infinite}
@keyframes scrollline{0%,100%{opacity:0.3;transform:scaleY(0.5)}50%{opacity:1;transform:scaleY(1)}}
@media(max-width:768px){.top-hero{height:100svh}.top-hero-inner{padding:0 5% 100px}.top-hero-btns{flex-direction:column}.top-hero-btn-tel,.top-hero-btn-line{justify-content:center}.top-hero-scroll{display:none}}

/* 実績バー */
.top-stats{background:#003549;padding:32px 5%}
.top-stats-inner{max-width:1000px;margin:0 auto;display:flex;align-items:center;justify-content:center}
.top-stat{flex:1;text-align:center;padding:0 24px;border-right:1px solid rgba(255,255,255,0.1)}
.top-stat:last-child{border-right:none}
.top-stat-num{display:block;font-family:"Good Times",sans-serif;font-size:clamp(26px,3.5vw,42px);font-weight:700;color:#fff;line-height:1;margin-bottom:8px}
.top-stat-num small{font-size:13px;font-family:"Noto Sans JP",sans-serif}
.top-stat-label{font-size:11px;color:rgba(255,255,255,0.55);font-weight:500;letter-spacing:0;line-height:1.6}
@media(max-width:600px){.top-stats-inner{flex-wrap:wrap;gap:20px}.top-stat{border-right:none;min-width:40%}}

/* セクション共通 */
.top-section{padding:80px 5%;max-width:1200px;margin:0 auto}
.top-section-white{background:#fff}
.top-section-gray{background:var(--gray-50)}
.top-section-title{margin-bottom:48px}
.top-section-en{font-family:"Good Times",sans-serif;font-size:11px;letter-spacing:4px;color:var(--red);display:block;margin-bottom:8px}
.top-section-ja{font-size:clamp(18px,2.8vw,32px);font-weight:700;color:var(--text-dark);line-height:1.4;margin:0}
@media(max-width:768px){.top-section{padding:60px 5%}}

/* 事業内容 */
.top-service-grid{display:grid;grid-template-columns:1fr;gap:16px}
.top-service-card{
  position:relative;
  display:grid;
  grid-template-columns:200px 1fr;
  text-decoration:none;color:var(--text-dark);
  background:#fff;
  border:1px solid var(--gray-200);
  border-radius:12px;
  overflow:hidden;
  transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
}
.top-service-card:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,0.1);border-color:var(--navy)}
.top-service-card img{
  display:block;
  width:200px;height:200px;
  object-fit:cover;
  flex-shrink:0;
  transition:transform 0.5s ease;
}
.top-service-card:hover img{transform:scale(1.05)}
.top-service-card-overlay{display:none}
.top-service-card-body{
  display:flex;flex-direction:column;justify-content:center;
  padding:28px 28px;
  position:relative;
}
.top-service-card-body::before{
  content:"";
  position:absolute;top:0;left:0;bottom:0;
  width:3px;
  background:var(--navy);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform 0.3s ease;
}
.top-service-card:hover .top-service-card-body::before{transform:scaleY(1)}
.top-service-card-en{font-family:"Good Times",sans-serif;font-size:10px;letter-spacing:3px;color:var(--red);display:block;margin-bottom:8px}
.top-service-card-title{font-size:18px;font-weight:700;margin:0 0 10px;line-height:1.4;color:var(--navy)}
.top-service-card-desc{font-size:13px;color:var(--gray-500);line-height:1.7;margin:0 0 16px}
.top-service-card-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;font-weight:700;color:var(--navy);
  transition:gap 0.2s;
}
.top-service-card:hover .top-service-card-link{gap:10px}
@media(max-width:768px){
  .top-service-card{grid-template-columns:1fr}
  .top-service-card img{width:100%;height:180px}
  .top-service-card-body{padding:20px}
}

/* 専門性バナー */
.top-expertise-banner{display:flex;align-items:flex-end;text-decoration:none;position:relative;border-radius:16px;overflow:hidden;min-height:340px;transition:transform 0.3s,box-shadow 0.3s}
.top-expertise-banner:hover{transform:translateY(-3px);box-shadow:0 20px 60px rgba(0,0,0,0.25)}
.top-expertise-banner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform 0.6s}
.top-expertise-banner:hover img{transform:scale(1.03)}
.top-expertise-banner-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,15,25,0.92) 0%,rgba(0,30,50,0.65) 45%,transparent 100%)}
.top-expertise-banner-body{position:relative;z-index:1;padding:48px 52px;color:#fff;max-width:560px}
.top-expertise-banner-label{display:inline-block;font-size:11px;font-weight:700;letter-spacing:2px;color:#ffb8b8;border:1px solid rgba(200,40,40,0.5);background:rgba(200,40,40,0.15);padding:4px 14px;border-radius:100px;margin-bottom:16px}
.top-expertise-banner-title{font-size:clamp(20px,2.5vw,30px);font-weight:900;line-height:1.5;margin:0 0 12px}
.top-expertise-banner-desc{font-size:14px;line-height:1.8;opacity:0.8;margin:0 0 24px}
.top-expertise-banner-btn{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:#fff;background:rgba(200,40,40,0.7);border:1px solid rgba(200,40,40,0.8);padding:12px 28px;border-radius:100px;transition:all 0.2s}
.top-expertise-banner:hover .top-expertise-banner-btn{background:rgba(200,40,40,0.9);transform:translateX(4px)}
@media(max-width:768px){.top-expertise-banner-body{padding:28px 24px}.top-expertise-banner-overlay{background:linear-gradient(0deg,rgba(0,15,25,0.92) 0%,rgba(0,53,73,0.5) 60%,rgba(0,53,73,0.15) 100%)}}

/* 施工実績 */
.top-results-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.top-result-card{background:#fff;border-radius:16px;overflow:hidden;border:1px solid var(--gray-200);transition:transform 0.2s,box-shadow 0.2s}
.top-result-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,0.1)}
.top-result-card a{display:block;text-decoration:none;color:inherit}
.case-ba{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:#1f2937}
.case-ba-item{position:relative;aspect-ratio:1/1;overflow:hidden}
.case-ba-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s}
.top-result-card:hover .case-ba-item img{transform:scale(1.05)}
.case-ba-label{position:absolute;top:8px;left:8px;font-size:10px;font-weight:700;letter-spacing:1px;padding:3px 8px;border-radius:4px}
.case-ba-label.before{background:#374151;color:#fff}
.case-ba-label.after{background:#2a6e3f;color:#fff}
.case-body{padding:16px}
.case-tag{display:inline-block;font-size:11px;font-weight:700;color:#1a5276;background:#e8f4f8;padding:3px 10px;border-radius:20px;margin-bottom:10px}
.case-title{font-size:13px;font-weight:700;color:var(--text-dark);margin:0 0 8px;line-height:1.5}
.case-desc{font-size:12px;color:var(--gray-500);line-height:1.7;margin:0 0 10px}
.case-link{display:inline-flex;align-items:center;gap:4px;font-size:12px;font-weight:700;color:#1a5276;text-decoration:none}
.top-more-link{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:var(--navy);text-decoration:none;border-bottom:1px solid var(--navy);padding-bottom:2px;margin-top:32px;transition:opacity 0.2s}
.top-more-link:hover{opacity:0.6}
@media(max-width:768px){.top-results-grid{grid-template-columns:1fr 1fr;gap:16px}}
@media(max-width:480px){.top-results-grid{grid-template-columns:1fr}}

/* お客様の声 */
.top-feedback-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.top-feedback-card{background:#fff;border:1px solid var(--gray-200);border-radius:14px;padding:28px 24px;display:flex;flex-direction:column;transition:transform 0.2s,box-shadow 0.2s}
.top-feedback-card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,53,73,0.08)}
.top-feedback-header{display:flex;gap:14px;align-items:center;margin-bottom:18px}
.top-feedback-photo{width:56px;height:56px;border-radius:50%;object-fit:cover;flex-shrink:0}
.top-feedback-photo-placeholder{width:56px;height:56px;border-radius:50%;background:var(--gray-100);display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0}
.top-feedback-area{font-size:11px;color:var(--gray-500);display:block;margin-bottom:2px}
.top-feedback-name{font-size:13px;font-weight:700;color:var(--navy);margin:0 0 4px}
.top-feedback-type{font-size:10px;color:#fff;background:var(--navy);padding:2px 8px;border-radius:4px;display:inline-block}
.top-feedback-voice{flex:1;font-size:13px;line-height:1.8;color:var(--text-body);margin-bottom:16px;padding:14px;background:var(--gray-50);border-radius:8px;border-left:3px solid var(--navy)}
.top-feedback-voice p{margin:0 0 8px}
.top-feedback-voice p:last-child{margin:0}
.top-feedback-voice strong{color:var(--navy)}
.top-feedback-link{font-size:12px;font-weight:700;color:var(--red);text-decoration:none;transition:opacity 0.2s}
.top-feedback-link:hover{opacity:0.7}
@media(max-width:768px){.top-feedback-grid{grid-template-columns:1fr}}

/* コラム */
.top-column-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.top-column-card{display:block;background:var(--gray-50);border:1px solid var(--gray-200);border-radius:12px;padding:24px 22px;text-decoration:none;color:var(--text-dark);transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s}
.top-column-card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(0,53,73,0.1);border-color:var(--red)}
.top-column-tag{display:inline-block;font-size:11px;font-weight:700;color:var(--red);background:#fde8e8;padding:3px 10px;border-radius:100px;margin-bottom:12px}
.top-column-title{font-size:15px;font-weight:700;color:var(--navy);margin:0 0 8px;line-height:1.5}
.top-column-desc{font-size:12px;color:var(--gray-500);line-height:1.7;margin:0}
@media(max-width:768px){.top-column-grid{grid-template-columns:1fr}}

/* NEWS */
.top-news-list{list-style:none;padding:0;margin:0}
.top-news-item{display:flex;align-items:baseline;gap:20px;padding:16px 0;border-bottom:1px solid var(--gray-200);font-size:14px}
.top-news-item:last-child{border-bottom:none}
.top-news-date{color:var(--gray-500);font-size:12px;white-space:nowrap;flex-shrink:0}
.top-news-title a{color:var(--text-dark);text-decoration:none;transition:color 0.2s}
.top-news-title a:hover{color:var(--navy)}

/* 中間CTA */
.top-mid-cta{background:var(--navy-dark);padding:32px 5%}
.top-mid-cta-inner{max-width:960px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.top-mid-cta-text{color:rgba(255,255,255,0.85);font-size:15px;font-weight:700;margin:0}
.top-mid-cta-text strong{color:#fff}
.top-mid-cta-btns{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.top-mid-cta-tel{display:inline-flex;align-items:center;gap:8px;background:var(--red);color:#fff;font-size:17px;font-weight:900;padding:12px 28px;border-radius:50px;text-decoration:none;transition:background 0.2s;letter-spacing:0.04em}
.top-mid-cta-tel:hover{background:var(--red-light)}
.top-mid-cta-mail{display:inline-flex;align-items:center;background:transparent;color:#fff;font-size:13px;font-weight:700;padding:11px 20px;border-radius:50px;text-decoration:none;border:1px solid rgba(255,255,255,0.35);transition:border-color 0.2s}
.top-mid-cta-mail:hover{border-color:#fff}
.top-mid-cta-line{display:inline-flex;align-items:center;background:#06C755;color:#fff;font-size:13px;font-weight:700;padding:12px 20px;border-radius:50px;text-decoration:none;transition:background 0.2s}
.top-mid-cta-line:hover{background:#05a648}
@media(max-width:768px){.top-mid-cta-inner{flex-direction:column;align-items:stretch}.top-mid-cta-btns{flex-direction:column}.top-mid-cta-tel,.top-mid-cta-mail,.top-mid-cta-line{justify-content:center;text-align:center}}

/* CTAセクション */
.top-cta{background:linear-gradient(135deg,var(--navy-dark) 0%,#00374f 100%);padding:80px 5%;text-align:center;position:relative;overflow:hidden}
.top-cta-inner{position:relative;z-index:1;max-width:700px;margin:0 auto}
.top-cta-title{font-size:clamp(22px,3vw,32px);font-weight:700;color:#fff;margin:0 0 12px;line-height:1.6}
.top-cta-text{font-size:15px;color:rgba(255,255,255,0.75);line-height:1.8;margin:0 0 36px}
.top-cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.top-cta-btn-tel{display:inline-flex;align-items:center;gap:10px;background:#fff;color:var(--navy-dark);font-size:20px;font-weight:900;padding:18px 40px;border-radius:50px;text-decoration:none;transition:all 0.3s;letter-spacing:0.04em}
.top-cta-btn-tel:hover{background:var(--navy);color:#fff}
.top-cta-btn-line{display:inline-flex;align-items:center;gap:8px;background:#06C755;color:#fff;font-size:16px;font-weight:700;padding:18px 32px;border-radius:50px;text-decoration:none;transition:background 0.3s}
.top-cta-btn-line:hover{background:#05a648}
.top-cta-note{font-size:13px;color:rgba(255,255,255,0.55)}
@media(max-width:768px){.top-cta-btns{flex-direction:column}.top-cta-btn-tel,.top-cta-btn-line{justify-content:center}}

/* フェードイン */
.fade-up{opacity:0;transform:translateY(28px);transition:opacity 0.7s ease,transform 0.7s ease}
.fade-up.in{opacity:1;transform:translateY(0)}
.fade-up:nth-child(2){transition-delay:0.1s}
.fade-up:nth-child(3){transition-delay:0.2s}
/* トップページ ローディング上書き */
.hero-loading {
  background: #fff !important;
}
.hero-loading-logo {
  color: #001f2d !important;
}
.hero-loading-bar {
  background: rgba(0,0,0,0.08) !important;
}
.hero-loading-text {
  color: rgba(0,0,0,0.25) !important;
}
