
/*===============================================

メインビジュアル

================================================*/
#mainvisual{
	background-color: #fff;
	height: calc(46.88vw + 12rem);
	margin-left: auto;
	margin-right: auto;
	max-height: 1000px;
	max-width: 1920px;
	position: relative;
	padding: 4rem clamp(3rem,3.65vw,7rem) clamp(4rem,4.17vw,8rem);
}

#mainvisual .img{
	margin-left: auto;
	margin-right: 0;
	width: 92.71%;
}

#mainvisual .img img{
	border-radius: 20px;
}

#mainvisual .img_box{
	max-width: 350px;
	position: absolute;
	top: 50%;
	left: 7rem;
	transform: translateY(-50%);
	width: 18.23%;
	z-index: 1;
}

#mainvisual .img_box img{
	border-radius: 20px;
	margin-top: 4rem;
	margin-bottom: 4rem;
}

#mainvisual .text_box{
	color: var(--c-main);
	max-width: 840px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	z-index: 1;
	width: 48.23%;
}

#mainvisual .text_box h1{
	font-size: clamp(3rem,2.6vw,5rem);
	font-weight: 500;
	line-height: 1.6em;
	margin-bottom: clamp(3rem,2.6vw,5rem);
}

#mainvisual .text_box > p{
	font-size: 2rem;
	margin-bottom: clamp(3rem,3.13vw,6rem);
}

#mainvisual .text_box .award{
	display: flex;
	justify-content: space-between;
}

#mainvisual .text_box .award .item{
	align-items: center;
	aspect-ratio:1/1;
	background-image: url("../img/common/img_laurel.svg");
	background-size: contain;
	background-position: center;
	display: flex;
	flex-flow: column;
	font-size: clamp(1px,0.94vw,1.8rem);
	font-weight: 700;
	justify-content: center;
	padding-bottom: 3%;
	width: 32%;
}

#mainvisual .text_box .award .item .gold{
	color: var(--c-accent-02);
	font-size: clamp(1px,1.3vw,2.5rem);
	margin-bottom: clamp(1px,1.3vw,2.5rem);
}

#mainvisual .text_box .award .item.clinic,
#mainvisual .text_box .award .item.clinic .gold{
	font-size: clamp(1px,1.04vw,2rem);
}

#mainvisual .text_box .award .item.clinic .gold,
#mainvisual .text_box .award .item.asia .gold{
	margin-bottom: 1rem;
}

#mainvisual .text_box .award .item.clinic span{
	font-size: 120%;
}

#mainvisual .text_box .award .item.result span{
	font-size: 250%;
}

#mainvisual .text_box .award .item.asia span{
	font-size: 140%;
}

#mainvisual .text_box .btn_box .link_btn{
	margin-top: clamp(3rem,3.13vw,6rem);
	width: 49%;
}

#mainvisual .text_box .btn_box .link_btn.icon a{
	font-size: clamp(1px,1.04vw,2rem);
}

#mainvisual .text_box .btn_box .link_btn a::before{
	height: clamp(3rem,2.6vw,5rem);
	margin-right: clamp(1px,0.52vw,1.5rem);
	width: clamp(3rem,2.6vw,5rem);
}


