@charset "UTF-8";

/* ―――――――――――――――――――――――――― */
/* 共通設定 */
/* ―――――――――――――――――――――――――― */

:root {
    --main_color: #ff8585;
    --main_text: #232323;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--main_text);
}

/* ページ内スクロールをゆっくり移動 */
html {
    scroll-behavior: smooth;
}

/* 画面を垂直方向に３分割 */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    color: var(--main_text);
}

/* リンク先の上に余白を */
section {
    scroll-margin-top: 60px;
}

header {
    height: auto;
}

/* 余ったスペースはメイン割り当てる */
main {
    flex: 1;
    height: auto;
}

/* タイトルの書式設定 */
h1 {
    text-align: center;
    color: #fff;
    padding: 30px 0 20px;
    background-color: #ff8585;
    margin-bottom: 50px;
    font-size: clamp(24px, 4vw, 32px);
}

/* フッター */
footer {
    text-align: center;
    color: #fff;
    height: 30px;
    background-color: #ff8585;
}