/*----- key visual -----*/
.secKv {
	margin-top: 10px;
	margin-bottom: 0;
}

.secKv h1 span {
	color: #3d3736;
}


.worry .secKv h1::before {
	display: none;
}

.bnrSlick {
	margin-bottom: 50px;
}

.bnrSlick_item {
	margin: 0 15px;
}

.bnrSlick_item img {
	max-width: 450px;
	transition:  opacity .4s ease;
}
.bnrSlick_item img:hover {
	opacity: 0.8;
}

.secKv .pageNav {
	max-width: 850px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	position: relative;
}

.pageNav__item {
	width: calc(100% / 4 - 10px);
	width: calc((100% - 30px) / 4);
	position: relative;
	background: var(--mycolor01);
	border-radius: 5px;
	padding: 10px 0 25px;
	color: #fff !important;
	font-size: 1.8rem;
	text-align: center;
	transition: all ease .4s;
}

.pageNav__item:hover {
	background: #e5cd79;
}

.pageNav__item::after {
	content: "";
	width: 10px;
	height: 10px;
	border: 0;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 60%;
	left: 50%;
	margin: auto;
}

@media screen and (max-width: 750px) {
.secKv {
	padding-bottom: 20px;
}
	.bnrSlick {
		margin-bottom: 40px;
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
	}
.bnrSlick_item {
	margin: 0;
}
	.bnrSlick_item img {
		max-width: 100vw;
	}

	.slick-dots {
		bottom: -32px;
	}
}

@media screen and (max-width: 600px) {
	.pageNav__item {
		width: calc(50% - 5px);
		font-size: 1.6rem;
	}
}

/*----- key visual end -----*/



/*----- section About -----*/
.secAbout h2 {
	padding-top: 40px;
}



/*----- section About end -----*/

/*----- section What -----*/


/*----- section What end -----*/

/*----- section Chart -----*/
.secChart__image {
	max-width: 750px;
	margin: 0 auto;
}

.secChart__image img {
	width: 100%;
}

/*----- section Chart end -----*/


/*----- section Treatment -----*/
.secTreatment__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.secTreatment__item {
	width: calc((100% - 60px) / 4);
	border: solid 1px var(--mycolor01);
	border-radius: 10px;
	background-color: #fff;
	padding: 25px 20px;
	padding-bottom: 55px;
	transition:  background-color 0.4s ease;
	position: relative;
}
.secTreatment__item:hover {
	background-color: #fffcf5;
}
.secTreatment__item a {
	display: block;
	height: 100%;
}
.secTreatment__image {
	margin-bottom: 20px;
	overflow: hidden;
}

.secTreatment__image img {
	width: 100%;
	transition: transform 0.4s ease;
}
.secTreatment__item:hover img {
	transform: scale(1.1);
}

.secTreatment__item h4 {
	font-size: 2.4rem;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}

.secTreatment__item p {
	font-size: 1.8rem;
	line-height: 1.3;
}

.chartTypes {
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 20px;
}

.chartType {
	position: relative;
	width: 35px;
	line-height: 35px;
	color: #fff;
	font-size: 2.4rem;
	text-align: center;
}

.chartType.chart--a {
	background: #56addf;
}

.chartType.chart--b {
	background: #ea821f;
}

.chartType.chart--c {
	background: #e888a8;
}

.chartType.chart--d {
	background: #76af6f;
}
.chartType.chart--e {
	background: #a176dc;
}
.chartType.chart--f {
	background: #4977c2;
}
.chartType.chart--g {
	background: #a17680;
}
.chartType.chart--h {
	background: #ea7e5f;
}

@media screen and (max-width: 600px) {
	.secTreatment__list {
		gap: 10px;
	}
	.secTreatment__item {
		width: calc((100% - 10px) / 2);
		padding: 15px 10px;
		padding-bottom: 35px;
	}
.secTreatment__image {
	margin-bottom: 10px;
}
	.secTreatment__item h4 {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}

	.secTreatment__item p {
		font-size: 1.2rem;
	}
		.chartTypes {
			gap: 5px;
			bottom: 10px;
		}
	.chartType {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 1.6rem;
	}
}


/*----- section Treatment end -----*/

/*----- section Flow -----*/

.secFlow__item {
	display: flex;
	align-items: center;
	border: solid 1px var(--mycolor01);
	margin-bottom: 80px;
	position: relative;
}

.secFlow__item::before {
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	border: 20px solid transparent;
	border-top: 16px solid var(--mycolor01);
}

.secFlow__item:last-of-type::before {
	display: none;
}

.secFlow____image {
	width: 35%;
	height: 100%;
}

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

.secFlow__item .detail {
	width: 65%;
	padding: 3% 5%;
}

.secFlow__item .detail h4 {
	position: relative;
	font-size: 3rem;
	padding-left: 50px;
	margin-bottom: 10px;
}

.secFlow__item .detail h4::before {
	font-size: 2.4rem;
	top: calc(50% - 0.8em);
}
.secFlow__item .detail p {
	margin-bottom: 0;
}

@media screen and (max-width: 600px) {
	.secFlow__item {
		flex-direction: column;
		gap: 10px;
		padding: 20px;
		margin-bottom: 45px;
	}
		.secFlow__steps .secFlow__item:last-of-type {
			margin-bottom: 0;
		}
.secFlow__item::before {
	bottom: -45px;
	border: 16px solid transparent;
	border-top: 12px solid var(--mycolor01);
}
	.secFlow____image {
		width: 100%;
	}

	.secFlow__item .detail {
		width: 100%;
		padding: 0;
	}

	.secFlow__item .detail h4 {
		font-size: 2rem;
		padding-left: 30px;
		margin-bottom: 5px;
		
	}
	.secFlow__item .detail h4::before {
		font-size: 1.4rem;
	}
}

/*----- section Flow end -----*/

