:root {
	--wide-width: 1200px;
	--thin-width: 900px;
}

html {
	margin-top: 0px !important;
}

@media screen and (max-width: 980px) {
	.br-pc {
		display: block !important;
	}

	.br-sp {
		display: block !important;
	}
}

.br-pc {
	display: none;
}

.br-sp {
	display: none;
}

body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}


/* --- header --- */
.header {
	position: absolute;
	top: 30px;
	left: 30px;
}

#header .logo-box {
	display: block;
	z-index: 1000;
}

.logo {
	font-size: 24px;
	font-weight: bold;
}


.logo-pc {
	display: block;
}

.logo-box {
	width: 160px;
	height: auto;
	position: absolute;
}


/* --- Navigation --- */



.nav-links a {
	text-decoration: none;
	gap: 16px;
	color: #646868;
	font-size: 14px;
	font-family: 'hiragino-kaku-gothic-pron', sans-serif;
	font-weight: 600;
	font-style: normal;
}

.organ-item-origin {
	gap: 0 !important;
}

.nav-links a:hover {
	border: 1px solid #A5D7CA;
	transition: all 0.3s ease;
}

/* --- サブメニュー全体をホバー対象に含める --- */
.has-submenu:hover .header-organ-submenu,
.header-organ-submenu:hover {
	display: block;
	opacity: 1;
	visibility: visible;
}

/* グリッドレイアウト */
.header-organ-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 0 auto;
	padding: 10px 22vw;
	text-align: center;
	justify-content: center;
}

.header-search-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 0 auto;
	padding: 10px 25vw;
	text-align: center;
	justify-content: center;
}

/* サブメニュー本体 */
.header-organ-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #eaf7f5;
	z-index: 999;
	padding: 24px 0;
	min-width: 100vw;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.header-search-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #eaf7f5;
	z-index: 999;
	padding: 24px 0;
	min-width: 100vw;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: opacity 0.1s ease, visibility 0.1s ease;
}

/* メニュー項目 */
.header-organ-item {
	background: #fff;
	border-radius: 8px;
	padding: 40px 8px 25px;
	text-decoration: none;
	transition: transform 0.1s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #333;
}

.header-organ-item img {
	width: 45px;
	height: 40px;
	margin: 10px 0 10px;
	transition: transform 0.3s ease;
}

.header-organ-item:hover img {
	transform: scale(1.2);
}

.header-organ-item span {
	display: block;
	font-size: 14px;
	line-height: 1.4;
}



.global-nav li:hover::after {
	width: 100%;
}

/* --- ハンバーガーメニュー（初期非表示）--- */

/* --- PCナビゲーションリンク --- */
.nav-links-pc {
	display: flex;
}



