@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
/*-----------------------------------------------------
	#loading
------------------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
}
#loading.hidden {
  animation: loadingFadeOut 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loading__bl {
  position: relative;
  width: 400px;
  max-width: 80%;
  overflow: hidden;
  opacity: 0;
  animation: loadingLogoFadeIn 0.9s ease forwards;
}
.loading__bl img {
  display: block;
  width: 100%;
  height: auto;
}
.loading__logo-anim {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  animation: loadingLogoMask 2.5s linear forwards;
  pointer-events: none;
}
@keyframes loadingLogoFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes loadingLogoMask {
  0% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}
@keyframes loadingFadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}
body.is-loading {
  overflow: hidden;
}
/*-----------------------------------------------------
	#mv
------------------------------------------------------*/
#mv {
  position: relative;
  width: 100%;
	padding-top: 140px;
  overflow: hidden;
}
.mv_swiper,
.mv_swiper .swiper-wrapper,
.mv_swiper .swiper-slide {
  width: 100%;
	height: auto;
	min-height: 0;
}
.swiper-slide {
	position: relative;
}
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0, .2);
  pointer-events: none;
}
.swiper-slide.none::before {
  display: none;
}
.mv_text {
	position: absolute;
	bottom: 6%;
	left: 100px;
	z-index: 2;
}
.mv_right .mv_text {
	top: 40%;
	bottom: auto;
	left: 50%;
	transform: translateY(-50%);
}
.mv_text .en_title {
	margin-bottom: 20px;
	font-family: "Marcellus", serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--red-color);
}
.mv_text h2 {
	margin-bottom: 30px;
}
.mv_text h2 span {
	display: block;
	width: fit-content;
	margin-bottom: 10px;
	padding: 5px 10px;
	background: rgba(255,255,255,.8);
	font-family: var(--font-serif);
	font-size: 60px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.mv_text p {
	margin-bottom: 30px;
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.mv_swiper .swiper-slide picture,
.mv_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.mv_swiper .swiper-slide img {
	object-position: top right;
  object-fit: cover;
}
.mv_swiper .swiper-slide.mv_right img {
	object-position: top left;
}
#mv .link_more_01 {
	width: 350px;
	max-width: 100%;
	padding: 30px 30px 30px 20px;
	font-size: 21px;
}
@media screen and (max-width: 1600px) {
	.mv_right .mv_text {
		left: auto;
		right: 50px;
	}
	.mv_text .en_title {
		margin-bottom: 1.25vw;
		font-size: 1.5vw;
	}
	.mv_text h2 {
		margin-bottom: 1.875vw;
	}
	.mv_text h2 span {
		margin-bottom: 0.625vw;
		padding: 0.313vw 0.625vw;
		font-size: 3.75vw;
	}
	.mv_text p {
		margin-bottom: 1.875vw;
		font-size: 1.5vw;
	}
	#mv .link_more_01 {
		width: 21.875vw;
		padding: 1.875vw 1.875vw 1.875vw 1.25vw;
		font-size: 1.313vw;
	}
}
@media screen and (max-width: 1000px) {
	#mv {
    padding-top: 60px;
  }
	.mv_text {
		bottom: 15%;
		left: 40px;
	}
	.mv_right .mv_text {
		top: 50%;
		right: auto;
		left: 40px;
	}
	.mv_swiper .swiper-slide img {
		object-position: top center;
	}
	.mv_swiper .swiper-slide.mv_right img {
		object-position: top center;
	}
	.mv_text .en_title {
		margin-bottom: 2vw;
		font-size: 2.4vw;
	}
	.mv_text h2 {
		margin-bottom: 3vw;
	}
	.mv_text h2 span {
		margin-bottom: 1vw;
		padding: 0.5vw 1vw;
		font-size: 6vw;
	}
	.mv_text p {
		margin-bottom: 3vw;
		font-size: 2.4vw;
	}
	.mv_swiper .swiper-slide picture,
	.mv_swiper .swiper-slide img {
		display: block;
		width: 100%;
		height: auto;
	}
	.mv_swiper .swiper-slide img {
		object-position: top right;
		object-fit: cover;
	}
	.mv_swiper .swiper-slide.mv_right img {
		object-position: top left;
	}
	#mv .link_more_01 {
		width: 35vw;
		padding: 3vw 3vw 3vw 2vw;
		font-size: 2.1vw;
	}
}
@media screen and (max-width: 750px) {
	.mv_text {
		top: auto;
		bottom: 17%;
		left: 20px;
		transform: none;
	}
	.mv_right .mv_text {
		top: auto;
		bottom: 6%;
		left: 20px;
	}
	.mv_text .en_title {
		margin-bottom: 2.667vw;
		font-size: 3.2vw;
	}
	.mv_text h2 {
		margin-bottom: 4vw;
	}
	.mv_text h2 span {
		margin-bottom: 1.333vw;
		font-size: 6.667vw;
	}
	.mv_text p {
		margin-bottom: 4vw;
		font-size: 3.7vw;
	}
	#mv .link_more_01 {
		width: 46.667vw;
		padding: 4vw 4vw 4vw 2.667vw;
		font-size: 2.8vw;
	}
	.swiper-slide.none .mv_text {
		width: 100%;
	}
	.swiper-slide.none .mv_text h2 span {
		font-size: 5vw;
	}
	.swiper-slide.none .mv_text .link_more_01 {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translateY(-50%);
		width: 24vw !important;
		height: 24vw !important;
		padding: 1.333vw !important;
		border-radius: 50%;
		font-size: 3.2vw !important;
		line-height: 1.4;
		text-align: center;
	}
	.swiper-slide.none .mv_text .link_more_01::after {
		right: 50% !important;
		top: auto !important;
		bottom: 1.8vw !important;
		transform: translateY(none) translateX(-50%) !important;
	}
}

