/* =========================================================
Hotmelt Launch Styles — Cleaned & Scoped (v1)
========================================================= */

/* =========================================================
Common Layout
========================================================= */
/* #region Layout */

.sec-1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0px;
}

.sec-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0px;
}

.sec-1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0px;
}

.sec-1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 0px;
}

.bg-gray {
  background: var(--c-gray);
}

.bg-blue {
  background: var(--c-bg-blue);
}

.bg-orange {
  background: var(--c-orange-light);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.col {
  flex: 1;
  min-width: 300px;
}

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

/* #endregion Layout */

/* =========================================================
   Global Header (Responsive & Sticky)
   ========================================================= */
/* Base Variables (既存のものを参照) */
:root {
  --header-h-pc: 80px;
  --header-h-scroll: 64px;
  --header-h-sp: 60px;
  --z-header: 999;
  --z-drawer: 998;
  --z-overlay: 997;
}

/* ---------------------------------------------------------
   Base Layout
   --------------------------------------------------------- */
/* ヘッダー本体：最初からネイビーにする */
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 80px; /* PC高さ */
  /* ★ここがポイント：デフォはネイビー */
  background-color: var(--c-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
  color: #fff;
}

/* bodyへの余白：ヘッダーが重ならないように上を空ける */
body {
  padding-top: 80px; /* ヘッダーの高さ分 */
}

/* SPでの高さ調整 */
@media screen and (max-width: 1024px) {
  .g-header {
    height: 60px;
  }
  body {
    padding-top: 60px;
  }
}

.g-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  height: var(--header-h-pc);
  transition: height 0.4s ease;
}

.g-header.is-scrolled {
  height: 64px; /* スクロールしたら縮む */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  /* 下層ページはもともとネイビーなので背景色は変わらなくてOK */
}

/* ---------------------------------------------------------
   2. 【Home限定】トップページのみ特殊化（Override）
   --------------------------------------------------------- */

/* body.home がある時だけ、bodyの余白を消す（ヒーローに重ねるため） */
body.home {
  padding-top: 0 !important;
}

/* Homeの初期状態は「透明」で上書き */
body.home .g-header {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  box-shadow: none;
  /* 高さは80pxを継承するので書かなくてOK */
}

/* Homeでスクロールした時は「ネイビー」にする（高さ64pxは共通設定が効く） */
body.home .g-header.is-scrolled {
  background-color: var(--c-navy);
}

/* スマホの場合のHome調整 */
@media screen and (max-width: 1024px) {
  /* SPの初期高さ */
  .g-header {
    height: 60px;
  }
  body {
    padding-top: 60px;
  }

  /* SPでスクロールした時の高さ（変化させないなら60pxのまま、縮めるなら数値を指定） */
  .g-header.is-scrolled {
    height: 60px; /* スマホは縮めなくていい場合が多いです */
  }
}

/* ---------------------------------------------------------
   Scrolled State (.is-scrolled)
   --------------------------------------------------------- */
.g-header.is-scrolled {
  background: var(--c-navy); /* ソリッドなネイビーに変化 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0 20px; /* 必要なら調整 */
}

.g-header.is-scrolled .g-header__inner {
  height: var(--header-h-scroll); /* 高さを縮める */
}

/* ---------------------------------------------------------
   1. Logo
   --------------------------------------------------------- */
