/* footer.css */

/*
  明度の低い緑色のカラーコード: #8FBC8F (DarkSeaGreen)
  より暗くするなら #556B2F (DarkOliveGreen) なども良いでしょう。
  今回は #8FBC8F を採用します。
*/

.site-footer {
    background-color: var(--main-color);
    /* ワイヤーフレームの薄いグレーを再現 */
    padding: 40px 20px;
    font-family: sans-serif;
    /* 適宜フォントを変更してください */
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 4rem;
}

.footer-logo {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    /* ロゴ画像のサイズに合わせて調整 */
    height: auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 中央寄せに変更 */
    gap: 50px;
    /* カラム間のスペース */
    width: 100%;
}

.footer-column {
    flex: 1;
    /* 各カラムが均等な幅を占めるように */
    min-width: 200px;
    /* 最小幅を設定 */
}

.footer-column nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column nav li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-column nav a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--text-color);
}

.footer-column nav a:hover {
    color: #ffffff;
    /* ホバー時の色 */
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    color: #000000;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .site-footer {
        padding: 60px 40px;
    }

    .footer-container {
        flex-wrap: nowrap;
        /* 768px以上では折り返さない */
        justify-content: center;
        align-items: flex-start;
    }

    .footer-logo {
        width: auto;
        margin-right: 50px;
        /* ロゴとナビの間のスペース */
        margin-bottom: 0;
        align-self: center;
        /* 垂直方向の中央揃え */
    }

    .footer-nav {
        justify-content: flex-start;
        flex-grow: 1;
        /* ナビが残りのスペースを占めるように */
        max-width: 50%;
    }

    .hero-text-container {
        font-size: 0.5rem;
    }

    .hero-title-box {
        font-size: 2rem;
    }
}