@charset "UTF-8";

#page_header{
	margin-bottom: 10px;
}

.tag-search-wrapper {
	max-width: 800px;
	margin: 20px auto;
	padding: 30px 20px;
	border-radius: 30px;
	font-family: sans-serif;
	text-align: center;
	font-size: 1.15em;
}

.tag-search-header h2 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	color: #333;
}

.tag-search-header p {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 25px;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* タグボタンの基本形 */
.tag-item {
	background: #f0ede4;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s;
	color: #333;
	margin: 0 0.5em;
}

.tag-cloud > div{
	width: 100%;
	margin: 0 0 0.7em;
}

/* 選択された時の色（画像に近いエメラルドグリーン） */
.tag-item.is-active {
	background: #009e80;
	color: #fff;
}

.tag-search-footer {
}

.footer-status {
	align-items: center;
	margin: 0 auto 10px;
	max-width: 450px;
	padding: 1em;
}

.clear-btn {
	background: none;
	border: none;
	text-decoration: underline;
	cursor: pointer;
	color: #666;
	margin-left: 0.5em;
}

/* 検索実行ボタン */
.search-submit-btn {
	width: 100%;
	background: #009e80;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 50px;
	font-size: 1.05em;
	font-weight: bold;
	cursor: pointer;
	transition: opacity 0.3s;
	width: 150px;
}

.search-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.search-submit-btn:hover:not(:disabled) {
	opacity: 0.8;
}
@media screen and (max-width: 450px) {
	.tag-search-wrapper{
		padding: 0 0 20px;
		font-size: 1.15em;
	}
	.tag-item{
		margin: 0 0.5em 0.5em;
	}
}