.g-header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.g-header__logo .logo-icon {
  /* 仮のロゴアイコン装飾 */
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--c-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.g-header__logo .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* スクロール時にロゴアイコンを少し回す等の遊び心 */
.g-header.is-scrolled .g-header__logo .logo-icon {
  transform: scale(0.9);
}

/* ---------------------------------------------------------
   2. Desktop Navigation
   --------------------------------------------------------- */
.g-header__nav {
  flex: 1;
  margin: 0 40px;
}
.nav-list {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-list li a:hover {
  color: #fff;
  border-bottom-color: var(--c-orange);
}

/* 現在のページ（is-current）のリンク装飾 */
.nav-list li.is-current a {
  color: #fff; /* 文字色を完全な白に（通常は0.9） */
  border-bottom-color: var(--c-orange); /* 下線をオレンジに固定 */
  position: relative;
}

/* ---------------------------------------------------------
   3. Action Area (Phone + CTA)
   --------------------------------------------------------- */
.g-header__action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-phone .phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone .phone-link i {
  color: var(--c-orange);
  font-size: 1rem;
}

.header-phone .time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.btn--header-sm {
  padding: 0.6em 1.2em;
  font-size: 0.9rem;
  border-radius: 6px;
  background: var(--c-orange);
  color: #fff;
  white-space: nowrap;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(233, 119, 48, 0.3);
}
.btn--header-sm:hover {
  opacity: 0.9;
}

/* Mobile Triggers (Hidden on PC) */
.g-header__mobile-triggers,
.m-drawer,
.m-drawer-overlay {
  display: none;
}

/* ---------------------------------------------------------
   Responsive (Mobile & Tablet)
   --------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  /* PC要素を隠す */
  .g-header__nav,
  .g-header__action {
    display: none;
  }

  .g-header {
    background: var(
      --c-navy
    ); /* スマホは最初からネイビー固定推奨（視認性のため） */
    /* または PC同様透過させて、スクロールで濃くするのもOK */
    height: var(--header-h-sp);
    padding: 0 16px;
  }
  .g-header.is-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .g-header__inner {
    height: 100%;
  }

  .g-header__logo .logo-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .g-header__logo .logo-text {
    font-size: 1.1rem;
  }

  /* Mobile Triggers Show */
  .g-header__mobile-triggers {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .m-phone-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
    text-decoration: none;
  }
  .m-phone-btn:active {
    background: var(--c-orange);
  }

  .m-phone-btn:hover,
  .m-phone-btn:active {
    background: var(--c-orange); /* 背景をオレンジに */
    color: #fff !important; /* ★重要：アイコン色を白に強制固定 */
    text-decoration: none;
  }

  /* Hamburger Button */
  .m-menu-btn {
    width: 44px;
    height: 44px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-drawer) + 1); /* ドロワーより上 */
  }
  .m-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 10px;
    transition: all 0.3s ease;
  }
  .m-menu-btn span:nth-child(1) {
    top: 14px;
  }
  .m-menu-btn span:nth-child(2) {
    top: 21px;
  }
  .m-menu-btn span:nth-child(3) {
    top: 28px;
  }

  /* Hamburger Open State */
  .m-menu-btn.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
  }
  .m-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .m-menu-btn.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
  }

  /* -----------------------------------------------------
       Mobile Drawer
       ----------------------------------------------------- */
  .m-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%; /* 画面の85%を覆う */
    max-width: 360px;
    height: 100vh;
    background: #fff; /* ドロワー内は白背景で見やすく */
    z-index: var(--z-drawer);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: var(--header-h-sp); /* ヘッダー分空ける */
    overflow-y: auto;
    color: var(--c-text);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }

  .m-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;

    height: 100vh; /* fallback */
    height: 100dvh; /* mobile対策 */

    box-sizing: border-box; /* ★最重要 */
    padding-top: var(--header-h-sp);
    padding-bottom: env(safe-area-inset-bottom); /* iPhone下の安全域 */

    overflow-y: auto;
    background: #fff;
    z-index: var(--z-drawer);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--c-text);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }

  .m-drawer.is-active {
    transform: translateX(0);
  }

  .m-drawer__inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .m-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
  }
  .m-nav-list li {
    border-bottom: 1px solid var(--c-border);
  }
  .m-nav-list li a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-navy);
    text-decoration: none;
    position: relative;
  }
  .m-nav-list li a::after {
    content: "›"; /* 簡易矢印 */
    position: absolute;
    right: 0;
    color: #ccc;
  }

  /* スマホドロワー内のカレント表示 */
  .m-nav-list li.is-current {
    background-color: rgba(233, 119, 48, 0.08); /* 背景を薄いオレンジに */
    border-left: 4px solid var(--c-orange); /* 左にアクセントバー */
    padding-left: 16px;
  }

  .m-nav-list li.is-current a {
    color: var(--c-orange); /* 文字色をオレンジに */
    font-weight: 800; /* 太字をさらに強調 */
  }

  /* 矢印（›）の色もオレンジに */
  .m-nav-list li.is-current a::after {
    color: var(--c-orange);
  }

  /* Drawer CTA Area */
  .m-drawer__cta {
    margin-top: auto; /* 下部に押し込む */
    background: var(--c-bg-blue);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
  }
  .drawer-lead {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-muted);
    margin-bottom: 8px;
  }
  .drawer-phone {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-navy);
    text-decoration: none;
    margin-bottom: 16px;
  }
  .drawer-phone i {
    color: var(--c-orange);
  }
  .drawer-phone .time {
    display: block;
    font-size: 0.75rem;
    color: #888;
    font-weight: normal;
    margin-top: 4px;
  }
}

