/* ========== お問合せフォーム専用スタイル ========== */

.form-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group .required {
    display: inline-block;
    background-color: #d9534f;
    color: white;
    font-size: 0.75em;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* paddingを含めて幅100%にする */
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #005a9c;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 90, 156, 0.3);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background-color: #005a9c;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #004a80;
}
@media screen{
}
