/* =========================================
   共通スタイル
   ========================================= */

:root {
  --brand-navy: #0f1b26;
  --brand-navy-light: #1a2f42;
  --accent-gold: #c5a572;
  --accent-gold-dark: #b89460;
  --accent-red: #ab0000;
  --bg-washi: #fdfcf9;
  --bg-gray: #f7f7f7;
  --text-main: #333;
  --text-muted: #6e7b85;
}

/* =========================================
   グローバルスタイル
   ========================================= */
* {
  box-sizing: border-box;
}

/* リンクのクリックを有効化（style.css の tel: 無効化を上書き） */
a,
a[href^="tel:"] {
  pointer-events: auto;
}

/* ボタン（共通） */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid var(--text-main);
  border-radius: 30px;
  padding: 8px 36px;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-arrow::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-arrow:hover {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}

.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ダーク背景用（白ボタン） */
.pricing-card .btn-arrow {
  color: #fff;
  border-color: #fff;
}

.pricing-card .btn-arrow:hover {
  background: #fff;
  color: var(--brand-navy);
  border-color: #fff;
}

/* ダーク背景用（ライト） */
.btn-arrow--light {
  color: #fff;
  border-color: #fff;
}

.btn-arrow--light:hover {
  background: #fff;
  color: var(--brand-navy);
  border-color: #fff;
}

/* =========================================
   レスポンシブユーティリティ
   ========================================= */

.sp-br,
.xs-br {
  display: none;
}

@media (max-width: 767px) {
  /* PC用改行（SPで非表示） */
  .pc-br {
    display: none;
  }

  /* SP用改行（SPで表示） */
  .sp-br {
    display: inline;
  }

  /* SP非表示ユーティリティ */
  .sp-hidden {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .xs-br {
    display: inline;
  }

  .sp-br {
    display: none;
  }
}

/* =========================================
   共通アコーディオン設定
   ========================================= */
.reasons-accordion .collapse,
.faq-list .collapse,
.facilities-accordion .collapse {
  transition: none;
}

.reasons-accordion .collapsing,
.faq-list .collapsing,
.facilities-accordion .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.accordion-item.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.accordion-item.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reason-answer {
  padding: 25px 30px;
  line-height: 2;
}

@media (max-width: 767px) {
  .reason-answer {
    padding: 20px 20px;
  }
}

/* =========================================
   スクロールアニメーション設定
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.slide-left {
  transform: translateX(-60px);
}

.animate-on-scroll.slide-up {
  transform: translateY(20px);
}

.animate-on-scroll.fade-in {
  transform: translateY(30px);
}

.animate-on-scroll.fade-up {
  transform: translateY(30px);
}

.animate-on-scroll.fade-only {
  transform: none;
}

/* 遅延指定 */
.animate-on-scroll.delay-1 {
  transition-delay: 0.15s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.45s;
}

.animate-on-scroll.delay-img {
  transition-delay: 0.8s;
}

.animate-on-scroll.delay-img-2 {
  transition-delay: 1s;
}

/* ヒーロー数値の遅延 */
.animate-on-scroll.delay-value-1 {
  transition-delay: 0.8s;
}

.animate-on-scroll.delay-value-2 {
  transition-delay: 1.1s;
}

.animate-on-scroll.delay-value-3 {
  transition-delay: 1.4s;
}

/* 表示時 */
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* タイプライター演出 */
.typewriter-animate {
  display: block;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.typewriter-animate.in-view {
  opacity: 1;
  transform: translateX(0);
}

.typewriter-animate.delay-1 {
  transition-delay: 0.4s;
}

/* フェードアップ（単体） */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   ホバーエフェクト
   ========================================= */

/* カードの浮き上がり */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* 画像ズーム */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

/* ボタンホバー */
.hover-button {
  transition: all 0.3s ease;
}

.hover-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* =========================================
   セクション見出し設定
   ========================================= */
.section-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* =========================================
   ヘッダー
   ========================================= */
.header-new {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: none;
  z-index: 1000;
  box-shadow: none;
  padding: 12px 0 25px;
  transition: all 0.4s ease;
}

/* スクロール時 */
.header-new.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 12px 0;
}

.header-new .header-inner {
  max-width: 1440px;
  padding: 0 20px;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-new .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-new .logo-img {
  height: 60px;
  width: auto;
  content: url("../img/logo_blue.png");
  transition: all 0.4s ease;
}

.header-new.scrolled .logo-img {
  content: url("../img/logo_blue.png");
}

.header-new .logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 500;
  transition: color 0.4s ease;
  line-height: 1;
}

.header-new.scrolled .logo-text {
  color: var(--brand-navy);
}

.header-new .logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.header-new .logo-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-top: 2px;
  transition: color 0.4s ease;
}

.header-new.scrolled .logo-sub {
  color: var(--text-muted);
}

.header-new .nav ul {
  gap: 35px;
}

.header-new .nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-new .nav .nav-item:hover {
  opacity: 0.7;
}

