@charset "UTF-8";

/* ダークモードのスタイル */
.dark {
    background-color: #1a1a1a;
    color: #dcdcdc;
}

.dark a {
    color: #b8b8b8;
}

.dark a:hover {
    color: #ffffff;
}

.dark hr {
    border-top-color: #404040;
}

/* フッタースタイル */
.footer {
    font-family: 'japanese_font','maru_gothic_pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 2rem;
    font-size: 15px;
    background: #fff;
}

/* ダークモード用フッタースタイル */
.footer.dark {
    background: #333;
    color: #dcdcdc;
}

/* その他のスタイル */
.footer__navi-heading {
    font-weight: 600;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer__navi li {
    margin-bottom: 0.75rem;
}

.footer__social a {
    display: inline-block;
    width: 24px;
    opacity: 0.7;
}

.footer__social a:not(:last-child) {
    margin-right: 16px;
}

/* レスポンシブスタイル */
@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
