@charset "utf-8";


main h2{
	width:100%;
	height: auto;
	display: block;
	line-height: normal;
	font-size:2.5rem;
	color:#387051;
	font-weight: 700;
	margin-bottom:50px;
}

main section,
main section:first-child{
	width:98%;
	margin:50px auto 0 auto;
	background-color: #fff;
}

main section .item{
	margin-top:40px;
}

/*main .content_inner{
	padding:50px 0;
}*/


main h3{
	width:100%;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*align-items: center;*/
	line-height: normal;
	/*background-color: #F4F2EB;*/
	font-size:1.7rem;
	color:#387051;
	font-weight: 700;
	text-align: left;
}

main h3 span{
	display: flex;
	align-items: center;
}

main h3 span::before{
	content:'';
	width:5px;
	height: calc(100% - 10px);
	display: block;
	background-color: #A6DA43;
	margin-right:15px;
	border-radius:100px;
}

main h3 span::after{
	content: '';
	flex:1;
	height: 2px;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
	margin-left:10px;
}

main section:first-child{
	padding-top:0;
}

/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	main h2{
		font-size:2rem!important;
		margin-bottom:0;
		height: auto;
	}
	
	main h3{
		height: 70px;
		font-size:1.5rem;
	}
	
	main h3 span::before{
		margin-right:10px;
	}
	
	main section,
	main section:first-child{
		width:95%;
		margin:30px auto 0 auto;
		background-color: #fff;
	}

}

/*-----------------------


		バナー


-----------------------*/

main section .bana{
	width:min(95%,220px);
	height: 60px;
	padding:0 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*align-items: center;*/
	font-size: 18px;
	color:#fff;
	font-weight: 800;
	background: #74B43A;
	background: -webkit-linear-gradient(bottom, #67A233 100%, #74B43A 0%);
	background: -o-linear-gradient(bottom, #67A233 100%, #74B43A 0%);
	background: linear-gradient(to top, #67A233 100%, #74B43A 0%);
	border-radius: 5px;
	position: relative;
	text-decoration: none;
}


main section .bana p{
	width:100%;
	display: block;
	position: relative;
	border-bottom:1px solid #fff;
	padding-bottom:3px;
	line-height: 1;
}


main section .bana p::after{
	content: '';
	width:20px;
	height: 20px;
	display: block;
	/*background-color: #fff;*/
	border-right:2px solid #fff;
	 transform: rotate(-45deg);
	position: absolute;
	bottom:-10px;
	/*right:-10px;*/
	right:4px;
}



/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (min-width: 431px){
	main section .bana{
		 -webkit-transition: all .3s;
	  transition: all .3s;
	}

	main section .bana:hover{
			opacity: 0.8;
	}
}

@media screen and (max-width: 431px){
	main section .bana{
		width:90%;
	}
}

/*---------------------------


	タブ

---------------------------*/

#tab{
	width:min(100%,1200px);
	margin:30px auto 0 auto;
	position: relative;
	display: flex;
	padding:0 10px;
	gap:10px;
}

#tab::after{
	content: '';
	width:100%;
	height: 10px;
	display: block;
	position: absolute;
	bottom:1px;
	left:0;
	box-shadow: 1px -23px 5px -22px rgba(150,150,150,0.80) inset;
	z-index:2;
}
#tab li{
	width:180px;
	height: 50px;
	display: flex;
	align-items: center;
	background-color: #eeeeee;
	border-radius: 5px 5px 0 0;
	padding:0 5px;
	position: relative;
	z-index:1;
	box-shadow: 2px -2px 4px -1px  rgba(150,150,150,0.80);
	line-height: 1;
	padding-bottom:1px;
	font-size:1.15rem;
	cursor: pointer;
}

#tab li::before{
	font:var(--fa-font-solid);
	content: "\f0d7";
	color:#fff;
	width:14px;
	height: 14px;
	background-color: #73C05C;
	border-radius: 50%/50%;
	font-size:12px;
	line-height: 15px;
	text-align: center;
	margin-right:5px;
	font-weight: 700;
		
}

#tab li:hover{
	background-color: #F9F9F9;
}

#tab li.act{
	position: relative;
	z-index:3;
	box-shadow: 2px -2px 4px -1px  rgba(150,150,150,0.80);
	border-left:1px solid #E8E8E8;
	background-color: #fff;
	cursor: text;
}