/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#mainvisual{
		height: auto;
		padding-top: 2rem;
		padding-bottom: 4.5rem;
	}
	
	#mainvisual::before{
		background-color: var(--c-bg-01);
		border-radius: 10px;
		content: "";
		height: 90%;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 3rem);
	}
	
	#mainvisual .img_box{
		display: flex;
		justify-content: space-between;
		max-width: 100%;
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		z-index: 2;
	}
	
	#mainvisual .img_box img{
		margin-top: 0;
		margin-bottom: 2rem;
		width: 48%;
	}
	
	#mainvisual .text_box{
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		z-index: 2;
	}
	
	#mainvisual .text_box h1{
		font-size: clamp(2.3rem,5.22vw,4rem);
		margin-bottom: 2.5rem;
	}
	
	#mainvisual .text_box > p{
		font-size: clamp(1.4rem,2.61vw,2rem);
		margin-bottom: 2rem;
	}
	
	#mainvisual .text_box .award{
		flex-wrap: wrap;
		justify-content: center;
	}
	
	#mainvisual .text_box .award .item{
		font-size: 1.4rem;
		margin-left: 2%;
		margin-right: 2%;
		max-width: 20rem;
		width: 46%;
	}
	
	#mainvisual .text_box .award .item.clinic{
		font-size: 1.2rem;
	}
	
	#mainvisual .text_box .award .item .gold,
	#mainvisual .text_box .award .item.clinic .gold{
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
	
	#mainvisual .text_box .award .item.result span {
		font-size: 190%;
	}
	
	#mainvisual .text_box .award .item.asia span {
		font-size: 120%;
	}
	
	#mainvisual .img{
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 3rem);
		z-index: 1;
	}
	
	#mainvisual .img img{
		border-radius: 0 0 10px 10px;
		width: 100%;
	}
	
	.btn_box.sp{
		background-color: #fff;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.btn_box.sp .link_btn{
		margin-bottom: 1.5rem;
	}
	
}


/*===============================================

共通パーツ

================================================*/
hgroup{
	margin-bottom: clamp(2.5rem,1.56vw,5rem);
	text-align: center;
}

hgroup h2{
	color: var(--c-main);
	font-size: clamp(2.5rem,2.5vw,4rem);
	font-weight: 500;
}

hgroup .english{
	color: var(--c-accent-02);
	font-size: clamp(1.5rem,1.25vw,2rem);
	margin-top: clamp(0.5rem,0.63vw,1rem);
}

hgroup.left{
	text-align: left;
}

hgroup.left h2{
	display: inline-block;
	margin-right: 2.3rem;
}

hgroup.left .english{
	display: inline-block;
}

h3{
	color: var(--c-main);
	font-size: clamp(2rem,2vw,3.2rem);
	font-weight: 500;
}

h4{
	color: var(--c-main);
	font-size: clamp(1.8rem,1.56vw,2.5rem);
	font-weight: 400;
}

section{
	padding-top: 10rem;
	padding-bottom: 10rem;
	position: relative;
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	section{
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	
	hgroup.left h2,
	hgroup.left .english{
		display: block;
	}
}


/*===============================================

main

================================================*/
/*------------------------------
こんなお悩みありませんか？
------------------------------*/
 #worries .flex_box{
	gap: 3rem 0;
}

 #worries .item{
	background-color: #fff;
	box-shadow: 0 3px 5px rgba(0,0,0,0.1);
	border-radius: 10px;
	display: flex;
	flex-flow: column;
	width: 32%;
}

 #worries .item img{
	border-radius: 10px 10px 0 0;
}

 #worries .item .text{
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  flex-flow: wrap;
  justify-content: center;
	padding: 3rem 1.5rem;
	text-align: center;
  flex-grow: 1;
}

 #worries p.center{
	font-size: 2.5rem;
	letter-spacing: 0.05em;
	line-height: 2em;
	margin-top: 8rem;
}

 #worries p.center span{
	color: var(--c-main);
	padding-bottom: 3px;
	position: relative;
}

 #worries p.center span::before{
	background-color: var(--c-accent-02);
	content: "";
	height: 2px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#worries{
		padding-bottom: 2rem;
	}
	
	#worries .flex_box{
		gap: 1.5rem;
	}
	
	#worries .item{
		display: flex;
		flex-flow: row;
		width: 100%;
	}
	
	#worries .item img{
		border-radius: 10px 0 0 10px;
		flex-shrink: 0;
		min-height: 12rem;
		height: 100%;
		object-fit: cover;
		width: 12rem;
	}
	
	#worries .item .text{
		justify-content: flex-start;
		padding: 1.5rem;
		text-align: left;
		width: calc(100% - 12rem);
	}
	
	#worries p.center{
		font-size: 1.6rem;
		margin-top: 4rem;
	}
}

