/* 全体の設定 */
body {
    font-family: 'Yuji Syuku', serif; /* 和風の手書き風フォント */
    background-color: #f0f8ff; /* 明るい青系の背景 */
    color: #000; /* 本文は黒 */
    margin: 0;
    padding: 0;
    line-height: 1.8; /* 行間を快適に */
}

/* コンテナの設定 */
.container {
    width: 90%; /* デバイスの90%を文章エリアに */
    max-width: 1200px; /* 最大幅の制限 */
    margin: 20px auto; /* 左右中央寄せ、上部余白 */
    text-align: left; /* 左寄せ */
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 見出しデザイン */
h1, h2 {
    font-family: 'Yuji Syuku', serif;
    color: #005faf; /* 明るい青系 */
    border-bottom: 2px solid #005faf; /* 下線で区切り */
    padding-bottom: 5px;
}

h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.6em;
    margin-top: 30px;
}

h3 {
    color: #0095A4; /* 濃い浅葱いろ */
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
    font-weight:normal;
}

h4 {
    color: #223670; /* 紺！ */
    font-size: 1.4em;
    text-align: center;
    margin-top: 20px;
    font-style:italic;
    letter-spacing: 0.4em;
    
}

/* 段落のスタイル */
p {
    text-indent: 1em; /* 和文らしく一字下げ */
    margin-bottom: 15px;
}

/* フッター */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
    background-color: #005faf;
    color: white;
    border-radius: 0 0 10px 10px;
}

.footer a {
    color: white;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .container {
        width: 95%; /* スマホではさらに広く */
        padding: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    h3 {
        font-size: 1.2em;
    }
}
