/* ベーシックリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
    width: 100%;
    height: auto !important;
    height: 100%;
    min-height: 100%;
}

/* 全体 */
body {
    font-family: sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: scroll;

    /*収まらない場合に折り返す*/
    overflow-wrap: anywhere;
    /* 単語の分割はデフォルトに依存 */
    word-break: normal;
    /* 禁則処理を厳格に適用 */
    line-break: strict;
}



/* ヘッダー */
header {
    background-color: #2f8031;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* メインコンテンツ */
main {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* セクション タイトル */
h2 {
    margin-bottom: 15px;
    font-size: 1.25em;
    border-bottom: 2px solid #2f8031;
    padding-bottom: 5px;
}

/* リスト */
ul {
    list-style: none;
}

li {
    margin: 10px 0;
}

/* リンク */
a {
    color: #2f8031;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* フッター */
footer {
    text-align: center;
    padding: 15px 0;
    background-color: #333;
    font-size: 0.9em;
    color: #fff;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    p {
        margin: 0;
        font-size: 0.9rem;
    }

}