/* フッター全体 */
footer {
    background-color: #282828;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-top: 3px solid #4CAF50; /* 緑の線 */
}

/* 変換済みのファイル情報（左寄せ & 大きく） */
.footer-top {
    font-size: 2em;
    font-weight: bold;
    text-align: left;
    padding-left: 10%;
    margin-bottom: 15px;
}

/* フッターコンテナ */
.footer-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 15px;
}

/* フッターの各セクション */
.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 0.7;
}

/* 白い区切り線 */
.footer-line {
    width: 90%;
    margin: 20px auto;
    border: 0;
    height: 1px;
    background: white;
}

/* フッター下部 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8em;
}

/* 言語セレクター */
.language-selector {
    display: flex;
    align-items: center;
}

.language-selector label {
    margin-right: 5px;
}

/* 言語セレクターのカスタムスタイル */
.language-selector select {
    background: #383838;
    color: white;
    border: 1px solid #666;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 1em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-top {
        text-align: center;
        padding-left: 0;
    }
}
/* フッター下部のリンク（プライバシーポリシー・利用規約・共有） */
.footer-links a {
    color: white; /* 白色に統一 */
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}
