@charset "UTF-8";

.headline_sp {
    display: none;
}

h2 {
    margin-bottom: 40px;
}

h2 img {
    width: 100%;
    margin: auto;
}

form {
    width: 980px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    margin-bottom: 40px;
}

/* ラベルのスタイル */
label {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

/* テキスト入力欄とセレクトボックスのスタイル */
input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 20px;
}

/* メッセージ欄のスタイル */
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
    height: 100px;
    margin-bottom: 20px;
}

/* 送信ボタンのスタイル */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.sectionbtn {
    text-align: center;
}

.btn {
    width: 200px;
    height: 50px;
    font-size: 21px;
}

/* 必須項目のアラートスタイル */
.alert {
    color: red;
    font-weight: bold;
}

/* スクロールバーのスタイル */
select::-webkit-scrollbar {
    width: 8px;
}

select::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}

select::-webkit-scrollbar-track {
    background-color: #f7f7f7;
    border-radius: 5px;
}


@media screen and (max-width:680px) {
    .headline_pc {
        display: none;
    }

    .headline_sp {
        display: block;
    }

    form {
        width: auto;
    }
}