@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/
/*-----------------------------------------------------
  #mv
------------------------------------------------------*/
#mv {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	max-height: 1080px;
	overflow: hidden;
	background: #eee;
}
.mv_pc {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100%;
	height: 100%;
}
.mv_pc_column {
	--column-delay: 0s;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv_pc_column_right {
	--column-delay: 0.15s;
}
.mv_pc_slide {
	--slide-delay: 0s;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	clip-path: polygon(
		0 100%,
		100% 100%,
		100% 0,
		0 0
	);
	will-change: clip-path;
	animation-name: mv_pc_slide_mask;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--column-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.mv_pc_slide:nth-child(1) {
	--slide-delay: 0s;
	z-index: 6;
}
.mv_pc_slide:nth-child(2) {
	--slide-delay: 5s;
	z-index: 5;
}
.mv_pc_slide:nth-child(3) {
	--slide-delay: 10s;
	z-index: 4;
}
.mv_pc_slide:nth-child(4) {
	--slide-delay: 15s;
	z-index: 3;
}
.mv_pc_slide:nth-child(5) {
	--slide-delay: 20s;
	z-index: 2;
}
.mv_pc_slide:nth-child(6) {
	--slide-delay: 25s;
	z-index: 1;
}
.mv_pc_slide_inner {
	position: relative;
	width: 100%;
	height: 100%;
}
@keyframes mv_pc_slide_mask {
	0% {
		clip-path: polygon(
			0 100%,
			100% 100%,
			100% 0,
			0 0
		);
	}
	17% {
		z-index: 7;

		clip-path: polygon(
			0 100%,
			100% 100%,
			100% 0,
			0 0
		);
	}
	24% {
		z-index: 7;

		clip-path: polygon(
			0 0,
			100% 0,
			100% 0,
			0 0
		);
	}
	32% {
		z-index: 0;
	}
	100% {
		z-index: 0;

		clip-path: polygon(
			0 0,
			100% 0,
			100% 0,
			0 0
		);
	}
}

.mv_pc_bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 120%;
	height: 100%;
	overflow: hidden;
	will-change: transform;
	animation-name: mv_pc_bg_move;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--column-delay));
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.mv_pc_bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: opacity;
	animation-name: mv_pc_image_fade;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--column-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
