/* --- ヘアスタイル詳細ページのスタイル --- */

#content {
	margin-bottom: 0px;
	background: #f7f7f7;
}

.style-container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 48px;
	max-width: 1100px;
	margin: 60px auto;
	padding: 0 24px;
}

/* 左カラム：スタイル画像 */
.style-left {
	flex: 1 1 45%;
}
.style-left img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* 右カラム：情報エリア */
.style-right {
	flex: 1 1 50%;
}
.style-right h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #222;
}
.style-subtext {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 24px;
}

/* スタイリスト情報 */
.stylist-info {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}
.stylist-img {
	width: 64px;
	height: 72px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid #e5e5e5;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 名前＋予約ボタン横並び */
.stylist-detail {
	display: flex;
	align-items: center;
	gap: 12px;
}
.stylist-name {
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	color: #444;
}
.reserve-btn-inline {
	padding: 6px 14px;
	font-size: 0.85rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(135deg, #4a2c2a, #7a4d4a);
	border-radius: 20px;
	text-decoration: none;
	transition: 0.3s;
}
.reserve-btn-inline:hover {
	background: linear-gradient(135deg, #7a4d4a, #4a2c2a);
	transform: translateY(-2px);
}

/* 情報テーブル */
.style-detail-table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #eee;
}
.style-detail-table th,
.style-detail-table td {
	padding: 14px 0;
	vertical-align: top;
	font-size: 15px;
}
.style-detail-table th {
	width: 120px;
	font-weight: 600;
	color: #888;
	border-bottom: 1px solid #eee;
}
.style-detail-table td {
	color: #333;
	border-bottom: 1px solid #eee;
}

/* タグ */
.tag {
	display: inline-block;
	background: #f0f4f9;
	color: #2a2a2a;
	padding: 6px 12px;
	font-size: 13px;
	border-radius: 20px;
	margin-right: 8px;
	margin-bottom: 4px;
	font-weight: 500;
}

/* タググループ */
.style-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}
.style-tags .tag {
	color: #5a4a42;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

/* サイドバーは非表示 */
#sidebar {
	display: none;
}

/* 旧：単独ボタン配置（使わない場合は削除可） */
.reserve-btn-wrap {
	margin-top: 25px;
	text-align: center;
}
.reserve-btn {
	display: inline-block;
	padding: 12px 25px;
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(135deg, #4a2c2a, #7a4d4a);
	border-radius: 30px;
	text-decoration: none;
	transition: 0.3s;
}
.reserve-btn:hover {
	background: linear-gradient(135deg, #7a4d4a, #4a2c2a);
	transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
	.style-container {
		flex-direction: column;
		gap: 32px;
	}
	.style-right h2 {
		font-size: 22px;
	}
	.style-subtext {
		font-size: 15px;
	}
	.style-detail-table th {
		width: 100px;
		font-size: 14px;
	}
	.style-detail-table td {
		font-size: 14px;
	}
	.stylist-detail {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}
