/* Footer Typography Unification - 統一感のある読みやすいフッター */

/* 基本テキストスタイル - 統一された白文字 */
.footer {
    color: rgba(255, 255, 255, 0.9);
}

/* 社名 - 少し大きめ */
.footer-company-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

/* 会社情報 - 読みやすい標準サイズ */
.footer-company-info {
    font-size: 15px !important;
    line-height: 1.9 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px;
}

/* 電話番号強調 */
.footer-company-info strong,
.footer-company-info b {
    color: #ffffff !important;
    font-weight: 600;
}

/* 許認可セクション */
.footer-certifications {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fbbf24 !important;
    margin-bottom: 12px;
}

.footer-certifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-certifications li {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 8px;
    padding-left: 0;
}

/* フッターセクション見出し - 統一 */
.footer-links h4,
.footer-contact h4 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

/* リンクテキスト - 統一された見やすさ */
.footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 15px !important;
    line-height: 1.6;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #fbbf24 !important;
}

.footer-links li {
    margin-bottom: 10px;
}

/* モバイル用の適度な間隔設定 */
@media (max-width: 768px) {
    .footer-links li,
    .footer-contact li {
        margin-bottom: 5px !important;
        line-height: 1.4 !important;
        padding: 0 !important;
    }
    
    .footer-links a,
    .footer-contact a {
        line-height: 1.4 !important;
        padding: 2px 0 !important;
        font-size: 13px !important;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 10px !important;
    }
}

/* 電話番号セクション */
.footer-phone-label {
    display: block;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-phone-number {
    display: block;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-phone-number:hover {
    color: #fbbf24 !important;
}

/* 受付時間 */
.footer-hours {
    display: block;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: 6px;
    font-weight: 400;
}

/* メールアドレス */
.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.footer-email i {
    font-size: 20px !important;
    color: #fbbf24;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #fbbf24 !important;
    text-decoration: underline;
}

/* フッター下部リンク - 統一 */
.footer-bottom-links {
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fbbf24 !important;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

/* コピーライト */
.footer-copyright {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 10px 0 0;
    font-weight: 400;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .footer-company-name {
        font-size: 18px !important;
    }
    
    .footer-phone-number {
        font-size: 22px !important;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .footer-company-info {
        font-size: 14px !important;
    }
    
    .footer-certifications li {
        font-size: 13px !important;
    }
    
    .footer-links a {
        font-size: 14px !important;
    }
}
