/**
 * Taisei Kaihatsu - サイト全体スタイル
 * プロフェッショナルな不動産会社デザイン
 */

/* ========================================
   ヘッダーロゴ
   ======================================== */
.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #003366 !important; /* ダークネイビー - 信頼感 */
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    color: #003366 !important;
    text-decoration: none;
    opacity: 0.7;
}

/* ========================================
   フッターロゴ
   ======================================== */
.site_footer__brand {
    display: inline-block;
    font-size: 26px;
    font-weight: 800;
    color: #222222 !important;
    text-decoration: none !important;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.site_footer__brand:hover {
    color: #000000 !important;
    text-decoration: none !important;
    opacity: 0.8;
}

/* ========================================
   電話番号リンク（補足）
   ======================================== */
.tel-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.tel-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* PCではクリック無効化 */
@media (min-width: 769px) {
    .tel-link {
        pointer-events: none;
        cursor: default;
    }
    .tel-link:hover {
        text-decoration: none;
        opacity: 1;
    }
}

/* ========================================
   ナビゲーションリンク改善
   ======================================== */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333333;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #003366;
    opacity: 0.85;
}

/* ========================================
   CTAボタン改善
   ======================================== */
.navbar .btn-primary,
.site_footer__cta.btn-primary {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover,
.site_footer__cta.btn-primary:hover {
    background: linear-gradient(135deg, #002244 0%, #003366 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

/* ========================================
   フッター全体の調整
   ======================================== */
.site_footer__lead {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.site_footer__ttl {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.site_footer__nav li {
    margin-bottom: 8px;
}

.site_footer__nav a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site_footer__nav a:hover {
    opacity: 0.7;
}

.site_footer__top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site_footer__top:hover {
    opacity: 0.7;
}