/*-----------------------------------------------------
	#mv_bottom
------------------------------------------------------*/
#mv_bottom {
	position: relative;
	z-index: 3;
	width: 100%;
	margin-top: -157px;
}
#mv_bottom ul {
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
#mv_bottom ul li {
	position: relative;
	width: 240px;
	height: 240px;
	padding: 3px;
	border-radius: 50%;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233,42,4, 1) 0%, rgba(255,144,41, 1) 100%);
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
#mv_bottom ul li .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 234px;
	height: 234px;
	border-radius: 50%;
	background: #fff;
}
#mv_bottom ul li .inner h3 {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}
#mv_bottom ul li .inner h3 span {
	color: var(--red-color);
}
#mv_bottom ul li:nth-of-type(2) .inner h3 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(233,42,4, 1) 0%, rgba(255,144,41, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
@media screen and (max-width: 1600px) {
	#mv_bottom {
		margin-top: -9.812vw;
	}
	#mv_bottom ul {
		gap: 0.5vw;
	}
	#mv_bottom ul li {
		width: 15vw;
		height: 15vw;
		padding: 0.188vw;
	}
	#mv_bottom ul li .inner {
		width: 14.625vw;
		height: 14.625vw;
	}
	#mv_bottom ul li .inner h3 {
		font-size: 1.5vw;
	}
}
@media screen and (max-width: 1000px) {
	#mv_bottom {
		margin-top: -50px;
	}
	#mv_bottom ul {
    display: grid;
    grid-template-columns: repeat(2, 240px);
    justify-content: center;
    align-items: center;
    gap: 0;
  }
	#mv_bottom ul li {
		width: 240px;
		height: 240px;
		padding: 3px;
	}
	#mv_bottom ul li .inner {
		width: 234px;
		height: 234px;
	}
	#mv_bottom ul li .inner h3 {
		font-size: 24px;
	}
  #mv_bottom ul li:first-child {
		z-index: 1;
    grid-column: 1 / -1;
    justify-self: center;
  }
	#mv_bottom ul li:nth-of-type(2) {
		right: -15px;
    margin-top: -50px;
  }
	#mv_bottom ul li:nth-of-type(3) {
		left: -15px;
    margin-top: -50px;
  }
}
@media screen and (max-width: 500px) {
	#mv_bottom ul {
    margin-right: 10px;
  }
	#mv_bottom ul li {
		width: 180px;
		height: 180px;
	}
	#mv_bottom ul li .inner {
		width: 174px;
		height: 174px;
	}
	#mv_bottom ul li .inner h3 {
		font-size: 18px;
	}
	#mv_bottom ul {
    grid-template-columns: repeat(2, 174px);
  }
	#mv_bottom ul li:nth-of-type(2) {
		right: -5px;
    margin-top: -30px;
  }
	#mv_bottom ul li:nth-of-type(3) {
		left: -5px;
    margin-top: -30px;
  }
}
/*-----------------------------------------------------
	#achievement
------------------------------------------------------*/
#achievement {
	position: relative;
	z-index: 0;
	padding-top: 20px;
}
#achievement h2 {
	margin-bottom: 30px;
	text-align: left;
}
#achievement p.midasi_title {
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.midasi_img img {
	display: block;
	position: relative;
	z-index: -1;
	max-width: 100%;
	margin-top: -175px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 1300px) {
	#achievement h2 {
		text-align: center;
	}
	#achievement p.midasi_title {
		text-align: center;
	}
	.midasi_img img {
		margin-top: -90px;
	}
}
@media screen and (max-width: 750px) {
	#achievement {
		padding-top: 50px;
	}
	#achievement h2 {
		margin-bottom: 20px;
	}
	#achievement p.midasi_title {
		font-size: 20px;
	}
	.midasi_img img {
		margin-top: -6.667vw;
	}
}
/*-----------------------------------------------------
	#achievement system
------------------------------------------------------*/
.achievement_system {
	margin-top: 100px;
	padding-bottom: 100px;
	background: #FFF2EA;
	background: linear-gradient(180deg, rgba(255, 242, 234, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.achievement_system_lead {
	display: table;
	position: relative;
	top: -30px;
	z-index: 1;
	margin: 0 auto 60px;
	padding: 0 15px 2px;
	background: #E92A04;
	color: #fff;
	font-family: var(--font-serif);
	font-size: 36px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.achievement_system_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}
.achievement_data {
	flex: 1;
	max-width: 620px;
}
.achievement_data_head {
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: #8C8C8C;
}
.achievement_data_head span {
	font-size: 60px;
}
.achievement_data_title {
	margin: 0;
	color: #313131;
	font-family: var(--font-serif);
	font-size: 50px;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: .04em;
	white-space: nowrap;
	text-align: center;
}
.achievement_data_title span {
	position: relative;
	top: 7px;
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(
		to bottom,
		#b58a27 0%,
		#cda746 38%,
		#efd98b 48%,
		#f5e6ae 52%,
		#cda746 62%,
		#b58a27 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.achievement_data_text {
	width: fit-content;
	margin: 5px auto;
	padding: 0 20px 18px;
	border-bottom: 1px solid #333;
	color: #333;
	font-family: serif;
	font-size: 27px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .05em;
}
.achievement_data_text strong {
	color: #FE8A27;
	font-size: 50px;
	font-weight: 700;
	line-height: 1;
}
.achievement_compare img {
	max-width: 100%;
}
@media screen and (max-width: 1200px) {
	.achievement_system_inner {
		flex-direction: column;
		gap: 50px;
	}
	.achievement_compare {
		order: 1;
		width: 100%;
		text-align: center;
	}
	.achievement_compare img {
		display: block;
		width: 100%;
		max-width: 600px;
		height: auto;
		margin: 0 auto;
	}
	.achievement_data {
		order: 2;
		width: 100%;
		max-width: 620px;
	}
}


@media screen and (max-width: 750px) {
	.achievement_system {
		margin-top: 16vw;
		padding-bottom: 12vw;
	}
	.achievement_system_lead {
		top: -9vw;
		width: calc(100% - 8vw);
		margin: 0 auto 5vw;
		padding: 1vw 2vw 1.3vw;
		font-size: 5vw;
		line-height: 1.6;
		letter-spacing: .06em;
		text-align: center;
	}
	.achievement_system_inner {
		gap: 5vw;
	}
	.achievement_compare {
		padding: 0 4vw;
	}
	.achievement_compare img {
		max-width: 100%;
	}
	.achievement_data {
		max-width: none;
	}
	.achievement_data_head {
		font-size: 6.2vw;
		line-height: 1.3;
	}
	.achievement_data_head span {
		font-size: 9vw;
	}
	.achievement_data_title {
		font-size: 6.1vw;
		line-height: 1.45;
		letter-spacing: .01em;
		white-space: nowrap;
	}
	.achievement_data_title span {
		top: .8vw;
		font-size: 12vw;
	}
	.achievement_data_text {
		width: calc(100% - 6vw);
		margin: 1vw auto 0;
		padding: 0 1vw 3vw;
		font-size: 4vw;
		line-height: 1.5;
		letter-spacing: .01em;
		white-space: nowrap;
	}
	.achievement_data_text strong {
		font-size: 7.5vw;
	}
}
/*-----------------------------------------------------
	#about
------------------------------------------------------*/
#about {
	position: relative;
	z-index: 0;
	margin-top: -83px;
	padding-top: 212px;
	padding-bottom: 160px;
}
#about .about_bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	pointer-events: none;
	overflow: hidden;
}
#about .about_bg_pc,
#about .about_bg_sp {
	width: 100%;
}
#about .about_bg_sp {
	display: none;
}
#about .about_bg svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}
#about .about_bg svg path {
	transform-box: fill-box;
	transform-origin: center;
	will-change: transform, opacity;
	animation: aboutWaveFlow 5.5s ease-in-out infinite alternate;
}
#about .about_bg svg path:nth-of-type(3n) {
	animation-duration: 6.5s;
	animation-name: aboutWaveFlowReverse;
}
#about .about_bg svg path:nth-of-type(4n) {
	animation-duration: 7.5s;
	animation-delay: -1.5s;
	opacity: 0.85;
}
#about .about_bg svg path:nth-of-type(5n) {
	animation-duration: 8.5s;
	animation-delay: -3s;
}
@keyframes aboutWaveFlow {
	0% {
		transform: translate3d(-24px, 0, 0);
	}
	50% {
		transform: translate3d(0, 4px, 0);
	}
	100% {
		transform: translate3d(24px, 0, 0);
	}
}
@keyframes aboutWaveFlowReverse {
	0% {
		transform: translate3d(24px, 2px, 0);
	}
	50% {
		transform: translate3d(0, -3px, 0);
	}
	100% {
		transform: translate3d(-24px, 2px, 0);
	}
}
@media screen and (max-width: 750px) {
	#about .about_bg_pc {
		display: none;
	}
	#about .about_bg_sp {
		display: block;
	}
	#about .about_bg svg path {
		animation-duration: 4.8s;
	}
	@keyframes aboutWaveFlow {
		0% {
			transform: translate3d(-12px, 0, 0);
		}
		50% {
			transform: translate3d(0, 3px, 0);
		}
		100% {
			transform: translate3d(12px, 0, 0);
		}
	}
	@keyframes aboutWaveFlowReverse {
		0% {
			transform: translate3d(12px, 1px, 0);
		}
		50% {
			transform: translate3d(0, -2px, 0);
		}
		100% {
			transform: translate3d(-12px, 1px, 0);
		}
	}
}
@media (prefers-reduced-motion: reduce) {
	#about .about_bg svg path {
		animation: none;
	}
}
.about_box {
	justify-content: space-between;
}
.about_child {
	position: relative;
	width: 50%;
	padding-right: 100px;
}
.about_child:first-of-type {
	width: calc(50% - 100px);
	background: url("../img/home/about_img.webp") center center no-repeat;
	background-size: cover;
}
.about_child:first-of-type img {
	display: none;
}
.about_child h2 {
	width: fit-content;
	margin-bottom: 45px;
}
.about_child ul li {
	position: relative;
	padding: 30px 0 30px 110px;
	border-bottom: 1px solid #cacaca;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.about_child ul li::before {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  width: 90px;
  height: 57px;
  background-image: url("../img/home/num_01.svg");
	background-position: center center;
  background-size: cover;
	background-repeat: no-repeat;
}
.about_child ul li:nth-of-type(2)::before {
  background-image: url("../img/home/num_02.svg");
}
.about_child ul li:nth-of-type(3)::before {
  background-image: url("../img/home/num_03.svg");
}
.about_child ul li:nth-of-type(4)::before {
  background-image: url("../img/home/num_04.svg");
}
.about_child ul li:nth-of-type(5)::before {
  background-image: url("../img/home/num_05.svg");
}
.about_child ul li:nth-of-type(6)::before {
  background-image: url("../img/home/num_06.svg");
}
.about_child ul li:nth-of-type(7)::before {
  background-image: url("../img/home/num_07.svg");
}
@media screen and (max-width: 1360px) {
	.about_child {
		padding-right: 40px;
	}
}
@media screen and (max-width: 1000px) {
	.about_child {
		order: 2;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}
	.about_child:nth-of-type(2) {
		order: 1;
		margin-bottom: 40px;
		padding-right: 40px;
		padding-left: 40px;
	}
	.about_child:first-of-type {
		width: 100%;
		background: none;
	}
	.about_child:first-of-type img {
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.about_child h2 {
		width: auto;
	}
}
@media screen and (max-width: 750px) {
	#about {
		margin-top: 0;
		padding-top: 18.933vw;
		padding-bottom: 0;
	}
	.about_child h2 {
		margin-bottom: 27px;
	}
	.about_child:nth-of-type(2) {
		padding-right: 20px;
		padding-left: 20px;
	}
	.about_child ul li {
		padding: 13px 0 13px 60px;
		font-size: 20px;
	}
	.about_child ul li::before {
		width: 50px;
		height: 31px;
	}
}
/*-----------------------------------------------------
	#information
------------------------------------------------------*/
#information {
	padding-top: 80px;
	padding-bottom: 113px;
	background: url("../img/home/bg_01.webp") no-repeat top center;
	background-size: cover;
}
#information h2 {
	position: relative;
	margin-bottom: 98px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
}
#information h2 span {
	display: block;
	font-size: 60px;
}
#information h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -38px;
	left: 50%;
	transform: translateX(-50%);
  width: 77px;
  height: 14px;
  background: url("../img/home/info_icon.svg") no-repeat center center;
  background-size: cover;
}
#information ul {
	gap: 30px;
	width: 870px;
	max-width: 100%;
	margin-bottom: 72px;
}
#information ul li {
	position: relative;
	padding-bottom: 5px;
	padding-left: 40px;
	border-bottom: 1px solid #cacaca;
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
#information ul li::before {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% - 2.5px);
	left: 0;
	transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: url("../img/common/check_icon.svg") no-repeat center center;
  background-size: cover;
}
#information iframe {
	width: 100%;
	height: 100%;
}
#information .hour {
	position: relative;
	z-index: 0;
}
#information .hour::after {
  content: "";
  display: block;
  position: absolute;
	top: -236px;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
  width: 344px;
  height: 470px;
  background: url("../img/home/information_img.webp") no-repeat center center;
  background-size: cover;
}
#information .hour h3:nth-of-type(2){
	background: var(--red-color);
}
@media screen and (max-width: 1360px) {
	#information ul {
		width: 870px;
	}
	#information .hour::after {
		top: -172px;
		width: 250px;
		height: 342px;
	}
}
@media screen and (max-width: 1180px) {
	#information ul {
		width: 866px;
	}
	#information iframe {
		height: 500px;
	}
}
@media screen and (max-width: 1000px) {
	#information ul {
		flex-direction: column;
		width: 100%;
	}
	#information ul li {
		width: fit-content;
	}
}
@media screen and (max-width: 750px) {
	#information {
		padding-top: 60px;
		padding-bottom: 60px;
		background: url("../img/home/sp_bg_01.webp") no-repeat top center;
		background-size: cover;
	}
	#information h2 {
		margin-bottom: 73px;
		font-size: 20px;
	}
	#information h2 span {
		font-size: 30px;
	}
	#information ul {
		gap: 25px;
		margin-bottom: 51px;
	}
	#information ul li {
		padding-left: 35px;
		font-size: 20px;
	}
	#information ul li::before {
		width: 26px;
		height: 21px;
	}
	#information iframe {
		height: 160vw;
	}
	#information .hour::after {
		top: -31.467vw;
		width: 45.867vw;
		height: 62.667vw;
	}
	#information .hour h3:nth-of-type(2){
		margin-top: 40px;
	}
}
@media screen and (max-width: 600px) {
	#information .hour::after {
		top: -22.833vw;
		width: 33.333vw;
		height: 45.5vw;
	}
}
/*-----------------------------------------------------
	#cv
------------------------------------------------------*/
#cv {
	padding-top: 100px;
	text-align: center;
}
#cv h2 {
	margin-bottom: 20px;
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
#cv p {
	margin-bottom: 100px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
}
.cv_inner {
	width: 611px;
	margin: 0 auto;
}
.cv_inner h3 {
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: #fff;
}
.cv_l {
	width: 50%;
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--orange-color);
}
.cv_r {
	width: 50%;
	padding-top: 80px;
	padding-bottom: 32px;
	background: var(--red-color);
}
.cv_inner .hour_btn_child {
	background: #fff;
}
.cv_inner .hour_btn_child a.red_web {
	color: var(--red-color) !important;
}
.cv_inner .hour_btn_child a.red_web span::after {
	background: url(../img/common/red_web_icon.svg) no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 1450px) {
	.cv_l {
		padding-right: 0;
		padding-left: 0;
	}
	.cv_r {
		padding-right: 0;
		padding-left: 0;
	}
	.cv_inner {
		width: 100%;
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media screen and (max-width: 1160px) {
	.cv_l {
		width: 100%;
	}
	.cv_r {
		width: 100%;
	}
	.cv_inner {
		padding-right: 90px;
		padding-left: 90px;
	}
}
@media screen and (max-width: 750px) {
	.cv_l {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.cv_r {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.cv_inner {
		padding-right: 0;
		padding-left: 0;
	}
	.cv_r .cv_inner h3 {
		margin-bottom: 80px;
	}
	.cv_inner .hour_btn {
		flex-direction: column;
		gap: 11px;
		position: relative;
	}
	.cv_inner .hour_btn_child {
		width: 300px;
		margin-right: auto;
		margin-left: auto;
	}
	.isogi {
		display: block;
    position: absolute;
		top: -46px;
		left: 50%;
		transform: translateX(-50%);
    width: 300px;
    margin-top: 0;
	}
	.isogi::before {
		top: auto;
		bottom: -18px;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
	}
}
/*-----------------------------------------------------
	#first
------------------------------------------------------*/
#first {
	padding-top: 100px;
	padding-bottom: 55px;
}
#first .wrap {
	padding: 80px 94px;
	background: #fff;
	border: 1px solid #cacaca;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
.first {
	align-items: center;
}
.first_l {
	width: 50%;
	padding-right: 52px;
}
.first_l img {
	width: 100%;
}
.first_r {
	width: 50%;
}
.first_r h3 {
	margin-bottom: 50px;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.first_r p {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1360px) {
	#first .wrap {
		padding: 80px 40px;
	}
}
@media screen and (max-width: 1000px) {
	.first_l {
		width: 100%;
		margin-bottom: 30px;
		padding-right: 0;
	}
	.first_r {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#first {
		padding-top: 60px;
		padding-bottom: 43px;
	}
	#first .wrap {
		padding: 60px 20px;
	}
	.first_r h3 {
		margin-bottom: 30px;
		font-size: 20px;
		text-align: center;
	}
	.first_r p {
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	#features
------------------------------------------------------*/
#features {
	padding-bottom: 160px;
	background: #FFFFFF;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 241, 234, 1) 28%, rgba(236, 236, 236, 1) 100%);
}
.features_bg {
	width: 100%;
	height: auto;
	overflow: hidden;
	pointer-events: none;
}
.features_bg_pc,
.features_bg_sp {
	width: 100%;
}
.features_bg_sp {
	display: none;
}
.features_bg svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}
.features_bg svg path {
	transform-box: fill-box;
	transform-origin: center;
	will-change: transform, opacity;
	animation: featuresWaveFlow 5.5s ease-in-out infinite alternate;
}
.features_bg svg path:nth-of-type(3n) {
	animation-duration: 6.5s;
	animation-name: featuresWaveFlowReverse;
}
.features_bg svg path:nth-of-type(4n) {
	animation-duration: 7.5s;
	animation-delay: -1.5s;
	opacity: 0.85;
}
.features_bg svg path:nth-of-type(5n) {
	animation-duration: 8.5s;
	animation-delay: -3s;
}
@keyframes featuresWaveFlow {
	0% {
		transform: translate3d(-24px, 0, 0);
	}
	50% {
		transform: translate3d(0, 4px, 0);
	}
	100% {
		transform: translate3d(24px, 0, 0);
	}
}
@keyframes featuresWaveFlowReverse {
	0% {
		transform: translate3d(24px, 2px, 0);
	}
	50% {
		transform: translate3d(0, -3px, 0);
	}
	100% {
		transform: translate3d(-24px, 2px, 0);
	}
}
@media screen and (max-width: 750px) {
	.features_bg_pc {
		display: none;
	}

	.features_bg_sp {
		display: block;
	}

	.features_bg svg path {
		animation-duration: 4.8s;
	}

	@keyframes featuresWaveFlow {
		0% {
			transform: translate3d(-12px, 0, 0);
		}
		50% {
			transform: translate3d(0, 3px, 0);
		}
		100% {
			transform: translate3d(12px, 0, 0);
		}
	}

	@keyframes featuresWaveFlowReverse {
		0% {
			transform: translate3d(12px, 1px, 0);
		}
		50% {
			transform: translate3d(0, -2px, 0);
		}
		100% {
			transform: translate3d(-12px, 1px, 0);
		}
	}
}
/* 動きを苦手とするユーザー向け */
@media (prefers-reduced-motion: reduce) {
	.features_bg svg path {
		animation: none;
	}
}
.features {
	gap: 23px 20px;
}
.features_child {
	width: calc((100% - 80px) / 5);
	padding: 20px;
	background: #fff;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
	text-align: center;
}
.features_child img {
	max-width: 100%;
}
.features_child img.num {
	position: relative;
	max-width: 100%;
	margin-top: -26px;
}
.features_child h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6;
}
.features_child p {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
	text-align: left;
}
@media screen and (max-width: 1360px) {
	.features_child {
		width: calc((100% - 60px) / 4);
	}
}
@media screen and (max-width: 1000px) {
	.features_child {
		width: calc((100% - 40px) / 3);
	}
}
@media screen and (max-width: 750px) {
	#features {
		padding-bottom: 60px;
	}
	.features {
		gap: 20px;
	}
	.features_child {
		width: 100%;
		padding: 20px 15px;
	}
	.features_child p {
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	#team
------------------------------------------------------*/
#team {
	padding-top: 160px;
	padding-bottom: 160px;
	background: url("../img/home/team_bg.webp") no-repeat center center;
	background-size: cover;
}
#team h2 {
	position: relative;
	margin-bottom: 110px;
	font-family: var(--font-serif);
	font-size: 48px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
#team h2::after {
  content: "";
  display: block;
  position: absolute;
	bottom: -38px;
	left: 50%;
	transform: translateX(-50%);
  width: 77px;
  height: 14px;
  background: url("../img/home/team_icon.svg") no-repeat center center;
  background-size: cover;
}
#team .circle-link-map svg {
  display: block;
  width: 100%;
  height: auto;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}