/*------------------------------
当院が選ばれる理由
------------------------------*/
 #reason{
	background-image: url("../img/top/bg_reason.webp");
	background-size: cover;
	background-position: center;
}

 #reason::before{
	background-image: url("../img/top/figure_bottom.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	content: "";
	height: 12rem;
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
}

 #reason hgroup{
	padding-top: 7rem;
}

 #reason hgroup h2,
 #reason hgroup .english{
	color: #fff;
}


 #reason .reason_parts .item{
	border-right: 1px solid #ccc;
	border-radius: 0;
	width: 20%;
}

 #reason .reason_parts .item:first-child{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

 #reason .reason_parts .item:last-child{
	border-right: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

 #reason .reason_parts h3{
	font-size: clamp(1.7rem,1.2vw,2.3rem);
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#reason hgroup {
		padding-top: 0;
	}
	
	#reason .reason_parts .item{
		border-radius: 10px;
		width: 100%;
	}
	
	#reason .reason_parts .item:first-child{
		border-radius: 10px;
	}
}

/*------------------------------
当院が選ばれる理由
------------------------------*/
 #discseel{
	counter-reset: discseel_flow;
	padding-top: 20rem;
}

 #discseel::before{
	background-image: url("../img/top/txt_dp.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 20rem;
	max-width: 162rem;
	position: absolute;
	top: 2rem;
	left:50%;
	transform: translateX(-50%);
	width: 80%;
}

 #discseel .inner > .text{
	font-weight: 500;
	font-size: 1.8rem;
	margin-bottom: 6rem;
}

 #discseel .link_box{
	text-align: center;
}

 #discseel .link_box .link_btn a{
	margin: 0 10px;
	max-width: 320px;
}

 #discseel .link_box .link_btn a::before{
	content: "";
	display: inline-block;
	height: 5rem;
	vertical-align: middle;
	margin-right: 1.5rem;
	width: 5rem;
}

 #discseel .link_box .link_btn a.waist::before{
	background-image: url("../img/top/icon_lower-back-pain.svg");
}
 #discseel .link_box .link_btn a.waist:hover::before{
	background-image: url("../img/top/icon_lower-back-pain-white.svg");
}

 #discseel .link_box .link_btn a.neck::before{
	background-image: url("../img/top/icon_neck-pain.svg");
}
 #discseel .link_box .link_btn a.neck:hover::before{
	background-image: url("../img/top/icon_neck-pain-white.svg");
}


 #discseel .discseel_flow h3{
	border-top: 1px solid var(--c-main);
	border-bottom: 1px solid var(--c-main);
	margin-top: 8rem;
	margin-bottom: 5rem;
}

 #discseel .discseel_flow h3::before{
	content: counter(discseel_flow, decimal-leading-zero);
	counter-increment: discseel_flow;
	color: var(--c-accent-02);
	font-family: var(--cardo);
	font-size: clamp(4rem,5vw,8rem);
	font-style: italic;
	margin-right: clamp(1.5rem,1.88vw,3rem);
	vertical-align: middle;
}

 #discseel .discseel_flow.flow_01 .flex_box{
	align-items: center;
}

 #discseel .discseel_flow.flow_01 .img_box{
	width: 36%;
}

