
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* コンテナ（コンテンツの幅を中央揃えにする） */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.site-header {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.site-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ナビゲーション */
.site-nav {
    background-color: #444;
    border-bottom: 4px solid #007BFF;
    /* アクセントカラー */
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* メニューを中央揃え */
    flex-wrap: wrap;
    /* スマホで折り返す */
}

.site-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

.site-nav a:hover {
    background-color: #007BFF;
}

/* メインコンテンツ */
.main-content {}

.content-section {
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #007BFF;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.content-section a {
    text-decoration: none;
}

.content-section a:hover h2 {
    text-decoration: underline;
}

/* フッター */
.site-footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}