/* 湘南辻堂院 ページ固有スタイル */
:root {
	--tsujido-accent: #5fbcdd;
	--tsujido-navy: #1a3a5c;
	--tsujido-navy-dark: #060e1f;
	--tsujido-text-primary: #111;
	--tsujido-text-dark: #222;
	--tsujido-text-muted: #555;
	--tsujido-text-light: #888;
	--tsujido-white: #fff;
	--tsujido-bg-light: #f9f9f9;
	--tsujido-border: #e0e0e0;
	--tsujido-line-green: #06c755;
	--tsujido-hero-gradient-start: #e8f3f4;
	--tsujido-hero-gradient-mid: #d1eaef;
	--tsujido-hero-gradient-end: #bee5eb;
	--tsujido-overlay: rgba(0, 2, 5, 0.7);
	--tsujido-overlay-border: rgba(255, 255, 255, 0.6);
}

.tsujido-hero {
	background: linear-gradient(
		135deg,
		var(--tsujido-hero-gradient-start) 0%,
		var(--tsujido-hero-gradient-mid) 50%,
		var(--tsujido-hero-gradient-end) 100%
	);
	padding: 80px 0 60px;
	text-align: center;
}
.tsujido-hero__visual {
	position: relative;
	max-width: 900px;
	margin: 0 auto 32px;
}
.tsujido-hero__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--tsujido-overlay);
	border-radius: 16px;
	color: var(--tsujido-white);
}
.tsujido-hero__label {
	display: inline-block;
	color: var(--tsujido-white);
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 700;
	letter-spacing: 0.15em;
}
.tsujido-hero__name {
	font-size: clamp(26px, 4.5vw, 42px);
	font-weight: 900;
	color: var(--tsujido-white);
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 8px 0 20px;
}
.tsujido-hero__night {
	display: inline-block;
	background-color: var(--tsujido-navy);
	color: var(--tsujido-white);
	font-size: clamp(13px, 1.8vw, 16px);
	font-weight: 700;
	padding: 8px 32px;
	border-radius: 30px;
	letter-spacing: 0.1em;
	border: 2px solid var(--tsujido-overlay-border);
}
.tsujido-hero__image {
	aspect-ratio: 2 / 1;
	border-radius: 16px;
	max-width: 100%;
}
.tsujido-hero__title {
	font-size: clamp(24px, 4vw, 42px);
	font-weight: 700;
	color: var(--tsujido-text-dark);
	line-height: 1.5;
	margin-bottom: 24px;
}
.tsujido-hero__sub {
	font-size: clamp(14px, 2vw, 17px);
	color: var(--tsujido-text-muted);
	line-height: 1.8;
	max-width: 680px;
	margin: 0 auto;
}
@media screen and (max-width: 999px) {
	.tsujido-hero {
		padding: 60px 0px 40px;
	}
	.tsujido-hero__name {
		font-size: clamp(22px, 5.5vw, 26px);
		letter-spacing: 0.05em;
	}
}

/* メッセージセクション */
.tsujido-message {
	padding: 60px 0;
}
.tsujido-message .container {
	max-width: 800px;
}
.tsujido-message h2 {
	text-align: center;
	margin-bottom: 40px;
}
.tsujido-message h2 span {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	color: var(--tsujido-text-dark);
}
.tsujido-message h2 em {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
.tsujido-message h2 em::after {
	content: '';
	width: 50px;
	height: 1px;
	border-bottom: 2px dotted var(--tsujido-accent);
	display: block;
	margin: 16px auto 0;
}
.tsujido-message__body p {
	line-height: 2;
	margin-bottom: 1.5em;
	font-size: 15px;
	color: var(--tsujido-text-primary);
}
.tsujido-message__body strong {
	color: var(--tsujido-navy-dark);
}
@media screen and (max-width: 999px) {
	.tsujido-message {
		padding: 40px 0;
	}
}

/* 診療内容セクション */
.tsujido-services {
	padding: 60px 0;
	background-color: var(--tsujido-bg-light);
}
.tsujido-services .container {
	max-width: 900px;
}
.tsujido-services h2 {
	text-align: center;
	margin-bottom: 40px;
}
.tsujido-services h2 span {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	color: var(--tsujido-text-dark);
}
.tsujido-services h2 em {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
.tsujido-services__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}
.tsujido-services__item {
	background: var(--tsujido-white);
	border-radius: 16px;
	padding: 30px 24px;
	text-align: center;
	border: 1px solid var(--tsujido-border);
}
.tsujido-services__item h3 {
	font-size: 18px;
	color: var(--tsujido-accent);
	margin-bottom: 12px;
	font-weight: 700;
}
.tsujido-services__item p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--tsujido-text-muted);
}

