body {
    background-color: #2d333e;
}

h1 {
    font-size: 42px;
    letter-spacing: 0.2rem;
    z-index: 0;
    margin: 10px 0 -64px;
    text-align: center;
}
h1 a {
    color: #fff;
    text-decoration: none;
}

h1 a:hover {
  color: #fffb00;
}

.text_block {
    font-size: 20px;
    width: 500px;
    margin: 9% auto;
}
.text_block h2 {
    color: #fff;
    font-size: 20px;
}
.text_block img {
    width: 500px;
}

p.e-mail {
    color: #fff;
    font-size: 16px;
    margin-top: 80px;
}

/* お問い合わせフォームの幅を車の画像（500px）と同じに */
form {
    width: 500px;
    margin: 0 auto;
}

form input,
form textarea {
    width: 100%;
    box-sizing: border-box; /* 横幅の調整 */
}

/* 「send」ボタンのフォントとサイズを統一 */
.send-button {
    width: 500px !important;  /* 幅を統一 */
    background-color: #fffb00; /* 変更不要ならそのまま */
    color: black; /* 変更不要ならそのまま */
    border: none;
    padding: 8px;  /* 余白を調整 */
    font-size: 16px !important; /* 他のフォームと同じサイズに修正 */
    font-family: inherit !important; /* フォームと同じフォントに統一 */
    cursor: pointer;
    box-sizing: border-box; /* サイズのズレを防ぐ */
    display: block;
    text-align: center;
}

/*===============================================
  横幅480pxまで（固定表示）
===============================================*/
@media screen and (max-width: 480px) {
    h1.top_title {
        font-size: 22px;
        margin-top: 20px;
        margin-left: 26px;
    }
    .text_block {
        width: 90vw;
        margin-top: 120px;
    }
    .text_block img {
        width: 90vw;
    }
    form {
        width: 90vw;
    }
    form input,
    form textarea {
        width: 100%;
    }
    .send-button {
        width: 90vw !important;
    }
}