#discseel .discseel_flow.flow_01 .img_box img{
	border-radius: 10px;
}


 #discseel .discseel_flow.flow_01 .text_box{
	width: 60%;
}

 #discseel .discseel_flow.flow_01 .text_box ol{
	counter-reset: ol_list;
	margin-top: 2rem;
}

 #discseel .discseel_flow.flow_01 .text_box ol li{
	background-image : linear-gradient(to right, var(--c-main) 2px, transparent 2px);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 4px 1px;
	font-size: clamp(1.6rem,1.25vw,4rem);
	padding-top: 2.5rem;
	padding-left: clamp(4rem,4.38vw,7rem);
	padding-bottom: 2.5rem;
}

 #discseel .discseel_flow.flow_01 .text_box ol li::before{
	color: var(--c-main);
	content: counter(ol_list);
	counter-increment: ol_list;
	font-family: var(--english);
	font-size: clamp(4rem,3.75vw,6rem);
	position: absolute;
	top: 0.5rem;
	left: 0;
	vertical-align: middle;
}

#discseel .discseel_flow.flow_02 > p{
	font-size: 1.8rem;
}

 #discseel .discseel_flow.flow_02 .img_box{
	position: relative;
	width: 44.5%;
}

 #discseel .discseel_flow.flow_02 .img_box:first-child::before{
	background-image: url("../img/top/triangle_gr.png");
	background-size: contain;
	content: "";
	height: 7.4em;
	max-width: 6.5rem;
	position: absolute;
	top: 48%;
	left: calc(100% + 7.5%);
	transform: translateY(-50%);
	width: 10%;	
}

 #discseel .discseel_flow.flow_02 .img_box img{
	border-radius: 10px;
}

 #discseel .discseel_flow.flow_02 .img_box p{
	font-size: clamp(1.8rem,1.56vw,2.5rem);
	margin-top: 3rem;
	text-align: center;
}

 #discseel .discseel_flow.flow_03 table{
	border: 1px solid #ccc;
}

 #discseel .discseel_flow.flow_03 table th{
	background-color: var(--c-bg-02);
	border-bottom: 1px solid var(--c-accent-02);
	color: #333;
	font-size: clamp(1.6rem,1.25vw,2rem);
	height: 80px;
	width: 20%;
}

 #discseel .discseel_flow.flow_03 table td{
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 1.8rem;
	height: 80px;
	text-align: center;
	width: 20%;
}

 #discseel .discseel_flow.flow_03 table thead tr th:not(:first-child){
	background-color: #F0F0F0;
	border-left: 1px solid #ccc;
	border-bottom: none;
}

 #discseel .discseel_flow.flow_03 table tbody tr:last-child th{
	border-bottom: 0;
}

 #discseel .discseel_flow.flow_03 table .circle,
 #discseel .discseel_flow.flow_03 table .cross{
	font-size: clamp(3rem,2.5vw,4rem);
}

 #discseel .discseel_flow.flow_03 table .target{
	border-left: 4px solid var(--c-accent-02) !important;
	border-right: 4px solid var(--c-accent-02) !important;
	font-weight: 700;
}

 #discseel .discseel_flow.flow_03 table thead .target{
	background-color: var(--c-accent-02) !important;
	border-top: 4px solid var(--c-accent-02);
	color: #fff !important;
}

 #discseel .discseel_flow.flow_03 table tbody tr:last-child .target{
	border-bottom: 4px solid var(--c-accent-02) ;
}

