/* モーダルのスタイル */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal-header {
    text-align: right;
}

.close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-content-search {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 700px;
    border-radius: 8px;
    position: relative;
}

/* コンテナの中央配置と余白調整 */
.search-container {
    display: flex;
	/* フレックス方向を縦 */
    flex-direction: column;
    align-items: center;
	/* フィールドとボタン間の間隔 */
/*     gap: 10px; */
    padding: 20px;
	/* 背景色 */
    background-color: #f9f5e8;
	/* ボーダー */
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 300px;
    margin: 0 auto;
}

/* 検索ボックス */
#search-input {
    width: 400%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 検索ボタン */
#search-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.search-section label {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

#search-keyword {
    width: 80%;
    padding: 10px;
    margin-right: 10px;
}

.search-button {
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
}

.category-section {
    margin-top: 20px;
}

.category-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.categories {
    display: flex;
    justify-content: space-around;
}

.categories div {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.categories div img {
	margin-left: 20px;
    width: 30px;
}

.icon-food { color: orange; }
.icon-leisure { color: blue; }
.icon-shopping { color: red; }
.icon-hotel { color: green; }
.icon-rental { color: lightblue; }

.area-section {
    margin-top: 20px;
}

.area-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.area {
	margin-left: 20px;
    margin-bottom: 15px;
	color: #066aab;
}

.area a {
	color: #066aab;
}

.area h4 {
    font-size: 14px;
    margin-bottom: 10px;
	text-decoration: underline;
}

.area ul {
    margin-left: 15px;
}

.area ul li {
    font-size: 14px;
}

.map-section img {
    margin-top: 10px;
    width: 100%;
    max-width: 600px;
}

/* コンテンツ全体を横並びに */
.content-wrapper {
    display: flex;
	/* 2つのセクション間の間隔 */
/*     gap: 10px; */
}

/* 各セクションの幅を調整 */
.area-section {
    flex: 1; /* 残りのスペースを埋める */
}

.map-section {
    flex: 1; /* 残りのスペースを埋める */
}

.area_search_map {
	margin-top: 20px;
}