/* =========================================
   PTC Links — lit.link風リンク集ページ
   トンマナは本体サイト(purelys-tokyo-clinic.com)準拠:
     文字色   #444342 / 明朝系(Zen Old Mincho→システム明朝)
     ブランド #2d91b1(ティール)/ 淡ブルー #e9f4f6
     強調CTA  シアン系グラデーション + ピル型(cvBtn.web と同系)
   アクセントカラーは .ptc-wrap の --ptc-accent で制御
   ========================================= */

.ptc-wrap {
	--ptc-accent: #2d91b1;
	max-width: 480px;
	margin: 0 auto;
	padding: 8px 16px 64px;
	font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-feature-settings: "palt";
	line-height: 1.6;
	color: #444342;
}

/* ---------- プロフィール ---------- */
.ptc-profile {
	text-align: center;
	padding-top: 24px;
	margin-bottom: 18px;
}

.ptc-profile-logo {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
	border: 3px solid #fff;
	box-shadow: 0 2px 12px rgba(45, 145, 177, 0.18);
	margin-bottom: 12px;
}

.ptc-profile-name {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #444342;
	margin-bottom: 6px;
}

.ptc-profile-desc {
	font-size: 13px;
	line-height: 1.8;
	color: #6b6a69;
	margin: 0;
}

/* ---------- SNSアイコン(プロフィール直下) ---------- */
.ptc-sns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.ptc-sns-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #6eb3c9;
	color: var(--ptc-accent);
	text-decoration: none;
	transition: background 0.15s, color 0.15s, transform 0.15s;
}

.ptc-sns-item svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	display: block;
}

.ptc-sns-item:hover {
	background: var(--ptc-accent);
	color: #fff;
	transform: translateY(-2px);
	text-decoration: none;
}

/* ---------- ヒーローバナースライダー ---------- */
.ptc-hero {
	position: relative;
	margin: 0 0 26px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(45, 145, 177, 0.14);
}

.ptc-hero-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.ptc-hero-slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.ptc-hero-slide img.ptc-hero-img,
.ptc-hero-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.ptc-hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--ptc-accent);
	font-size: 14px;
	line-height: 34px;
	text-align: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s;
}

.ptc-hero-nav:hover { background: #fff; }
.ptc-hero-prev { left: 8px; }
.ptc-hero-next { right: 8px; }

.ptc-hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.ptc-hero-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.ptc-hero-dot.is-active {
	background: var(--ptc-accent);
	box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.9);
	transform: scale(1.25);
}

/* ---------- リンクボタン(本体サイトのcvBtn準拠のピル型) ---------- */
.ptc-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 32px;
}

.ptc-btn {
	display: block;
	text-align: center;
	padding: 15px 20px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #6eb3c9;
	color: var(--ptc-accent);
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(45, 145, 177, 0.10);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ptc-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(45, 145, 177, 0.20);
	background: #e9f4f6;
	color: var(--ptc-accent);
	text-decoration: none;
}

.ptc-btn-label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.ptc-btn-sub {
	display: block;
	font-size: 11.5px;
	color: #6b6a69;
	margin-top: 2px;
}

/* 強調ボタン: 本体サイトWeb予約CTAと同系のグラデーション */
.ptc-btn-primary {
	background: var(--ptc-accent);
	border-color: transparent;
	color: #fff;
}

@supports (background: linear-gradient(0deg, color-mix(in srgb, red, white), red)) {
	.ptc-btn-primary {
		background: linear-gradient(0deg, var(--ptc-accent) 0%, color-mix(in srgb, var(--ptc-accent) 55%, #fff) 100%);
	}
}

.ptc-btn-primary .ptc-btn-sub { color: rgba(255, 255, 255, 0.9); }

.ptc-btn-primary:hover {
	color: #fff;
	background: var(--ptc-accent);
	filter: brightness(1.04);
}

/* ---------- レスポンシブ ---------- */
@media (min-width: 768px) {
	.ptc-wrap { padding-top: 16px; }
	.ptc-hero { border-radius: 18px; }
	.ptc-profile-name { font-size: 21px; }
}
