/* 郵便番号検索ボタンのスタイル */
.zip-code-group {
    display: flex;
    align-items: flex-end; /* ボタンと入力欄のベースラインを揃える */
    gap: 10px; /* 入力欄とボタンの間隔 */
}
.zip-code-group .input-field {
    flex-grow: 1; /* 入力欄が残りのスペースを占める */
}
.zip-code-group button {
    padding: 15px 20px;
    background-color: #002D64;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap; /* ボタン内のテキストが改行されないように */
}
.zip-code-group button:hover {
    background-color: #001f40;
}