#discseel .discseel_flow.flow_04 .faq_box{
	margin-bottom: clamp(3rem,5.93vw,7rem);
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#discseel{
		padding-top: 8rem;
	}
	
	#discseel::before{
		height: 8rem;
		width: 100%;
	}
	
	#discseel .inner > .text{
		font-size: 1.6rem;
		margin-bottom: 4rem;
	}
	
	#discseel .link_box .link_btn a{
		margin-left: 0;
		margin-bottom: 2rem;
		padding-top: 0.9rem;
		padding-bottom: 0.9rem;
	}
	
	#discseel .discseel_flow h3{
		margin-top: 5rem;
		margin-bottom: 2rem;
	}
	
	#discseel .discseel_flow.flow_01 .img_box{
		margin-bottom: 4rem;
		width: 100%;
	}

	#discseel .discseel_flow.flow_01 .text_box{
		width: 100%
	}
	
	#discseel .discseel_flow.flow_01 .text_box ol{
		margin-top: 0;
	}
	
	#discseel .discseel_flow.flow_01 .text_box ol li{
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	#discseel .discseel_flow.flow_02 .img_box{
		display: flex;
        flex-flow: column-reverse;
		width: 100%;
	}
	
	#discseel .discseel_flow.flow_02 .img_box:last-of-type{
		margin-top: 9rem;
	}
	
	#discseel .discseel_flow.flow_02 .img_box p{
		margin-top: 0;
		margin-bottom: 2rem;
	}
	
	#discseel .discseel_flow.flow_02 .img_box:first-child::before{
		background-position: center;
        height: 10rem;
		margin-left: -3rem;
		top: calc(100% + 4.5rem);
		left: 50%;
		transform: translateY(-50%) rotate(90deg);
		width: 6.2rem;
	}
	
	#discseel .discseel_flow.flow_03 table thead .target{
		border-top: none !important;
	}
	
	#discseel .discseel_flow.flow_03 table tbody tr:last-child .target{
		border-bottom: none;
	}
}


/*------------------------------
症例紹介
------------------------------*/
#case{
	padding-bottom: 0;
}

#case .bg_03{
	padding-bottom: 10rem;
}

#case .bg_img{
	height: 50rem;
	width: 90%;
}

#case .bg_img img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

#case .case_wrap{
	background-color: #fff;
	margin-top: -12rem;
	margin-left: auto;
	margin-right: 0;
	padding-bottom: 10rem;
	position: relative;
	z-index: 2;
	width: 90%;
}

#case .slick-track,
#tips .slick-track{
  display: flex;
}

#case .slick-slide,
#tips .slick-slide{
  height: auto !important;
}

#case .slick-slide > div,
#tips .slick-slide > div{
	height: calc(100% - 1.5rem);
}

 #case .inner{
	margin-left: 0;
	max-width: calc(1440px + 12rem);
	padding-top: 12rem;
	padding-left: clamp(30px,6.25vw,12rem);
	padding-right: 10rem;
}

#case .case_wrap .top,
#tips .top,
.content_container .top{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#case .post_case,
#tips .post_tips{
	display: block;
}

#case .post_case .slick-slide,
#tips .post_tips .slick-slide{
	margin-left: 1.5rem;
	margin-right: 1.5rem;
}

#case .post_case .item,
#tips .post_tips .item{
	margin-bottom: 1.5rem;
}

#case .post_case .slick-arrow,
#tips .post_tips .slick-arrow{
	background-color: #fff;
	border: 1px solid var(--c-main);
	border-radius: 999px;
	font-size: 0;
	height: 5rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 5rem;
}

#case .post_case .slick-arrow::before,
#tips .post_tips .slick-arrow::before{
	background-image: url("../img/common/arrow-blue.svg");
	background-size: contain;
	content: "";
	height: 0.8rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.6rem;
}

#case .post_case .slick-arrow.slick-prev,
#tips .post_tips .slick-arrow.slick-prev{
	left: -6rem;
}
#case .post_case .slick-arrow.slick-prev::before,
#tips .post_tips .slick-arrow.slick-prev::before{
	left: 1rem;
	transform: translateY(-50%) scale(-1, 1);
}

#case .post_case .slick-arrow.slick-next,
#tips .post_tips .slick-arrow.slick-next{
	right: -6rem;
}
#case .post_case .slick-arrow.slick-next::before,
#tips .post_tips .slick-arrow.slick-next::before{
	right: 1rem;
}

#case .post_case .slick-dots,
#tips .post_tips .slick-dots{
	display: flex;
	margin-top: 6rem;
}

#case .post_case .slick-dots li{
	width: 25%;
}

#tips .post_tips .slick-dots li{
	width: 20%;
}

#case .post_case .slick-dots li button,
#tips .post_tips .slick-dots li button{
	background-color: #ccc;
	border: none;
	font-size: 0;
	height: 2px;
	width: 100%;
}

