body::before {
    background-image: url('images/main-image.jpg');
}

:root {
    --font-1: "Klee One", cursive, 'ヒラギノ角ゴ ProN', 'Noto Sans JP';
    --font-2: "Klee One", cursive, 'Noto Serif JP', serif;
}


/* =============================================
   ヘッダーの位置
   デフォルトは上右
   他の位置にする場合は下記から
   スマホで下部に表示させるには「レスポンシブ対応 (1000px以下のスクリーン)」に記載
============================================= */

/* 上・左
.header__inner {
    margin-bottom: auto;
} */

/* 上・中央
.header__inner {
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
} */

/* 下・中央
.header__inner {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
} */

/* 下・左
.header__inner {
    margin-top: auto;
} */

/* 下・右
.header__inner {
    margin-top: auto;
    margin-left: auto;
} */


/* =============================================
   レスポンシブ対応 (1000px以下のスクリーン)
============================================= */
@media (max-width: 1000px) {}


/* =============================================
   レスポンシブ対応 (768px以下のスクリーン)
============================================= */
@media (max-width: 768px) {
    body::before {
        background-image: url('images/main-image__sp.jpg');
    }
}