/* Overlay */
.m-drawer-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 47, 71, 0.6); /* ネイビーの半透明 */
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.m-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Scroll Lock Helper */
body.is-locked {
  overflow: hidden;
}

/* =========================================================
Footer Contact
========================================================= */
/* #region Footer Contact */

.sec-contact {
  padding: 84px 20px;
  background: linear-gradient(180deg, #0e2f47 0%, #174766 100%);
  border-top: none;
  margin-top: 25px;
}

.sec-contact h2 {
  position: relative;
  margin-bottom: 24px;
  color: #e9f0f6;
  text-align: center;
}

.sec-contact .en-head {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.2em;
  color: #9fb3c2;
  font-size: 0.8rem;
}

.sec-contact .contact-card {
  max-width: 920px;
  margin: 22px auto 6px;
  padding: 30px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  box-shadow: var(--elev-2);
}

.sec-contact .phone-big {
  display: inline-block;
  padding: 10px 16px;
  color: var(--c-orange);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.sec-contact .phone-big:hover {
  transform: scale(1.02);
  box-shadow: 0 0 24px rgba(233, 119, 48, 0.28);
}

.sec-contact .subline {
  margin-top: 10px;
  color: var(--c-muted);
  font-weight: 700;
}

.sec-contact .mail-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.sec-contact .mail-primary,
.sec-contact .mail-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.sec-contact .mail-primary {
  font-size: 1.05rem;
}

.sec-contact .mail-secondary {
  opacity: 0.9;
}

.sec-contact .mail-primary:hover {
  color: #fff;
  background: var(--c-orange);
  transform: translateY(-2px);
}

.sec-contact .mail-secondary:hover {
  transform: translateY(-2px);
}

.sec-contact .mail-note {
  max-width: 720px;
  margin: 10px auto 0;
  color: #5b6670;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* #endregion Footer Contact */

/* =========================================================
Footer (Isolated & Final)
========================================================= */
/* #region Footer (Isolated & Final) */

#site-footer {
  --ft-bg: #091928;
  /* 深めのネイビー（モック準拠） */
  --ft-fg: #dbe5ec;
  /* 本文色 */
  --ft-muted: #a9b7c2;
  /* 補助色 */
  --ft-line: rgba(255, 255, 255, 0.1);
  --ft-card: rgba(255, 255, 255, 0.06);
  --ft-card-bd: rgba(255, 255, 255, 0.18);
  --ft-accent: #f09759;
  /* オレンジのリンクアイコン */

  background: var(--ft-bg);
  color: var(--ft-fg);
  padding: 48px 20px 24px;
  font-size: 15px;
  margin-top: 25px;
}

#site-footer a {
  color: var(--ft-fg);
  text-decoration: none;
}

#site-footer a:hover {
  opacity: 0.9;
}

#site-footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

#site-footer h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
}

/* コンテンツ幅の整列 */
#site-footer .ft-top,
#site-footer .ft-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

/* 上段：3カラム */
#site-footer .ft-top {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: 1fr 1.8fr 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ft-line);
}

#site-footer .ft-top > * {
  margin-top: 0 !important;
  display: grid;
  align-content: start;
}

#site-footer .ft-top > * > :first-child {
  margin-top: 0 !important;
}

/* 会社情報（左） */
.ft-company h3 {
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.ft-company__name {
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.ft-company__addr {
  color: var(--ft-muted);
  line-height: 1.7;
  font-style: normal;
  margin: 0 !important;
}

.ft-company__since {
  color: var(--ft-muted);
  margin-top: 0.5rem;
}

/* フッターリンク（中央・2カラム・丸アイコン） */
.ft-links__cols {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.ft-links__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-links__col li {
  position: relative;
}

.ft-links__col a {
  display: block;
  padding: 0.25rem 0 0.25rem 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft-links__col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ft-accent);
}

.ft-links__col a:hover {
  transform: translateX(2px);
}

/* フッター内 nav はヘッダーnavの影響を受けないよう固定 */
#site-footer nav ul {
  display: block;
  gap: 0;
  padding: 0;
  list-style: none;
}

#site-footer nav a {
  display: block;
  padding: 0.25rem 0 0.25rem 18px;
  border: 0;
  box-shadow: none;
  text-decoration: none;
}