#case .post_case .slick-dots li.slick-active button,
#tips .post_tips .slick-dots li.slick-active button{
	background-color: var(--c-main);
}

/*-- ↓ under 1921px ↓ -----------------------------*/
@media screen and (min-width:1921px){
	#case .inner{
		margin-left: auto;
	}
}

/*-- ↓ under 1600px ↓ -----------------------------*/
@media screen and (max-width:1600px){
	#tips .post_tips{
		margin-left: auto;
		margin-right: auto;
		width: calc(100% - 20rem);
	}
}


/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#case{
		padding-top: 0;
	}
	
	#case .bg_img{
		height: 20rem;
		width: 95%;
	}
	
	#case .bg_img img{
		border-radius: 0 10px 10px 0;
	}
	
	#case .bg_03{
		padding-bottom: 5rem;
	}
	
	#case .case_wrap{
		border-radius: 10px 0 0 10px;
		margin-top: -9.5rem;
		padding-bottom: 5rem;
		width: 95%;
	}
	
	#case .inner{
		margin-right: 0;
		max-width: 100%;
		padding-top: 4rem;
		padding-left: 1.5rem;
		padding-right: 0;
		width: 100%;
	}
	
	#case .case_wrap .top{
		margin-right: 1.5rem;
		margin-bottom: 2.5rem;
	}
	
	#case .case_wrap .top hgroup{
		margin-bottom: 0;
	}
	
	#tips .post_tips{
		margin-right: 0;
		width: calc(100% + 1.5rem);
	}
	
	#case .post_case .slick-list,
	#tips .post_tips .slick-list{
		padding: 0 15% 0 0 !important;
	}
	
	#case .post_case .slick-track{
    	display: flex;
	}
	
	#case .post_case .slick-dots li,
	#tips .post_tips .slick-dots li{
		width: 33.3%;
	}
	
	#case .post_case .slick-dots,
	#tips .post_tips .slick-dots{
		margin-top: 2rem;
		margin-left: 5.5rem;
		margin-right: 7rem;
	}
	
	
	#case .post_case .slick-arrow,
	#tips .post_tips .slick-arrow{
		height: 4rem;
		position: absolute;
		top: auto;
		bottom: -3.5rem;
		width: 4rem;
	}
	
	#case .post_case .slick-arrow::before,
	#tips .post_tips .slick-arrow::before{
		background-image: url("../img/common/arrow-blue_short.svg");
		background-size: contain;
		width: 1.6rem;
	}
	
	#case .post_case .slick-arrow.slick-prev,
	#tips .post_tips .slick-arrow.slick-prev{
		left: 0;
	}
	
	#case .post_case .slick-arrow.slick-next,
	#tips .post_tips .slick-arrow.slick-next{
		right: 1.5rem;
	}
	
	#case .post_case .slick-arrow.slick-next::before,
	#tips .post_tips .slick-arrow.slick-next::before{
		right: 1.1rem;
	}
	
	
}

/*------------------------------
診療案内
------------------------------*/
#flow{
	z-index: 2;
}

#flow .bg_img{
	height: 50rem;
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	z-index: -1;
}

#flow .bg_img img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

#flow .inner > .text{
	font-weight: 500;
	font-size: 1.8rem;
}

#flow .inner > .flex_box{
	margin-top: 10rem;
}

#flow .flex_box .item{
	background-color: #fff;
	border: 1px solid;
	border-radius: 10px;
	position: relative;
	padding: clamp(5.5rem,6.25vw,10rem) clamp(2rem,2.5vw,4rem) clamp(3.5rem,2.81vw,4.5rem);
	width: 32%;
}

#flow .flex_box .item::before{
	border-radius: 10px 10px 0 0;
	content: "";
	height: 20rem;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#flow .flex_box .item .icon_box{
	align-items: center;
	background-color: #fff;
	border-radius: 999px;
	border: 3px solid;
	display: flex;
	justify-content: center;
	height: clamp(7rem,7.5vw,12rem);
	position: absolute;
	top: -6rem;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(7rem,7.5vw,12rem);
	z-index: 2;
}

