body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f5e6;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background: url("../arrow_drop_down_circle_24dp_FILL0_wght400_GRAD0_opsz24.png")no-repeat right 10px center;
    background-color: white;
    background-size: 20px 20px;
    padding-right: 30px;
}

small {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.address-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.address-container input {
    width: calc(50% - 5px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.budget-container {
    display: flex;
    align-items: center;
}

.budget-container input {
    width: auto;
    flex: 1;
    padding: 10px;
    margin-bottom: 0;
    margin-right: 5px;
}

.budget-container .yen {
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #EBEBEB;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

button:hover {
    background-color: #4cae4c;
}
