/* styles.css */

/* 全体の設定 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin-top: 70px; /* 固定ナビゲーションバーの高さを考慮 */
}

/* ヘッダースタイル */
#common-header {
    background-color: white;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 下に軽いシャドウを追加 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 2rem; /* ナビゲーションバーの上下パディング */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 50px; /* ロゴの最大高さ */
    margin-right: 10px; /* ロゴとテキストの間のスペース */
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* ホバー時のリンクカラー */
}

/* ドロップダウンメニューのスタイル */
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none; /* フォーカス時のシャドウを削除 */
}

/* ヒーローセクション */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); /* テキストの影 */
}

/* コンテンツセクションのスタイル */
.content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* 下部のマージン */
}

h2 {
    color: #007bff;
    margin-bottom: 20px;
}

.btn-primary, .btn-secondary {
    border-radius: 25px;
    padding: 10px 20px;
}

/* フッターのスタイル */
#common-footer {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #454d55;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
}

#common-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#common-footer p {
    margin: 0;
}

#common-footer a {
    color: #f8f9fa;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

#common-footer a:hover {
    color: #007bff; /* フッターリンクのホバー時のカラー */
}

#common-footer .social-icons {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

#common-footer .social-icons li {
    margin: 0 10px;
}

#common-footer .social-icons li a {
    color: #f8f9fa;
    font-size: 1.2rem;
}

/* メディアクエリ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .content {
        padding: 20px;
    }

    #common-footer {
        padding: 20px;
        font-size: 0.8rem;
    }

    #common-footer .container {
        flex-direction: column;
    }

    #common-footer .social-icons {
        margin-bottom: 10px;
    }
}

/* styles.css */

/* カスタムヘッダースタイル */
.bg-blue {
    background-color: #007bff !important; /* 青の背景色 */
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important; /* 白の文字色 */
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #dfe6e9 !important; /* ホバー時に少し淡い白色 */
}

.navbar-dark .navbar-brand {
    color: #ffffff !important; /* ロゴの文字色も白 */
}

.navbar-dark .navbar-brand:hover {
    color: #dfe6e9 !important; /* ロゴのホバー時の色 */
}

/* 他のスタイルはそのまま */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin-top: 70px; /* 固定ナビゲーションバーの高さを考慮 */
}

