/* ベーススタイル */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

/* タイトル */
.title {
    text-align: center;
    margin-bottom: 20px;
}

.title img {
    max-width: 150px;
    margin-bottom: 15px;
}

.title h1 {
    font-size: 2.5rem;
    margin: 10px 0;
    color: #603F26;
}

.title h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

/* フォーム全体 */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

/* フォームグループ */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* ボタン */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #6C4E31;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #603F26;
}

/* 結果表示 */
.result {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #e76f51;
}

