.staff-profile-wrapper {
	background-color: #fff8ec;
	padding: 40px 20px;
}

.staff-profile-inner {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.staff-img {
	flex: 1 1 40%;
	min-width: 280px;
	background-color: #f7f7f7;
	text-align: center;
}

.staff-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 0;
}

.staff-info {
	flex: 1 1 60%;
	padding: 30px;
	box-sizing: border-box;
}

.staff-name {
	font-size: 28px;
	margin-bottom: 10px;
	font-weight: bold;
}

.staff-shop {
	font-size: 16px;
	color: #555;
	margin-bottom: 20px;
}

.staff-catch {
	font-style: italic;
	color: #999;
	margin-bottom: 20px;
}

.staff-section {
	margin-bottom: 30px;
}

.staff-section h3 {
	font-size: 18px;
	margin-bottom: 10px;
	border-left: 4px solid #4a2c2a;
	padding-left: 10px;
}

.staff-section p {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
}

.tag-box {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	background-color: #f0e7d9;
	color: #333;
	padding: 5px 12px;
	border-radius: 16px;
	font-size: 14px;
}

.reservation-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #4a2c2a;
	color: #fff;
	border-radius: 24px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s;
}

.reservation-button:hover {
	background-color: #7a5e55;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
	.staff-profile-inner {
		flex-direction: column;
	}

	.staff-img,
	.staff-info {
		flex: 1 1 100%;
	}

	.staff-info {
		padding: 20px;
	}

	.staff-name {
		font-size: 24px;
	}
}

/* --- ヘアスタイルセクション全体 --- */
.hairstyle-section {
	padding: 60px 20px;
	background-color: #f7f5f3;
	text-align: center;
}

.hairstyle-section h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
}

/* --- カードリスト 横並び3枚 --- */
.hairstyle-list {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: nowrap;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

/* --- カード1枚のスタイル --- */
.hairstyle-card {
	background-color: #ffffff;
	width: 280px;
	border-radius: 10px;
	overflow: hidden;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	flex-shrink: 0;
}

.hairstyle-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hairstyle-card img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.hairstyle-card-title {
	padding: 16px;
	font-size: 16px;
	font-weight: 500;
	color: #222;
}

/* --- スマホ用レスポンシブ --- */
@media screen and (max-width: 767px) {
	.hairstyle-list {
		flex-wrap: wrap;
		gap: 24px;
	}

	.hairstyle-card {
		width: 100%;
		max-width: 340px;
		margin: 0 auto;
	}

	.hairstyle-card img {
		height: 280px;
	}

	.hairstyle-section h2 {
		font-size: 28px;
	}
}

/* 消したい要素達 */

#content {
	display: block !important;
}

#sidebar {
	display: none;
}