#team .circle-link-map a {
  cursor: pointer;
}
#team .circle-link-map a:hover {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
	#team h2 {
		font-size: 37px;
	}
}
@media screen and (max-width: 750px) {
	#team {
		padding-top: 60px;
		padding-bottom: 60px;
		background: url("../img/home/sp_team_bg.webp") no-repeat center center;
		background-size: cover;
	}
	#team h2 {
		margin-bottom: 83px;
		font-size: 28px;
	}
	.circle-link-map-sp {
		width: 100%;
		max-width: 750px;
		margin-right: auto;
		margin-left: auto;
	}
	.circle-link-map-sp svg {
		display: block;
		width: 100%;
		height: auto;
		shape-rendering: geometricPrecision;
		text-rendering: geometricPrecision;
	}
	.circle-link-map-sp a {
		cursor: pointer;
	}
	.circle-link-map-sp a:hover {
		opacity: 1;
	}
}
/*-----------------------------------------------------
	#doctor
------------------------------------------------------*/
#doctor {
	padding-top: 160px;
	padding-bottom: 160px;
}
#doctor h2 {
	margin-bottom: 0;
}
.doctor_top {
	position: relative;
	margin-bottom: 133px;
	background: #FFFFFF;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 242, 234, 1) 100%);
}
.doctor_top_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.doctor_top_bg img {
	width: 100%;
	height: auto;
}
.doctor_top .flex {
	gap: 25px;
}
.doctor_top .doctor_img {
	position: relative;
	width: 506px;
}
.doctor_top .doctor_img img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.doctor_top .doctor_prof {
	width: calc(100% - 531px);
	padding-top: 120px;
	padding-bottom: 57px;
}
.doctor_prof .katagaki {
	display: inline-block;
	margin-bottom: 30px;
	padding: 10px;
	background: #E92A04;
	background: linear-gradient(90deg, rgba(233, 42, 4, 1) 0%, rgba(255, 144, 41, 1) 100%);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	text-align: center;
}
.doctor_prof h3 {
	position: relative;
	margin-bottom: 50px;
	font-family: var(--font-serif);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
}
.doctor_prof h3 span {
	display: inline-block;
	margin-left: 10px;
	font-family: "Marcellus", serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
}
.doctor_prof p {
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.doctor_prof div.left {
	margin-bottom: 10px;
}
.doctor_bottom {
	position: relative;
	background: #FFFFFF;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 242, 234, 1) 100%);
}
.doctor_bottom_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.doctor_bottom_bg img {
	width: 100%;
	height: auto;
}
.doctor_bottom .flex {
	gap: 110px;
}
.doctor_bottom .doctor_img {
	position: relative;
	width: 375px;
}
.doctor_bottom .doctor_img img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.doctor_bottom .doctor_prof {
	width: calc(100% - 485px);
	padding-left: 120px;
	padding-bottom: 92px;
}
.sp_doctor {
	display: none;
}
@media screen and (max-width: 1360px) {
	.doctor_top .doctor_img {
		width: 35%;
	}
	.doctor_top .doctor_prof {
		width: calc(65% - 25px);
	}
	.doctor_bottom .flex {
		gap: 25px;
	}
	.doctor_bottom .doctor_img {
		width: 35%;
	}
	.doctor_bottom .doctor_prof {
		width: calc(65% - 25px);
		padding-left: 0;
	}
}
@media screen and (max-width: 1000px) {
	.doctor_img {
		display: none;
	}
	.sp_doctor {
		display: block;
		position: relative;
		z-index: 1;
		margin-bottom: 40px;
		text-align: center;
	}
	.doctor_top {
		margin-bottom: 0;
	}
	.doctor_top_bg {
		top: 40%;
	}
	.doctor_top .flex {
		gap: 0;
	}
	.doctor_top .doctor_prof {
		width: 100%;
		padding-top: 40px;
		padding-bottom: 60px;
		text-align: center;
	}
	.doctor_prof p {
		text-align: left;
	}
	.doctor_prof div.left {
		text-align: center !important;
	}
	.doctor_bottom_bg {
		top: 40%;
	}
	.doctor_bottom .flex {
		gap: 0;
	}
	.doctor_bottom .doctor_prof {
		width: 100%;
		padding-top: 60px;
		padding-left: 0;
		padding-bottom: 92px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	#doctor {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.sp_doctor img {
		max-width: 100%;
	}
	.doctor_bottom .doctor_prof {
		padding-bottom: 60px;
	}
	.doctor_prof .katagaki {
		margin-bottom: 30px;
		font-size: 14px;
	}
	.doctor_prof h3 {
		margin-bottom: 30px;
		font-size: 30px;
	}
	.doctor_prof h3 span {
		display: block;
		margin-top: 10px;
		margin-left: 0;
	}
	.doctor_prof p {
		margin-bottom: 40px;
	}
}
/*-----------------------------------------------------
  .doctor_slide
------------------------------------------------------*/
.doctor_slide {
  padding-top: 60px;
  overflow: hidden;
}
.doctor_slide .wrap {
  position: relative;
	max-width: 1120px;
  margin: 0 auto;
}
.doctor_swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.doctor_swiper .swiper-wrapper {
  width: 100%;
}
.doctor_swiper .swiper-slide {
  position: relative;
  height: auto;
  min-height: 0;
}
.doctor_swiper .swiper-slide::before,
.doctor_swiper .swiper-slide::after {
  display: none;
  content: none;
}
.doctor_card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.doctor_slide_img {
  display: block;
  width: 100%;
  aspect-ratio: 350 / 300;
  overflow: hidden;
}
.doctor_slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.doctor_slide_info {
  min-height: 125px;
  padding: 22px 10px 18px;
  background: #FFF2EA;
  text-align: center;
}
.doctor_slide_name {
	font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.doctor_slide_name_en {
  margin: 3px 0 14px;
  font-family: "Marcellus", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.doctor_slide_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 20px;
  padding: 0 16px 3px;
  border-radius: 9999px;
  background: #FE8A27;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.doctor_prev,
.doctor_next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 300px;
  padding: 0;
  border: 0;
  background: #333;
  cursor: pointer;
  transform: translateY(-50%);
}
.doctor_prev {
  left: -85px;
}
.doctor_next {
  right: -85px;
}
.doctor_prev span,
.doctor_next span {
  display: block;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.doctor_prev span {
  left: 21px;
  transform: translateY(-50%) rotate(-135deg);
}
.doctor_next span {
  right: 21px;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) {
  .doctor_card {
    transition: opacity .3s ease;
  }
  .doctor_card:hover {
    opacity: .75;
  }
}
@media screen and (max-width: 1240px) {
  .doctor_slide {
    padding-right: 70px;
    padding-left: 70px;
  }
  .doctor_prev {
    left: -75px;
  }
  .doctor_next {
    right: -75px;
  }
}
@media screen and (max-width: 750px) {
  .doctor_slide {
    padding: 50px 45px;
  }
  .doctor_slide .wrap {
    max-width: 100%;
  }
	.doctor_slide_name {
		font-size: 18px;
	}
	.doctor_slide_category {
		font-size: 13px;
	}
  .doctor_prev,
  .doctor_next {
    width: 40px;
    height: 200px;
  }
  .doctor_prev {
    left: -55px;
  }
  .doctor_next {
    right: -55px;
  }
  .doctor_prev span,
  .doctor_next span {
    width: 13px;
    height: 13px;
  }
  .doctor_prev span {
    left: 17px;
  }
  .doctor_next span {
    right: 17px;
  }
}
@media screen and (max-width: 414px) {
  .doctor_slide {
    padding: 40px 45px;
  }
  .doctor_slide_img {
    aspect-ratio: 260 / 180;
  }
  .doctor_prev,
  .doctor_next {
    width: 30px;
    height: 200px;
  }
  .doctor_prev {
    left: -50px;
  }
  .doctor_next {
    right: -50px;
  }
  .doctor_prev span,
  .doctor_next span {
    width: 12px;
    height: 12px;
  }
  .doctor_prev span {
    left: 12px;
  }
  .doctor_next span {
    right: 12px;
  }
}
/*-----------------------------------------------------
	#price
------------------------------------------------------*/
#price {
	padding-top: 100px;
	padding-bottom: 100px;
}
#price .wrap {
	padding: 80px 94px;
	background: #fff;
	border: 1px solid #cacaca;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
.price {
	align-items: center;
}
.price_l {
	width: 50%;
	padding-right: 52px;
}
.price_l img {
	width: 100%;
}
.price_r {
	width: 50%;
}
.price_r h2 {
	margin-bottom: 50px;
	text-align: left;
}
.price_r p {
	margin-bottom: 50px;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.price_img {
	display: none;
}
@media screen and (max-width: 1360px) {
	#price .wrap {
		padding: 80px 40px;
	}
}
@media screen and (max-width: 1000px) {
	.price_l {
		display: none;
	}
	.price_r {
		width: 100%;
		text-align: center;
	}
	.price_r h2 {
		margin-bottom: 50px;
		text-align: center;
	}
	.price_img {
		display: block;
		max-width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
	.price_img  img {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#price {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#price .wrap {
		padding: 60px 20px;
	}
	.price_r h2 {
		margin-bottom: 40px;
	}
	.price_r p {
		font-size: 16px;
	}
}
@media screen and (max-width: 560px) {
	.price_r p {
		text-align: left;
	}
}
/*-----------------------------------------------------
	#tour
------------------------------------------------------*/
#tour {
	padding-top: 100px;
	padding-bottom: 100px;
	background: url("../img/home/tour_bg.webp") no-repeat center center;
	background-size: cover;
}
#tour .tour {
	width: 700px;
	padding: 80px 94px;
	background: #fff;
	border: 1px solid #cacaca;
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
}
#tour .tour h2 {
	margin-bottom: 50px;
	text-align: left;
}
#tour .tour p {
	margin-bottom: 50px;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1360px) {
	#tour .tour {
		padding: 80px 40px;
	}
}
@media screen and (max-width: 1000px) {
	#tour .tour {
		width: 100%;
	}
	#tour .tour {
		text-align: center;
	}
	#tour .tour h2 {
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	#tour {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#tour .tour {
		padding: 60px 20px;
	}
	#tour .tour h2 {
		margin-bottom: 40px;
	}
	#tour .tour p {
		font-size: 16px;
	}
}
@media screen and (max-width: 560px) {
	#tour .tour p {
		text-align: left;
	}
}
/*-----------------------------------------------------
	#specialty
------------------------------------------------------*/
#specialty {
	padding-top: 160px;
	padding-bottom: 80px;
}
#specialty h2 {
	margin-bottom: 80px;
	font-family: var(--font-serif);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.1em;
	text-align: center;
}
#specialty h2 span {
	display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(233,42,4, 1) 0%, rgba(255,144,41, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.specialty, .specialty_02 {
	position: relative;
	margin-bottom: 53px;
	padding-top: 63px;
}
.specialty_img {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 610px);
}
.specialty_02 .specialty_img {
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	width: calc(100% - 610px);
}
.specialty_img img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}
.specialty_02 .specialty_text {
	margin-left: 80px;
}
.specialty_text {
	position: relative;
	width: 610px;
	margin-left: calc(100% - 690px);
	padding: 40px 20px 80px;
	background: rgba(255,255,255,.8);
	box-shadow: 0px 20px 30px 0 rgba(0,0,0,0.1);
	text-align: center;
}
.specialty_text img {
	margin-bottom: 30px;
}
.specialty_text h3 {
	margin-bottom: 30px;
	font-family: var(--font-serif);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: var(--red-color);
}
.specialty_text p {
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
	#specialty h2 {
		font-size: 50px;
	}
	.specialty {
		margin-bottom: 53px;
		padding-top: 0;
	}
	.specialty_img, .specialty_02 .specialty_img {
		position: relative;
		width: 100%;
	}
	.specialty_img img {
		height: 450px;
	}
	.specialty_text, .specialty_02 .specialty_text {
		margin-top: -60px;
		margin-right: auto;
		margin-left: auto;
	}
}
@media screen and (max-width: 750px) {
	#specialty {
		padding-top: 60px;
		padding-bottom: 20px;
	}
	#specialty h2 {
		margin-bottom: 40px;
		font-size: 30px;
		line-height: 1.3;
	}
	#specialty h2 span {
		padding-top: 18px;
	}
	.specialty {
		margin-bottom: 40px;
	}
	.specialty_img img {
		height: auto;
	}
	.specialty_text, .specialty_02 .specialty_text {
		width: calc(100% - 40px);
		margin-top: -20px;
		padding: 40px 20px 60px;
	}
	.specialty_text img {
		margin-bottom: 40px;
	}
	.specialty_text h3 {
		margin-bottom: 40px;
		font-size: 24px;
	}
	.specialty_text p {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 550px) {
	.specialty_text p {
		text-align: left;
	}
}
