/* Google Fontsから美しい日本語フォントを読み込む */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif; /* フォントを指定 */
    line-height: 1.8; /* 行間を読みやすく */
    margin: 0;
    color: #333; /* 基本の文字色 */
    background-color: #f9f9f9; /* 背景色を少しグレーに */
}

/* サイト全体のコンテンツを中央に配置し、幅を制限するコンテナ */
.container {
    max-width: 800px; /* PCでの最大幅 */
    margin: 0 auto; /* 左右中央揃え */
    padding: 20px;
    background-color: #ffffff; /* コンテンツ部分は白背景に */
    box-shadow: 0 0 10px rgba(0,0,0,0.05); /* ちょっとだけ影をつける */
}

/* ヘッダーのスタイル */
.site-header {
    padding: 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.site-header h1 {
    margin: 0;
    font-size: 24px;
    color: #2c3e50;
}

/* フッターのスタイル */
.site-footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #7f8c8d;
}

/* 見出しのスタイル */
h1, h2, h3 {
    color: #2c3e50;
    line-height: 1.4;
}

/* リンクのスタイル */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}