@charset "UTF-8";
#searchUnder {
	padding-bottom: 70px;
}

#searchBox {
	padding: 50px 25px;
	margin-bottom: 80px;
	background: #F4F2EF;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px 5%;
}

.searchSelectWrap {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 20px;
}

.searchSelect {
	width: 300px;
	position: relative;
}

.searchSelect select {
	width: 100%;
	height: 5.5rem;
	padding: 10px 50px 10px 25px;
	display: block;
	background: #FFFFFF;
	border: none;
	appearance: none;
	cursor: pointer;
	font-size: 1.5rem;
	font-family: var(--font-family-sub);
	color: #444444;
}

.searchSelect::before {
	width: 5.5rem;
	top: 0;
	right: 0;
	bottom: 0;
	content: "";
	position: absolute;
	background: #E6E3DF;
	pointer-events: none;
}

.searchSelect::after {
	content: "";
	width: 13px;
	height: 7px;
	background: url(../../img/common/icon_pulldown.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 21px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.searchBoxTit {
	font-size: clamp(1.3rem,1.4vw,2rem);
	font-weight: 600;
	font-family: var(--font-family-main);
	color: #444444;
	text-align: left;
}

#doctorLink {
	width: 100%;
}

.doctorList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px 1%;
}

.doctorList li {
	width: 100%;
}

.doctorList li a {
	padding: 10px;
	background: #FFF;
	border: 1px solid #DFD6C9;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.doctorImg {
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 100vw;
}

.doctorImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctorName {
	font-size: 1.6rem;
}

#newsSection {
	padding-bottom: 150px;
}

#newsSection.taxonomy {
	padding-bottom: 100px;
}

#pageNavWrap {
	padding-top: 80px;
}

.news {
	margin-bottom: 30px;
}

.news a {
	display: flex;
	background: #FFF;
	border: 1px solid #ebebeb;
}

.news a:hover {
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
}

.news a:hover .cat {
	color: #ae9b62;
}

.newsIn {
	flex:1;
	padding: 60px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
}

.newsInfo {
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.catWrap {
	width: max-content;
	padding: 5px 10px;
	border: 1px solid #838383;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease-in-out 0s;
}

.news a:hover .catWrap {
	border: 1px solid #ae9b62;
}

.date {
	font-size: 1.5rem;
}

.news .cat {
	padding: 0;
	border: none;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out 0s;
}

.cat li {
	font-size: 1.5rem;
}

.cat li:not(:last-child)::after {
	content: "・";
	display: inline-block;
}

.clinic {
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.clinic li:not(:last-child)::after {
	content: "・";
	display: inline-block;
}

.tit {
	font-size: 2rem;
}

.newsImg {
	width: 35%;
	transition: all 0.3s ease-in-out 0s;
}

.newsImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#sortTxt {
	padding-bottom: 20px;
	font-size: 1.6rem;
}

/* 詳細 */
/* ----------------------------------- */
#newsSingle {
	padding: 100px;
	margin-bottom: 80px;
	background: #FFF;
}

#newsSingle .cat {
	padding: 0;
	border: none;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out 0s;
}

.mainTit {
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #cbcbcb;
	font-size: 3.2rem;
	font-weight: 600;
}

#newsContent h2 {
	padding: 10px 20px;
	border: 1px solid #e2dccb;
	margin-bottom: 0.8em;
	margin-top: 1em;
	font-size: 2.4rem;
	font-weight: 600;
	color: #998a54;
	background: #f6f4ee;
}

#newsContent h3 {
	margin-bottom: 0.5em;
	margin-top: 0.8em;
	font-size: 2.4rem;
	font-weight: 600;
}

#newsContent p {
	font-family: var(--font-family-sub);
	font-size: 1.6rem;
	padding-bottom: 1em;
	line-height: 2;
}

#newsContent iframe {
	max-width: 100%;
}

#newsContent img {
	max-width: 100%;
}

#newsContent a {
	color: #998a54;
	text-decoration: underline;
}

#newsContent a:hover {
	text-decoration: none;
}

#newsContent ul {
	padding-bottom: 1em;
	font-size: 1.6rem;
}

#newsContent li {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#newsContent li::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #998a54;
	display: inline-block;
	flex: 0 0 8px;
	border-radius: 100vw;
}

#newsContent table {
	width: 100%;
	margin-bottom: 1em;
	font-size: 1.6rem;
}

#newsContent table th {
	padding: 15px;
	text-align: center;
	background: #f6f4ee;
	border: 1px solid #e2dccb!important;
	color: #998a54;
}

#newsContent table td {
	padding: 15px;
	border: 1px solid #e2dccb!important;
	font-family: var(--font-family-sub);
}

.doctorInfo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.doctorInfoImg {
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 100vw;
}

.doctorInfoImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctorInfoName {
	font-size: 1.8rem;
}

#doctorTaxTitWrap {
	padding-bottom: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

#doctorTaxImg {
	width: 300px;
	overflow: hidden;
	border-radius: 100vw;
}

#doctorTaxImg img {
	width: 100%;
	height: auto;
}

#doctorTaxTit .btn1 {
	padding-top: 20px;
	margin-inline: 0;
}