#site-footer nav a::after {
  content: none;
}

/* Contact（右） */
.ft-contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ft-muted);
}

.ft-contact__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.ft-contact__label {
  color: var(--ft-fg);
  width: 3.2rem;
  display: inline-block;
}

/* アイコン（CSS mask） */
.ft-ic {
  width: 14px;
  height: 14px;
  display: inline-block;
  color: var(--ft-fg);
  background: currentColor;
  opacity: 0.9;
}

.ft-ic--tel {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V21a1 1 0 01-1 1C10.07 22 2 13.93 2 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.2 2.2z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 011 1V21a1 1 0 01-1 1C10.07 22 2 13.93 2 3a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.46.57 3.58a1 1 0 01-.24 1.01l-2.2 2.2z"/></svg>')
    center/contain no-repeat;
}

.ft-ic--fax {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M19 7V2H7v5H5a3 3 0 00-3 3v7h4v5h12v-5h4v-7a3 3 0 00-3-3h-2zM9 4h6v3H9V4zm8 17H7v-7h10v7zm3-5h-1v-4a1 1 0 00-1-1H6a1 1 0 00-1 1v4H4v-5a1 1 0 011-1h14a1 1 0 011 1v5z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M19 7V2H7v5H5a3 3 0 00-3 3v7h4v5h12v-5h4v-7a3 3 0 00-3-3h-2zM9 4h6v3H9V4zm8 17H7v-7h10v7zm3-5h-1v-4a1 1 0 00-1-1H6a1 1 0 00-1 1v4H4v-5a1 1 0 011-1h14a1 1 0 011 1v5z"/></svg>')
    center/contain no-repeat;
}

.ft-ic--mail {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5L4 8V6l8 5 8-5v2z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5L4 8V6l8 5 8-5v2z"/></svg>')
    center/contain no-repeat;
}

/* 下段：ネットワーク & ニュース */
#site-footer .ft-bottom {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1.8fr;
  padding-top: 28px;
}

.ft-network__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-network__item + .ft-network__item {
  margin-top: 14px;
}

.ft-network__site a {
  font-weight: 600;
}

.ft-network__desc {
  color: var(--ft-muted);
  margin: 0.25rem 0 0;
}

/* ニュースカード（半透明／干渉無効化） */
.ft-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

#site-footer .ft-news__item article {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px;
  padding: 10px 12px;
  color: #dbe5ec !important;
  box-shadow: none !important;
}

#site-footer .ft-news__item article * {
  color: inherit;
}

#site-footer .ft-news__title {
  font-size: 15px;
  margin: 0.2rem 0 0;
  line-height: 1.3;
}

#site-footer .ft-news time {
  color: var(--ft-muted) !important;
}

/* コピーライト */
.ft-copy {
  margin-top: 24px;
  border-top: 1px solid var(--ft-line);
  padding-top: 14px;
  color: #9fb0bb;
  font-size: 13px;
  text-align: center;
  font-size: 14px;
}

/* #endregion Footer (Isolated & Final) */

/* =========================================================
   20. Responsive (Global)
   ========================================================= */
/* #region Responsive (Global) */

@media (max-width: 1024px) {
  #site-footer .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .ft-contact {
    order: 3;
  }
}

@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }

  .sec-contact {
    padding: 68px 16px;
  }

  .sec-contact .phone-big {
    font-size: 1.9rem;
  }

  .sec-contact .contact-card {
    padding: 24px 20px;
  }

  h2 {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  #site-footer .ft-top,
  #site-footer .ft-bottom {
    grid-template-columns: 1fr;
  }

  .ft-links__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sec-1200,
  .sec-1400,
  .sec-1600 {
    padding: 64px 16px;
  }
}

/* #endregion Responsive (Global) */

/* =========================================================
   21. Call FAB (Optional)
   ========================================================= */
/* #region Call FAB (Optional) */

.call-fab {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  padding: 12px 14px;
  color: #fff;
  background: var(--c-orange);
  border-radius: 28px;
  box-shadow: 0 12px 26px rgba(233, 119, 48, 0.35);
  font-weight: 900;
}

.call-fab:hover {
  background: var(--c-orange-d);
  text-decoration: none;
}

/* #endregion Call FAB (Optional) */
