/* CSS Document */

#fv {
	position: relative;
}
#fv::before {
	content: '';
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background: #045D94;
	position: absolute;
	top: 110px;
	left: -60px;
	z-index: 9;
}
#fv img {
  width: 100%;
	max-width: 920px;
	max-height: 440px;
	object-fit: cover;
  border-radius: 0 0 0 30px;
}



#medicalInformation {
	margin: 60px 30px;
}
#medicalInformation .opening {
	background: #E9F6FC;
	padding: 20px 30px;
	margin: 40px 0;
	border-radius: 15px;
}
#medicalInformation .opening dl {
	color: #333;
	background: unset;
	border-bottom: 1px solid #333;
}
#medicalInformation .opening dl dt {
}
#medicalInformation .opening dl dd {
}
#medicalInformation .opening dl:first-of-type dd:nth-of-type(6) { color: #0062B3;}
#medicalInformation .opening dl:first-of-type dd:nth-of-type(7) { color: #EC89B8;}
#medicalInformation .opening ul.note {
	font-size: 90%;
	margin: 10px 10px 0;
}



#infoDetail {
	margin: 60px 0;
}
#infoDetail h2 {
	font-size: 140%;
	line-height: 1.6;
}
#infoDetail .lead {
	text-align: center;
	margin: 40px 0;
	overflow: hidden;
}
#infoDetail .lead h2 strong {
	font-weight: 500;
	position: relative;
}
#infoDetail .lead h2 strong::before {
	content: '';
	border-bottom: 12px solid #DFF0F8;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
#infoDetail .lead .discription {
	margin: 30px 0;
}
#infoDetail ul.tab {
	display: flex;
	gap: 8px;
	margin: 0 30px 50px;
}
#infoDetail ul.tab li {
	width: 33.3%;
}
#infoDetail ul.tab li a {
	display: block;
	font-size: 110%;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	text-decoration: none;
	text-align: center;
	color: #fff;
	padding: 7px 5px;
	border-radius: 10px 10px 0 0;
}
#infoDetail ul.tab li:nth-of-type(1) a { background: #00629C;}
#infoDetail ul.tab li:nth-of-type(2) a { background: #59BB8D;}
#infoDetail ul.tab li:nth-of-type(3) a { background: #EC848A;}
#infoDetail #medical1,
#infoDetail #medical2,
#infoDetail #medical3 {
}
#infoDetail #medical1 h3.tSet { border-color: #00629C;}
#infoDetail #medical2 h3.tSet { border-color: #59BB8D;}
#infoDetail #medical3 h3.tSet { border-color: #EC848A;}
#infoDetail article {
	margin: 30px;
}
#infoDetail article:nth-of-type(odd) .block {
	flex-direction: row-reverse;
}
#infoDetail .block {
	padding: 20px 15px;
	display: flex;
	align-items: flex-start;
	gap: 25px;
}
#infoDetail .block .img {
	max-width: 210px;
  flex-shrink: 0;
	position: relative;
}
#infoDetail .block .img img {
	border-radius: 15px;
}
#infoDetail .block .img::after {
	content: '';
	width: 40px;
	height: 40px;
	background: #ccc;
	border-radius: 100%;
	position: absolute;
}
#infoDetail #medical1 .block .img::after { background: #00629C; top: -20px; right: -20px;}
#infoDetail #medical2 .block .img::after { background: #59BB8D; bottom: -15px; left: -20px;}
#infoDetail #medical3 .block .img::after { background: #EC848A; bottom: -20px; right: 15px;}

#infoDetail .block .txt {
	font-size: 94%;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 0;
}





@media screen and (max-width: 480px) {
	
	#fv {
		margin: 10px 0 0 18px;
	}
	#fv img {
		border-radius: 20px 0 0 20px;
	}
	#fv::before {
		width: 60px;
    height: 60px;
    top: 60px;
    left: -48px;
	}
	
	
	#medicalInformation {
		margin: 40px 0;
	}
	#medicalInformation .opening {
		padding: 20px 15px;
		margin: 20px 0;
		border-radius: 10px;
	}
	#medicalInformation .opening ul.note {
		margin: 10px 0 0;
	}
	
	
	#infoDetail {
		margin: 40px 0;
	}
	#infoDetail .lead .discription {
		margin: 30px 5px;
		text-align: justify;
	}
	#infoDetail ul.tab {
		gap: 4px;
		margin: 0 0 30px;
	}
	#infoDetail ul.tab li {
		width: auto;
	}
	#infoDetail ul.tab li a {
		font-size: 90%;
		padding: 7px 15px;
		border-radius: 5px 5px 0 0;
	}
	#infoDetail article {
		margin: 0 0 20px;
	}
	#infoDetail .block {
		flex-direction: column !important;
		gap: 15px;
		padding: 20px 10px;
	}
	#infoDetail .block .img {
		max-width: unset;
	}
	#infoDetail .block .img img {
		border-radius: 10px;
		aspect-ratio: 7/5;
		object-fit: cover;
		width: 100%;
	}
	#infoDetail .block .txt {
		font-size: 100%;
	}
	#infoDetail #medical2 .block .img::after {
		bottom: 30px;
		left: -20px;
	}
	#infoDetail #medical3 .block .img::after {
		bottom: 20px;
		right: -20px;
	}
	
	
	
	
	
}


