html {
    scroll-behavior: smooth;
}

#elem-section {
    padding-top: 90px;
}
#junior-section {
    padding-top: 90px;
}
#high-section {
    padding-top: 90px;
}


/* ネットで問い合わせボタン */

/* 追加部分：ネットでお問い合わせボタンのスタイル */
.contact-button {
    text-align: center;
    margin-top: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff9800; /* お好みの色に変更 */
    color: white;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #e68900; /* ホバー時の色を変更 */
}


/* 問い合わせフォームのためのスタイル */

/* フォームの入力項目 */
.mailform form {
    display: flex;
    flex-direction: column;
}

.mailform div {
    margin-bottom: 15px;
}

.mailform label {
    font-size: 1em;
    color: #555;
    margin-bottom: 5px;
}

.mailform input, 
.mailform select, 
.mailform textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
}

.mailform textarea {
    resize: vertical;
    min-height: 150px;
}

/* ボタン */
.mailform button {
    background-color: #007BFF;
    color: white;
    font-size: 1em;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailform button:hover {
    background-color: #0056b3;
}

/* エラーメッセージ */
.alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* レスポンシブ設定 */
@media (max-width: 768px) {
    .wrapper {
        width: 95%;
    }

    .mailform {
        padding: 15px;
    }

    .midashi-1 {
        font-size: 1.2em;
    }

    .mailform button {
        font-size: 0.9em;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .mailform input, 
    .mailform select, 
    .mailform textarea {
        font-size: 0.9em;
        padding: 8px;
    }
    .mailform button {
        font-size: 0.9em;
        padding: 10px;
    }
}