/* style.css (白系・清潔感のあるテーマ) */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f7; /* 背景を非常に明るいグレーに */
    color: #333; /* 文字色を濃いグレーに */
    /* 全体の中央寄せ設定。各HTMLで必要に応じて上書き */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 上端から配置 */
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
    background-color: #fff; /* コンテナ背景を白に */
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 影を薄くして清潔感を出す */
    width: 100%; /* 親要素の幅を使う */
}

h1 {
    font-size: 2.5em;
    color: #333; /* H1の色 */
    margin-bottom: 20px;
}

h2 {
    /* この一行を追加することでH2が左揃えになります */
    text-align: left; 
    
    color: #007bff; /* H2の色を標準的な青に */
    margin-top: 30px;
    border-bottom: 2px solid #007bff; 
    padding-bottom: 5px;
}

    .support-info ul,
    .support-info ol {
        /* リスト全体を左揃えにする */
        text-align: left; 
        /* リストの左側の余白（インデント）を少し調整して見やすくする */
        padding-left: 20px; 
        margin-left: 0;
    }

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

a {
    color: #007bff; /* リンク色を標準的な青に */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}