.box-mv {
	position: relative;
}

.box-mv__line {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	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: #00000054;
	opacity: .6;
	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;
	color: #044982;
	text-shadow: 1px 1px #cdcdcd;
}

.slide-mv__subttl,
.slide-mv__desc h2 {
	font-size: clamp(3rem, 10vw, 6rem);
	font-weight: 700;
	/* font-style: italic;
	text-align: right; */
	margin-bottom: 10px;
	color: #044982;
	text-shadow: 1px 2px #eee;
}

.slide-mv__desc {
	margin-bottom: 35px;
	font-size: 17px;
	font-weight: 300;
	color: #044982;
	text-shadow: 1px 1px #eee;
}

.slide-mv__play {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff0500, #fff900);
	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(135deg, #ff0500, #fff900);
	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;
	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: #828280;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.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: 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) 358px, white 150px);
	padding: 50px 0 20px;
}

.home-portfolio .js-slide .slick-list {
	padding-bottom: 30px;
}

.home-portfolio .c-ttl__02 {
	color: white;
}

.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;
}

.slider-service__cate>a:hover {
	color: var(--color-main2);
}

.slider-service__ttl {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.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: 2;
	/* number of lines to show */
	line-clamp: 2;
	-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(135deg, #ff0500, #fff900);
	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: 25px;
	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: 67px;
	padding: 20px;
	border-radius: 35px;
	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: 115px;
}

.form-block__submit {
	background: linear-gradient(135deg, #ff0500, #fff900);
	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: 700;
	font-size: 48px;
	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: 33px;
}

.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, #0429ad 10%, var(--color-main4) 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;
}

.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, #0429ad 10%, var(--color-main4) 100%);
	padding: 40px 0px 67px;
}

@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: 20px;
}















section.Specialist {
	padding: 40px 0px 40px 0px;
	background: white url(../images/pattern-2.jpg) no-repeat;
	background-size: 100% 60%;
	position: relative;
	overflow: hidden;
}

.c-ttl__01 {
	text-align: center;
	margin-bottom: 25px;
	margin-top: 0;
	font-weight: 700;
}

.c-ttl__01 span:not(.title-separator) {
	display: block;
	font-size: 31px;
	font-weight: 700;
	text-transform: uppercase;
	color: #621e1c;
}

.title-separator {
	display: flex;
	justify-content: center;
	position: relative;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 10px;
}

.title-separator:before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #621e1c;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 77px);
}

.c-ttl__01 span:not(.title-separator) {
	display: block;
	font-size: 31px;
	font-weight: 700;
	text-transform: uppercase;
	color: #044982;
}

.title-separator .separator-center {
	display: block;
	width: 32px;
	height: 12px;
	position: relative;
}

.title-separator:after {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #621e1c;
	position: absolute;
	top: calc(50% - 1px);
	right: calc(50% - 77px);
}

.title-separator .separator-center:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #621e1c;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 8px;
}

.title-separator .separator-center:after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #04498e;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 8px;
}

.transpi__service-item {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 6px 20px #00000012;
	margin-bottom: 33px;
	margin-top: 20px;
}

.transpi__service-item .service__img {
	position: relative;
}

.transpi__service-item .service__img-item:first-child {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1;
	transform: translateX(50%) scaleX(2);
	opacity: 0;
	filter: blur(10px);
}

.transpi__service-item .service__img-item {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 500ms ease;
}

.transpi__service-item .service__img-item {}

.service__img-item {
	overflow: hidden;
}