@keyframes mv_pc_bg_move {
	0% {
		transform: translate3d(0, 0, 0);
	}
	24% {
		transform: translate3d(-15%, 0, 0);
	}
	79% {
		transform: translate3d(-15%, 0, 0);
	}
	80% {
		transform: translate3d(-2%, 0, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes mv_pc_image_fade {
	0% {
		opacity: 1;
	}
	18% {
		opacity: 1;
	}
	24% {
		opacity: 0;
	}
	79% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.mv_pc_content {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	color: #fff;
	pointer-events: none;
	will-change: opacity;
	animation-name: mv_pc_content_fade;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--column-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
@keyframes mv_pc_content_fade {
	0% {
		opacity: 1;
	}
	16.5% {
		opacity: 1;
	}
	22.5% {
		opacity: 0;
	}
	79% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.mv_pc_text {
	position: absolute;
	top: 50%;
	left: 7.3vw;
	transform: translateY(-50%);
}
.mv_pc_text h2 {
	margin-bottom: 5px;
	font-size: 56px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.mv_pc_lead {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.mv_pc_slide:first-of-type .mv_pc_lead {
	font-family: var(--font-en);
}
.mv_pc_medals {
	position: absolute;
	bottom: 8.5%;
	left: 7.3vw;
}
.mv_pc_medals img {
	display: block;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 1790px) {
	.mv_pc_text {
		left: 50px;
		padding-right: 50px;
	}
	.mv_pc_medals {
		left: 50px;
		padding-right: 50px;
	}
}
@media screen and (max-width: 1580px) {
	.mv_pc_text h2 {
		font-size: 42px;
	}
	.mv_pc_lead {
		font-size: 20px;
	}
}
/*-----------------------------------------------------
  SP
------------------------------------------------------*/
.mv_sp {
	display: none;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv_sp_stack {
	--stack-delay: 0s;
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	overflow: hidden;
}
.mv_sp_stack_top {
	top: 0;
}
.mv_sp_stack_bottom {
	--stack-delay: 0.18s;
	bottom: 0;
}
.mv_sp_slide {
	--slide-delay: 0s;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	clip-path: polygon(
		100% 0,
		0 0,
		0 100%,
		100% 100%
	);
	will-change: clip-path;
	animation-name: mv_sp_slide_mask;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--stack-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.mv_sp_slide:nth-child(1) {
	--slide-delay: 0s;
	z-index: 6;
}
.mv_sp_slide:nth-child(2) {
	--slide-delay: 5s;
	z-index: 5;
}
.mv_sp_slide:nth-child(3) {
	--slide-delay: 10s;
	z-index: 4;
}
.mv_sp_slide:nth-child(4) {
	--slide-delay: 15s;
	z-index: 3;
}
.mv_sp_slide:nth-child(5) {
	--slide-delay: 20s;
	z-index: 2;
}
.mv_sp_slide:nth-child(6) {
	--slide-delay: 25s;
	z-index: 1;
}
.mv_sp_slide_inner {
	position: relative;
	width: 100%;
	height: 100%;
}
@keyframes mv_sp_slide_mask {
	0% {
		clip-path: polygon(
			100% 0,
			0 0,
			0 100%,
			100% 100%
		);
	}
	17% {
		z-index: 7;

		clip-path: polygon(
			100% 0,
			0 0,
			0 100%,
			100% 100%
		);
	}
	24% {
		z-index: 7;

		clip-path: polygon(
			0 0,
			0 0,
			0 100%,
			0 100%
		);
	}
	32% {
		z-index: 0;
	}
	100% {
		z-index: 0;

		clip-path: polygon(
			0 0,
			0 0,
			0 100%,
			0 100%
		);
	}
}
.mv_sp_bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 110%;
	height: 100%;
	overflow: hidden;
	will-change: transform;
	animation-name: mv_sp_bg_move;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--stack-delay));
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.mv_sp_bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	will-change: opacity;
	animation-name: mv_sp_image_fade;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--stack-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
@keyframes mv_sp_bg_move {
	0% {
		transform: translate3d(0, 0, 0);
	}
	24% {
		transform: translate3d(-9%, 0, 0);
	}
	79% {
		transform: translate3d(-9%, 0, 0);
	}
	80% {
		transform: translate3d(-1%, 0, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes mv_sp_image_fade {
	0% {
		opacity: 1;
	}
	18% {
		opacity: 1;
	}
	24% {
		opacity: 0;
	}
	79% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.mv_sp_content {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	color: #fff;
	pointer-events: none;
	will-change: opacity;
	animation-name: mv_sp_content_fade;
	animation-duration: 30s;
	animation-delay:
		calc(var(--slide-delay) + var(--stack-delay));
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
@keyframes mv_sp_content_fade {
	0% {
		opacity: 1;
	}
	16.5% {
		opacity: 1;
	}
	22.5% {
		opacity: 0;
	}
	79% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
.mv_sp_text {
	position: absolute;
	top: 30px;
	right: 16px;
	left: 16px;
}
.mv_sp_text h2 {
	margin: 0 0 8px;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.06em;
	text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}
.mv_sp_lead {
	margin: 0;
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.mv_sp_slide:first-of-type .mv_sp_lead {
	font-family: var(--font-en);
}
.mv_sp_medals {
	position: absolute;
	right: 16px;
	bottom: 80px;
	left: 16px;
}
.mv_sp_medals img {
	display: block;
	width: 540px;
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 750px) {
	.mv_sp_text {
		top: 20px;
	}
	.mv_sp_text h2 {
		font-size: 6.333vw;
	}
	.mv_sp_lead {
		font-size: 2.967vw;
	}
	.mv_sp_medals {
		bottom: 110px;
	}
	.mv_sp_medals img {
		width: 500px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 414px) {
	.mv_sp_text h2 {
		font-size: 6.233vw;
	}
	.mv_sp_lead {
		font-size: 3.267vw;
	}
}
/*-----------------------------------------------------
  共通波線
------------------------------------------------------*/
.mv_bottom {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 8;
	width: 100%;
	height: 120px;
	overflow: hidden;
	pointer-events: none;
}
.mv_bottom canvas {
	display: block;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1000px) {
	#mv {
		height: 100svh;
		min-height: initial;
		max-height: initial;
	}
	.mv_pc {
		display: none;
	}
	.mv_sp {
		display: block;
	}
	.mv_bottom {
		height: 80px;
	}
}
/*-----------------------------------------------------
  動きを減らす設定
------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
	.mv_pc_slide,
	.mv_pc_bg,
	.mv_pc_bg img,
	.mv_pc_content,
	.mv_sp_slide,
	.mv_sp_bg,
	.mv_sp_bg img,
	.mv_sp_content {
		animation-play-state: paused;
	}
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
#news {
	padding-top: 120px;
	padding-bottom: 120px;
	background: #D8CFC9;
}
#news .wrap .flex {
  align-items: center;
}
.news_l {
	width: 270px;
	padding-right: 64px;
}
.news_l .midasi_01 {
	width: max-content;
	margin-bottom: 40px;
	font-size: 16px;
	text-align: left;
}
.news_l .midasi_01 span {
	font-size: 40px;
}
.news_l .midasi_01 span.title_bg {
	top: -95px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	min-width: 100%;
	white-space: nowrap;
	font-size: 144px;
}
.news_r {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-direction: row;
	gap: 25px;
	width: calc(100% - 270px);
}
.news_item {
	width: 100%;
	margin-bottom: 0;
	border-bottom: 1px solid #C3BFBD;
}
.news_item a {
	display: block;
	position: relative;
	padding-right: 56px;
	padding-bottom: 25px;
}
.news_item a::after {
  content: "";
  display: block;
  position: absolute;
	top: calc(50% - 12.5px);
	right: 0;
	transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url("../img/common/news_link_arrow.svg") no-repeat center center;
  background-size: cover;
}
.news_item time {
	margin-bottom: 8px;
	font-family: var(--font-en);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.news_item h3 {
	display: block;
	padding-left: 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1240px) {
	.news_l .midasi_01 span.title_bg {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	#news {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.news_l {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-bottom: 32px;
		padding-right: 0;
	}
	.news_l .midasi_01 {
		margin-bottom: 0;
		font-size: 14px;
	}
	.news_l .midasi_01 span {
		font-size: 28px;
	}
	.news_r {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		flex-direction: row;
		gap: 25px;
		width: 100%;
	}
	.news_item h3 {
		font-size: 14px;
	}
}
/*-----------------------------------------------------
	#about
------------------------------------------------------*/
#about {
	padding-top: 262px;
	padding-bottom: 180px;
}
.about {
	align-items: center;
	margin-bottom: 150px;
}
.about_l {
	width: 540px;
	margin-left: calc((100% - 1160px) / 2);
	text-align: left;
}
.about_l .midasi_01 {
	width: max-content;
	margin-bottom: 64px;
	text-align: left;
}
.about_l .midasi_01 span.title_bg {
	top: -54px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	min-width: 100%;
	white-space: nowrap;
	font-size: 144px;
	color: #EFEAE7;
}
.about_l ol {
	counter-reset: about-number;
}
.about_l ol li {
	counter-increment: about-number;
	position: relative;
	list-style-type: none;
	margin-bottom: 16px;
	padding-bottom: 12px;
	padding-left: 60px;
	border-bottom: 1px solid #C3BFBD;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.about_l ol li::before {
  content: counter(about-number, decimal-leading-zero);
  display: block;
  position: absolute;
	top: calc(50% - 8px);
	left: 0;
	transform: translateY(-50%);
	font-size: 36px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--green);
}
.about_r {
	width: 696px;
	margin-left: 64px;
}
.about_r img {
	display: block;
	width: 100%;
	height: auto;
}
.about_l img {
	display: none;
}
.about_bottom {
	justify-content: space-between;
	margin-top: 80px;
}
.about_child {
	width: 48.7%;
	padding: 40px;
	border: 1px solid var(--text-color);
	border-radius: 16px;
	text-align: center;
}
.about_child img {
	margin-bottom: 16px;
}
.about_child h3 {
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #C3BFBD;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.about_child p {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
	text-align: left;
}
@media screen and (max-width: 1460px) {
	.about_r {
		width: 50%;
		margin-left: 40px;
	}
}
@media screen and (max-width: 1240px) {
	.about_l {
		width: calc(50% - 40px);
		margin-left: 40px;
	}
	.about_r {
		width: calc(50% - 40px);
		margin-left: 40px;
	}
}
@media screen and (max-width: 1000px) {
	.about_l {
		width: calc(100% - 80px);
		margin-right: auto;
		margin-left: auto;
		text-align: left;
	}
	.about_l img {
		display: block;
		width: 500px;
		max-width: 100%;
		height: auto;
		margin: 0 auto 32px;
	}
	.about_l .midasi_01 {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}
	.about_r {
		display: none;
	}
	.about_bottom {
		gap: 30px;
	}
	.about_child {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
	#about {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.about {
		margin-bottom: 48px;
	}
	.about_l {
		width: calc(100% - 32px);
	}
	.about_l .midasi_01 {
		margin-bottom: 48px;
	}
	.about_l .midasi_01 span.title_bg {
		top: -33px;
		font-size: 88px;
	}
	.about_l ol li {
		margin-bottom: 12px;
		padding-bottom: 12px;
		padding-left: 40px;
		font-size: 14px;
	}
	.about_l ol li::before {
		font-size: 26px;
	}
	.about_bottom {
		margin-top: 48px;
	}
	.about_child {
		padding: 24px;
	}
	.about_child h3 {
		font-size: 16px;
	}
}
/*-----------------------------------------------------
	#problems
------------------------------------------------------*/
#problems {
	padding-top: 300px;
	background: #D8CFC9;
}
.problems_line {
	width: 1px;
	height: 80px;
	margin: 24px auto 64px;
	background: var(--text-color);
}
#problems .flex {
	gap: 32px;
}
.problems_child {
	width: calc((100% - 96px) / 4);
	background: #E8E2DF;
	text-align: center;
}
.problems_child img {
	width: 100%;
	margin-bottom: 16px;
}
.problems_child h3 {
	width: 100%;
	margin-bottom: 16px;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.problems_child h3::before {
  content: "";
  display: block;
  width: 23px;
  height: 20px;
	margin: 0 auto 4px;
  background: url("../img/home/problems_check.svg") no-repeat center center;
  background-size: cover;
}
#problems .center {
	margin-top: 64px;
	margin-bottom: 80px;
}
.problems_bottom {
	padding-top: 120px;
	padding-bottom: 120px;
	background: var(--green);
	color: #fff;
}
.problems_bottom .wrap {
	position: relative;
	width: 960px;
}
.problems_bottom .wrap h3 {
	margin-bottom: 8px;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.2em;
}
.problems_br {
	display: block;
}
.problems_bottom .wrap p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.2em;
}
.problems_photo {
	position: absolute;
	bottom: -120px;
	right: 0;
}
@media screen and (max-width: 1000px) {
	#problems {
		padding-top: 250px;
	}
	.problems_bottom .wrap {
		width: 100%;
		padding-right: 37%;
		padding-left: 20px;
	}
	#problems .flex {
		gap: 16px;
	}
	.problems_child {
		width: calc((100% - 32px) / 3);
	}
	.problems_child h3 {
		font-size: 15px;
	}
	.problems_bottom .wrap h3 span {
		display: none;
	}
	.problems_br {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	#problems {
		padding-top: 80px;
	}
	.problems_line {
		width: 1px;
		height: 56px;
		margin: 14px auto 48px;
	}
	#problems .flex {
		gap: 16px;
	}
	.problems_child {
		width: calc((100% - 16px) / 2);
	}
	.problems_child img {
		margin-bottom: 12px;
	}
	.problems_child h3 {
		margin-bottom: 12px;
		padding-right: 12px;
		padding-left: 12px;
		font-size: 14px;
	}
	#problems .center {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.problems_bottom {
		position: relative;
		padding-top: 13.333vw;
		padding-bottom: 13.333vw;
	}
	.problems_bottom .wrap {
		position: static;
		padding-right: 37%;
		padding-left: 16px;
	}
	.problems_bottom .wrap h3 {
		margin-bottom: 16px;
		font-size: 5.6vw;
	}
	.problems_bottom .wrap p {
		font-size: 4vw;
	}
	.problems_photo {
		display: flex;
		align-items: center;
		position: absolute;
		top: 50%;
		right: 16px;
		transform: translateY(-50%);
	}
	.problems_photo img {
		width: 31.467vw;
		height: auto;
	}
}
@media screen and (max-width: 414px) {
	.problems_child h3 {
		padding-right: 5px;
		padding-left: 5px;
		font-size: 12px;
	}
}
/*-----------------------------------------------------
	#mid_cv
------------------------------------------------------*/
#mid_cv {
	padding-top: 180px;
	padding-bottom: 180px;
}
@media screen and (max-width: 750px) {
	#mid_cv {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
/*-----------------------------------------------------
	#doctor
------------------------------------------------------*/
#doctor {
	padding-bottom: 180px;
}
.doctor {
	align-items: flex-start;
}
.doctor_l {
	width: 540px;
	margin-left: calc((100% - 1160px) / 2);
	text-align: left;
}
.doctor_l img {
	display: none;
}
.doctor_l .midasi_01 {
	width: max-content;
	margin-bottom: 64px;
	text-align: left;
}
.doctor_l .midasi_01 span.title_bg {
	top: -54px;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	min-width: 100%;
	white-space: nowrap;
	font-size: 144px;
	color: #EFEAE7;
}
.doctor_l .prof {
	min-height: 80vh;
	padding-bottom: 140px;
}
.doctor_l .prof:last-of-type {
	min-height: auto;
}
.doctor_l .prof h3 {
	margin-bottom: 8px;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.doctor_l .prof h3 span {
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 400;
}
.doctor_l .prof h4 {
	display: inline-block;
	margin-bottom: 32px;
	padding: 4px 16px;
	border: 1px solid var(--text-color);
	border-radius: 100px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
.doctor_l .prof h4 span {
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 400;
}
.doctor_l .prof p {
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.doctor_l .prof ul {
	margin-top: 24px;
}
.doctor_l .prof ul li {
  padding-left: 3.2em;
  text-indent: -3.2em;
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
.doctor_l .left{
	margin-top: 64px;
}
.doctor_r {
	position: sticky;
	top: 120px;
	width: 545px;
	height: 636px;
	margin-left: 76px;
	overflow: hidden;
}
.doctor_photo {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.03);
	transition:
		opacity 0.8s ease,
		visibility 0.8s ease,
		transform 1.2s ease;
}
.doctor_photo.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.doctor_r img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1460px) {
	.doctor_r {
		width: 50%;
		margin-left: 40px;
	}
}
@media screen and (max-width: 1240px) {
	.doctor_l {
		width: calc(50% - 40px);
		margin-left: 40px;
	}
	.doctor_r {
		width: calc(50% - 40px);
		margin-left: 40px;
	}
}
@media screen and (max-width: 1000px) {
	.doctor_l {
		width: calc(100% - 80px);
		margin-right: auto;
		margin-left: auto;
		text-align: left;
	}
	.doctor_l .midasi_01 {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}
	.doctor_l .prof {
		min-height: auto;
		padding-bottom: 100px;
	}
	.doctor_l img {
		display: block;
		width: 500px;
		max-width: 100%;
		height: auto;
		margin: 0 auto 32px;
	}
	.doctor_l .left{
		text-align: center !important;
	}
	.doctor_r {
		display: none;
	}
}
@media screen and (max-width: 750px) {
	#doctor {
		padding-bottom: 32px;
	}
	.doctor_l {
		width: calc(100% - 32px);
	}
	.doctor_l .midasi_01 {
		margin-bottom: 48px;
	}
	.doctor_l .midasi_01 span.title_bg {
		top: -33px;
		font-size: 88px;
	}
	.doctor_l img {
		margin: 0 auto 24px;
	}
	.doctor_l .prof {
		padding-bottom: 48px;
	}
	.doctor_l .prof h3 {
		font-size: 22px;
	}
	.doctor_l .prof h3 span {
		font-size: 14px;
	}
	.doctor_l .prof h4 {
		margin-bottom: 24px;
		font-size: 14px;
	}
	.doctor_l .prof h4 span {
		font-size: 14px;
		font-weight: 400;
	}
	.doctor_l .prof p {
		font-size: 14px;
	}
	.doctor_l .prof ul {
		margin-top: 16px;
	}
	.doctor_l .prof ul li {
		font-size: 13px;
	}
	.doctor_l .left{
		margin-top: 48px;
	}
}
@media screen and (max-width: 414px) {
	.doctor_l .prof ul li {
		padding-left: 3.2em;
		text-indent: -3.2em;
		font-size: 12px;
	}
}
/*-----------------------------------------------------
	#menu
------------------------------------------------------*/
#menu {
	padding-top: 300px;
	padding-bottom: 180px;
	background: #D8CFC9;
}
#menu h2 {
	margin-bottom: 64px;
}
@media screen and (max-width: 750px) {
	#menu {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
/*-----------------------------------------------------
	#price
------------------------------------------------------*/
#price {
	position: relative;
	margin-top: 180px;
	padding-top: 80px;
	padding-bottom: 80px;
	background: url("../img/home/price_bg.webp") no-repeat top center;
	background-size: cover;
}
#price::after {
  content: "";
  display: block;
  position: absolute;
	top: 0;
	left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.3);
}
#price .wrap {
	position: relative;
	z-index: 1;
	width: 876px;
	padding: 64px 40px;
	background: rgba(255, 255, 255, 0.75);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	text-align: center;
}
#price .wrap h2 {
	margin-bottom: 24px;
}
#price .wrap p {
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
	#price .wrap {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width: 750px) {
	#price {
		margin-top: 80px;
		padding-top: 40px;
		padding-bottom: 40px;
		background: url("../img/home/sp_price_bg.webp") no-repeat top center;
		background-size: cover;
	}
	#price .wrap {
		width: calc(100% - 48px);
		padding: 40px 24px;
	}
}
/*-----------------------------------------------------
	#recommended
------------------------------------------------------*/
#recommended {
	padding-top: 300px;
	padding-bottom: 180px;
}
#recommended .midasi_01 {
	margin-bottom: 80px;
}
#recommended .midasi_01 span.title_bg {
	color: #EFEAE7;
}
.treatment {
	overflow: hidden;
}
.treatment_inner {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
.treatment_item {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	margin-bottom: 80px;
}
.treatment_item:last-child {
	margin-bottom: 0;
}
.treatment_item_reverse .treatment_main {
	order: 2;
}
.treatment_item_reverse .treatment_detail {
	order: 1;
}
.treatment_main {
	position: relative;
	overflow: hidden;
	min-height: 538px;
}
.treatment_main img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.treatment_vertical {
	position: absolute;
	top: 0;
	left: 0;
	font-family: var(--font-en);
	font-size: 80px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	writing-mode: vertical-rl;
}
.treatment_item_reverse .treatment_vertical {
	right: 0;
	left: auto;
}
.treatment_detail {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.treatment_text {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	min-height: 372px;
	padding: 72px 48px 22px;
}
.treatment_number {
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-align: center;
}
.treatment_text h3 {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #C3BFBD;
	color: #233E39;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
.treatment_text .link_more_01 {
	width: 197px;
}
.treatment_description {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.1em;
}
.treatment_photos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	height: 166px;
}
.treatment_photo {
	overflow: hidden;
}
.treatment_photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1000px) {
	#recommended .midasi_01 span.title_bg {
		font-size: 13.129vw;
	}
	.treatment_inner {
		padding: 0 40px;
	}
	.treatment_item {
		display: flex;
		flex-direction: column;
		margin-bottom: 64px;
	}
	.treatment_item_reverse .treatment_main,
	.treatment_item_reverse .treatment_detail {
		order: initial;
	}
	.treatment_main {
		min-height: 0;
		aspect-ratio: auto;
	}
	.treatment_main img {
		height: auto;
		object-fit: initial;
	}
	.treatment_vertical {
		font-size: 9.5vw;
	}
	.treatment_detail {
		display: contents;
	}
	.treatment_text {
		display: flex;
		min-height: 0;
		padding: 36px 0 24px;
	}
	.treatment_photos {
		order: 3;
		height: auto;
		aspect-ratio: auto;
	}
	.treatment_photo img {
		height: auto;
		object-fit: initial;
	}
}
@media screen and (max-width: 750px) {
	#recommended {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	#recommended .midasi_01 {
		margin-bottom: 48px;
	}
	.treatment_inner {
		padding: 0 16px;
	}
	.treatment_number {
		font-size: 16px;
	}
	.treatment_text h3 {
		font-size: 22px;
	}
	.treatment_description {
		margin-bottom: 16px;
		font-size: 14px;
	}
}
@media screen and (max-width: 414px) {
	#recommended .midasi_01 span.title_bg {
		top: -14px;
	}
}
/*-----------------------------------------------------
	#information
------------------------------------------------------*/
#information {
	padding-top: 120px;
	padding-bottom: 120px;
	background: #F5EFEC;
}
.information {
	justify-content: space-between;
}
.information_child {
	width: 47.2%;
}
.info_logo {
	display: block;
	width: 165px;
	margin: 0 auto 16px;
}
.information_child a.info_tel {
	display: block;
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
	color: var(--text-color);
	text-align: center;
}
.information_child a.info_tel em {
	position: relative;
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 36px;
	font-family: var(--font-en);
	font-style: normal;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
}
.information_child a.info_tel em::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url("../img/home/info_tel.svg") no-repeat center center;
	background-size: cover;
}
.information_child p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1;
}
.medical_table {
  width: 100%;
	margin-bottom: 24px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 1px solid #C3BFBD;
  font-size: 18px;
}
.medical_table th,
.medical_table td {
	padding-top: 15px;
	padding-bottom: 15px;
  vertical-align: middle;
  font-weight: 500;
  text-align: center;
}
.medical_table thead th {
  padding-top: 0;
  padding-bottom: 15px;
  font-weight: 500;
  border-bottom: 1px solid #C3BFBD;
}
.medical_table thead th:first-child,
.medical_table tbody th {
  width: 36%;
	border-bottom: 1px solid #C3BFBD;
  text-align: center;
}
.medical_table tbody th {
	padding-right: 10px;
	padding-left: 10px;
  font-weight: 500;
  white-space: nowrap;
	text-align: left;
}
.medical_table tbody td {
  width: calc(64% / 7);
	border-bottom: 1px solid #C3BFBD;
}
.medical_table tbody td.green {
  color: var(--green);
}
.information_child iframe {
	width: 100%;
	margin-bottom: 24px;
}
.map_info address {
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
	.information {
		gap: 32px;
	}
	.information_child {
		width: 100%;
	}
	.medical_table thead th:first-child,
	.medical_table tbody th {
		width: 160px;
	}
	.medical_table tbody td {
		width: calc((100% - 160px) / 7);
	}
}
@media screen and (max-width: 750px) {
	#information {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.info_logo {
		margin: 0 auto 24px;
	}
	.information_child a.info_tel em {
		font-size: 26px;
	}
	.information_child p {
		font-size: 12px;
	}
	.medical_table {
		width: 100%;
		margin-bottom: 8px;
		font-size: 14px;
	}
	.medical_table thead th:first-child,
	.medical_table tbody th {
		width: 125px;
	}
	.medical_table tbody td {
		width: calc((100% - 125px) / 7);
	}
	.information_child iframe {
		height: 55.467vw;
		margin-bottom: 16px;
	}
}

