/* ========================================
   Footer Styles - Canvas New Site V2
   ======================================== */

/* フッターリセット */
.cv2-site-footer * {
    box-sizing: border-box;
}

.cv2-site-footer a {
    color: inherit !important;
    text-decoration: none !important;
}

.cv2-site-footer ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* フッター全体 */
.cv2-site-footer {
    background-color: #2c2c2c !important;
    color: #ffffff !important;
    padding: 60px 0 0 0 !important;
    margin-top: 80px !important;
}

/* フッターコンテナ */
.cv2-footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px 40px 32px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px !important;
}

/* フッターカラム */
.cv2-footer-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

/* フッタータイトル */
.cv2-footer-title {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    letter-spacing: 0.05em !important;
}

/* フッターロゴ */
.cv2-footer-logo {
    margin-bottom: 8px !important;
}

.cv2-footer-logo-image {
    height: 32px !important;
    width: auto !important;
    display: block !important;
    filter: brightness(0) invert(1) !important; /* 白色に変換 */
}

/* 会社情報 */
.cv2-footer-company .cv2-footer-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.cv2-footer-address,
.cv2-footer-tel {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}

.cv2-footer-tel a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.cv2-footer-tel a:hover {
    color: #ffffff !important;
}

/* フッターリンク */
.cv2-footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.cv2-footer-links li {
    margin: 0 !important;
}

.cv2-footer-links a {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    display: inline-block !important;
}

.cv2-footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* リンクなし項目 */
.cv2-footer-link-disabled {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: default !important;
}

/* コピーライト */
.cv2-footer-copyright {
    background-color: #1a1a1a !important;
    padding: 20px 32px !important;
    text-align: center !important;
}

.cv2-footer-copyright p {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* ========================================
   Responsive Design
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .cv2-site-footer {
        padding: 48px 0 0 0 !important;
        margin-top: 60px !important;
    }

    .cv2-footer-container {
        padding: 0 24px 32px 24px !important;
        gap: 48px !important;
    }

    .cv2-footer-title {
        font-size: 17px !important;
    }

    .cv2-footer-address,
    .cv2-footer-tel,
    .cv2-footer-links a,
    .cv2-footer-link-disabled {
        font-size: 13px !important;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .cv2-site-footer {
        padding: 40px 0 0 0 !important;
        margin-top: 48px !important;
    }

    .cv2-footer-container {
        grid-template-columns: 1fr !important;
        padding: 0 16px 24px 16px !important;
        gap: 32px !important;
    }

    .cv2-footer-column {
        gap: 16px !important;
    }

    .cv2-footer-title {
        font-size: 16px !important;
    }

    .cv2-footer-address,
    .cv2-footer-tel,
    .cv2-footer-links a,
    .cv2-footer-link-disabled {
        font-size: 14px !important;
    }

    .cv2-footer-copyright {
        padding: 16px !important;
    }

    .cv2-footer-copyright p {
        font-size: 12px !important;
    }
}

/* 極小スマートフォン */
@media (max-width: 375px) {
    .cv2-footer-container {
        padding: 0 12px 20px 12px !important;
        gap: 28px !important;
    }

    .cv2-footer-title {
        font-size: 15px !important;
    }

    .cv2-footer-address,
    .cv2-footer-tel,
    .cv2-footer-links a,
    .cv2-footer-link-disabled {
        font-size: 13px !important;
    }
}