.doctor_flex {
	display: flex;
}
.is_bg {
	background-color: #f2f0e4;
}
.doctor_point_text {
	padding-left: 1.8rem;
	text-align: center;
	line-height: 3;
}
.doctor_list {
	justify-content: space-between;
}
.doctor_list_item {
	margin-top: 8rem;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 5rem;
}
.doctor_list_item:not(:last-child) {
	padding-bottom: 8rem;
	border-bottom: 2px solid #ccc;
}
@media (max-width: 599px) {
	.doctor_list {
		justify-content: center;
	}
	.doctor_list:has(.doctor_list_item + .doctor_list_item) {
		justify-content: space-between;
	}
	.doctor_list_item {
		margin-top: 6rem;
		gap: 2.5rem;
	}
	.doctor_list_item:not(:last-child) {
		padding-bottom: 6rem;
	}
}
.doctor-f {
    gap: 5rem;
	justify-content: center;
	width: 100%;
}
.doctor-d {
	flex-direction: column;
	gap: 5rem;
	width: 100%;
}
@media (max-width: 599px) {
	.doctor-f {
		gap: 0;
		flex-direction: column;
	}
	.doctor-d {
		gap: 5rem;
	}
}
.doctor_list_item_text_btn{
	justify-content: center;
	column-gap: 30px;
	padding: 0 max(8%, 3rem);
}
@media (max-width: 599px) {
	.doctor_list_item_text_btn{
		justify-content: center;
		column-gap: 1%;
	}
}
.doctor_list_item_text {
	width: calc(100% - 18rem);
	flex-direction: column;
    gap: 1rem;
}
@media (max-width: 599px) {
	.doctor_list_item_text {
		margin: 1.5rem auto 0;
		width: 100%;
		/* text-align: center; */
	}
}
.doctor_list_item_text_ttl {
	font-size: 2.8rem;
}
.doctor_list_item_text_ttl span {
	font-size: 1.8rem;
	margin-right: 10px;
}
@media (max-width: 599px) {
	.doctor_list_item_text_ttl {
		text-align: center;
	}
	.doctor_list_item_text_ttl span {
		display: block;
	}
}
.doctor_list_item_text_detail {
	font-size: 1.4rem;
}
.doctor_list_item_image {
	position: relative;
	overflow: hidden;
	width: 25rem;
	height: 25rem;
	border-radius: 50%;
}
@media (max-width: 599px) {
	.doctor_list_item_image {
		margin: auto;
		width: 20rem;
		height: 20rem;
	}
}
.doctor_text_btn a:hover {
	opacity: .6;
}
.doctor_text_btn i {
	position: absolute;
	top: 50%;
	right: 1.4rem;
	display: block;
	margin-top: -.5rem;
	width: 1rem;
	height: 1rem;
}
.doctor_text_btn i img {
	display: block;
}
.doctor_text_btn {
	margin-top: 1.5rem;
}
.doctor_text_btn a {
	position: relative;
	display: flex;
	padding: .5rem 3rem .8rem;
	min-width: 18rem;
	width: fit-content;
	border-radius: 10rem;
	background: #5fbccb;
	box-shadow: 0 3px 15px 0 rgb(71 163 178 / 15%);
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.5;

	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}
@media (max-width: 599px) {
	.doctor_text_btn a {
		min-width: 15rem;
	}
}
.doctor_youtube {
	display: flex;
	justify-content: center;
	gap: 5rem;
}
.doctor_youtube iframe {
	width: 100%;
	max-width: calc(100% / 2 - 3rem);
	height: 100%;
	aspect-ratio: 630 / 355;
}
@media (max-width: 599px) {
	.doctor_youtube iframe {
		max-width: 100%;
	}
}

/* ------------------------
	医師紹介ページ
-------------------------- */
.doctor_name {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	align-items: baseline;
	gap: .6rem;
}
.doctor_img {
	position: relative;
	max-width: 16rem;
	max-height: 30rem;
}
@media (max-width: 599px) {
	.doctor_img {
		max-width: 12rem;
	}
}
.doctor_career dl {
	display: flex;

	gap: 1em;
}
.doctor_career dt {
	min-width: 5em;
}
.doctor_contents {
	width: 100%;
}
.doctor_info {
	gap: 10rem;
}
.doctor_head {
	display: flex;
	font-weight: bold;
	font-size: 2rem;

	align-items: center;
	gap: .6rem;
}
.doctor_head::before {
	display: block;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background-image:    -moz-linear-gradient( 35deg, rgb(95,188,203) 0%, rgb(161,212,198) 60%, rgb(226,236,193) 100%);
	background-image: -webkit-linear-gradient( 35deg, rgb(95,188,203) 0%, rgb(161,212,198) 60%, rgb(226,236,193) 100%);
	content: "";
}
.doctor_career {
	line-height: 1.8;
}
.doctor_qualification {
	line-height: 1.8;
}
.dr_qualification a {
	position: relative;
}
.dr_qualification a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #415457;
	content: '';
	transition: all .5s cubic-bezier(0, 0, .25, 1) 0s;
	transform: scale(1, 1);
	transform-origin: center top;
}
.dr_qualification a:hover::after {
	transform: scale(0, 1);
}
.dr_qualification a:hover {
	opacity: .8;
}
@media (max-width: 599px) {
	.doctor_career {
		margin-bottom: 2rem;
		font-size: 1.4rem;
	}
	.doctor_qualification {
		font-size: 1.4rem;
	}
	.doctor_info{
		gap: 0;
		flex-direction: column;
	}
}

/* 以下汎用でも使えそう */

.c-jumbotron__title {
	font-size: 3.2rem;
	line-height: 1.5;
}
.c-jumbotron__title i {
	color: #5fbccb;
	letter-spacing: .1em;
	font-weight: 500;
	font-size: 8rem;
	line-height: 1;
}
.c-jumbotron__title i + * {
	letter-spacing: .1em;
	font-weight: 500;
	font-size: 2rem;
}
@media (max-width: 599px) {
	.c-jumbotron__title i {
		font-size: 5rem;
	}
	.c-jumbotron__title i + * {
		font-size: 1.8rem;
	}
}

.under_navi_menu {
	justify-content: center;
}
@media (max-width: 559px) {
  .under_navi .under_navi_menu {
    justify-content: flex-start;
  }
}