@media screen and (max-width: 980px) {
	#header .logo-box {
		display: block;
		height: auto;
	}	

	.logo-pc {
		display: none;
	}

	.accordion-icon-sp {
		width: 30px;
		height: 30px;
		position: relative;
		display: block;
	}

	.accordion-icon-sp .line-sp {
		position: absolute;
		background-color: #696d6d;
		border-radius:
			1px;
		display: block;
	}

	.accordion-icon-sp .vertical-sp {
		width: 2px;
		height: 100%;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}

	.accordion-icon-sp .horizontal-sp {
		height: 2px;
		width: 100%;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.accordion-icon-sp.active .vertical-sp {
		display: none;
	}

	.tel-text-sp {
		font-size: 14px;
		color: #444;
	}

	.tel-number-sp {
		font-weight: bold;
		color: #00a2a8;
	}

	.btn-sp.web-btn-sp {
		background-color: #fff;
		border: 1px solid #00a2a8;
		border-radius: 8px;
		padding: 8px 12px;
		font-size: 14px;
		font-weight: bold;
		display: flex;
		align-items: center;
		color: #00a2a8;
		text-decoration: none;
	}

	.btn-sp .icon-sp {
		margin-right: 6px;
	}

	.btn-sp .icon-sp img {
		width: 18px;
		height: 18px;
	}

	.organ-grid-menu-sp {
		display: none;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		padding: 16px;
		background: #ECF8FD;
	}

	.organ-grid-menu-sp {
		display: none;
	}

	.organ-item-sp {
		background-color: #fff;
		border-radius: 8px;
		padding: 36px 12px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
		text-align: center;
		color: #646868;
		line-height: 1.6;
		font-family: 'hiragino-kaku-gothic-pron', sans-serif;
		font-weight: 400;
	}

	.organ-item-sp-origin {
		margin: 0 0 10px;
	}

	.organ-item-sp p {
		font-size: 12px;
		margin: 0 0 28px;
		color: #646868;
		font-weight: 600;
	}

	.organ-item-sp img {
		width: 70px;
		height: auto;
		display: block;
		margin: 0;
	}

	.accordion-icon-sp .line-sp {
		position: absolute;
		background-color: #696d6d;
		border-radius:
			1px;
		display: block;
	}

	.contact-sp {
		position: absolute;
		right: 0;
		text-align: right;
		display: flex;
		gap: 5px;
		width: 100%;
		background: #95D0C0;
		align-items: center;
		justify-content: center;
		bottom: auto;
	}

	.contact-sp p {
		background: #fff;
		padding: 24px 20px;
		border-radius: 8px;
		color: #6f7373;
		font-size: 38px;
	}

	.contact-sp a {
		text-decoration: none;
		color: #68b4b3;
		font-size: 40px;
		font-family: roboto, sans-serif;
		font-weight: 700;
		font-style: normal;
	}

	.contact-sp>.buttons-sp {
		display: flex;
		gap: 5px;
		justify-content: center;
		align-items: center;
		margin: 0;
	}

	.buttons-sp a {
		display: flex;
		gap: 10px;
		justify-content: flex-end;
		font-size: 14px;
		font-family: hiragino-kaku-gothic-pron, sans-serif;
		font-weight: 600;
		font-style: normal;
		padding: 52px 20px;
	}

	.buttons-sp a {
		display: flex;
		gap: 10px;
		justify-content: flex-end;
		font-size: 40px !important;
		font-family: hiragino-kaku-gothic-pron, sans-serif;
		font-weight: 600;
		padding: 54px 40px;
		font-style: normal;
	}

	.buttons-sp .btn .icon {
		width: 50px;
	}

	.buttons-sp .btn .icon img {
		width: 100%;
	}

}