#tab li.act::before{
	content: '';
	background-color: #D2EB9C;
}



/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	#tab li{
		width:auto;
		flex:1;
	}
}

/*---------------------------


	初診の方


---------------------------*/


/*---------------------------

	受付について

---------------------------*/


#about_first .content_inner{
	display: flex;
	align-items: center;
}

#about_first .photo{
	width:min(100%,460px);
	line-height: 0;
}

#about_first .photo img{
	width:100%;
	height: auto;
	border-radius: 10px;
}

#about_first .text{
	flex:1;
	margin-left:30px;
}

#about_first .text ul{
	display: flex;
	flex-direction: column;
	gap:10px;
}
#about_first .text li{
	display: flex;
	align-items: flex-start;
}

#about_first .text li::before{
	content:"●";
	color:#97DF71;
	font-size:12px;
	line-height:1;
	display: inline-block;
	padding-top:9px;
	margin-right:3px;
}

#about_first_contact{
	width:100%;
	margin-top:30px;
	display: flex;
	/*align-items: center;*/
	gap:20px;
}

#about_first_contact_tel{
	line-height: 1;
	font-weight: 700;
}

#about_first_contact_tel p{
	text-align: 1rem;
	padding-top:10px;
}

#about_first_contact_tel .ico{
	background-color: #6BA736;
	border-radius: 5px;
	display: inline-flex;
	padding:3px 5px;
	color:#fff;
	margin-right:5px;
}

#about_first_contact_tel a[href^="tel:"]{
	font-size:2.5rem;
	color:#387051;
	text-decoration: none;
}

#about_first_contact_tel p.time{
	font-size:1rem;
}


/*--------------------------------------
	レスポンシブ
--------------------------------------*/
@media screen and (min-width: 431px){
	#about_first_contact .bana{
		height: auto;
		flex:1;
		width:auto;
	}
}

@media screen and (min-width: 0) and (max-width: 980px){
	#about_first .content_inner{
		flex-direction: column;
	}
	
	#about_first .text{
		margin-left:0;
		margin-top:30px;
	}
	
	#about_first_contact{
		justify-content: center;
	}
}

@media screen and (min-width: 0) and (max-width: 430px){
	#about_first_contact .bana{
		height: 60px;
	}
	#about_first_contact{
		flex-direction: column;
		justify-content: center;
		gap:10px;
	}
	
	#about_first_contact_tel a[href^="tel:"]{
		font-size:2rem;
	}
}


/*---------------------------

	初診時に必要な検査

---------------------------*/

#first_inspection{
	margin-bottom:30px;
}

#first_inspection_about{
	display: flex;
	flex-direction: column;
	gap:30px;
}

main section #first_inspection_about .bana{
	width:min(95%,300px);
	font-size:1.1rem
}

main section #first_inspection_about .bana span{
	display: inline-block;
	padding:2px 3px;
	border-radius: 3px;
	background-color: #FF0000;
	color:#fff;
	font-weight: 800;
	font-size:14px;
	margin-right:5px;
}
#first_inspection ul{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:20px;
	margin-top:50px;
}

#first_inspection li{
	width:calc(50% - 10px);
	display: flex;
	align-items: center;
	padding:10px 5px;
	border:1px solid #ddd;
	border-radius: 6px;
	font-size:1.05rem;
}

#first_inspection li .ico{
	width:90px;
	height: 90px;
	line-height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

#first_inspection li .ico img{
	width: auto;
	max-width:80%;
	height: auto;
	max-height: 90%;
}

#first_inspection li .text{
	flex:1;
	line-height: normal;
	font-size:1rem;
	margin-left:10px;
}

#first_inspection li p.name{
	font-size:1.3rem;
	color:#1A591D;
	font-weight: 700;
	margin-bottom:5px;
}

#first_inspection li.tokubetu p.name{
	color:#2D9630;
}

#first_inspection li p.name sup{
	font-size:0.85rem;
	color:rgba(236,15,56,1.00);
	font-weight:bold;
}

