@charset "UTF-8";
/**
 * フッタースタイル - デザインサンプル準拠
 * 
 * SHIBUYA MY探究のフッターデザイン
 * シンプルでクリーンなレイアウト
 * 
 * @package CustomTankyuTheme
 * @version 2.0.0
 */
/**
 * レスポンシブデザイン用変数定義
 * 
 * ブレークポイント、カラー、サイズなどの共通変数
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/* ==========================================================================
   ブレークポイント定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用サイズ定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用フォントサイズ
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用スペーシング
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ボーダーラディウス
   ========================================================================== */
/**
 * レスポンシブデザイン用ミックスイン
 * 
 * メディアクエリ、レスポンシブ用の共通ミックスイン
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/**
 * レスポンシブデザイン用変数定義
 * 
 * ブレークポイント、カラー、サイズなどの共通変数
 * 
 * @package CustomTankyuTheme
 * @version 1.0.0
 */
/* ==========================================================================
   ブレークポイント定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用サイズ定義
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用フォントサイズ
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用スペーシング
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ボーダーラディウス
   ========================================================================== */
/* ==========================================================================
   メディアクエリミックスイン
   ========================================================================== */
/* ==========================================================================
   レスポンシブ用ユーティリティミックスイン
   ========================================================================== */
/* ==========================================================================
   レイアウト用ミックスイン
   ========================================================================== */
/* ==========================================================================
   アニメーション用ミックスイン
   ========================================================================== */
/* ==========================================================================
   フッター基本レイアウト
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
  position: relative;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 20px 20px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   フッターメインエリア
   ========================================================================== */
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  position: relative;
}

/* 左側: ロゴセクション */
.footer-logo-section {
  flex: 0 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: block;
  line-height: 0;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

/* フォールバック用ロゴの非表示 */
.footer-logo-fallback {
  display: none;
}

/* フッターロゴテキスト */
.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo-shibuya {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.logo-my-tankyu {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-my {
  font-size: 24px;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: -0.5px;
  background: linear-gradient(45deg, #f59e0b, #ef4444, #3b82f6, #10b981);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradient 3s ease-in-out infinite;
}

.logo-tankyu {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.3px;
}

@keyframes logoGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* 中央: ナビゲーション */
.footer-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.footer-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.footer-nav-list li {
  margin: 0;
}

.footer-nav-list a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease;
  position: relative;
}

.footer-nav-list a:hover {
  color: #2563eb;
}

.footer-nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.2s ease;
}

.footer-nav-list a:hover::after {
  width: 100%;
}

/* 右側: ページトップボタン */
.footer-page-top {
  flex: 0 0 auto;
}

.page-top-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #d1d5db;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-top-btn:hover {
  background-color: #9ca3af;
  transform: translateY(-2px);
}

.page-top-btn:active {
  transform: translateY(0);
}

.page-top-icon {
  line-height: 1;
}

/* ==========================================================================
   フッターボトム
   ========================================================================== */
.footer-bottom {
  padding: 20px 0;
  background-color: #fff;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 16px;
  }
  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 0;
    text-align: center;
  }
  .footer-logo-section {
    order: 1;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo-image {
    height: 40px;
    max-width: 160px;
  }
  .footer-navigation {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: flex;
    justify-content: center;
  }
  .footer-page-top {
    order: 3;
  }
  .page-top-btn {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
  .footer-copyright p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .footer-main {
    padding: 24px 0;
    gap: 12px;
  }
  .footer-logo-image {
    height: 35px;
    max-width: 140px;
  }
  .footer-nav-list {
    gap: 16px;
  }
  .footer-nav-list a {
    font-size: 13px;
  }
  .page-top-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  /* フォールバック用テキストロゴのサイズ調整 */
  .logo-my,
  .logo-tankyu {
    font-size: 20px;
  }
  .logo-shibuya {
    font-size: 10px;
  }
}
/* ==========================================================================
   アクセシビリティ対応
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .page-top-btn,
  .footer-nav-list a {
    transition: none;
  }
}
/* フォーカス時のスタイル */
.page-top-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.footer-nav-list a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 2px;
}

/* ==========================================================================
   プリント用スタイル
   ========================================================================== */
@media print {
  .site-footer {
    background: none !important;
    border-top: 1px solid #000 !important;
    color: #000 !important;
  }
  .footer-bottom {
    background: none !important;
    border-top: 1px solid #000 !important;
  }
  .page-top-btn {
    display: none !important;
  }
  .footer-nav-list a {
    color: #000 !important;
  }
  .footer-copyright p {
    color: #000 !important;
  }
  .logo-my,
  .logo-tankyu,
  .logo-shibuya {
    color: #000 !important;
  }
}

/*# sourceMappingURL=footer.css.map */
