body::before {
    background-image: url('images/main_pc.jpg');
}

/* :root の個別設定
:root {} */

/* メインタイトルの文字サイズ
.hero__title {
    font-size: 10vw;
} */

/* メインビジュアルを右寄せにする
.hero__content {
    align-items: flex-end;
} */

/* =============================================
   ヘッダーの位置
   デフォルトは左上
   他の位置にする場合は下記から
   スマホで下部に表示させるには「レスポンシブ対応 (1000px以下のスクリーン)」に記載
============================================= */

/* 上・中央
.header__inner {
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
} */

/* 上・右
.header__inner {
    margin-bottom: auto;
    margin-left: 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_sp.jpg');
    }

    /* メインビジュアルを右寄せにする
    .hero__content,
    .hero__info {
        align-items: flex-end;
    } */

    /* メインビジュアルをPCで右寄せ、かつスマホで左寄せにする場合
    .hero__content {
        align-items: flex-start;
    } */

    /* メインタイトルの文字サイズ
    .hero__title {
        font-size: 16vw;
    } */
}