/*
Theme Name:   BusinessPress Child
Template:     businesspress
Author:       Your Name
Description:  Child theme for the BusinessPress theme
Version:      1.0.0
*/

/* Google Fonts を読み込み */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* フッター全体のフォント */
.site-info {
    font-family: 'Roboto', sans-serif; /* フッター全体にRobotoを使用 */
}

/* 2024年の部分の色 */
.copyright-year {
    color: #b8860b; /* 黄土色 */
    font-weight: bold;
}

/* A-frame の Aだけ赤く */
.red-A {
    color: #e63946; /* 赤 */
    font-weight: bold;
}

/* A-frame の 最後のAだけ赤く */
.green-A {
    color: #28a745;  /* より具体的な緑色 */
}

/* All Rights Reserved の Allだけ赤に */
.all-rights .all-text {
    color: #e63946; /* 緑 */
    font-weight: bold;
}

/* サポートメッセージの標準色 */
.supporting-text {
    color: #333; /* 標準のテキストカラー */
    font-style: italic;
}

/* A-frame の AIRIだけ黒く */
.black-letters {
    color: black;
}

