#page-home, #body-home {
	overflow-x: hidden;
}
.box-mv{
	position: relative;
}
.box-mv__line{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0;
}
.box-mv__line svg {
    fill: white;
	 width: 100%;
	  height: 90px;
}
.box-mv__line svg {
   
	   
}
.slide-mv .slick-arrow svg {
	fill: none;
}

.slide-mv .slick-arrow svg path {
	stroke: white;
}

.slide-mv .slick-prev {
	left: 15px
}

.slide-mv .slick-next {
	right: 15px
}

.slide-mv__item {
	position: relative;
}
.slide-mv__img {

}
.slide-mv__img>a{
	padding-top: calc((800 / 1920) * 100%);
	display: block;
	position: relative;
	overflow: hidden;
}
.slide-mv__img>a::before{
	content: "";
	width: 100%;
	height: 100%;
	background: #3f3594;
	opacity: .8;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.slide-mv__img img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-mv__img img {
	width: 100%;
}

.slide-mv__wrap {
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.slide-mv__wbtn{
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: center;
}
.slide-mv__wbtn .c-btn__01 {
	max-width: 180px;
}

.fade-up-delay {
	opacity: 0;
	transform: translateY(40px);
	animation: fadeUpDelay 1s ease-out forwards;
}

.fade-up-delay:nth-child(1) {
	animation-delay: 0.2s;
}

.fade-up-delay:nth-child(2) {
	animation-delay: 0.4s;
}

.fade-up-delay:nth-child(3) {
	animation-delay: 0.6s;
}

.fade-up-delay:nth-child(4) {
	animation-delay: 0.8s;
}

@keyframes fadeUpDelay {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-mv__info {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: white;
}

.slide-mv__ttl {
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: 500;
}

.slide-mv__subttl, .slide-mv__desc h2 {
	font-size: clamp(3rem, 10vw, 5rem);
	font-weight: 700;
	/* font-style: italic;
	text-align: right; */
	margin-bottom: 10px;
}

.slide-mv__desc {
	margin-bottom: 35px;
	font-size: 17px;
	font-weight: 300;
}
.slide-mv__play{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(90deg, #007f3d 10%, #8fc75c 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.slide-mv__play{
	
}
.slide-mv__play::before{
	content: "";
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, #007f3d 10%, #8fc75c 100%);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	animation: play-anim 2.3s infinite ease-in-out;
}
.slide-mv__play svg{
	width: 20px;
	height: 15px;

}
@keyframes play-anim {
	0% {
		transform: rotate(0) translate(-50%, -50%) scale(0.5) skew(1deg);
		opacity: 0.1;
	}

	30% {
		transform: rotate(0) translate(-50%, -50%) scale(0.7) skew(1deg);
		opacity: 0.5;
	}

	100% {
		transform: rotate(0) translate(-50%, -50%) scale(1) skew(1deg);
		opacity: 0.1;
	}
}
.home-service {
	/* background: url(../images/bg-01.jpg) no-repeat center/cover; */
	/* padding: 75px 0; */
	background-size: cover !important;
	background-repeat: no-repeat !important;
	margin-bottom: -110px;
	position: relative;
	z-index: 2;
}

.line-title01 {
	position: relative;
	z-index: 1;
}

.line-title01::before {
	content: "";
	height: 168px;
	width: 406px;
	background: url(../images/bg-tile01.png) no-repeat center/contain;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}

.home-service__ttl {
	margin-bottom: 15px;
}

.home-service__desc {
	max-width: 690px;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto 35px;
}
.service-column{
	transform: translateY(-50%);
}
.service-column>.row{
	gap: 20px 0;
}
.service-column__wrap{
	background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 6px 0px rgba(162, 162, 162, 0.5);
	padding: 30px 35px;
	text-align: center;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.service-column__wrap:hover::after{
	width: 100%;
}
.service-column__wrap::after{
	content: "";
	width: 0;
	height: 2px;
	background: linear-gradient(90deg,#03228f 10%,#0e73e4 100%);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .3s ease-in;
}
.service-column__img img{
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: auto;
	transition: all .6s ease-in;
}
.service-column__img:hover img{
	transform: rotateY(360deg);
}
.service-column__ttl{
	margin-bottom: 8px;
	margin-top: 10px;
}
.service-column__desc{
	color: #333;
	font-size: 20px;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-height: 1.3;
	overflow: hidden;
	font-weight: 500;
}
.service-column__more{
	margin-top: 10px;
	font-weight: 700;
	color: var(--color-main4);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.service-column__more-svg{
	width: 15px;
	height: 15px;
	fill: currentColor;
}
.service-column__more-svg polyline, .service-column__more-svg line{
	stroke: currentColor;
}
/*  */
.service-slider__wrap {
	/* background: linear-gradient(135deg, #f9c929, #fef9ad); */
	background: linear-gradient(-45deg, #66bbff, var(--color-main4));
	border-radius: 0 60px 0 60px;
	padding: 65px 35px 0 35px;
	text-align: center;
	color: white;
	display: flex;
	flex-direction: column;
}

.service-slider__img {
	margin-bottom: 20px;
}

.service-slider__ttl {
	font-size: 21px;
	margin-bottom: 7px;
}

.service-slider__ttl>* {
	color: inherit;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.service-slider__desc {
	margin-bottom: -15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.5;
}

.service-slider__wbtn {
	transform: translateY(50%);
	margin-top: auto;
}

.service-slider.js-slide .slick-list {
	margin: 0 -20px;
	padding: 0 0 28px;
}

.service-slider .js-slide__item {
	padding: 0 20px;
}

.home-preface {
	background: url(../images/bg-about.jpg) no-repeat center bottom/cover !important;
	padding: 0 0 60px 0;
	position: relative;
	z-index: 10;
}

.home-preface__block {
	position: relative;
	z-index: 1;
	/* padding: 80px; */
}



.home-preface__imgs {}

.home-preface__imgs-child:nth-child(1) img {
	/* max-width: 220px; */
	width: 100%;
}

/* .home-preface__imgs-child:nth-child(2) {
	text-align: right;
	margin-top: -35px;
} */

/* .home-preface__imgs-child:nth-child(2) img {

	width: 95%;
} */

.home-preface__info {
	position: relative;
	color: #828280;
	/* color: white; */
}

.home-preface__ttl {
	margin-bottom: 15px;
}

.home-preface__ttl-lead {
	display: block;
	line-height: .9;
	font-size: 16px;
	padding-left: 85px;
	color: #333;
	position: relative;
	margin-bottom: 8px;
	font-weight: 400;
}
.home-preface__ttl-lead::before{
	    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 4px;
    width: 76px;
    background: var(--color-main4);
}
.home-preface__ttl-lead::after{
	content: '';
    position: absolute;
    left: 15px;
    top: 4px;
    height: 6px;
    width: 12px;
    background: #fff;
}

.home-preface__ttl-ttl {
	font-size: 36px;
	font-weight: 700;
	display: block;
	color: var(--color-main4);
}

.home-preface__icon {
	width: 97px;
	height: 97px;
	position: absolute;
	right: 0;
	top: -20px;
}

.home-preface__desc {
	text-align: justify;
	font-size: 15px;
}
.home-preface__values{
	border-top: 1px solid #f3f3f3;
	padding-top: 15px;
	margin-bottom: 20px;
}
.home-preface__values-icon img{
	transition: all .4s ease-in;
}
.home-preface__values-icon{
	width: 70px;
}
.home-preface__values-icon:hover img{
	transform: rotateY(360deg);
}
.home-preface__values-ct{
	width: calc(100% - 90px);
}

/*  */
.home-portfolio{
	background: linear-gradient(180deg,var(--color-main4) 426px,  white 150px);
	padding: 50px 0 20px;
}
.home-portfolio .js-slide .slick-list{
	padding-bottom: 30px;
}
.home-portfolio .c-ttl__02{
	color: white;
	text-transform: uppercase;
	text-align: center;
}
.slider-service__wrap{
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 10px 11px 0px rgba(0, 0, 0, .04);
}
.slider-service__wrap:hover .slider-service__img a img{
	transform: scale(1.09);
}
.slider-service__wrap:hover .slider-service__btn{
	color: white;
}
.slider-service__wrap:hover .slider-service__btn::before{
	height: 100%;
}
.slider-service__img a{
	display: block;
	padding-top: calc((199 / 295) * 100%);
	position: relative;
	overflow: hidden;
}
.slider-service__img a img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease-in;
}

.slider-service__ct{
    padding: 25px 20px;
}
.slider-service__cate{
	color: #999;
	font-size: 14px;
	margin-bottom: 10px;
}
.slider-service__cate>a{
	color: inherit;
	font-weight: 400;
}
.slider-service__cate>a:hover{
	color: var(--color-main2);
}
.slider-service__ttl{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
.slider-service__ttl>a{
	color: var(--color-main4);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.slider-service__ttl>a:hover{
	color: var(--color-main2);
}
.slider-service__desc{
	color: #777777;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.slider-service__btn{
	padding: 16px 20px;
    background: #fff;
    border-top: 1px solid #f1f1f1;
	position: relative;
	z-index: 1;
	color: var(--color-main4);
	font-weight: 700;
	align-items: center;
}
.slider-service__btn::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(90deg, #007f3d 10%, #8fc75c 100%);
	z-index: -1;
	transition: all .3s ease-in;
}
.slider-service__btn-svg{
	width: 14px;
	height: 14px;
	fill: currentColor;
}
.slider-service__btn-svg polyline, .slider-service__btn-svg line{
	stroke: currentColor;
}

/*  */
.home-training {
	padding: 50px 0;
	/* background: url(../images/bg-02.jpg) no-repeat center/cover; */
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background: #f1f1f1;
	background-size: 100vw;
}

.home-training__ttl {
	font-size: 45px;
	font-weight: 400;
	margin-bottom: 30px;
	line-height: 1.1;
}

.home-training__ttl strong {
	color: var(--color-main4);
}

.home-training__img {
	margin-bottom: 25px;
}

.home-training__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 30px;
}

.home-training__list-item {
	font-size: 20px;
	font-weight: 700;
	background: #2196f3ab;
	padding: 25px 70px;
	border-radius: 30px;
	position: relative;
	color: white;
	box-shadow: 0px 0px 3px 3px #0000000d;
}

.home-training__list-item::before,
.home-training__list-item::after {
	content: "";
	/* background: url(../images/icon-quote.png) no-repeat center/contain; */
	background: url(../images/quote-icon2.png) no-repeat center/contain;
	position: absolute;
	z-index: 1;
	width: 50px;
	height: 50px;
}

.home-training__list-item::before {
	left: 20px;
	top: -20px;
	transform: translateY(50%) rotate(0deg);
}

.home-training__list-item::after {
	right: 20px;
	bottom: -25px;
	transform: translateY(-50%) rotate(180deg);
}
/*  */
.home-team {
	padding: 50px 0;
}

.home-team__ttl {
	color: black;
}

.home-team__desc {
	max-width: 650px;
	margin: 0 auto 20px;
}

.team-slider {}

.team-slider__wrap {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 40px 10px 10px;
	cursor: pointer;
	box-shadow: 0px 0px 8px #00000017;
}

.team-slider__img {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: end;
	background: url(../images/bg-icon-team.png) no-repeat center/contain;
}

.team-slider__img img {}

.team-slider__info {
	clip-path: polygon(0% 25.25%, 50% 0%, 100% 25.5%, 100% 100%, 0% 100%);
	background-color: white;
	padding: 50px 20px 20px;
	text-align: center;
	margin-top: -25px;
	position: relative;
	z-index: 2;
	border-radius: 0 0 10px 10px;
}
/*  */
.home-news {
	background: #f1f1f1;
	padding: 60px 0 30px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.home-news__heading {
	margin-bottom: 30px;
}

.home-news__heading-ttl {
	margin-bottom: 10px;
}

.home-news__heading-desc {
	max-width: 650px;
	margin: 0 auto;
}
.home-news__wrap{
	gap: 20px 0;

}
.home-news__fist{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: calc(100% - 30px);
	box-shadow: 0px 11px 13px 0px rgba(0, 0, 0, .04);
}
.home-news__fist:hover .home-news__fist-figure img{
	transform: scale(1.09);
}
.home-news__fist-figure{
	line-height: 0;
	
}
.home-news__fist-figure img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .5s ease-in;
}
.home-news__fist-figure>a{
	display: block;
	padding-top: calc((334 / 600) * 100%);
	overflow: hidden;
	position: relative;
	    width: 100%;
}
.home-news__fist-figure>a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    background: linear-gradient(0deg, black, transparent);
    opacity: .5;
    z-index: 1;
}
.home-news__fist-ct{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
	color: white;
	padding: 40px;
	width: 100%;
}
.home-news__fist-date{
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.home-news__fist-date svg{
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.home-news__fist-date svg path{
	fill: currentColor;
}
.home-news__fist-ttl{
	font-size: 20px;
}
.home-news__fist-ttl>a{
	color: inherit;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.home-news__fist-ttl>a:hover{
	color: var(--color-main2);
}
.home-news__slider .js-slide .slick-list{
	padding: 0 0 30px;
}
/*  */
.home-news__block {
	gap: 20px 0;
}

.home-news__item {}

.home-news__img {
	display: block;
	line-height: 0;
	margin-bottom: 10px;
}

.home-news__img:hover .home-news__figure img {
	transform: scale(1.09);
}

.home-news__figure {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	padding-top: calc((273 / 454) * 100%);
	display: block;
}

.home-news__figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all .6s ease-in;
}

.home-news__ttl {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.home-news__ttl>* {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home-news__desc {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.home-news__btn {
	margin-top: 10px;
	padding: 6px 40px 6px 20px;
	max-width: 165px;
	font-size: 18px;
}

.home-news__btn .c-btn__01-icon {
	right: 15px;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-list__item {
	align-items: start;
}

.news-list__img {
	width: 155px;
	line-height: 0;
}

.news-list__img:hover .news-list__figure img {
	transform: scale(1.09);
}

.news-list__figure {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	padding-top: calc((103 / 155) * 100%);
	display: block;
}

.news-list__figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all .6s ease-in;
}

.news-list__ct {
	width: calc(100% - 170px);
}

.news-list__ttl {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.news-list__ttl>* {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-list__desc {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 300;
}

/*  */
.home-form{
	padding: 0 0 50px;
}
.home-form__block{
	background: white;
	border-radius: 5px;
	box-shadow: 0px 11px 20px 20px rgba(0, 0, 0, .04);
	padding: 40px;
	margin-bottom: 50px;
	gap: 30px 0;
}
.form-block{}

.home-form__info-ttl{
	font-size: 36px;
	margin-bottom: 25px;
}
.form-block__img{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.form-block__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.form-block__img-info{
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, transparent, var(--color-main4));
	color: white;
	display: flex;
	flex-direction: column;
    align-items: center;
    padding: 20px;
    justify-content: end;
	z-index: 10;
}
.form-block__img-phone{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: white;
}
.form-block__img-phone .icon-phone{
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.form-block__img-phone .icon-phone svg{
	width: 16px;
	height: 16px;
	fill: var(--color-main4);
}
.form-block__img-phone .icon-phone svg path{
	fill: var(--color-main4);
}
.form-block__img-phone .text{
	font-size: 20px;
	font-weight: 600;
}
.form-block .clm:not(:last-child){
	margin-bottom: 20px;
}
.form-block__item{
	position: relative;
}
.form-block__item .icon{
	position: absolute;
	    right: 10px;
    top: 24px;
}
.form-block__item .icon svg{
    width: 20px;
    height: 20px;
}
.form-block__input{
	background: #f5f4f8;
	border: 0;
	color: #454545;
	height: 60px;
	padding: 15px;
	border-radius: 10px;
	font-size: 15px;
	width: 100%;
	resize: none;
	font-family: inherit !important;
}
select.form-block__input{
	-webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f5f4f8;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
     background-position-x: 97%;
    background-position-y: center;
}
textarea.form-block__input{
	height: 130px;
}
.form-block__submit{
	background: linear-gradient(90deg, #007f3d 10%, #8fc75c 100%);
	border: none;
	padding: 15px 40px;
	border-radius: 35px;
	color: #fff;
	transition: 0.4s;
	outline: none;
	font-size: 16px;
	font-weight: 400;
}
.form-block__submit:hover{
	background: var(--color-main4);
}
.home-nummber{
	text-align: center;
	gap: 25px 0;
}
.home-nummber__value{
	color: var(--color-main4);
	font-weight: 800;
	font-size: 52px;
	line-height: 1;
}
.home-nummber__ttl{
	color: #1D2C38;
	font-size: 22px;
	font-weight: 500;
	margin-top: 10px;
}
/*  */
.js-slider-docter-nav .slick-list{
	margin: 0 -10px;
	padding-bottom: 30px;
}
.doctors-grid__item{
	padding: 0 10px;
}
.doctors-grid__item.slick-current .icon-line{
	display: block;
}
.doctors-grid__item:not(.slick-current){
	opacity: .8;
}
.list-doingu__heading{
	color: white;
	margin-bottom: 20px;
}
.list-doingu__title{
	color: white;
	text-shadow: none;
}
.list-doingu .doctors-slider {
	position: relative;
	/* margin-bottom: 30px; */
	overflow: hidden;
}
.list-doingu .doctors-grid {
	/* display: flex;
	transition: transform 0.5s ease;
	gap: 20px; */
	
}
.list-doingu .doctors-grid .doctor-card {
	min-width: calc(25% - 18px);
	flex-shrink: 0;
	margin-top: 10px;
}
.list-doingu .doctor-card {
	background: white;
	border-radius: 15px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	padding-bottom: 10px;
}
.list-doingu .doctor-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.list-doingu .doctor-card.active {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}
.list-doingu .doctor-card::before {
}
.list-doingu .doctor-card.active::before {
	transform: scaleX(1);
}
.list-doingu .doctor-image {
	overflow: hidden;
	margin-bottom: -20px;
}
.list-doingu .doctor-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.list-doingu .doctor-name {
	background: linear-gradient(90deg, #007f3d 10%, #8fc75c 100%);
	color: white;
	padding: 5px 16px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 13px;
	display: inline-block;
}
.list-doingu .doctor-title {
	color: #4caf50;
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 18px;
	margin-top: 11px;
}
.list-doingu .doctor-hospital {
	color: #000;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
	padding: 0 10px;
	min-height: 45px;
}
.list-doingu .doctor-detail {
	background: white;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.list-doingu .doctor-detail.active {
	display: block;
	animation: slideIn 0.5s ease;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
   }
	to {
		opacity: 1;
		transform: translateY(0);
   }
}
.list-doingu .detail-content {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.list-doingu .detail-image {
	width: 200px;
	height: 200px;
	border-radius: 15px;
	overflow: hidden;
	flex-shrink: 0;
}
.list-doingu .detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list-doingu .detail-info {
	flex: 1;
}
.list-doingu .detail-name {
	color: rgb(115, 115, 115);
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}
.list-doingu .detail-title {
	color: rgb(49, 63, 139);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0px;
}
.list-doingu .detail-hospital {
	color: rgb(40, 51, 130);
	font-size: 14px;
	margin-bottom: 20px;
}
.list-doingu .detail-description {
	color: #333;
	line-height: 1.6;
	font-size: 14px;
	margin-bottom: 20px;
}
.list-doingu .appointment-btn {
	background: linear-gradient(135deg, #28a745, #2c5aa0);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
}
.list-doingu .appointment-btn:hover {
	background: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}
.list-doingu .slider-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.list-doingu .nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}
.list-doingu .nav-dot.active {
	background: white;
	transform: scale(1.2);
}
section.list-doingu {
    background: linear-gradient(90deg, #3f3695 10%, #0082c8 100%);
    padding: 40px 0px 30px;
}
@media (max-width: 768px) {
	.list-doingu .doctors-slider {
		/* overflow-x: auto; */
   }
	.list-doingu .doctors-grid .doctor-card {
		/* min-width: calc(50% - 10px); */
   }
	.list-doingu .detail-content {
		flex-direction: column;
		text-align: center;
   }
   
	.list-doingu .detail-image {
		width: 150px;
		height: 150px;
		margin: 0 auto;
		display: none;
   }
}
@media (max-width: 480px) {
	.list-doingu .doctors-grid .doctor-card {
		min-width: calc(100% - 20px);
   }
   .list-doingu .doctor-image img{
	height: 180px;
   }
   section.list-doingu{
	padding: 30px 0;
   }
}
.doctor-card.active {
    position: relative;
}

.content-title {
    font-size: 15px;
    color: #333;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 1px;
    width: 59%;
    margin: 0 auto;
}

section.list-doingu .section-title {
    margin-bottom: 30px;
}

section.list-doingu .content-title {
    color: #fff;
}
.box-item-list-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(227, 227, 227);
    margin-bottom: 20px;
}
.icon-line svg {
    width: 35px;
    height: 67px;
}

.icon-line {
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translateX(-50%);
}

.doctor-card.active .icon-line {
    display: block;
}

.doctor-card .icon-line {
    display: none;
}
/* doidoi ngu nhan su */
.home-preface__values-ttl {
	color: #000;
}
.home-preface__values-desc {
	font-size: 15px;
}
.home-preface__values-item {
	margin-bottom: 10px;
}
.js-slider-docter-nav .item {
	margin: 0 10px;
}
.service-column__img {
	text-align: center;
	margin: auto;
}
.reviews{
	padding: 40px 0 65px;
}

.reviews .slick-list{
	margin: 0 -15px;
}

.scroll-animate {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0px 15px 40px;
    min-height: unset !important;
}

.icon-review-card {
    margin-bottom: 10px;
}

.icon-review-card img {
    height: 30px;
    transform: rotate(179deg);
}

.review-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
    height: 165px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.stars {
    color: #FFD700;
    font-size: 19px;
}

.reviewer-info .stars ul {
    display: flex;
    gap: 0px 1px;
}

.reviewer-info .stars ul li svg {
    width: 19px;
    height: 19px;
}

.slider-slick-review .slick-dots {
    bottom: -35px;
}

.slider-slick-review .slick-dots li {
    width: 15px;
    height: 15px;
	border: 1px solid #133585;
}

.slider-slick-review .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 100%;
}

.slider-slick-review .slick-dots li button:before {
    content: "";
}

.slider-slick-review .slick-dots li.slick-active {
    background: #133585;
}










@media (max-width: 1440px) {
	.slide-mv__img>a{
		padding-top: calc((1000 / 1920) * 100%);
	}
}
@media (max-width: 1023px) {
	.home-training__ttl {
		font-size: 32px;
	}
}


@media(max-width:990px) {
	.home-portfolio{
		padding: 30px 0 1px;
	}
	
	.home-service {
		padding: 30px 0 40px;
		margin-bottom: 0;
	}
	.service-column{
		transform: none;
	}
	.slide-mv__img img {
		min-height: 350px;
	}

	.slide-mv__ttl {
		font-size: 20px;
	}

	.slide-mv__subttl {
		font-size: 18px;
	}

	.slide-mv__desc {
		margin-bottom: 10px;
	}

	.home-service__ttl {
		margin-bottom: 10px;
	}

	.home-preface {
		padding: 10px 0 30px;
	}

	.home-preface__block {
		/* padding: 30px; */
		gap: 20px;
	}


	.home-preface__icon {
		width: 70px;
		height: 70px;
		right: 20px;
		top: 20px;
	}

	.home-preface__info {
		position: unset;
	}

	.home-news {
		padding: 30px 0 10px;
	}

	.home-team {
		padding: 30px 0 ;
	}

	.home-training {
		padding: 30px 0;
	}

	.home-team__desc {
		margin-bottom: 10px;
	}

	.home-training__list {
		gap: 20px;
	}

	.home-service__desc {
		margin-bottom: 20px;
	}

	

	.slide-mv__wrap {
		/* top: calc(50% + 25px); */
	}

	

	.home-preface__ttl {
		margin-bottom: 5px;
	}

	.home-news__heading-ttl {
		margin-bottom: 10px;
	}

	.home-preface__desc {
		font-size: 16px;
	}

	.home-training__list-item::before,
	.home-training__list-item::after {
		width: 33px;
		height: 33px;
	}

	.home-training__list-item::before {
		left: 8px;
		top: -13px;
	}

	.home-training__list-item::after {
		right: 16px;
		bottom: -15px;
	}

	.slide-mv__wbtn .c-btn__01 {
		max-width: 154px;
	}
	.slide-mv__img>a{
		padding-top: calc((1480 / 1920) * 100%);
	}
	.home-news__fist-ct{
		padding: 20px;
	}
	.home-portfolio .c-ttl__02{
		margin-bottom: 0;
	}
	.home-form__info-ttl {
		font-size: 28px;
		margin-bottom: 15px;
	}
	.home-form{
		padding: 0 0 30px;
	}
	.form-block .clm:not(:last-child) {
		margin-bottom: 15px;
	}
	.form-block__input{
		height: 48px;
		padding: 5px 20px;
	}
	.home-form__block{
		margin-bottom: 30px;
		padding: 20px;
	}
	.home-nummber__value{
		font-size: 38px;
	}
	.home-nummber__ttl{
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.home-training__list-item {
		padding: 25px 25px;
	}
	.home-news__fist-ttl {
		font-size: 18px;
	}
	.slide-mv__subttl, .slide-mv__desc h2 {
		font-size: 2.5rem;
	}
    .slide-mv__img>a {
        padding-top: calc((1600 / 1920) * 100%);
    }
	.home-service {
		padding-bottom: 0;
	}
	.home-training__ttl {
		font-size: 30px;
	}
	.slide-mv__desc p {
		font-size: 15px;
	}
	.service-column__wrap {
		padding: 20px 15px;
	}
	.service-column__desc {
		font-size: 16px;
	}
	.slider-service__ct, .slider-service__btn{
		padding: 15px;
	}
	.box-mv__line svg{
		height: 45px;
	}
	.box-item-list-content{
		display: none;
	}
	.list-doingu .detail-description{
		text-align: left;
		margin-bottom: 0;
	}
	.article-item__ct{
		padding: 30px 10px 10px;
	}
	.article-item__cate{
		font-size: 14px;
		right: 10px;
		padding: 3px 10px;
	}
	.article-item__ttl{
		font-size: 16px;
	}
	.list-doingu .doctor-detail{
		padding: 15px;
	}
}