.transpi__service-item .service__img-item img {
	/* height: 265px; */
	aspect-ratio: 5 / 3;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.transpi__service-item .service__img-item {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 500ms ease;
}

.transpi__service-item .service__img-item img {
	/* height: 265px; */
	aspect-ratio: 5 / 3;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.transpi__service-item .service__content {
	border-radius: 0px 0px 10px 10px;
	background: #FFF;
	padding: 20px;
	padding-top: 50px;
	position: relative;
	z-index: 2;
}

.transpi__service-item .service__content::before {
	content: "";
	width: 100%;
	height: 100px;
	background-image: url(../images/bg-color.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	display: block;
	top: -63px;
	left: 0;
	right: 0;
	z-index: -1;
}

.transpi__service-item .icon {
	position: absolute;
	top: -32px;
	right: 40px;
	width: 70px;
	height: 70px;
	background: #ffffff;
	color: white;
	font-size: 25px;
	text-align: center;
	border-radius: 50px;
	z-index: 999;
	line-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #044982;
}

.transpi__service-item .icon img,
.transpi__service-item .icon svg {
	width: 50px;
	height: 50px;
	padding: 5px;
}

.service__content-ttl {
	margin-bottom: 8px;
	font-size: 19px;
	line-height: 27px;
	font-weight: 700;
	color: #000;
}

.service__content-ttl>a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
}

.service__content-desc {
	color: #72727c;
	font-size: 15px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	text-align: justify;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
}




























.space-extra-bottom {
	padding: 40px 0 5px;
	background: #e5e5e596;
	position: relative;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.heading-common {
	margin-bottom: 40px;
}

.space-extra-bottom__row {
	--gutter: 20px;
	gap: 20px 0;
}

.feature-style3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 60px;
}

.feature-style3 .feature-img {
	position: relative;
	margin-right: 15px;
	border-radius: 50%;
	width: 110px;
	padding: 5px;
}

.feature-style3 .feature-img:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border: 2px dashed var(--color-main);
	border-radius: 50%;
	-webkit-animation: rotate 40s infinite linear;
	animation: rotate 40s infinite linear;
	-webkit-transition: all ease 0.4s;
	-o-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

.feature-style3 .feature-img .img {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: inherit;
}

.feature-img .img::before {
	content: "";
	padding-top: 100%;
	display: block;
}

.feature-style3 .feature-img .img img {
	width: 100%;
	border-radius: 50%;
	max-width: initial;
	-webkit-transition: all ease 0.6s;
	-o-transition: all ease 0.6s;
	transition: all ease 0.6s;
	padding: 0px;
}

.feature-img .img img {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.feature-style3 .feature-body {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.space-extra-bottom-img {
	border-radius: 999px;
	border: 10px solid #044982;
	filter: drop-shadow(2px 4px 6px #cdcdcd);
}

.line {
	position: absolute;
	width: 100%;
	left: 0;
	top: -1px;
	display: none;
}

.line svg {
	width: 100%;
	color: #e5e5e538;
	height: 30px;
}

.line svg path {
	fill: #f0f4f1;
}


section.Opportunity {
	position: relative;
	z-index: 999;
}

section.Opportunity {
	overflow: hidden;
	padding: 40px 0px 40px 0px;
	/* background-image: url(../images/bg-lg2.jpg); */
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: relative;
	z-index: 1;
}

.why-choose__list-item {
	display: grid;
	grid-template-columns: 50px auto;
	gap: 0px 20px;
	background: #ffffffd9;
	padding: 15px;
	font-size: 16px;
	align-items: center;
	border-radius: 10px;
	/* align-items: center; */
	margin-bottom: 17px;
	box-shadow: 0 0 3px #0000009c;
}

.why-choose__list-icon {
	width: 52px;
	height: 52px;
	background: #044982;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-choose__list-icon img {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.why-choose__list-ttl {
	font-weight: 600;
	font-size: 21px;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 5px;
}

.opportunity-box {
	background: white;
	position: relative;
	text-align: center;
	z-index: 2;
	padding: 0px 20px 30px;
	box-shadow: 0px 6px 20px #00000012;
	border-radius: 10px;
}

.Opportunity__heading {
	/* background: #fff; */
	text-align: center;
	padding: 15px 20px 5px;
	/* border-radius: 10px 10px 0 0; */
}

.Opportunity__heading {
	margin-bottom: 0;
}

.Opportunity__heading-ttl {
	font-size: 26px;
	font-weight: 700;
	margin: 10px 0 10px 0;
	text-transform: uppercase;
	text-align: center;
}

elementor-shortcode textarea,
.elementor-shortcode input,
.elementor-shortcode select {
	border: 1px solid #cdcdcd;
}

.elementor-shortcode input {
	width: 100%;
	background: #fff;
	padding: .375rem .75rem;
	height: 40px;
	color: #333;
	border-radius: 0;
}

.elementor-shortcode .tp-select {
	margin-bottom: 10px;
}

.elementor-shortcode select {
	margin-bottom: 5px;
	width: 100% !important;
	background: #fff;
	padding: .375rem .75rem !important;
	height: 40px !important;
	color: #333;
	border-radius: 0;
	position: unset !important;
	overflow: unset !important;
	display: block !important;
}

.elementor-shortcode textarea {
	width: 100%;
	background: #fff;
	border: none;
	padding: .375rem .75rem;
	margin-bottom: 0;
	color: #060606;
	height: 95px;
}

.elementor-shortcode textarea,
.elementor-shortcode input,
.elementor-shortcode select {
	border: 1px solid #cdcdcd;
}

.contact__form-submit .thm__btn {
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 10px;
	background: #044982;
}

.contact__form-submit button {
	border: none;
	font-style: normal;
	font-weight: 400;
	margin-top: 0;
	background: #d22228;
	color: #fff;
	display: inline-block;
	padding: 5px 25px;
	border-radius: 5px;
	font-size: 16px;
}



























.Clients {
	background-image: url(../images/bg-testimonial-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

/* .Clients::before {
	content: "";
	z-index: -1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #0F1B24;
	background-image: url(../images/pattern-10.png);
	--background-overlay: '';
	background-position: top right;
	background-repeat: no-repeat;
	opacity: 0.95;
} */

.Clients .c-ttl__01 {
	color: #000;
}

.Clients .c-ttl__01 small {
	color: #000;
}

.review-item {
	position: relative;
	padding-top: 40px;
}

.review-item__box {
	background-color: #f3f4f7;
	text-align: center;
	display: flex;
	flex-direction: column;

	position: relative;
	padding: 40px 30px 30px;
}

.review-item__box:before {
	background-color: #f3f4f7;
	content: "";
	position: absolute;
	width: 67px;
	height: 45px;
	top: calc(100% - 1px);
	left: 66px;
	clip-path: polygon(0% 0, 100% 0, 0 100%, 0 100%);
}

.review-item__box:after {
	content: "";
	position: absolute;
	border: 1px solid #f1b617;
	left: 33px;
	right: 33px;
	top: -9px;
	bottom: 50px;
	z-index: -1;
}

.review-item__star-rating {
	/* float: right; */
	overflow: hidden;
	position: relative;
	height: 1.1rem;
	line-height: 1.2;
	font-size: 14px;
	width: 80px;
	margin: 0 auto;
}

/* .review-item__star-rating::before {
	content: "\f005\f005\f005\f005\f005";
	color: #d3ced2;
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
} */

.review-item__star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5rem;
}
/* 
.review-item__star-rating span::before {
	content: "\f005\f005\f005\f005\f005";
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	color: #f1c40f;
	top: 0;
	position: absolute;
	left: 0;
} */

.review-item__star-rating {
	float: none;
	margin-top: 5px;
	margin-bottom: 20px;
	overflow: visible;
}

.review-item__star-rating span:before {
	color: var(--theme-color2);
}

.review-item__star-rating {
	margin-bottom: 0;
}

.review-item__star-rating span:before {
	color: #f9b524;
	font-weight: 600;
}

.review-item__icon {
	background-color: #044982;
	position: relative;
	width: 65px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -30px;
	transition: all 300ms ease;
}

.review-item__icon svg {
	width: 30px;
	height: 30px;
}

.review-item__ttl {
	font-weight: 700;
	margin: 0;
}

.review-item__desc {
	font-size: 15px;
	margin-top: 15px;
	color: #72727c;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	/* number of lines to show */
	line-clamp: 5;
	-webkit-box-orient: vertical;
}

.review-item__founder {
	display: flex;
	align-items: center;
	margin-top: 54px;
	margin-left: 38px;
}

.review-item__founder-avatar {
	border-radius: 50%;
	margin-bottom: 0;
	margin-right: 15px;
	overflow: hidden;
}

.review-item__founder-avatar img {
	border-radius: 50%;
	max-width: 72px;
	transition: all 300ms ease;
}

.review-item__founder-ct {
	line-height: 1;
}

.review-item__founder-ttl {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1;
	color: #621e1c;
}

.review-item__founder-subttl {
	color: #999999;
	font-size: 14px;
}

.Clients .c-ttl__01 small {
	color: #000;
	width: 80% !important;
	display: block;
	margin: 0 auto;
	font-size: 16px;
	text-transform: unset !important;
}

.Clients .c-ttl__01 small p {
	font-size: 18px;
	text-shadow: unset !important;
	text-transform: unset !important;
}


section.Latest-news {
	padding: 40px 0px 10px 0px;
	/* background: #eee; */
}

.item-slick-news-contents {
	padding: 10px 5px;
}

.transpi__blog-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	background: white;
	box-shadow: 0px 6px 20px #00000012;
}

.blog__content {
	padding: 0 10px 10px;
}

.blog__image-wrap {
	position: relative;
	margin-bottom: 10px;
}

.transpi__blog-item .blog__img img {
	/* height: 300px; */
	aspect-ratio: 3/2;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	-webkit-transition: all 1000ms ease;
	transition: all 1000ms ease;
}



.right-content .blog__content h3>a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog__img {
	overflow: hidden;
	border-radius: 10px;
}

.blog__link a {
	position: absolute;
	bottom: 10px;
	right: 5px;
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--thm-primary);
	font-size: 15px;
	line-height: 40px;
	text-align: center;
	filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.10));
	-webkit-transition: .3s;
	transition: .3s;
}

.blog__image-wrap .cate__btn {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid #ff131d;
	border-radius: 5px;
	background: #ff131d;
	line-height: normal;
	padding: 8px 15px;
	margin-bottom: 5px;
	display: inline-block;
	position: absolute;
	bottom: 11px;
	left: 15px;
}

.blog__content h3 {
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 0;
	margin-top: 15px;
	font-weight: 600;
	margin-bottom: 10px;
}

.blog__content .post__meta {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

.blog__content .post__meta span:not(:last-child) {
	padding-right: 35px;
}

.blog__content .post__meta span i {
	margin-right: 5px;
	color: #ff131d;
}

.item-slick-news-contents .post__meta span {
	color: #848484;
	font-size: 14px;
}

.blog__content p {
	color: #333;
	font-size: 15px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	line-height: 1.5;
	text-overflow: ellipsis;
}

section.doitac {
	padding: 30px 0px 30px 0px;
	background: #d3d3d3bd;
}
.transpi__brand-item-slicks {
	padding: 5px;
}
.c-ttl__01 span:not(.title-separator) {
    font-size: 27px;
}

.Opportunity__heading-ttl {
    font-size: 23px;
}

.why-choose__list-ttl {
    font-size: 19px;
}

.why-choose__list-desc {
    font-size: 15px;
}
.clm.space-extra-bottom-center:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    animation: shine 2s infinite 2s;
    display: block;
}

.clm.space-extra-bottom-center {
    position: relative;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(var(--rotate-angle, 360deg));
		transform: rotate(var(--rotate-angle, 360deg));
	}
}


.box-content-detail-void ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

@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) {
	.transpi__brand-item-slicks img {
    width: 100%;
}
	.c-ttl__01 span:not(.title-separator) {
    font-size: 22px;
}
main#page-home {
    overflow: hidden;
}
.slide-mv__desc p {
    display: none;
}

.box-mv__line {
    display: none;
}
.home-preface__ttl-ttl {
    font-size: 28px;
}
.slide-mv__subttl, .slide-mv__desc h2 {
    font-size: 28px;
}

.home-preface__imgs {
    order: 2;
}
.Opportunity__heading-ttl {
    font-size: 20px;
}
	.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;
		display:none;
	}

	.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-training__ttl {
		font-size: 30px;
	}

	.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;
	}
}