.header-new .nav .nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 2px;
  transition: color 0.4s ease;
}

.header-new.scrolled .nav .nav-title {
  color: var(--brand-navy);
}

.header-new .nav .nav-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  line-height: 1.2;
  transition: color 0.4s ease;
}

.header-new.scrolled .nav .nav-subtitle {
  color: var(--text-muted);
}

.nav-dropdown {
  margin-right: 10px;
}

.nav-dropdown .nav-item.has-dropdown {
  position: relative;
}

.nav-dropdown .nav-item.has-dropdown::after {
  content: "＋";
  font-size: 11px;
  position: absolute;
  right: -16px;
  top: 8px;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.4s ease;
  pointer-events: none;
}

.header-new.scrolled .nav-dropdown .nav-item.has-dropdown::after {
  color: var(--brand-navy);
}

.nav-dropdown:hover .nav-item.has-dropdown::after {
  opacity: 1;
}

/* PCドロップダウン */
.nav-dropdown {
  position: relative;
}

.dropdown-menu-new {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(5px);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  list-style: none;
  margin: 8px 0 0 0;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ホバー時のパディング領域 */
.dropdown-menu-new::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu-new {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-new li {
  margin: 0;
  padding: 0;
}

.dropdown-menu-new li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

/* 左側のアクセントライン（ホバー時のみ） */
.dropdown-menu-new li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 50%;
  background: var(--accent-gold);
  transition: width 0.2s ease;
}

.dropdown-menu-new li a:hover {
  background: #f9f9f9;
  color: var(--brand-navy);
  padding-left: 24px;
}

.dropdown-menu-new li a:hover::before {
  width: 3px;
}

.dropdown-menu-new li a i,
.dropdown-menu-new li a svg {
  margin-right: 10px;
  color: var(--accent-gold);
  font-size: 8px;
  opacity: 0.8;
}

/* ヘッダーCTA */
.header-buttons {
  display: flex;
  gap: 10px;
  list-style: none;
}

.header-new .btn-phone,
.header-new .btn-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

/* 初期状態（白背景） */
.header-new .btn-phone {
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-navy);
}

.header-new .btn-message {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-gold);
}

.header-new .btn-phone:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-new .btn-message:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* スクロール時（色背景） */
.header-new.scrolled .btn-phone {
  background: var(--brand-navy);
  color: #fff;
}

.header-new.scrolled .btn-message {
  background: var(--accent-gold);
  color: #fff;
}

.header-new.scrolled .btn-phone:hover {
  background: #2a3d50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.header-new.scrolled .btn-message:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ハンバーガー */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 11px 7px;
  z-index: 1001;
  pointer-events: auto;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}

.header-new.scrolled .hamburger-line {
  background: var(--brand-navy);
}

/* メニュー開時の線色 */
.header-new .hamburger-menu.active .hamburger-line {
  background: #fff;
}

/* 開状態（×） */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--brand-navy);
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