#doctorTaxTitEn {
	font-family: var(--font-family-en);
	font-size: 4rem;
	line-height: 1.2;
	color: #AE9B62;
}

#doctorTaxTitJp {
	font-size: 2rem;
	color: #444;
}

#doctorTaxTitJob {
	padding-top: 20px;
	font-size: 1.5rem;
	color: #444;
}

#noContent {
	padding: 50px 0;
	font-size: 1.8rem;
	text-align: center;
}

#doctorDetail {
	margin-top: 60px;
	padding: 30px 5%;
	background: #FBFAF8;
	border: 1px solid #e2dccb;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5%;
}

#doctorDetailImg {
	width: 200px;
	height: 200px;
	overflow: hidden;
	border-radius: 100vw;
}

#doctorDetailImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#doctorDetailInfoWrap {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

#writeTit {
	padding-bottom: 10px;
	font-size: 1.3rem;
	color: #a89d81;
}

#doctorDetailJob {
	font-size: 1.3rem;
}

#doctorDetailName {
	font-size: 1.8rem;
}

#doctorDetailFurigana {
	font-size: 1.3rem;
	padding-bottom: 10px;
}

#doctorDetailIntro {

}

.linkBtn:not(:last-child) {
	padding-bottom: 10px;
}

#doctorDetailLink .btn1Txt {
	font-size: 1.6rem;
}

#doctorDetailLink .btn1Link {
	padding: 15px 50px;
}

.wp-caption {
	max-width: 100%;
}

#newsContent p.wp-caption-text {
	font-size: 1.3rem;
}

/* -------------------------------------------------- */
/* TAB */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

	.searchSelectWrap {
		width: 100%;
		overflow: hidden;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.searchSelect {
		width: 100%;
	}

	#searchBox {
		padding: 30px 4%;
		margin-bottom: 60px;
		background: #F4F2EF;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		flex-direction: column;
		gap: 20px 5%;
	}

	.newsIn {
		padding: 40px 30px;
	}

	.newsInfo {
		padding-bottom: 10px;
		gap: 10px;
	}

	.news .tit {
		font-size: 1.6rem;
	}

	.date {
		font-size: 1.2rem;
	}

	.catWrap {
		padding: 2px 10px;
	}

	.cat li {
		font-size: 1.2rem;
	}

	.clinic {
		font-size: 1.2rem;
		display: flex;
		align-items: center;
	}

	.newsImg {
		transition: all 0.3s ease-in-out 0s;
	}

	/* 詳細 */
	/* ----------------------------------- */
	#newsSection {
		padding-bottom: 100px;
	}

	#newsSingle {
		padding: 50px;
		margin-bottom: 60px;
	}

	.mainTit {
		font-size: 2.8rem;
	}

}


/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#newsSection {
		padding-bottom: 100px;
	}

	#newsWrap {
		padding-bottom: 0;
	}

	.news a {
		flex-direction: column;
	}

	.newsImg {
		width: 100%;
		transition: all 0.3s ease-in-out 0s;
		order: 1;
	}

	.newsIn {
		width: 100%;
		padding: 15px;
		order: 2;
	}

	.news .tit {
		font-size: 1.6rem;
	}

	.cat li {
		font-size: 1rem;
	}

	.clinic {
		font-size: 1rem;
		display: flex;
		align-items: center;
	}

	.doctorList {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5px 1%;
	}
	.doctorName {
		font-size: 1.4rem;
	}

	#doctorTaxTitWrap {
		margin-bottom: 60px;
		padding-bottom: 50px;
		gap: 3%;
		position: relative;
	}

	#doctorTaxImg {
		width: 30%;
	}

	#doctorTaxTitEn {
		font-size: 2rem;
	}

	#doctorTaxTitJob {
		padding-top: 10px;
		font-size: 1.2rem;
	}

	#doctorTaxTitJp {
		font-size: 1.5rem;
		color: #444;
	}

	#doctorTaxTit .btn1 {
		margin: 0;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	#doctorTaxTit .btn1Link {
		padding: 10px 26px;
	}

	#doctorTaxTit .btn1Txt {
		font-size: 1.2rem;
	}

	/* 詳細 */
	/* ----------------------------------- */
	#newsSection {
		padding-bottom: 100px;
	}

	#newsSingle {
		padding: 30px 4%;
		margin-bottom: 60px;
	}

	.mainTit {
		font-size: 2rem;
	}

	#newsContent h2 {
		padding: 10px;
		font-size: 1.8rem;
	}

	#newsContent h3 {
		font-size: 1.8rem;
	}

	.doctorInfoImg {
		width: 40px;
		height: 40px;
		overflow: hidden;
		border-radius: 100vw;
	}

	.doctorInfoName {
		font-size: 1.5rem;
	}

	#doctorDetail {
		margin-top: 60px;
		padding: 30px 4%;
		background: #FBFAF8;
		border: 1px solid #e2dccb;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px 5%;
		flex-direction: column;
	}

	#doctorDetailInfoWrap {
		flex: 1;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}

	#doctorDetailLink .btn1Txt {
		font-size: 1.4rem;
	}

	#newsContent p {
		font-size: 1.5rem;
		line-height: 1.9;
	}

	#newsContent p.wp-caption-text {
		font-size: 1.1rem;
	}
}