.tsujido-services__extra {
	background: var(--tsujido-white);
	border-radius: 16px;
	padding: 30px;
	border: 2px solid var(--tsujido-accent);
}
.tsujido-services__extra h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--tsujido-accent);
	text-align: center;
	margin-bottom: 16px;
}
.tsujido-services__extra-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.tsujido-services__extra-grid > div h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--tsujido-text-primary);
	margin-bottom: 6px;
}
.tsujido-services__extra-grid > div p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--tsujido-text-muted);
}
.tsujido-services__note {
	text-align: center;
	margin-top: 24px;
	font-size: 13px;
	color: var(--tsujido-text-light);
}

@media screen and (max-width: 999px) {
	.tsujido-services {
		padding: 40px 20px;
	}
	.tsujido-services__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.tsujido-services__extra-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.tsujido-services__note {
		text-align: left;
	}
}

/* アクセスセクション */
.tsujido-access {
	padding: 60px 0;
}
.tsujido-access .container {
	max-width: 900px;
}
.tsujido-access h2 {
	text-align: center;
	margin-bottom: 40px;
}
.tsujido-access h2 span {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	color: var(--tsujido-text-dark);
}
.tsujido-access h2 em {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
.tsujido-access__inner {
	display: grid;
	grid-template-columns: auto;
	gap: 10px;
}
.tsujido-access__info {
	font-size: 15px;
	line-height: 1.8;
	color: var(--tsujido-text-primary);
}
.tsujido-access__info .address {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}
.tsujido-access__map iframe {
	width: 100%;
	aspect-ratio: 4/3;
	border: 0;
	border-radius: 12px;
}
@media screen and (max-width: 999px) {
	.tsujido-access {
		padding: 40px 20px;
	}
	.tsujido-access__inner {
		grid-template-columns: 1fr;
	}
}

/* お問い合わせセクション */
.tsujido-contact {
	padding: 60px 0;
	background-color: var(--tsujido-bg-light);
}
.tsujido-contact .container {
	max-width: 700px;
	text-align: center;
}
.tsujido-contact h2 {
	text-align: center;
	margin-bottom: 30px;
}
.tsujido-contact h2 span {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	color: var(--tsujido-text-dark);
}
.tsujido-contact h2 em {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
.tsujido-contact__body {
	font-size: 15px;
	line-height: 1.8;
	color: var(--tsujido-text-primary);
	margin-bottom: 24px;
}
.tsujido-contact__line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--tsujido-line-green);
	color: var(--tsujido-white);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 40px;
	border-radius: 8px;
	transition: 0.3s ease;
}
.tsujido-contact__line:hover {
	opacity: 0.85;
	color: var(--tsujido-white);
}
.tsujido-contact__line svg {
	width: 28px;
	height: 28px;
	fill: var(--tsujido-white);
}

/* グループ病院案内セクション */
.tsujido-group {
	padding: 60px 0;
}
.tsujido-group .container {
	max-width: 980px;
}
.tsujido-group h2 {
	text-align: center;
	margin-bottom: 12px;
}
.tsujido-group h2 span {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	color: var(--tsujido-text-dark);
}
.tsujido-group h2 em {
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--tsujido-accent);
	display: block;
	line-height: 1.5;
	margin-top: 8px;
}
.tsujido-group__lead {
	text-align: center;
	font-size: 15px;
	color: var(--tsujido-text-muted);
	margin-bottom: 30px;
}
.tsujido-group__links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.tsujido-group__links a {
	display: block;
	background: var(--tsujido-navy);
	color: var(--tsujido-white);
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	padding: 20px;
	border-radius: 10px;
	transition: 0.3s ease;
}
.tsujido-group__links a:hover {
	opacity: 0.85;
	color: var(--tsujido-white);
}
.tsujido-group__links a small {
	display: block;
	font-size: 13px;
	font-weight: 400;
	margin-top: 4px;
	opacity: 0.9;
}
@media screen and (max-width: 999px) {
	.tsujido-group {
		padding: 40px 10px;
	}
	.tsujido-group__links {
		grid-template-columns: 1fr;
	}
}
