h1{
	color: black;
	font-size: 5rem;
	font-weight: bold;
	margin-top: 0;
}

.lostitem-head{
	margin: 0 auto;
}

.lostitem-head-description{
	font-size: 3rem;
}

.lostitem-content {
	margin: 0 auto;
	text-align: center;
	margin-top: 3rem;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1; 
	text-align: left;
}

.lostitem-contents-container {
	margin: 0 auto;
	text-align: center;
	margin-top: 3rem;
	padding: 1.25rem;
	padding-left: 3rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1; 
	text-align: left;
}


.search-item{
	text-align: center;
}

.search-select{
	font-size: 2rem;
}

.search-button{
	font-size: 2rem;
}

.lostitem-index{
	color: #111111;
	text-align: left;
	margin: 0.5rem 3rem;
	font-weight: normal;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	max-width: 60rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.lostitem-image{
	max-width: 60rem;
}

.search-form {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	margin-bottom: 2rem;
	border: 1px solid #e5e7eb;
}
.search-form h1 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: bold;
	color: #111827; /* text-gray-800相当 */
}
.search-form .form-group {
	margin-bottom: 1rem;
}
.search-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #374151; /* text-gray-700相当 */
}
.search-form select {
	width: 100%;
	padding: 0.75rem; /* 少し大きめに */
	border-radius: 0.375rem;
	border: 1px solid #d1d5db;
	box-sizing: border-box; /* 幅100%がはみ出ないように */
	font-size: 1rem;
	background-color: #fff; /* 背景色を明示 */
}
#search-button {
	padding: 0.75rem 1rem;
	background-color: #2563eb; /* bg-blue-600相当 */
	color: white;
	font-weight: 500;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 2rem;
	max-width: 60rem;
	min-width: 30rem;
	margin-top: 1rem;
}
#search-button:hover {
	background-color: #1d4ed8; /* hover:bg-blue-700相当 */
}

.lostitem-index > p {
	padding: 1.5rem;
	line-height: 1.6;
	margin: 0; /* デフォルトのpマージンをリセット */
}

.lostitem-card {
	background-color: #ffffff;
	overflow: hidden; /* 画像のはみ出し防止 */
	flex-direction: column;
	border: 1px solid #e5e7eb;
	width: 100%;
	max-height: 40rem;
	border-radius : 2rem;
}

.lostitem-image-container {
	height: 15rem;
	background-color: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden; 
}
.lostitem-image {
	width: 100%;
	height: 100%;
	object-fit: cover; 
}
.image-placeholder {
	color: #6b7280; 
	font-size: 0.875rem;
}
.lostitem-name {
	font-size: 3.5rem; 
	font-weight: bold;
	color: #111827; 
	margin-top: 0;
	margin-bottom: 0.5rem;
}
.lostitem-meta {
	margin-bottom: 1rem; 
	color: #374151; 
	font-size: 2.5rem;
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: flex-start;
}
.lostitem-meta span {
	display: inline-block; 
	margin-bottom: 0.25rem;
	min-width: 8rem;
}
.lostitem-detail {
	color: #4b5563; 
	font-size: 2.25rem; 
	margin-top: 0;
	margin-bottom: 1rem;
	flex-grow: 1; 
	line-height: 1.5;
	white-space: pre-wrap;
	overflow-wrap: break-word;
}