#flow .flex_box .item .icon_box img{
	height: clamp(3.3rem,3.13vw,5rem);
	width: clamp(3.3rem,3.13vw,5rem);
}

#flow .flex_box .item h3{
	color: #fff;
	margin-bottom: 3.6rem;
	position: relative;
	text-align: center;
	z-index: 2;
}

#flow .flex_box .item .img_box{
	margin-bottom: 3rem;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

#flow .flex_box .item .img_box img{
	border: 10px;
}

#flow .flex_box .item h4{
	margin-bottom: 2rem;
}

#flow .flex_box .item ul{
	margin-bottom: 3rem;
}
#flow .flex_box .item ul li{
	border-radius: 10px;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 2%;
	padding:0.8rem 0.5rem;
	width: 49%;
}
#flow .flex_box .item ul li:nth-child(3){
	width: 100%;
}


#flow .flex_box .item.image::before,
#flow .flex_box .item.image .link_btn a:hover{
	background-color: #7D8B73;
}
#flow .flex_box .item.image,
#flow .flex_box .item.image .icon_box,
#flow .flex_box .item.image .link_btn a{
	border-color: #7D8B73;
}
#flow .flex_box .item.image h4,
#flow .flex_box .item.image .link_btn a{
	color: #7D8B73;
}
#flow .flex_box .item ul li{
	background-color: #E0E8DA;
}
#flow .flex_box .item.image .link_btn{
	margin-top: 4rem;
}
#flow .flex_box .item.image .link_btn a::before{
	background-image: url("../img/common/icon_image-green.svg");
}
#flow .flex_box .item.image .link_btn a:hover::before{
	background-image: url("../img/common/icon_image-white.svg");
}
#flow .flex_box .item.image .link_btn a:hover{
	color: #fff;
}


#flow .flex_box .item.day01::before{
	background-color: var(--c-accent-02);
}
#flow .flex_box .item.day01,
#flow .flex_box .item.day01 .icon_box{
	border-color: var(--c-accent-02);
}
#flow .flex_box .item.day01 ul li{
	background-color: var(--c-bg-02);
}
#flow .flex_box .item.day01 h4{
	color: var(--c-accent-02);
}
#flow .flex_box .item.day01 ol{
	counter-reset: day01;
}
#flow .flex_box .item.day01 ol li{
	border: 1px solid var(--c-accent-02);
	border-radius: 5px;
	font-size: 1.8rem;
	margin-bottom: 10px;
	overflow: hidden;
	padding: 1rem;
	padding-left: 6.5rem;
}
#flow .flex_box .item.day01 ol li::before{
	background-color: var(--c-accent-02);
	color: #fff;
	counter-increment: day01;
	content: counter(day01);
	font-size: 2.5rem;
	font-weight: 700;
	height: 100%;
	padding-top: 4px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 5rem;
}


#flow .flex_box .item.consultation::before{
	background-color: var(--c-main);
}
#flow .flex_box .item.consultation,
#flow .flex_box .item.consultation .icon_box{
	border-color: var(--c-main);
}
#flow .flex_box .item.consultation h4{
	color: var(--c-main);
}
#flow .flex_box .item.consultation .link_btn a:not(:last-child){
	margin-bottom: 2rem;
}
#flow .flex_box .item.consultation .link_btn a::before{
	background-image: url("../img/common/icon_pin.svg");
}
#flow .flex_box .item.consultation .link_btn a:hover::before{
	background-image: url("../img/common/icon_pin-white.svg");
}


