@charset "utf-8";

/* -----------------------------
	ドクター紹介
-------------------------------- */
.doctor-area {
	padding: 120px 0 200px;
}

.doctor-block {
	position: relative;
}

.doctor-block + .doctor-block {
	margin: 200px 0 0;
}

.doctor-block::before {
	content: "";
	display: block;
	position: absolute;
	background: var(--palegreen);
	z-index: -3;
}

.doctor-block:first-child::before {
	bottom: -100px;
	left: 0;
	width: 30%;
	height: 400px;
}

.doctor-block:nth-child(2)::before {
	bottom: -130px;
	right: 0;
	width: 30%;
	height: 660px;
}

.doctor-block:nth-child(3)::before {
	bottom: -110px;
	left: 0;
	width: 25%;
	height: 420px;
}

.doctor-block .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	position: relative;
}

.doctor-block:nth-child(even) .inner {
	flex-direction: row-reverse;
}

.doctor-block .img-wrap {
	width: 500px;
	height: 600px;
}

.doctor-block .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor-block .txt-wrap {
	width: calc( 100% - 560px );
	position: relative;
}

.doctor-block .doctor-name {
	font-size: 3.2rem;
	font-weight: 500;
	font-family: var(--mincho);
	letter-spacing: .2rem;
	line-height: 1.6;
	margin: 0 0 20px;
}

.doctor-block .en {
	display: inline-block;
	position: absolute;
	top: -40px;
	left: -25px;
	font-size: 8.0rem;
	color: #E0F4F5;
	line-height: 1;
	font-weight: 500;
	font-family: var(--en);
	z-index: -2;
	letter-spacing: .3rem;
}

.doctor-block .catch {
	font-size: 2.0rem;
	font-family: var(--mincho);
	font-feature-settings: "palt";
	letter-spacing: .2rem;
}

.doctor-block .ttl {
	font-size: 1.7rem;
	font-weight: 600;
	margin: 0 0 10px;
}

.doctor-block .career-list {
	margin: 20px 0 0;
	position: relative;
}

.doctor-block .career-list li {
	position: relative;
	padding: 10px 0 10px 20px;
	line-height: 1.5;
}

.doctor-block .career-list li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 18px;
	left: 3px;
	width: 1px;
	height: 100%;
	background: #ccc;
}

.doctor-block .career-list li:last-child::before {
	display: none;
}

.doctor-block .career-list li::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 18px;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--green);
	border-radius: 3px;
}

@media screen and (max-width: 768px){
	.doctor-area {
		padding: 30px 0 40px;
	}
	
	.doctor-block + .doctor-block {
		margin: 40px 0 0;
	}
	
	.doctor-block:first-child::before {
		bottom: -120px;
		left: 0;
		width: 60%;
		height: 200px;
	}
	
	.doctor-block:nth-child(2)::before {
		bottom: -160px;
		right: 0;
		width: 50%;
		height: 260px;
	}
	
	.doctor-block:nth-child(3)::before {
		bottom: -50px;
		left: 0;
		width: 50%;
		height: 240px;
	}
	
	.doctor-block .inner {
		flex-wrap: wrap;
		gap: 40px;
	}
	
	.doctor-block .img-wrap {
		width: 80%;
		height: 80vw;
		margin: 0 auto;
		max-width: 500px;
	}
	
	.doctor-block .txt-wrap {
		width: 100%;
	}
	
	.doctor-block .en {
		top: -30px;
		left: 0;
		width: 100%;
		text-align: center;
		font-size: 5.0rem;
		letter-spacing: .2rem;
		white-space: nowrap;
	}
	
	.doctor-block .doctor-name {
		font-size: 2.4rem;
		margin: 0 0 15px;
		text-align: center;
	}
	
	.doctor-block .catch {
		font-size: 1.8rem;
	}
}
