/* 全体の設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9ecef;
    color: #333;
    text-align: center;
}

/* ヘッダー：オレンジの部分 */
header {
    background-color: #f5c79b; /* 薄いオレンジ */
    padding: 20px 10px;
}

header p {
    margin: 0;
    font-size: 1.1rem;
}

header h1 {
    margin: 5px 0 0 0;
    font-size: 1.5rem;
}

/* メインコンテンツ */
main {
    padding: 20px;
}

h2 {
    font-size: 1.2rem;
    border-bottom: 2px solid #f5c79b; /* オレンジのアンダーライン */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* ボタンの設定 */
.main-button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none; 
    color: #333;
    box-sizing: border-box; /* 幅の計算を正しくする */
}

/* マウスを乗せた時に少し色を変えると、ボタンらしくなります */
.main-button:hover {
    background-color: #e2e6ea;
}

/* リストの設定 */
.experiment-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.experiment-list li::before {
    content: "・";
}

.experiment-list li {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* フッター */
footer {
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #333;
    /* ここから下を追加 */
    line-height: 1.2; /* 行間を標準（1.5前後）より狭くします */
}

footer p {
    margin: 0; /* 段落の上下にある余白をゼロにします */
    font-size: 1rem; /* 文字を少し小さくすると、より行間が詰まって見えます */
}

footer a {
    color: #007bff;
    text-decoration: underline;
}