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;
}

/* メインビジュアル内のタイトルの文字サイズ
.hero__title {
    font-size: 10vw;
} */


/* =============================================
   ヘッダーの位置
   デフォルトは上右
   他の位置にする場合は下記から
   スマホで下部に表示させるには「レスポンシブ対応 (1000px以下のスクリーン)」に記載
============================================= */

/* 上・左 */
.header__inner {
    margin-bottom: auto;
    margin-left: 0;
    margin-right: 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;
} */

/* メインビジュアルを右寄せにする */
.hero__content {
    align-items: flex-end;
}

/* =============================================
   レスポンシブ対応 (1000px以下のスクリーン)
============================================= */
@media (max-width: 1000px) {}


/* =============================================
   レスポンシブ対応 (768px以下のスクリーン)
============================================= */
@media (max-width: 768px) {
    body::before {
        background-image: url('images/main-image__sp.jpg');
    }

    /* メインビジュアル内のタイトルの文字サイズ */
    .hero__title {
        font-size: 14vw;
    }

    .hero__title {
        font-size: 15vw;
    }
}