.mobile-menu ul li {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  display: flex;
  align-items: baseline;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-menu ul li a span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.mobile-menu ul li a:hover {
  color: var(--accent-gold);
}

/* モバイルドロップダウン */
.mobile-dropdown .mobile-dropdown-toggle {
  display: flex;
  align-items: baseline;
  gap: 15px;
  position: relative;
  padding-right: 30px;
}

.mobile-dropdown .mobile-dropdown-toggle span {
  flex-grow: 0;
}

.mobile-dropdown .mobile-dropdown-toggle i.fa-chevron-down,
.mobile-dropdown .mobile-dropdown-toggle svg.fa-chevron-down {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle i.fa-chevron-down,
.mobile-dropdown.open .mobile-dropdown-toggle svg.fa-chevron-down {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-dropdown.open .mobile-submenu {
  max-height: 300px;
  padding-top: 15px;
}

.mobile-submenu li {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.mobile-submenu li a {
  font-size: 15px !important;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-submenu li a i {
  margin-right: 10px;
  color: var(--accent-gold);
  font-size: 10px;
}

/* モバイルCTA */
.mobile-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1002;
}

.mobile-cta-buttons .btn-phone,
.mobile-cta-buttons .btn-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  pointer-events: auto;
}

.mobile-cta-buttons .btn-phone {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-cta-buttons .btn-message {
  background: var(--accent-gold);
}

.mobile-cta-buttons .btn-phone:hover {
  background: #fff;
  color: var(--brand-navy);
}

.mobile-cta-buttons .btn-message:hover {
  background: var(--accent-gold-dark);
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* =========================================
   ヘッダーレスポンシブ設定
   ========================================= */
@media (max-width: 991px) {
  .hamburger-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .header-new .nav {
    display: none !important;
  }
}

@media (max-width: 1140px) {
  .header-buttons .btn-phone span,
  .header-buttons .btn-message span {
    display: none;
  }

  .header-new .btn-phone,
  .header-new .btn-message {
    padding: 12px;
  }
}

@media (max-width: 767px) {
  .header-buttons {
    display: none;
  }
}

/* =========================================
   フッター
   ========================================= */
.footer-new {
  background: var(--brand-navy);
  color: #fff;
  padding: 40px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-logo-row {
  margin-bottom: 30px;
}

.footer-nav-row {
  text-align: center;
  margin-top: 30px;
}

.footer-nav-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer-nav-row ul li a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-row ul li a:hover {
  color: var(--accent-gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-logo span {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #fff;
}

/* フッター左（会社情報＋地図） */
.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.footer-company-info .company-name {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-company-info .company-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-company-info .company-tel {
  margin-top: 0;
}

.footer-company-info .company-tel a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  pointer-events: auto;
}

.footer-company-info .company-tel a:hover {
  color: var(--accent-gold);
}

/* フッター地図 */
.footer-map {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  min-height: 100px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* フッター右（CTA） */
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* フッターCTA */
.footer-cta {
  text-align: right;
}

.footer-cta .cta-label {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #fff;
}

.footer-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta .btn-phone-footer,
.footer-cta .btn-contact-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 35px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-cta .btn-phone-footer {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: auto;
}

.footer-cta .btn-contact-footer {
  background: var(--accent-gold);
}

.footer-cta .btn-phone-footer i,
.footer-cta .btn-contact-footer i {
  font-size: 14px;
}

.footer-cta .btn-phone-footer:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer-cta .btn-contact-footer:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* フッターボトムバー */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* =========================================
   フッターレスポンシブ設定
   ========================================= */
@media (max-width: 767px) {
  .header-new {
    padding: 12px 0 20px;
  }

  .header-new .logo-sub {
    margin-top: 0;
  }

  .header-new .header-inner {
    padding: 0 10px;
  }

  .header-new .logo-img {
    height: 40px;
  }

  .header-new .logo-text {
    font-size: 20px;
  }

  .mobile-menu {
    width: 100%;
    max-width: none;
    padding: 80px 30px 30px;
  }

  .mobile-menu ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .footer-new {
    padding: 60px 0 0;
  }

  .footer-new .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-logo-row {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-company-info {
    text-align: center;
  }

  .footer-company-info .company-address br:not(:first-child) {
    display: none;
  }

  .footer-map {
    width: 100%;
    max-width: 500px;
    min-height: 250px;
    height: 250px;
    min-width: auto;
  }

  .footer-right {
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .footer-cta {
    text-align: center;
  }

  .footer-cta .cta-label {
    font-size: 20px;
  }

  .footer-cta-buttons {
    justify-content: center;
    flex-direction: row;
    width: auto;
  }

  .footer-cta .btn-phone-footer,
  .footer-cta .btn-contact-footer {
    width: auto;
    max-width: none;
  }

  .footer-nav-row {
    margin-top: 30px;
  }

  .footer-nav-row ul {
    gap: 10px 25px;
  }

  .footer-bottom {
    margin-top: 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-new {
    padding: 40px 0 0;
  }

  .footer-new .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo-row {
    margin-bottom: 30px;
  }

  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-logo span {
    font-size: 18px;
  }

  .footer-main {
    gap: 25px;
  }

  .footer-left {
    gap: 20px;
  }

  .footer-company-info .company-address br {
    display: inline;
  }

  .footer-map {
    max-width: 100%;
    min-height: 200px;
    height: 200px;
  }

  .footer-cta .cta-label {
    font-size: 18px;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta .btn-phone-footer,
  .footer-cta .btn-contact-footer {
    width: 100%;
    max-width: none;
  }

  .footer-nav-row {
    margin-top: 20px;
  }

  .footer-nav-row ul {
    gap: 8px 20px;
  }

  .footer-nav-row ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 15px;
  }
}

/* =========================================
   トップへ戻るボタン
   ========================================= */
#scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-to-top:hover {
  background: #d4dae0;
  transform: translateY(-5px);
}

/* =========================================
   スマホ固定お問い合わせボタン
   ========================================= */
.sp-fixed-contact {
  display: none;
}

@media (max-width: 767px) {
  .sp-fixed-contact {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .sp-fixed-contact.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sp-fixed-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    color: var(--text-main);
  }

  .sp-fixed-contact-btn i,
  .sp-fixed-contact-btn svg {
    font-size: 18px;
  }

  /* 電話ボタン */
  .sp-fixed-phone {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .sp-fixed-phone i,
  .sp-fixed-phone svg {
    color: var(--brand-navy);
  }

  .sp-fixed-phone:hover {
    background: rgba(0, 0, 0, 0.03);
  }

  /* メッセージボタン */
  .sp-fixed-mail i,
  .sp-fixed-mail svg {
    color: var(--accent-gold);
  }

  .sp-fixed-mail:hover {
    background: rgba(0, 0, 0, 0.03);
  }

  /* フッター下部の余白（固定ボタンと重ならないよう） */
  .footer-new {
    padding-bottom: 70px;
  }

  /* scroll-to-top ボタンはスマホでは非表示（ブラウザ機能で代替） */
  #scroll-to-top {
    display: none;
  }
}
