/* ===== カウンセラー プロフィールページ（公開） ===== */

.tamao-profile-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 16px 60px;
	font-family: inherit;
}

/* ヒーローセクション */
.tamao-profile-hero {
	background: linear-gradient(135deg, #fde8f0 0%, #fff5f8 100%);
	border-radius: 16px;
	margin: 24px 0 32px;
	overflow: hidden;
}

.tamao-profile-hero-inner {
	display: flex;
	gap: 24px;
	padding: 32px;
	align-items: flex-start;
}

/* 写真 */
.tamao-profile-photo-wrap {
	flex-shrink: 0;
}

.tamao-profile-photo {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 4px 16px rgba(231,84,128,.2);
}

.tamao-profile-photo-placeholder {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: #e8c8d8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: #c0396b;
}

/* ヒーロー右側テキスト */
.tamao-profile-hero-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 8px;
}

/* バッジ */
.tamao-profile-badge {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: bold;
	align-self: flex-start;
}

.tamao-profile-badge-online {
	background: #d4edda;
	color: #155724;
}

.tamao-profile-badge-offline {
	background: #fff3cd;
	color: #856404;
}

/* 名前 */
.tamao-profile-name {
	margin: 0;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	line-height: 1.2;
}

/* 性別 */
.tamao-profile-gender {
	margin: 0;
	font-size: 13px;
	color: #888;
}

/* キャッチコピー */
.tamao-profile-catchphrase {
	margin: 0;
	font-size: 15px;
	color: #c0396b;
	font-style: italic;
	line-height: 1.5;
}

/* 予約ボタン（ヒーロー内） */
.tamao-profile-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	align-self: flex-start;
	transition: opacity .2s, transform .1s;
	margin-top: 4px;
}

.tamao-profile-btn:hover {
	opacity: .88;
	transform: translateY(-1px);
	text-decoration: none;
}

.tamao-profile-btn-online {
	background: #e75480;
	color: #fff;
}

.tamao-profile-btn-default {
	background: #5b8cca;
	color: #fff;
}

.tamao-profile-btn-large {
	padding: 16px 36px;
	font-size: 17px;
	border-radius: 10px;
}

/* コンテンツ各セクション */
.tamao-profile-section {
	margin-bottom: 32px;
}

.tamao-profile-section-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	border-bottom: 2px solid #fde8f0;
	padding-bottom: 8px;
	margin: 0 0 16px;
}

.tamao-profile-text {
	font-size: 15px;
	color: #444;
	line-height: 1.8;
}

/* 資格リスト */
.tamao-profile-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tamao-profile-list li {
	padding: 10px 14px;
	background: #f9f3f6;
	border-left: 3px solid #e75480;
	border-radius: 0 6px 6px 0;
	font-size: 14px;
	color: #444;
}

/* スケジュール */
.tamao-profile-schedule {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tamao-profile-schedule-day {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.tamao-profile-schedule-date {
	width: 130px;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: bold;
	color: #555;
	padding-top: 4px;
}

.tamao-profile-schedule-times {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tamao-profile-slot {
	display: inline-block;
	background: #fde8f0;
	color: #c0396b;
	border-radius: 4px;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
}

.tamao-profile-schedule-note {
	margin: 12px 0 0;
	font-size: 12px;
	color: #aaa;
}

.tamao-profile-no-slots {
	font-size: 14px;
	color: #888;
}

.tamao-profile-no-slots a {
	color: #5b8cca;
}

/* 下部CTA */
.tamao-profile-cta {
	text-align: center;
	margin-top: 16px;
	padding: 32px;
	background: #f9f3f6;
	border-radius: 12px;
}

/* レスポンシブ */
@media (max-width: 600px) {
	.tamao-profile-hero-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px 20px;
	}

	.tamao-profile-hero-body {
		align-items: center;
	}

	.tamao-profile-photo {
		width: 120px;
		height: 120px;
	}

	.tamao-profile-photo-placeholder {
		width: 120px;
		height: 120px;
		font-size: 48px;
	}

	.tamao-profile-name {
		font-size: 22px;
	}

	.tamao-profile-btn {
		align-self: center;
	}

	.tamao-profile-schedule-day {
		flex-direction: column;
		gap: 6px;
	}

	.tamao-profile-schedule-date {
		width: auto;
	}
}
