@charset "UTF-8";
/* 共通部分マケインマンガ用のCSSです！！！！！！！！！
------------------------------- */

html {
    font-size: 62.5%;/*---エンドユーザーの指定を使う---*/
    scroll-behavior: smooth;/*HTML全体にスムーススクロールを適用した*/
}
body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #432;
    margin-top: 95px;/*ヘッダーのぶんだけボディを下げます*/
    background-image: url(../images/kabegami-01.png);/*cssからみた画像の場所になるので注意*/
    background-repeat: repeat;
        max-width: 1120px;/*サイトの最大幅*/
}

a {/*---リンク下線の表示OFF---*/
    text-decoration: none;
}
img {
    max-width: 100%;
}


/*---レイアウト---*/
.wrapper {
    max-width: 1120px;/*サイトの最大幅*/
    margin: auto;/*要素をセンター合わせに*/
    padding: 0 1.5rem;/*上下ゼロ、左右を15px相当*/
}

.align-center {/*この名前で囲んだ部分はセンター配置できるので使おう*/
    text-align: center;
}

 /*ここまでが固定ヘッダー部分*/

.privacy-policy{
    margin-bottom:120px;
}



/*ここからフッターと次へ戻るボタン*/
.page-footer {/*フッター
    background-color: rgb(48, 2, 215);*/
    color: rgb(255, 0, 0);
    text-align: center;
    margin-top: 40px;
    padding-bottom: 10px;
    font-size:1.5rem;
    opacity: .5;
}

/*---------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------
デスクトップ版
--------------------------------------------------------------------------------------------------------------- */

@media (min-width: 800px) {

    body {
        margin-top: 90px; /* ヘッダーの高さ分の余白をいれ、後ろの要素が隠れないようにする */
    }


}/*←メディアアクリの閉じ*/