#first_inspection p.chu{
	font-weight:bold;
}
/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	main section #first_inspection_about .bana{
		width:90%;
		margin:0 auto;
	}
	
	#first_inspection li{
		width:100%;
		display: block;
	}
	
	#first_inspection li .ico{
		width:100%;
		height: auto;
		line-height: 0;
		display: block;
		text-align: center;
	}

	#first_inspection li .ico img{
		width: auto;
		max-width:70px;
		height: auto;
		max-height: 70px;
	}
	
	#first_inspection li .text{
		margin-left:0;
	}
	
	#first_inspection li p.name{
		text-align: center;
		margin-bottom:10px;
	}
	
	#first_inspection li p.name span{
		display: block;
	}
}

/*---------------------------


	再診の方


---------------------------*/
section#second{
	display: none;
}


/*---------------------------

	予約方法

---------------------------*/
#yoyakuhowto .chu{
	padding-left:1em;
	text-indent: -1em;
}

#yoyakuhowto ul{
	margin-top:30px;
	display: flex;
	gap:10px;
}

#yoyakuhowto li{
	flex:1;
	border:1px solid #ddd;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding:10px 5px;
	border-radius: 5px;
}

#yoyakuhowto li .ico {
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#yoyakuhowto li .ico img{
	width:auto;
	max-width:120px;
	height: auto;
	max-height: 90px;
	vertical-align: middle;
}

#yoyakuhowto li.tel .ico img{
	width:90px;
	height: auto;
}

#yoyakuhowto li.tel span{
	background-color:#6BA736;
	padding:2px 5px;
	border-radius: 5px;
	color:#fff;
	font-weight: 700;
	margin-right:5px;
	line-height: 1;
	display: inline-block;
}
#yoyakuhowto li.tel a{
	color:#272727;	
	font-size:1.5rem;
	text-decoration: none;
	font-weight: 700;
}

#yoyakuhowto li .text{
	flex:1;
	margin-top: 15px;
	line-height: 1.4;
	font-size:0.95rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#yoyakuhowto li .text p{
	color:#206C24;
	display: block;
	text-align: center;
	margin-bottom:5px;
	font-weight: 700;
	font-size:1.15rem;
}

#yoyakuhowto li .web{
	width:100%;
	background: #B10854;
	line-height: 30px;
	color:#fff;
	padding:0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size:1.2rem;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
}

#yoyakuhowto li .web::after{
	font: var(--fa-font-solid); 
	content:'\f0da\f0da\f0da';
}

/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	#yoyakuhowto ul{
		flex-direction: column;
	}
	
	#yoyakuhowto li{
		flex:none;
		width:100%;
	}
}
/*---------------------------

	待ち時間への対応について

---------------------------*/
#waiting ul{
	margin-top:30px;
	display: flex;
	gap:30px;
}

#waiting li{
	flex:1;
	border:1px solid #ddd;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding:15px 20px;
}

#waiting li .ico {
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#waiting li .ico img{
	width:auto;
	max-width:90px;
	height: auto;
	max-height: 80px;
	vertical-align: middle;
}

#waiting li dl{
	flex:1;
	width:100%;
	margin-top: 15px;
	font-size:0.95rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#waiting li dt{
	width:100%;
	flex:1;
	line-height: 1.4;
	background-color: #E3EECA;
	border-radius: 5px;
	padding:2px 10px;
	font-size: 1.2rem;
	font-weight: 700;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0 -1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom:15px;
}

#waiting li dd{
	font-size:1rem;
}


/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	#waiting ul{
		flex-direction: column;
	}
	
	#waiting li{
		flex:none;
		width:100%;
		padding:15px 5px;
		
	}
	
	#waiting li dt{
		min-height: 50px;
	}

}

/*---------------------------

	郵送

---------------------------*/
#mail .content_inner{
	display: flex;
	gap:50px;
	align-items: center;
}

#mail .ico{
	width:300px;
	line-height: 0;
}

#mail .ico img{
	width:100%;
	height: auto;
	border-radius: 5px;
}

#mail .text{
	flex:1;
}
#mail ul{
	margin-top:8px;
}

#mail li{
	padding-left:1em;
	text-indent: -1em;
	font-weight: 700;
}

/*--------------------------------------
	レスポンシブ
--------------------------------------*/

@media screen and (max-width: 430px){
	#mail .content_inner{
		flex-direction: column;
		align-items:stretch;
	}
	
	#mail .ico{
		width:100%;
		margin:0 auto 20px auto;
		order: 2;
	}
	
	#mail .text{
		flex:none;
		order:1;
	}
}