/* ---END header --- */
/* Clinic_element_st */
/* END Clinic_element_st */
/* top-page-st */
.top-view {
	height: 60vh;
	background-image: url("../../img-file/about_background.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	background-position: bottom;
}

.top-view .overlay {
	width: 90%;
	height: 100%;
	position: relative;
}

.tel-reservation-box {
	position: absolute;
	right: 0px;
	bottom: 0px;
	display: flex;
	align-items: center;
	padding: 0px 20px;
	gap: 10px;
}

.tel-text {
	background: #fff;
	font-size: 12px;
	color: #6f7373;
	font-family: sans-serif;
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 8px;
}

.tel-number {
	color: #00a2a8;
	font-weight: 700;
	font-size: 20px;
	font-family: Roboto, sans-serif;
}

.web-btn .icon {
	margin-right: 8px;
	font-size: 18px;
}

.contact {
	position: fixed;
	right: 0;
	bottom: 0;
	text-align: right;
	display: flex;
	width: 60%;
	border-radius: 8px;
	background: #96D0C0;
	padding: 0 10px;
	z-index: 1000;
}

.contact>.buttons {
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	margin: 0;
	width: 90%;
}

.contact p {
	width: 60vw;
	background: #fff;
	padding: 0.4vw 0;
	border-radius: 8px;
	color: #6f7373;
	font-size: 1.2vw;
	margin: 12px 0;
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.buttons a {
	display: flex;
	justify-content: center;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 600;
	font-style: normal;
	width: 36%;
	background: #fff;
	border-radius: 8px;
}

.contact a {
	text-decoration: none;
	color: #68b4b3;
	font-size: 1.5vw;
}

.contact-span-sp {
	display: block;
}

.buttons .btn {
	width: 30% !important;
	padding: 0.6vw 0;
}

.btn .icon {
	margin-right: 5px;
}



@media screen and (max-width: 479px) {
	.top-view {
		height: 20vh;
	}
	.contact {
		width: 100%;
		bottom: 0;
		left: 0;
		right: 0;
		padding:
			10px 8px;
		border-radius:
			0;
		flex-direction: column;
	}

	.contact>.buttons {
		flex-direction: row;
		flex-wrap: nowrap;
		gap:
			3px;
		width: 100%;
	}
	.contact p {
		width: 100%;
		font-size: 12px;
		padding: 4px;
		margin: 0;
		align-items: center;
		font-family: roboto-mono, monospace;
		font-weight: 700;
		font-style: normal;
		gap: 0;
	}

	.buttons a {
		width: 50%;
		padding: 0;
		font-size: 16px !important;
	}

	.buttons .icon img {
		width: 22px;
		height: 18px;
	}

	.buttons .web {
		padding: 12px 0;
		font-size: 12px !important;
	}

	.contact-span-sp {
		text-align: justify;
		display: block;
		font-family: roboto-mono, monospace;
		font-weight: 700;
		font-style: normal;
	}
}


/* END top-page-st */
/* パンくずリスト-st */
.breadcrumb-nav {
	max-width: 1200px;
	width: 100%;
	margin: 40px auto 0;
	padding: 0 100px;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-size: 14px;
	color: #646868;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	color: #646868;
}


.breadcrumb-list li a {
	text-decoration: none;
	color: #68B4B3;
	display: flex;
	align-items: baseline;
	flex-direction: row;
}

.breadcrumb-list li::after {
	content: "＞";
	margin: 0 8px;
	color: #ccc;
}

.breadcrumb-list li:last-child::after {
	content: "";
	margin: 0;
}

.breadcrumb-icon-inner {
	display: flex    ;
	width: 100%;
}

.breadcrumb-icon-inner img {
	width: 100%;
}

/* END パンくずリスト-st */
/* Clinic-Message-st */

.message-section {
	padding: 100px 0;
	position: relative;
	z-index: -50;
	width: 70%;
	margin: auto;
}

.message-inner {
	display: flex;
	gap: 20%;
	margin: auto;
	align-items: center;
}


.message-image-wrapper {
	flex: none;
	max-width: 23vw;
	width: 100%;
	overflow: hidden;
}


.message-image {
	width: 100%;
	display: block;
}

.message-content {
	flex: 1;
	position: relative;
	top: -80px;
}

.message-title {
	text-align: right;
	margin-bottom: 30px;
}

.message-title-en {
	font-size: min(8vw, 160px);
	color: #d1eaea;
	font-family: garamond-premier-pro, serif;
	font-weight: 700;
	font-style: normal;
	margin: 0;
	line-height: 1;
}

.message-title-jp {
	font-size: 2.2vw;
	color: #646868;
	line-height: 100px;
	margin: 0;
	font-family: hiragino-mincho-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

.message-headline {
	font-size: 2vw;
	line-height: 1.6;
	color: #646868;
	margin-bottom: 40px;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

.message-text {
	font-size: 1vw;
	color: #646868;
	line-height: 1.8;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

.main-about {
	position: relative;
}

.

.img-mes-bottom {
	position: absolute;
	width: 50%;
	top: 270px;
	z-index: -1;
	right: -300px;
}
.img-mes-top {
	position: absolute;
	width: 25%;
	top: -160px;
	right: 30%;
	transform: translateX(-50%);
}

.img-mes-bottom {
	position: absolute;
	width: 25%;
	top: 10%;
	right: 0%;
	transform: translateX(-20%);
}

@media screen and (max-width: 980px) {
	.message-section {
		padding: 40px 0;
		width: 90%;
	}
	.breadcrumb-nav {
		margin: 40px auto 0;
		padding: 0 10px;
	}

	.message-inner {
		flex-direction: column-reverse;
		align-items: center;
		gap: 40px;
	}
	.message-image-wrapper {
		max-width: 100%;
		width: 80%;
		display: flex;
		justify-content: center;
	}

	.message-image {
		width: 80%;
		object-fit: cover;
	}

	.message-content {
		width: 100%;
		text-align: center;
		top: 0; /* PCの-80pxをリセット */
	}

	.message-title {
		text-align: left;
		margin-bottom: 16px;
	}

	.message-title-en {
		font-size: min(14vw, 60px);
	}

	.message-title-jp {
		font-size: min(6vw, 25px);
		line-height: 1.2;
	}

	.message-headline {
		font-size: 20px;
		margin: 16px 0;
		color: #646868;
		font-weight: 300;
		text-align: left;
	}
	.message-text {
		font-size: 16px;
		line-height: 1.8;
		padding: 0;
		color: #646868;
		text-align: justify;
	}

	.img-mes-bottom {
		width: 100%;
		position: absolute;
		right: -140px;
		top: 300px;
		z-index: -100;
	}
	.img-mes-top {
		position: absolute;
		width: 25%;
		top: -160px;
		z-index: 600;
		right: 450px;
	}
}


/* SP Clinic-Message-st */
/* END Clinic-Message-st */
/* Clinic-greeting-st */

.greeting-section {
	padding: 0px;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	color: #646868;
	max-width: 100%;
	width: 100%;
	margin: auto;
	overflow: hidden;
}


.greeting-background-over {
	background: #63c1bd;
	width: 100vw;
	position: absolute;
	left: 0px;
	display: block;
}

/* タイトル部分 */
.greeting-title {
	padding-left: 50px;
	text-align: left;
	margin-bottom: 30px;
}

.greeting-title-en {
	font-size: min(8vw, 160px);
	font-family: garamond-premier-pro, serif;
	font-weight: 700;
	color: #d1eaea;
	margin: 0;
	line-height: 1.5;
}

.greeting-title-jp {
	font-size: 2.2vw;
	color: #646868;
	margin: 0;
	font-family: hiragino-mincho-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

/* あいさつメッセージ（引用） */
.greeting-message {
	text-align: left;
	margin-bottom: 60px;
	padding-left: 0px;
}

.greeting-phrase {
	font-size: min(2vw,40px);
	color: #646868;
	position: relative;
	display: inline-block;
	font-family: 'hiragino-mincho-pron';
	font-weight: 300;
	font-style: normal;
}

.greeting-phrase::before,
.greeting-phrase::after {
	content: "“";
	font-size: 40px;
	color: #68b4b3;
	vertical-align: middle;
}

.greeting-phrase::after {
	content: "”";
	margin-left: 4px;
}


.greeting-inner-bg {
	padding: 50px 20px;
	position: relative;
}
.greeting-background {
	position: absolute;
	width: 100%;
	height: 120vh;
	top: 0;
	left: 300px;
	z-index: -1;
}


.greeting-background img {
	width: 100%;
	height: 100%;
}

.greeting-inner-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 120vh;
	width: 50vw;
	/* 必要に応じて調整可能 */
	background-color: #67c2be;
	z-index: -1;
}

/* 本文＋写真部分 */
.greeting-inner {
	max-width: 960px;
	width: 100%;
	margin: 0 auto 40px 0;
	display: flex;
	gap: 100px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.greeting-text-area {
	flex: 1;
}

.greeting-heading {
	font-size: 26px;
	color: #ffffff;
	padding: 12px 0;
	border-radius: 4px;
	margin-bottom: 20px;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

.greeting-paragraph {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: #fff;
}

.greeting-doctor {
	font-size: 18px;
	font-weight: bold;
	text-align: right;
	color: #fff;
}

/* 写真 */
.greeting-photo-area {
	flex: 0 0 300px;
}

.greeting-photo {
	width: 100%;
	object-fit: cover;
}

/* 経歴・資格カード */
.greeting-info-cards-wrapper {
	display: flex;
	max-width: 960px;
	width: 100%;
	margin: 0 auto 40px 0;
	gap: 20px;
	flex-wrap: wrap;
}

/* 左カラム（経歴） */
.info-card-left {
	flex: 1 1 60%;
	display: flex;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-left {
	padding: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
}

.card-left h4 {
	text-align: center;
	color: #00a0a0;
	font-size: 16px;
	font-weight: bold;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-left ul {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1;
}

.card-left li {
	font-size: 14px;
	margin-bottom: 8px;
	position: relative;
	padding-left: 18px;
}

.card-left li::before {
	content: "";
	display: inline-flex;
	width: 10px;
	height: 10px;
	background-color: #61C1BC;
	border-radius: 2px;
	margin-right: 10px;
}

/* 右カラム（所属学会・資格） */
.info-card-right {
	flex: 1 1 35%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-card {
	padding: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-right-add {
	gap: 50px !important;
}

.info-card h4 {
	font-size: 16px;
	color: #00a0a0;
	margin-bottom: 12px;
}

.info-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.info-card li {
	font-size: 14px;
	margin-bottom: 6px;
	position: relative;
	padding-left: 18px;
}

.info-card li::before {
	content: "";
	display: inline-flex;
	width: 10px;
	height: 10px;
	background-color: #61C1BC;
	border-radius: 2px;
	margin-right: 10px;
}

.sp-greeting-bg {
	display: none;
}

.pc-greeting-bg {
	display: block;
}

.pc-greeting-bg {
	display: block;
	width: 100%;
}

/* END Clinic-greeting-st */
/* Clinic-greeting02-st */
.greeting-message-second {
	text-align: right;
	margin-bottom: 60px;
}

.greeting-inner-second {
	flex-direction: row-reverse;
	margin: 0 0 40px auto;
}

.greeting-doctor-second {
	text-align: left;
}

.greeting-info-cards-wrapper-second {
	margin: 0 0 40px auto;
}
.greeting-background-second {
	position: absolute;
	width: 100%;
	height: 120vh;
	top: 0;
	z-index: -1;
	right: -120px;
	text-align: end;
}
.greeting-background-second img {
	width: 100%;
	height: 100%;
}

/* END Clinic-greeting02-st */
/*  Clinic-greeting-spst */
/* END Clinic-greeting-sp-st */
.greeting-info-sp {
	display: none;
}

@media screen and (max-width: 980px) {
	.greeting-phrase {
		font-size: 16px;
		color: #646868;
		position: relative;
		display: inline-block;
		font-family: 'hiragino-mincho-pron';
		font-weight: 300;
		font-style: normal;
	}

	.greeting-title {
		text-align: left;
		margin: 0 20px;
		padding: 0;
	}
	.greeting-message {
		text-align: left;
		margin-bottom: 50px;
		padding-left: 40px;
	}

	/* ===== 基本レイアウト ===== */
	.greeting-inner-bg {
		transform: scale(1);
		transform-origin: center top;
		position: relative;
		padding: 30px 0;
	}
	.greeting-background img {
		width: 70%;
	}

	.greeting-inner-bg::before {
		content: "";
		position: absolute;
		left: -100px;
		height: 145vh;
		width: 100vw;
		background: #67c2be;
		z-index: -1;
	}

	.greeting-section,
	.greeting-section-second {
		display: none;
	}

	.greeting-info-sp {
		display: block !important;
		position: relative;
		width: auto;
		height: auto;
	}

	.greeting-background {
		position: absolute;
		top: 0;
		left: 0;
		height: -webkit-fill-available;
	}
	.greeting-background img {
		width: 100%;
	}

	.greeting-text-area {
		flex: 1;
		width: 90%;
	}

	.greeting-background-over {
		position: relative;
		background: none;
	}

	.sp-greeting-bg {
		display: block;
		height: auto;
	}

	.pc-greeting-bg {
		display: none;
	}

	/* ===== タイトル・テキスト ===== */

	.greeting-title-en {
		font-size: min(14vw, 100px);
		line-height: 1;
	}
	.greeting-title-jp {
		font-size: 25px;
	}

	.greeting-inner {
		max-width: 960px;
		width: 100%;
		margin: 0 auto 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.greeting-photo-area {
		width: 50%;
	}

	.greeting-heading {
		font-size: 5vw;
		text-align: justify;
		margin: 0;
		padding: 20px 0;
	}

	.greeting-paragraph {
		font-size: 16px;
		margin: 0;
	}

	.greeting-doctor {
		font-size: 7vw;
		margin: 30px 0 0;
		text-align: justify;
		font-weight: 300;
	}

	.greeting-doctor span {
		font-size: 4vw;
	}

	/* ===== 経歴・所属学会・資格カード ===== */
	.greeting-info-cards-wrapper {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		gap: 10px;
		margin: 0 auto 40px;
		max-width: fit-content;
		width: 100%;
	}

	.info-card-left {
		display: block;
		width: 90vw;
		border-radius: 12px;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	}

	.card-left {
		padding: 20px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.card-left h4,
	.info-card h4 {
		font-size: 20px;
		color: #68B4B3;
		font-weight: bold;
		text-align: center;
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.info-card ul {
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.card-left li,
	.info-card li {
		font-size: 12px;
		margin-bottom: 6px;
		padding-left: 12px;
		position: relative;
	}

	.card-left li::before,
	.info-card li::before {
		content: "";
		display: inline-flex;
		width: 15px;
		height: 15px;
		background-color: #61C1BC;
		border-radius: 2px;
		margin-right: 10px;
	}

	.info-card-right {
		flex: 1 1 55%;
		display: flex;
		flex-direction: row;
		gap: 10px;
		justify-content: center;
	}

	.info-card {
		padding: 0 0 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		background: #fff;
		border-radius: 12px;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
		width: 100%;
	}

	.card-right-add {
		gap: 20px !important;
	}

	.card-left ul {
		width: 100%;
	}

	/* ===== 使用されていない or 上書き済みの重複 ===== */
	/* .greeting-paragraph { font-size: 10px; } → 上書き済み */
	/* .greeting-doctor { font-size: 12px; } → 上書き済み */
}

/* Clinic-choose-us-st */
.choose-us-section {
	text-align: center;
	position: relative;
	padding: 120px 0 70px;
	margin: 30px 0px 0;
}


.choose-us-background {
	position: absolute;
	top: -50px;
	z-index: -200;
	opacity: 0.5;
	width: 100%;
}

.choose-us-background img {
	width: 100%;
}

.choose-us-header {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto 140px;
}

.choose-us-title {
	font-size: min(8vw, 160px);
	color: #d1eaea;
	font-family: garamond-premier-pro, serif;
	font-weight: 700;
	font-style: normal;
	margin: 0;
	line-height: 1.5;
	text-align: right;
}

.choose-us-subtitle {
	font-size: 2.2vw;
	color: #646868;
	line-height: 60px;
	margin: 0;
	font-family: hiragino-mincho-pron, sans-serif;
	font-weight: 300;
	font-style: normal;
}

.choose-us-cards {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: nowrap;
	width: 72%;
	flex-direction: row;
	margin: auto;
}

.choose-us-card {
	background: #ecf7f9;
	border: 1px solid #cde7e9;
	border-radius: 8px;
	padding: 50px 40px;
	max-width: 100%;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.choose-us-number {
	position: absolute;
	top: -60px;
	left: 10px;
	font-size: 65px;
	color: #bce3dc;
	font-weight: bold;
	font-family: Roboto, sans-serif;
}

.choose-us-icon {
	width: 5vw;
	height: 5vw;
	margin-bottom: 20px;
}

.choose-us-card-title {
	font-size: 1.5vw;
	margin-bottom: 16px;
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #646868;
}

.choose-us-card-title span {
	color: #00b0b9;
	font-weight: bold;
}

.choose-us-card-text {
	font-size: 1vw;
	color: #646868;
	line-height: 2;
	text-align: justify;
}

@media screen and (max-width: 980px) {

	.choose-us-section {
		margin: 0;
		padding: 90px 0 20px;
	}
	.choose-us-background {
		top: -100px;
	}

	.choose-us-background img {
		width: 260%;
	}

	.choose-us-title {
		font-size: min(13vw, 100px);
		text-align: left;
		line-height: 1;
	}

	.choose-us-subtitle {
		font-size: min(6vw, 25px);
		text-align: left;
	}

	.choose-us-header {
		max-width: 950px;
		width: 90%;
		margin: 0 auto 0;
	}

	.choose-us-card {
		padding: 40px 40px;
		max-width: 650px;
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.choose-us-cards {
		display: flex;
		gap: 60px;
		justify-content: center;
		margin-top: 0;
		flex-wrap: wrap;
		transform: scale(0.9);
		width: 100%;
	}

	.choose-us-number {
		top: -60px;
		font-size: 14vw;
	}

	.choose-us-icon {
		width: 24vw;
		height: 11vh;
	}

	.choose-us-card-title {
		font-size: 30px;
	}

	.choose-us-card-text {
		font-size: 16px;
	}
}

/* END Clinic-choose-us-st */

/* clinic-info-st */
.clinic_info_bg{
	width: 100%;
	position: absolute;
}

.clinic-element.clinic-info {
	padding: 150px 0;
}

@media screen and (max-width: 980px) {

	.clinic_info_bg {
		height: 100vh;
	}
}
/* END SP Clinic-info-st */
/* END Clinic-info-st */