/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	#flow{
		padding-top: 3rem;
	}
	
	#flow .bg_img{
		height: 20rem;
		margin-left: auto;
		margin-right: 0;
		width: 95%;
	}
	
	#flow .bg_img img{
		border-radius: 10px 0 0 10px;
	}
	
	#flow .inner > .text{
		font-size: 1.6rem;
	}
	
	#flow .flex_box .item{
		margin-top: 7rem;
		width: 100%;
	}
	
	#flow .flex_box .item::before{
		border-radius: 10px;
	}
	#flow .flex_box .item.is-open::before{
		border-radius: 10px 10px 0 0;
	}
	
	#flow .flex_box .item .icon_box{
		top: -4rem;
	}
	
	#flow .detail_link{
		border: none;
		margin-left: auto;
		margin-right: auto;
		padding: 1.5rem;
		z-index: 1;
	}
	
	#flow .detail_link:hover{
		background-color: #fff;
		opacity: 0.7;
	}
	
	#flow .flex_box .item.image .detail_link{
		color: #7D8B73;
		margin-top: 0;
	}
	#flow .flex_box .item.image .detail_link::before,
	#flow .flex_box .item.image .detail_link::after{
		background-color: #7D8B73;
	}
	
	#flow .flex_box .item.day01 .detail_link{
		color: var(--c-accent-02);
	}
	#flow .flex_box .item.day01 .detail_link::before,
	#flow .flex_box .item.day01 .detail_link::after{
		background-color: var(--c-accent-02);
	}
	
	#flow .flex_box .item.consultation .detail_link{
		color: var(--c-main);
	}
	
	#flow .detail_content,
	#flow .detail_link.is-open{
		display: none;
	}
	
	#flow .flex_box .item h3{
		margin-bottom: 2rem;
	}
	
	#flow .inner > .flex_box{
		margin-top: 1px;
	}
	
}

/*------------------------------
診療案内
------------------------------*/
#info{
	padding-bottom: 0;
}

.access_item img{
	background-size: cover;
	height: 100%;
	width: 100%;
}

.access_item .slick-arrow{
	background-color: #fff;
	border: 1px solid var(--c-main);
	font-size: 0;
	height: 10rem;
	position: absolute;
	bottom: 4px;
	width: 10rem;
	z-index: 1;
}

.access_item .slick-arrow:hover{
	background-color: var(--c-bg-01);
}

.access_item .slick-arrow:active{
	bottom: 1px;
}

.access_item .slick-arrow::before{
	background-image: url(../img/common/arrow-blue.svg);
	background-size: cover;
    content: "";
    height: 1.2rem;
    position: absolute;
    top: 50%;
	left: 2.5rem;
    transform: translateY(-50%);
    width: 4.5rem;
}

.access_item .slick-arrow.slick-prev{
	left: 0;
}
.access_item .slick-arrow.slick-prev::before {
	transform: translateY(-50%) scale(-1, 1);
}

.access_item .slick-arrow.slick-next{
	left: 10rem;
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	
	.access_item .slick-arrow{
		height: 4rem;
		width: 4rem;
	}
	
	.access_item .slick-arrow::before{
		background-image: url("../img/common/arrow-blue_short.svg");
		background-size: contain;
		height: 0.8rem;
		left: 1.2rem;
		width: 1.6rem;
	}
	
	.access_item .slick-arrow.slick-next{
		left: auto;
		right: 0;
	}
	

}

/*------------------------------
お知らせタブ
------------------------------*/
.tab_group .tab.active{
	background-color: #fff;
}

.content_container{
	background-color: #fff;
	padding: 7rem 6rem;
}

.content_container .content {
	display: none;
	padding: 20px 0;
}

.content_container .top{
	border-bottom: 1px solid var(--c-main);
	padding-bottom: 5rem;
}

.content_container .top hgroup{
	margin-bottom: 0;
}

/*-- ↓ under 767px ↓ -----------------------------*/
@media screen and (max-width:767.9px){
	.content_container{
		padding: 3.5rem 1.5rem;
	}
	
	.content_container .top{
		padding-bottom: 3.5rem;
	}
}


