html {
    font-size: 100%;
    background-color: black;
}

html,
body {
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: "Noto Serif JP", serif;
    text-align: center;
    margin: 0;
    padding: 100px;
    background-image: url(../img/Back_013.jpg);
    background-size: cover;
    background-position: center;
    height: 800px;
}

/* フォームのタイトル */
h2 {
    margin-top: 55px;
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 40px;
    color: #fff;
}

/* フォーム全体のスタイル */
form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 600px;
    margin: auto;
    text-align: left;
    z-index: -1;
}

/* ラベルのスタイル */
label {
    display: block;
    margin-top: 10px;
    font-weight: 300;
    color: #fff;
}

/* 入力欄のスタイル */
input,
textarea {
    width: 100%;
    /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #eee;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    color: #000;
}

/* テキストエリアの高さを調整 */
textarea {
    resize: vertical;
    height: 180px;
}

/* 送信ボタンのスタイル */
button {
    background-color: #484848;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* ホバー時のボタンスタイル */
button:hover {
    background-color: #000;
}

@media screen and (max-width: 768px) {
    body {
        padding: 50px 10px;
        /* 上下50px、左右10px */
    }

    .site-header-nav {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: black !important;
        transform: translateX(-100%);
        transition: transform 100ms;
    }

    form {
        padding: 15px;
        width: 92%;
        /* 画面いっぱいを使う */
        max-width: 100%;
        /* 余計な制限をなくす */
    }

    button {
        font-size: 14px;
        padding: 8px;
    }

    h2 {
        font-size: 28px;
    }


}