@charset "utf-8";

/* === Site Footer === */
.site_footer {
    background-color: #1a2b3c; /* ヘッダーより濃いめのベースカラー */
    color: #a0b4c8; /* やや明るめのテキスト色 */
    padding: 60px 0 0; /* 下部のパディングは .footer_bottom_bar で調整 */
}

.footer_container {
    margin: 0 auto;
    max-width: 1300px; /* ヘッダーと合わせる */
    padding: 0 30px;
}

.footer_main_content {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: grid;
    gap: 30px 70px; /* row-gap column-gap */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* レスポンシブなカラム */
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer_column {

}
.footer_column_highlight { /* ニュースレターなど、少し目立たせたいカラム */
    background-color: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 25px;
    /* grid-column: span 2; 2カラム分使う場合など */
}

.footer_column_title {
    color: #ffffff; /* タイトルは白で目立たせる */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0 0 18px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* タイトル下の区切り線 */
    text-transform: uppercase; /* 大文字でデザイン性UP */
}

.footer_link_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_link_list li {
    margin-bottom: 10px;
}
.footer_link_list li:last-child {
    margin-bottom: 0;
}
.footer_link_list a {
    color: #b0c0d0; /* リンク色 */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer_link_list a:hover {
    color: #ffffff;
    padding-left: 5px; /* ホバーで少しインデント */
    text-decoration: none; /* 下線はつけない場合 */
}

/* Footer Bottom Bar */
.footer_bottom_bar {
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-wrap: wrap; /* モバイルで改行させるため */
    gap: 15px; /* 要素間のスペース */
    justify-content: space-between;
    padding: 25px 0;
}
.copyright_text {
    font-size: 0.8em;
    margin: 0;
    opacity: 0.8;
}
.copyright_text a {
    color: white;
    text-decoration: none;
}
.footer_bottom_nav {
    display: flex;
    gap: 20px;
}
.footer_bottom_nav a {
    color: #a0b4c8;
    font-size: 0.8em;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer_bottom_nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* Fun Fact Column in Footer */
.footer_column_fun_fact {
    background-color: rgba(255,255,255,0.05); /* 少し明るい背景 */
    border-radius: 8px;
    padding: 25px;
    border-left: 3px solid var(--orange); /* アクセントカラー (例: シアン系) */
}
.fun_fact_content {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.fun_fact_icon {
    font-size: 1.4em; /* 絵文字の場合 */
    line-height: 1.4;
    color: var(--orange);
}
.fun_fact_text {
    color: #c0d0e0;
    font-size: 0.9em;
    line-height: 1.6;
}
.fun_fact_more_link {
    color: var(--orange);
    display: inline-block;
    font-size: 0.8em;
    font-weight: 500;
    text-decoration: none;
}
.fun_fact_more_link:hover {
    text-decoration: underline;
    color: var(--bright-orange);
}


/* === Responsive Adjustments for Footer === */
@media (max-width: 992px) {
    .footer_main_content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .site_footer {
        padding-top: 50px;
    }
    .footer_main_content {
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 2カラム程度に */
        gap: 25px;
        padding-bottom: 30px;
        margin-bottom: 25px;
    }
    .footer_column_title {
        font-size: 1em;
    }
    .footer_link_list a {
        font-size: 0.85em;
    }
    .footer_bottom_bar {
        flex-direction: column; /* モバイルでは縦積み */
        align-items: center; /* 中央揃え */
        text-align: center;
        padding: 20px 0;
    }
    .footer_bottom_nav {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer_main_content {
        grid-template-columns: 1fr; /* スマートフォンでは1カラム */
    }
    .footer_column_highlight {
        padding: 20px;
    }
    .newsletter_form {
        flex-direction: column; /* フォームも縦積み */
    }
    .newsletter_submit_button {
        margin-top: 8px;
    }
    .footer_social_links {
        justify-content: center; /* ソーシャルリンク中央揃え */
    }
}