/*-----------------------------------------------------
	#blog
------------------------------------------------------*/
#blog {
	padding-top: 180px;
	padding-bottom: 180px;
}
#blog h2 {
	font-size: 16px;
	text-align: left;
}
#blog h2 span {
	font-size: 40px;
}
.blog_head {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
#blog .post_list {
	margin-bottom: 120px;
}
.post_list_item:nth-child(n + 4) {
	display: none;
}
@media screen and (max-width: 750px) {
	#blog {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	#blog h2 {
		font-size: 14px;
	}
	#blog h2 span {
		font-size: 26px;
	}
	#blog .post_list {
		margin-bottom: 80px;
	}
	.post_list_item:nth-child(n + 4) {
		display: block;
	}
}

/*-----------------------------------------------------
	.cv
------------------------------------------------------*/
.cv {
	padding: 56px 130px;
	background: #fff;
	box-shadow: 0px 0px 40px 0px #00000014;
}
.cv h2 {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.1em;
	text-align: center !important;
}
.cv h2 span {
	display: block;
	font-family: var(--font-en);
	font-size: 72px;
	font-weight: 400;
	line-height: 1.25;
}
.cv ul.cv_nav {
	gap: 40px;
}
.cv ul.cv_nav li {
	width: calc((100% - 40px) / 2);
}
.cv ul.cv_nav li a {
	display: block;
	padding: 19px 10px;
	background: var(--green);
	color: #fff;
	text-align: center;
}
.cv ul.cv_nav li:last-of-type a {
	padding: 21px 10px;
}
.cv ul.cv_nav li a span {
	position: relative;
	display: inline-block;
	padding-left: 44px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
.cv ul.cv_nav li a span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background: url("../img/common/tel_icon.svg") no-repeat center center;
	background-size: cover;
}
.cv ul.cv_nav li a em {
	display: block;
	font-family: var(--font-en);
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}
.cv ul.cv_nav li:last-of-type a em {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.cv ul.cv_nav li:last-of-type a span::before {
	background: url("../img/common/nav_cv_web.svg") no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 1000px) {
	.cv {
		padding: 56px 40px;
	}
	.cv ul.cv_nav {
		gap: 20px;
	}
	.cv ul.cv_nav li {
		width: calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 750px) {
	.cv {
		padding: 48px 31px;
	}
	.cv h2 {
		font-size: 16px;
	}
	.cv h2 span {
		font-size: 42px;
	}
	.cv ul.cv_nav {
		flex-direction: column;
		gap: 16px;
	}
	.cv ul.cv_nav li {
		width: 295px;
		max-width: 100%;
		margin: 0 auto;
	}
	.cv ul.cv_nav li a {
		padding: 16px 10px;
	}
	.cv ul.cv_nav li:last-of-type a {
		padding: 16px 10px;
	}
	.cv ul.cv_nav li a em {
		font-family: var(--font-en);
		font-size: 20px;
	}
	.cv ul.cv_nav li:last-of-type a em {
		font-family: var(--font-serif);
		font-size: 20px;
	}
}






