html{
    font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

@media (max-width: 650px){
	html{
		scroll-behavior: smooth;
		scroll-padding-top:80px;
	}
}

body{
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
	font-size: 1.5rem;
	/* font-family: "IBM Plex Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal; */
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}



*{
	margin: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #1C2C43;
	transition: .3s;
}

ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}




.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .5s;
    transition-delay: clip-path 0.3s, scale 0s;
}



.imgup.inview {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imgup img {
    transition: 1.6s cubic-bezier(0.6, 0, 0.07, 1);
    transform: translateX(-10%) scale(1.4);
}

.imgup.inview img {
    transform: translateX(0) scale(1);
}

.leftRight{
	opacity: 0;
	transform: translateX(-100%);
	transition: transform 1s, opacity 1.8s;
	transition-delay: 400ms;
}

.leftRight.inview{
	opacity: 1;
	transform: translateX(0);
}

.rightLeft{
	opacity: 0;
	transform: translateX(100%);
	transition: transform 1s, opacity 1.8s;
	transition-delay: 400ms;
}

.rightLeft.inview{
	opacity: 1;
	transform: translateX(0);
}



.scale-big{
	transform: scale(0.8);
	opacity: 0;
	transition: transform .4s ease-out, opacity .2s;
}

.scale-big.inview{
	transform: scale(1);
	opacity: 1;
}


.op{
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	transition-delay: 200ms;
}

.op.inview{
	opacity: 1;
}

span.marker {
    background: linear-gradient(transparent 50%, rgb(235, 252, 4,0.6) 50%);
}


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.flex_center{
	display: flex;
	justify-content: center;
}

.flex{
    display: flex;
}

.flex_end{
	display: flex;
	justify-content: flex-end;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
}

.flex_bet{
	display: flex;
	justify-content: space-between;
}

.flex_ar{
	display: flex;
	justify-content: space-around;
}

span.zo{
	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}

main{
	position: relative;
	z-index: 1;
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}

.content_wrapper{
	width: calc(100% - 260px);
	margin: 0 0 0 auto;
}

.tate{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}


@media (max-width: 1200px){
	.content_wrapper{
		width: 100%;
		margin: auto;
	}
	
}




.w100{
	width: 100%;
}

/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 120px 0;
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
	section{
		padding: 100px 0;
	}
}

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 650px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 50px 0;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.5rem;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

/*  */
.txt_wrappper{
	background-color: #fef8e5;
}

/* 
.txt{
	font-size: 1.45rem;
	font-weight: 500;
	color: #333;
	line-height: 2.5;
} */


@media (max-width: 960px){
	.none_960{
		display: none;
	}
}

@media (max-width: 650px){
	.none_650{
		display: none;
	}
	body{
		font-size: 1.35rem;
	}
	
	
}


.reverse{
	flex-direction: row-reverse;
}





.center_l{
	display: flex;
	align-items: center;
}

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */



.cir_btn{
	position: relative;
	width: fit-content;
	z-index: 5;
}

.cir_btn a{
	position: relative;
	display: block;
	letter-spacing: 0.1em;
	padding: 30px 0;
}

.cir_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: solid 1px #fa8c8c;
	width: 45px;
	top: 50%;
	right: 3px;
	transform: translate(100%,-50%);
	z-index: 0;
}
.cir_btn a::after{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #fa8c8c;
	width: 39px;
	top: 50%;
	right: 0px;
	transform: translate(100%,-50%) scale(0);
	z-index: 0;
	transition: all .2s ease-out;
}

.cir_btn a:hover::after{
	transform: translate(100%,-50%) scale(1);
}

.cir_btn a .text{
	position: relative;
	z-index: 1;
	padding-right: 22px;
}

.cir_btn a .arrow01{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_p.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	top: 50%;
	right: -9px;
	width: 25px;
	transform: translate(100%,-50%);
}

.cir_btn a .arrow02{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_hov.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	top: 50%;
	right: -9px;
	width: 25px;
	transform: translate(100%,-50%);
	opacity: 0;
}

.cir_btn a:hover .arrow02{
	opacity: 1;
	z-index: 1;
}



/* font-size (ratio 1.25, base 16px)*/


.king{
	font-size: 5.722rem;
	line-height: 1;
}
.biggest{
	font-size: 4.5776rem;
	line-height: 1;
}
.big{
	font-size: 3.6621rem;
	line-height: 1;
}
.s_big{
	font-size: 2.9297rem;
	line-height: 1;
}
.f_txt{
	font-size: 2.3438rem;
	line-height: 1;
}
.s_f_txt{
	font-size: 1.875rem;
	line-height: 1;
}
.txt{
	font-size: 1.5rem;
	line-height: 1;
}



/* sub_ttl */

.sub_ttl{
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	font-weight: 500;
}

.sub_ttl .en{
	display: block;
	font-size: 1.5rem;
	margin-top: 16px;
	padding-left: 5px;
	font-weight: 600;
	color: #F79005;
}



/* header */

header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 130px;
	z-index: 99;
	background-color: #fff;
	transition: all .3s;
}



.hd_inner{
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 30px;
}

h1{
	letter-spacing: 0.15em;
}

h1 .sm{
	display: block;
	font-size: 0.86em;
	margin-bottom: 12px;
}

h1 .img img{
	height: 75px;
}

h1 .text{
	margin-top: 14px;
	margin-left: 12px;
	transition: all .3s;
}

.main_nav li a{
	display: block;
	padding: 0 3px;
	letter-spacing: 0.1em;
}

.main_nav li+li{
	margin-left: 25px;
}

.main_nav li a:hover{
	opacity: 0.75;
}

.hd_tel{
	margin-left: 35px;
}

.hd_tel a:hover{
	opacity: 0.75;
}

.hd_con{
	margin-left: 20px;
	padding-bottom: 10px;
}

.hd_con a{
	display: block;
	background-color: #fa8c8c;
	color: #fff;
	font-weight: 500;
	padding: 4px 20px 2px;
	letter-spacing: 0.1em;
	border-radius: 40px;
	font-size: 1.4rem;
	border: solid 1px #fa8c8c;
}

.hd_con a:hover{
	background-color: rgb(41, 76, 122,0);
	color: #fa8c8c;
}


header.change_color h1 .img img{
	height: 65px;
}
header.change_color h1 .text{
	font-size: 2rem;
}

header.change_color{
	height: 100px;
}



.openBox{
	position: absolute;
	display: block;
	background-color: #fff3d6;
	border: solid 1px #fa8c8c;
	bottom: -17px;
	left: 50%;
	transform: translate(-50%,100%);
	white-space: nowrap;
	padding: 14px 30px;
	padding-left: 20px;
	transition: all.2s;
	border-radius: 10px;
}



.openList .openBox a, .openList2 .openBox a, .openList3 .openBox a{
	position: relative;
	display: block;
	padding: 4px 0;
	padding-left: 16px;
}

.openList .openBox a::before, .openList2 .openBox a::before, .openList3 .openBox a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	top: 46%;
	left: 0;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 7px;
	aspect-ratio: 1 / 1;
}

.main_nav a:hover .dli-chevron-down{
	color: #F79005;
}

.openBox{
	opacity: 0;
	pointer-events: none;
}

.openList{
	position: relative;
}
.openList2{
	position: relative;
}
.openList3{
	position: relative;
}

.openList.active .openBox{
	opacity: 1;
	pointer-events: all;
}
.openList2.active .openBox{
	opacity: 1;
	pointer-events: all;
}
.openList3.active .openBox{
	opacity: 1;
	pointer-events: all;
}

.main_nav a.pla{
	position: relative;
	padding-right: 17px;
	transition: all.2s;
}

.main_nav a.pla::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	height: 2px;
	width: 12px;
	top: 11px;
	right: 0;
	transition: all.2s;
}
.main_nav a.pla::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	height: 12px;
	width: 2px;
	top: 44%;
	right: 5px;
	transform: translateY(-50%);
	transition: all.2s;
}

.openList.active a.pla::after{
	opacity: 0;
}
.openList2.active a.pla::after{
	opacity: 0;
}
.openList3.active a.pla::after{
	opacity: 0;
}


@media (max-width: 1400px){
	header .right .in{
		display: none;
	}
}

@media (max-width: 650px){
	.hd_inner{
		padding-left: 10px;
		padding-right: 10px;
	}
	h1 a{
		font-size: 1.6rem;
	}
	h1 .sm{
		margin-bottom: 10px;
	}
	header{
		height: 70px;
	}
	h1{
		display: flex;
		align-items: center;
	}
	h1 .img img{
		height: 50px;
	}
	h1 .text{
		margin-top: 7px;
		margin-left: 5px;
	}
	header.change_color h1 .text{
		margin-top: 7px;
		margin-left: 5px;
	}
	header.change_color h1 .img img{
		height: 50px;
	}
	header.change_color{
		height: 70px;
	}
	header.change_color h1 .text{
		font-size: 1.6rem;
	}
}






/* fv */



.fv {
	position: relative;
	margin-top: 130px;
	height: calc(100vh - 130px);
	min-height: 720px;
}

.fv .top_slider{
	position: relative;
	width: 65%;
	height: 100%;
}

.fv::before{
	content: "";
	position: absolute;
	display: inline-block;
	position: absolute;
	background-color: #fff3d6;
	width: 70%;
	height: 350px;
	bottom: 0;
	left: 0;
}

.fv .catch{
	position: absolute;
	top: 34%;
	right: 12%;
	transform: translateY(-50%);
	white-space: nowrap;
	letter-spacing: 0.1em;
	
}

.fv .catch span{
	display: block;
	margin-top: 120px;
	margin-right: 25px;
}

.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.top_slider .slider li{
	width: 100%;
	height: 95%;
	background-size: cover;
	margin: 0;
	border-top-right-radius: 120px;
}


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)),url(../img/top01.jpg);
	background-position: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0)),url(../img/top02.jpg);
	background-position: center;
}

.fv::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.fv .time_table{
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #fff;
	z-index: 10;
	padding: 30px;
	width: 580px;
	border-top-left-radius: 20px;
}

.fv .time_table table th.ac::before{
	display: none;
}

.fv .time_table table th.ac{
	padding-left: 15px;
}


@media (max-width: 1200px){
	.fv .catch h2{
		font-size: 3.2rem;
	}
	.fv .time_table{
		width: 480px;
	}
	.fv .time_table table th.ac{
		line-height: 1.2;
	}
	.fv {
		position: relative;
		margin-top: 130px;
		height: calc(90vh - 130px);
		min-height: 690px;
		max-height: 850px;
	}
	.top_slider .slider li{
		max-height: 740px;
	}
}

@media (max-width: 750px){
	.fv .catch h2{
		font-size: 1.8rem;
	}
	.fv .catch{
		right: 30px;
	}
	.fv .time_table{
		width: 100%;
		display: block;
		border-top-left-radius: 0;
		padding: 10px 20px;
		max-width: 500px;
		right: auto;
		left: 0;
	}
	.fv{
		margin-top: 70px;
		min-height: 500px;
	}
	.fv .time_table table th.ac{
		padding-left: 5px;
	}
	.fv{
		height: calc(68vh - 70px + 194px);
	}
	.fv .top_slider{
		height: calc(100% - 194px);
	}
	.top_slider .slider li{
		height: 100%;
		max-height: 580px;
	}
	.fv .time_table table{
		font-size: 1.2rem;
		margin-bottom: 8px;
	}
	.fv .s_box p{
		font-size: 1.2rem;
		padding: 14px 0 11px;
	}
	.fv .top_slider{
		width: 75%;
	}
	.fv .catch span{
		margin-right: 15px;
	}
	.top_slider .slider li{
		border-top-right-radius: 50px;
	}
}




/* news */

.news{
	background-color: #fff3d6;
	padding-top: 30px;
}

.news .inner{
	position: relative;
}

.news .up_ymd{
	border: solid 1px #fa8c8c;
	color: #fa8c8c;
	background-color: #fff;
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 1.3rem;
	margin-right: 20px;
	font-weight: 500;
}

.news .list_hov{
	border-bottom: solid 1px #ddd;
}

.news .list_hov .upymd{
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.news .list_hov a{
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
}

.news .list_hov a .upymd{
	padding: 0;
}

.news .list_hov a:hover{
	opacity: 0.75;
}

.news .title{
	letter-spacing: 0.1em;
}

.news .left{
	width: 300px;
}

.news .right{
	width: calc(100% - 300px);
}

.news_icon{
	position: absolute;
	left: 0;
	bottom: -70px;
	width: 100px;
	transform: rotate(-4deg);
}


.news .list_hov .up_ymd{
	margin-left: 20px;
}

.news .list_hov .title{
	display: inline-block;
	padding-top: 15px;
	padding-bottom: 15px;
}

.news .list_hov a .up_ymd{
	margin-left: 0;
}

.news .list_hov a .title{
	padding: 0;
}


@media (max-width: 1200px){
	.news .flex_bet{
		flex-direction: column;
	}
	.news .left{
		width: 100%;
	}
	.news .right{
		width: 100%;
	}
	.news .sub_ttl{
		padding-left: 20px;
		margin-bottom: 25px;
	}
	.news_icon{
		top: 0;
		right: 0;
		left: auto;
		width: 80px;
		transform: rotate(4deg);
	}
}

@media (max-width: 750px){
	.sub_ttl{
		font-size: 2.5rem;
		margin-bottom: 30px;
		line-height: 1.7;
	}
	.sub_ttl .en{
		padding-left: 0;
		margin-top: 0;
	}
	.news{
		padding-top: 50px;
		padding-bottom: 100px;
	}
	.news_icon{
		width: 70px;
	}
	.news .list_hov .title{
		display: block;
		margin-top: 10px;
		margin-left: 5px;
	}
	.news .list_hov .up_ymd{
		display: inline-block;
		margin-top: 15px;
		margin-left: 10px;
	}
	.news .list_hov a .up_ymd{
		margin-top: 0;
		margin-left: 0;
	}
	.news .list_hov a{
		padding-left: 10px;
	}
	.news .list_hov .title{
		padding: 0;
		padding-left: 10px;
		margin-bottom: 15px;
	}
	.news .list_hov a .title{
		margin-bottom: 0;
	}
	.news .sub_ttl{
		margin-bottom: 10px;
	}
}




/* about us */


.aboutus {
	position: relative;
	padding-bottom: 170px;
	padding-top: 80px;
	z-index: auto;
}

.aboutus .ac_img{
	position: absolute;
	width: 25%;
	max-width: 280px;
	bottom: 120px;
	left: 15%;
	z-index: -1;
	opacity: 0.6;
	z-index: 1;
}

.aboutus .inner{
	position: relative;
	max-width: 860px;
}

.aboutus .aboutus_icon{
	position: absolute;
	top: -30px;
	right: -30px;
	width: 120px;
}

.aboutus .left{
	width: 48%;
} 
.aboutus .right{
	width: 43%;
	padding: 20px 0;
} 

.aboutus .left .img{
	height: 100%;
}

.aboutus .left .img img{
	border-radius: 20px;
	height: 100%;
	object-fit: cover;
}

.aboutus .right .txt_box{
	max-width: 460px;
}

.aboutus .txt_box p.s_f_txt{
	line-height: 1.7;
	margin-bottom: 15px;
	color: #fa8c8c;
	font-weight: 500;
}



.aboutus .btn_area{
	margin-top: 40px;
	padding: 10px 0;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	position: relative;
}



.aboutus .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fff;
	pointer-events: none;
}


@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column;
	}
	.aboutus .left{
		width: 100%;
	}
	.aboutus .right{
		width: 100%;
		padding: 0;
		margin-top: 40px;
	}
	.aboutus .inner{
		max-width: 560px;
		margin: 0 auto;
	}
	.aboutus .aboutus_icon{
		top: 400px;
		width: 100px;
	}
	.aboutus .left .img img{
		height: 350px;
		width: 100%;
		object-fit: cover;
	}
	
}

@media (max-width: 750px){
	.aboutus{
		padding-top: 10px;
		padding-bottom: 100px;
	}
	.aboutus .left .img img{
		height: 200px;
		width: 100%;
		object-fit: cover;
	}
	.aboutus .right{
		margin-top: 30px;
	}
	.aboutus .txt_box p.s_f_txt{
		font-size: 1.6rem;
	}
	.aboutus .btn_area{
		margin-top: 20px;
	}
	.aboutus .btn_area{
		flex-direction: column;
		padding: 20px 0;
	}
	.cir_btn{
		font-size: 1.6rem;
	}
	.aboutus .cir_btn a{
		padding: 10px 0;
	}
	.aboutus .cir_btn+.cir_btn{
		margin-top: 20px;
	}
	.aboutus .aboutus_icon{
		top: 220px;
		right: 30px;
		width: 80px;
	}
	
}


/* feature */


.feature{
	position: relative;
	background-color: #fa8c8c;
	padding-bottom: 150px;
	padding-top: 80px;
	z-index: auto;
}

.feature .inner{
	margin: 0 0 0 auto;
	max-width: 1800px;
	background-color: #fff;
	padding-top: 80px;
	padding-bottom: 60px;
	padding-left: 70px;
	padding-right: 20px;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.feature .feature_icon{
	position: absolute;
	top: 100px;
	right: 40px;
	width: 120px;
}


.feature .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fa8c8c;
}


/* #fe_sli{
	padding-bottom: 80px;
} */



#fe_sli .slide_left{
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fa8c8c;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	justify-content: center;
}
#fe_sli .slide_right{
	position: absolute;
	bottom: 0;
	left: 90px;
	background-color: #fa8c8c;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	justify-content: center;
}

#fe_sli .slide_left i{
	padding: 0;
	color: #fff;
}
#fe_sli .slide_right i{
	padding: 0;
	color: #fff;
}

#fe_sli li{
	width: 24%;
	max-width: 370px;
}

#fe_sli .slick-disabled{
	pointer-events: none;
	opacity: 0.5;
	transition: all .3s;
}

#fe_sli .img img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

#fe_sli .img{
	margin-bottom: 25px;
}

#fe_sli h3{
	letter-spacing: 0.1em;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fa8c8c;
	font-size: 2rem;
	line-height: 1.1;
}


#fe_sli h3 .en{
	display: block;
	font-size: 1.6rem;
	margin-bottom: 12px;
	color: #F79005;
}

#fe_sli .txt_box p{
	line-height: 1.7;
	font-size: 1.45rem;
}


@media (max-width: 1200px){
	#fe_sli li{
		width: 47%;
		max-width: none;
	}
	#fe_sli{
		flex-wrap: wrap;
	}
	.feature .inner{
		width: 94%;
	}
	#fe_sli li:nth-child(n+3){
		margin-top: 20px;
	}
	.feature .feature_icon{
		width: 100px;
	}
}

@media (max-width: 750px){
	.feature{
		padding-top: 10px;
		padding-bottom: 100px;
	}
	#fe_sli li{
		width: 100%;
	}
	.feature .inner{
		padding-top: 50px;
		padding-left: 35px;
		padding-bottom: 40px;
	}
	.feature .feature_icon{
		width: 80px;
	}
	#fe_sli li+li{
		margin-top: 20px;
	}
	
}



/* dialysis */


.dialysis{
	padding-top: 80px;
	padding-bottom: 150px;
}

.dialysis .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fff;
	pointer-events: none;
}

.dialysis .cir_btn{
	margin-top: 10px;
}

.dialysis .inner{
	position: relative;
}

.dialysis_icon{
	position: absolute;
	width: 120px;
	top: 0;
	left: 300px;
}

.dialysis .left{
	width: 40%;
}
.dialysis .right{
	width: 46%;
}

.dialysis .right .img.ty01{
	position: relative;
	width: 50%;
	display: flex;
	align-items: flex-end;
	z-index: 1;
}

.dialysis .right .img.ty02{
	position: relative;
	width: 60%;
	margin-left: -5%;

}

.dialysis .right .img img{
	aspect-ratio: 1 / 1.4;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	border: solid 14px rgb(247, 144, 5,0.4);
}

.dialysis .right .img.ty01 img{
	transform: rotate(-3deg);
}
.dialysis .right .img.ty02 img{
	transform: rotate(2deg);
}

@media (max-width: 1200px){
	.dialysis .left{
		width: 46%;
	}
	.dialysis .right{
		display: flex;
		align-items: flex-end;
	}
	.dialysis_icon{
		top: -30px;
		width: 100px;
	}
}

@media (max-width: 750px){
	.dialysis .flex_bet.ch{
		flex-direction: column;
	}
	.dialysis .left{
		width: 100%;
	}
	.dialysis{
		padding-top: 10px;
		padding-bottom: 100px;
	}
	.dialysis .right{
		width: 60%;
		margin: 0 0 0 auto;
	}
	.dialysis_icon{
		left: auto;
		right: 0;
		width: 90px;
	}
	.dialysis .right .img img{
		border: solid 7px rgb(247, 144, 5,0.4);
	}
}


/* symptoms */


.symptoms{
	position: relative;
	background-color: #fff3d6;
	padding-top: 80px;
}

.symptoms .inner{
	position: relative;
}

.symptoms_icon{
	position: absolute;
	top: -70px;
	right: 0;
	width: 120px;
	transform: rotate(4deg);
}

.symptoms .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fff3d6;
	z-index: -1;
	pointer-events: none;
}

.symptoms .sub_ttl{
	text-align: center;
}

.symptoms .item{
	width: 47%;
}

.symptoms a{
	position: relative;
	display: block;
	height: 320px;
	color: #fff;
	overflow: hidden;
	border-radius: 10px;
}

.symptoms a::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: rgb(250, 140, 140,0.95);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    outline: 3px solid rgb(255 255 255 / 80%);
    outline-offset: -20px;
    transition: all .3s;
	border-radius: 10px;
}

.symptoms a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/pattern-01.png);
    background-repeat: repeat;
    background-size: 2px;
    z-index: 1;
	border-radius: 20px;
}

.symptoms a .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: all .3s;
	border-radius: 10px;
}

.symptoms a .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.symptoms a .txt_area{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	z-index: 2;
}

.symptoms .icon img{
	aspect-ratio: 1 / 1;
	width: 60px;
}

.symptoms .icon{
	text-align: center;
	margin-bottom: 10px;
}

.symptoms a h4{
	text-align: center;
	letter-spacing: 0.1em;
	font-weight: 600;
	margin-bottom: 10px;
}

.symptoms a ul{
	font-weight: 500;
}

.symptoms a ul li{
	letter-spacing: 0.1em;
}

.symptoms a:hover .bg{
	transform: scale(1.08);
}

.symptoms a:hover::before{
	background-color: rgb(250, 140, 140,0.7);
}


@media (max-width: 1200px){
	.symptoms .flex_bet{
		flex-direction: column;
		align-items: center;
	}
	.symptoms .item{
		width: 70%;
	}
	.symptoms .item+.item{
		margin-top: 40px;
	}
	.symptoms_icon{
		width: 100px;
	}
}

@media (max-width: 750px){
	.symptoms{
		padding-top: 10px;
	}
	.symptoms .item{
		width: 100%;
	}
	.symptoms a{
		height: 260px;
	}
	.symptoms a ul li{
		font-size: 1.2rem;
	}
	.symptoms a h4{
		font-size:2rem;
	}
	.symptoms .icon img{
		width: 40px;
	}
	.symptoms .item+.item{
		margin-top: 20px;
	}
	.symptoms_icon{
		width: 70px;
	}
}



/* contents */

.contents{
	position: relative;
	padding: 0;
}


.contents .inner{
	position: relative;
	z-index: 1;
}


.contents .banner{
	display: block;
	padding: 120px 0;
	background-color: #fff;
}

.contents .banner:hover{
	background-color: #f5ce94;
} 


.contents .btn{
	position: relative;
	padding-right: 70px;
}

.contents .btn::before{
	content: "";
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: solid 1px #fa8c8c;
	width: 60px;
	aspect-ratio: 1 / 1;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.contents .btn::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_pink.png);
	aspect-ratio: 151 / 48;
	width: 60px;
	top: -10px;
	right: -25px;
	background-size: cover;
	background-position: center;
	transition: all .3s;
}

.contents .banner:hover .btn::after{
	right: -40px;
	transform: scale(1.3);
}
.contents .banner:hover .btn::before{
	width: 85px;
}

@media (max-width: 1200px){
	.contents .inner{
		flex-direction: column;
		max-width: 600px;
	}
	.contents .right{
		margin-top: 60px;
		justify-content: flex-end;
	}
	.contents .banner{
		padding: 100px 0;
	}
}

@media (max-width: 650px){
	.contents .flex_center{
		flex-direction: column;
		align-items: center;
	}
	.contents .sub_ttl{
		margin-bottom: 40px;
	}
	.contents .right p{
		font-size: 1.5rem;
		padding-right: 55px;
	}
	.contents .btn::before{
		width: 45px;
	}
	.contents .btn::after{
		width: 45px;
		top: -7px;
	}
	.contents .banner:hover .btn::after{
		right: -40px;
		transform: scale(1.3);
	}
	.contents .banner:hover .btn::before{
		width: 55px;
	}
	.contents .right{
		justify-content: center;
		margin-top: 40px;
	}
	.contents .banner{
		padding: 60px 0;
	}
}





/* footer */


footer{
	padding-bottom: 80px;
}

.foo_inner{
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

.foo_logo{
	letter-spacing: 0.2em;
	margin-bottom: 40px;
}

.foo_logo .sm{
	display: block;
    font-size: 0.86em;
    margin-bottom: 14px;
}

.s_box{
	background-color: #eee;
	width: 400px;
	border-radius: 30px;
}

.s_box p{
	padding: 18px 0 15px;
	line-height: 1;
	text-align: center;
}

footer .btn_list{
	margin-top: 30px;
}

footer .btn_list .btn+.btn{
	margin-left: 20px;
}

footer .btn_list .btn a,footer .btn_list .btn p{
	letter-spacing: 0.1em;
}

footer .btn_list .btn a{
	border-bottom: solid 1px #fa8c8c;
	padding: 0 4px;
}

footer .foo_mail{
	width: 200px;
	margin-top: 30px;
}

footer .foo_mail+.foo_mail{
	margin-left: 20px;
}

footer .foo_mail a{
	display: block;
	background-color: #fa8c8c;
	border: solid 1px #fa8c8c;
	color: #fff;
	line-height: 1;
	padding: 14px 0 12px;
	text-align: center;
	font-size: 1.4rem;
	border-radius: 20px;
	font-weight: 500;
}

footer .foo_mail a:hover{
	background-color: #fff;
	color: #fa8c8c;
}

footer .foo_mail:last-child a{
	background-color: #F79005;
	border: solid 1px #F79005;
}

footer .foo_mail:last-child a:hover{
	background-color: #fff;
	color: #F79005;
}


footer .map{
	margin-bottom: 80px;
}

footer iframe{
	width: 100%;
	height: 450px;
}

.time_table{
	width: 600px;
}

footer .time_table{
	margin: 0 0 0 auto;
}

.time_table table{
	width: 100%;
	margin-bottom: 20px;
	font-size: 1.4rem;
}


.time_table table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	width: 32%;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
}

.time_table table td{
	border-bottom: solid 1px #ccc;
	text-align: center;
	border-right: solid 1px #ccc;
}

.time_table table th,.time_table table td{
	padding: 10px 0 7px;
}

.time_table table th{
	padding-left: 18px;
}

.time_table table th.ac{
	position: relative;
	letter-spacing: 0.2em;
	padding-left: 15px;
	font-weight: 700;
}


.time_table .s_box{
	font-size: 1.3rem;
}

.time_table table tr:first-child{
	background-color: #fa8c8c;
	color: #fff;
	font-weight: 700;
}

.time_table table tr:first-child th{
	border-bottom: none;
}
.time_table table tr:first-child td{
	border-bottom: none;
}

footer .copy{
	margin-top: 60px;
}

footer .copy p{
	letter-spacing: 0.2em;
	font-size: 1.3rem;
}

footer .foo_logo .img img{
	height: 80px;
}

footer .foo_logo .text{
	margin-top: 16px;
	margin-left: 13px;
}

@media (max-width: 1400px){
	footer .right{
		width: 60%;
	}
}

@media (max-width: 1200px){
	footer .flex_bet{
		flex-direction: column;
	}
	footer .right{
		width: 100%;
		margin-top: 40px;
	}
	.foo_inner{
		max-width: 600px;
		margin: 0 auto;
	}
	footer iframe{
		height: 300px;
	}
}

@media (max-width: 650px){
	footer .time_table{
		width: 100%;
	}
	footer .s_box{
		width: 100%;
	}
	footer .map{
		margin-bottom: 50px;
	}
	.foo_logo{
		font-size: 1.8rem;
		margin-bottom: 25px;
		text-align: left;
	}
	.foo_logo a{
		justify-content: center;
	}
	footer .btn_list{
		flex-direction: column;
		margin-top: 20px;
	}
	footer .right{
		margin-top: 25px;
	}
	footer .copy{
		margin-top: 40px;
	}
	footer p{
		font-size: 1.3rem;
	}
	footer .btn_list .btn+.btn p{
		font-size: 1.5rem;
	}
	footer .btn_list .btn+.btn{
		margin-left: 3px;
		margin-top: 20px;
	}
	footer .time_table table th{
		padding-left: 8px;
	}
	footer .time_table table th.ac{
		padding-left: 10px;
	}
	footer .time_table table th.ac::before{
		left: 7px;
	}
	footer{
		padding-bottom: 40px;
	}
	footer .btn_list .btn a{
		font-size: 1.5rem;
	}
	footer .foo_logo .img img{
		height: 60px;
	}
	footer .foo_logo .text{
		margin-top: 10px;
	}
	footer .foo_btn{
		flex-direction: column;
		align-items: center;
	}
	footer .foo_mail+.foo_mail{
		margin-left: 0;
		margin-top: 15px;
	}
	.foo_inner{
		text-align: center;
	}
}




/* page top */

.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
    background: #fff;
    z-index: 49;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
}


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
	border: solid 1px #fa8c8c;
}

.page_top a i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-weight: 900;
    font-size: 10px;
    color: #fa8c8c;
	padding: 0;
}

.page_top.is_animation:hover {
    transform: translateY(-5px);
}

@media (max-width: 650px) {
    .page_top {
        width: 45px;
        height: 45px;
		bottom: 25px;
    }
}



/* kasou_top */



.kasou_top{
	margin-top: 230px;
}

.kasou_top .inner{
	max-width: 1400px;
}

.kasou_top h2{
	letter-spacing: 0.05em;	
}

.kasou_top h2 .br_1200{
	line-height: 1.6;
}

.kasou_top .img img{
	height: 600px;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}

.kasou_top .top_area{
	border-bottom: solid 1px #ccc;
	padding-bottom: 30px;
	margin-bottom: 45px;
}


.kasou_top ol li{
	display: flex;
	align-items: flex-end;
}

.kasou_top ol li a:hover{
	opacity: 0.75;
}

.kasou_top ol li a{
	position: relative;
	padding-right: 35px;
}

.kasou_top ol li a::before{
	content: "\f054";
	display: inline-block;
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	width: 12px;
	aspect-ratio: 1 / 1;
}

.kasou .sub_ttl{
	width: fit-content;
	margin: 0 auto 40px;
}

.kasou .ac_txt{
	width: fit-content;
	margin: 0 auto 20px;
	padding-right: 20px;
}

.sub_ttl2{
	position: relative;
	padding-left: 40px;
	letter-spacing: 0.03em;
	margin: 0 auto 40px;
	width: fit-content;
	padding-right: 30px;
}

.sub_ttl2::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/sub_2.png);
	background-size: cover;
	background-position: center;
	top: -10px;
	left: 0;
	aspect-ratio: 1 / 1;
	width: 28px;
}


@media (max-width: 1200px){
	.kasou_top h2{
		font-size: 4rem;
	}
	.kasou_top ol li{
		font-size: 1.4rem;
	}
	.kasou_top .img img{
		height: 450px;
	}
}

@media (max-width: 650px){
	.kasou_top h2{
		font-size: 3rem;
		margin-bottom: 20px;
	}
	.kasou_top .top_area{
		flex-direction: column;
		margin-bottom: 30px;
		padding-bottom: 20px;
	}
	.kasou_top ol{
		margin-left: 3px;
	}
	.kasou_top .img img{
		height: 260px;
	}
	.kasou_top{
		margin-top: 130px;
	}
	.sub_ttl2{
		font-size: 2rem;
		margin-bottom: 25px;
	}
	.kasou .sub_ttl{
		margin-bottom: 30px;
	}
	.kasou .ac_txt{
		margin-bottom: 10px;
	}

}



/* introページ */


.outline{
	position:relative;
	padding-bottom: 150px;
}

.outline .inner{
	position: relative;
}

.outline .ac_il{
	position: absolute;
	width: 110px;
	top: 40px;
	right: 0;
}

.outline .overview table {
	width: 100%;
}

.outline .overview table th{
	padding: 17px 0;
	letter-spacing: 0.1em;
	border-bottom: solid 1px #ddd;
	padding-left: 20px;
	color: #fa8c8c;
}

.outline .overview table td{
	letter-spacing: 0.1em;
	padding: 17px 0;
	border-bottom: solid 1px #ddd;
	padding-left: 20px;
}

.outline .sub_ttl{
	text-align: center;
}

.k_contain{
	max-width: 960px;
	margin: 0 auto;
}

.kasou .item{
	background-color: #fef8e5;
	padding: 45px 20px 55px;
	border-radius: 20px;
}

.kasou main .time_table{
	padding: 60px 100px 45px;
	background-color: rgb(250, 140, 140,0.1);
	margin: 0 auto 70px;
	border-radius: 10px;
	width: 100%;
	max-width: 800px;
}

.k_intro .time_table tr:nth-child(n+2) th, .k_intro .time_table tr:nth-child(n+2) td{
	background-color: #fff;
}


.outline .item+.item{
	margin-top: 80px;
}

.outline .s_box{
	margin: 30px auto 0;
	background-color: #fff;
}

.outline .sche{
	padding: 80px 0;
	
}

.outline .sche .k_contain{
	background-color: #fff;
	max-width: 580px;
	padding: 25px 0;
}


.outline .map iframe{
	width: 100%;
	height: 400px;
}

.outline .sche .flex_bet{
	flex-direction: column;
}

.line_ttl{
	position: relative;
	margin-bottom: 20px;
	padding-left: 14px;
	padding-top: 3px;
	letter-spacing: 0.05em;
}

.line_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fa8c8c;
	width: 3px;
	height: 100%;
}

.outline .photo_area{
	flex-wrap: wrap;
	gap: 30px 40px;
}

.outline .photo_area .img{
	width: calc((100% - 80px) / 3);
}

.doctor{
	position: relative;
	background-color: #fef8e5;
	overflow: visible;
	z-index: auto;
	padding-top: 50px;
}

.doctor .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill:#fef8e5;
	pointer-events: none;
}

.doctor .inner{
	position: relative;
	max-width: 1400px;
}

.doctor .k_contain{
	max-width: 1200px;
}

.doctor .ac_il{
	position: absolute;
	width: 120px;
	top: 40px;
	right: 0;
}

.doctor .sub_ttl{
	text-align: center;
}

.doctor .item{
	background-color: #fff;
}

.doctor .item ul{
	flex-wrap: wrap;
}

.doctor .item ul li{
	padding: 8px 0;
}

.doctor .txt_box p:last-child{
	text-align: right;
	margin-top: 20px;
}

.doctor .img{
	position: relative;
	width: 200px;
	height: 200px;
}

.doctor .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	width: 200px;
	aspect-ratio: 1 / 1.2;
	border-radius: 10px;
	top: -5px;
	left: -6px;
	z-index: 0;
}

.doctor .img img{
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	border-radius: 10px;
}

.doctor .txt_box{
	width: calc(94% - 200px);
}

.doctor .txt_box p+p{
	margin-top: 15px;
}

.doctor .item .flex_bet.ch{
	margin-bottom: 40px;
}

.doctor ul li{
	margin-right: 20px;
	letter-spacing: 0.05em;
}

.doctor .btm_box{
	display: flex;
	justify-content: space-between;
}

.doctor .btm_box .l_box{
	width: 46%;
}
.doctor .btm_box .r_box{
	width: 46%;
}
.doctor .btm_box table{
	width: 100%;
}

.doctor .btm_box table th,.doctor .btm_box table td{
	border-top: solid 1px #ccc;
	padding: 10px 0;
	letter-spacing: 0.05em;
	padding-left: 10px;
}

@media (max-width: 1200px){
	.k_intro main .time_table{
		padding-left: 40px;
		padding-right: 40px;
	}
	.doctor .inner{
		width: 96%;
	}
}

@media (max-width: 650px){
	.k_intro .item{
		padding-top: 40px;
		padding-bottom: 30px;
		border-radius: 10px;
	}
	.outline .inner{
		width: 94%;
	}
	.outline .overview table th{
		padding-left: 10px;
	}
	.outline .overview table td{
		padding-left: 30px;
	}
	.outline .time_table{
		width: 100%;
		padding: 30px 10px 20px;
	}
	.time_table table th{
		padding-left: 10px;
	}
	.time_table table th.ac::before{
		left: 0;
	}
	.time_table table th.ac{
		padding-left: 20px;
		line-height: 1.2;
	}
	.s_box{
		width: 100%;
	}
	.outline .sche{
		padding: 30px 0;
	}
	.time_table table{
		margin-bottom: 20px;
	}
	.outline .s_box{
		margin-top: 0;
	}
	.line_ttl{
		font-size: 2rem;
	}
	.outline .map iframe{
		height: 220px;
	}
	.outline .photo_area{
		gap: 10px 20px;
	}
	.outline .photo_area .img{
		width: calc((100% - 20px) / 2);
	}
	.outline{
		padding-bottom: 100px;
	}
	.doctor{
		padding-top: 10px;
	}
	.time_table table th, .time_table table td{
		font-size: 1.2rem;
	}
	.outline .ac_il{
		width: 80px;
		top: 60px;
	}
	.doctor .ac_il{
		width: 90px;
	}
	.doctor .item .flex_bet.ch{
		flex-direction: column;
	}
	.doctor .img{
		margin: 0 auto 30px;
	}
	.doctor .txt_box{
		width: 100%;
	}
	.k_intro main .time_table{
		padding: 30px 20px 20px;
	}
	.doctor .img img{
		aspect-ratio: 1 / 1;
	}
	.doctor .img::before{
		aspect-ratio: 1 / 1;
	}
	.doctor .btm_box{
		flex-direction: column;
	}
	.doctor .btm_box .l_box{
		width: 100%;
	}
	.doctor .btm_box .r_box{
		width: 100%;
	}
}





/* dialysisページ */


.p_touseki{
	position: relative;
}

.p_touseki::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 45%;
	height: 300px;
	background-color: #fef8e5;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.p_touseki .txt_box{
	position: relative;
	max-width: 520px;
}

.p_touseki .ac_il{
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
}

.p_touseki .txt_box p+p{
	margin-top: 15px;
}

.p_touseki .ac_txt{
	width: 100%;
	padding-right: 0;
}

.p_touseki .sub_ttl{
	width: 100%;
}

.p_touseki .img img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
}

.sougei{
	position: relative;
	background: url(../img/sougei.jpg);
	background-size: cover;
	background-position: center;
}

.sougei::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(255, 255, 255,0.6);
	width: 100%;
	height: 100%;
	z-index: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.sougei .sub_ttl{
	text-align: center;
}

.sougei .inner{
	position: relative;
	z-index: 1;
}

.sougei .center{
	text-align: center;
	line-height: 1.6;
	color: #000;
}

section.w_hd{
	padding: 0;
}

.w_hd .txt_box p + p{
	margin-top: 20px;
}

.w_hd .bg{
	background: url(../img/whd.jpg);
	background-size: 80%;
	background-position: right;
	background-repeat: no-repeat;
}

.w_hd .txt_area{
	position: relative;
	max-width: 620px;
	padding: 170px 0;
}

.w_hd .ac_il{
	position: absolute;
	top: 100px;
	right: 0;
	width: 100px;
}

.w_hd .inner{
	max-width: 1600px;
}

.w_hd .sub_ttl{
	width: 100%;
	text-align: left;
}

.tou_intro{
	position: relative;
	background-color: #fef8e5;
}


.tou_intro .inner{
	position: relative;
	margin: 0 0 0 auto;
	max-width: none;
	width: 94%;
}

.tou_intro ul.ch{
	margin: 0 auto;
	width: fit-content;
}

.tou_intro ul.ch li+li{
	margin-top: 20px;
}

.tou_intro ul.ch li{
	position: relative;
	width: fit-content;
	padding-left: 20px;
	letter-spacing: 0.05em;
}

.tou_intro ul.ch li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 2px;
}

.tou_intro ul.ch li .en{
	font-size: 1.5em;
	color: #fa8c8c;
	font-weight: 600;
}

.tou_intro .txt_area{
	position: absolute;
	top: 50%;
	left: 0;
	height: 120%;
	transform: translateY(-50%);
	background-color: #fef8e5;
	z-index: 5;
	padding: 40px 100px;
}

.tou_intro ul.mini_gallery01{
	width: 80%;
	margin:  0 0 0 auto;
}


@media (max-width: 1200px){
	.p_touseki .flex_bet{
		flex-direction: column-reverse;
	}
	.p_touseki .txt_box{
		max-width: none;
	}
	.p_touseki .img{
		width: 80%;
		margin: 40px 0 0 auto;
	}
	.p_touseki .img img{
		width: 100%;
		object-fit: cover;
		height: 440px;
		object-position: top;
	}
	.w_hd .txt_area{
		max-width: none;
		padding: 100px 0;
		color: #111;
	}
	.w_hd .bg{
		position: relative;
		background-size: 100%;
		background-position: top;
	}

	.w_hd .bg::before{
		content: "";
		display: inline-block;
		position: absolute;
		background-color: rgb(255, 255, 255,0.4);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		z-index: 0;
	}

	.w_hd .bg .inner{
		position: relative;
		z-index: 1;
	}

	.w_hd{
		padding: 0;
	}
	.tou_intro .txt_area{
		position: static;
		height: auto;
		padding: 0;
		justify-content: center;
		transform: translateX(0);
	}
	.tou_intro .inner{
		width: 100%;
	}
	.tou_intro ul.mini_gallery01{
		width: 100%;
		margin-top: 40px;
	}
	.p_touseki .ac_il{
		top: -40px;
	}
	.w_hd .ac_il{
		top: 50px;
	}
}

@media (max-width: 650px){
	.p_touseki .img img{
		height: 220px;
	}
	.sougei .center{
		font-size: 1.6rem;
	}
	.w_hd .txt_area{
		padding: 50px 0;
		padding-bottom: 170px;
	}
	.w_hd .bg{
		background-position: bottom;
	}
	.tou_intro ul.ch{
		font-size: 1.6rem;
	}
	.w_hd .bg::before{
		opacity: 0;
	}
	.p_touseki .ac_il{
		width: 80px;
		top: 0;
	}
	.w_hd .ac_il{
		width: 80px;
	}

}





/* medicineページ */


.naika .sub_ttl{
	width: 100%;
}

.naika .ac_txt{
	width: 100%;
	padding-right: 0;
}

.naika .left{
	width: 46%;
}
.naika .right{
	position: relative;
	width: 47%;
}

.naika .left img{
	aspect-ratio: 3 / 2.2;
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}


.naika .ac_il{
	position: absolute;
	top: -20px;
	right: 0;
	width: 100px;
}

.naika .item{
	margin-top: 40px;
}

.naika .yobou p.center{
	text-align: center;
	text-decoration: underline;
	margin-bottom: 40px;
}

.naika .yobou h5{
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	border-bottom: solid 1px #ccc;
	padding-bottom: 10px;
	color: #fa8c8c;
	font-weight: 500;
}

.naika .yobou h5::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 15px;top: 0;
	left: 0;
}

.naika .box+.box{
	margin-top: 30px;
}

.naika .box_area{
	max-width: 720px;
	margin: 0 auto;
}



.zinzou{
	padding-top: 0;
}

.zinzou .sub_ttl{
	width: 100%;
}

.zinzou .ac_txt{
	width: 100%;
	padding-right: 0;
}

.zinzou .right ul{
	margin-top: 30px;
}

.zinzou .right ul li{
	position: relative;
	padding: 7px 0;
	border-bottom: solid 1px #ccc;
	letter-spacing: 0.05em;
	padding-left: 24px;
}

.zinzou .right ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 17px;
}

.zinzou .right{
	width: 52%;
	position: relative;
}
.zinzou .left{
	width: 40%;
}

.zinzou .ac_il{
	position: absolute;
	top: -20px;
	right: 0;
	width: 110px;
}

.zinzou .left .img{
	text-align: left;
}

.zinzou .left img{
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	border-radius: 20px;
}

.zinzou .item{
	margin-top: 40px;
}

.zinzou .item ul{
	flex-wrap: wrap;
}

.zinzou .item ul li{
	position: relative;
	letter-spacing: 0.05em;
	margin-right: 30px;
	padding-left: 24px;
	line-height: 2;
}


.zinzou .item ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 17px;
}


@media (max-width: 1200px){
	.naika .flex_bet{
		flex-direction: column-reverse;
	}
	.kasou .sub_ttl{
		margin-bottom: 40px;
	}
	.naika .right{
		width: 80%;
	}
	.naika .left{
		margin: 30px 0 0 auto;
		width: 80%;
	}
	.naika .left img{
		height: 300px;
		object-fit: cover;
		width: 100%;
	}
	.yobou .br_1200{
		line-height: 2;
	}

	.zinzou .flex_bet{
		flex-direction: column-reverse;
	}
	.zinzou .right{
		width: 80%;
		margin-bottom: 30px;
	}
	.zinzou .left{
		width: 80%;
		margin: 0 0 0 auto;
	}
	.zinzou .left img{
		height: 300px;
		width: 100%;
		object-fit: cover;
	}

}


@media (max-width: 650px){
	.naika .right{
		width: 100%;
	}
	.naika .left{
		width: 100%;
		margin: 0;
		margin-top: 40px;
	}
	.naika .left img{
		height: 200px;
	}
	.naika .yobou p.center{
		font-size: 1.4rem;
	}
	.naika .item{
		padding-left: 14px;
		padding-right: 14px;
	}
	.naika .yobou h5{
		font-size: 1.6rem;
		line-height: 1.7;
		padding-bottom: 5px;
	}
	.naika .yobou h5::before{
		top: 4px;
	}
	.naika .ac_il{
		width: 70px;
	}
	.zinzou .right{
		width: 100%;
	}
	.zinzou .left{
		width: 100%;
	}
	.zinzou .left img{
		height: 200px;
		object-fit: cover;
	}
	.zinzou .item ul{
		font-size: 1.5rem;
		flex-direction: column;
	}
	.zinzou .item{
		border-radius: 10px;
		padding-top: 25px;
		padding-bottom: 15px;
	}
	.naika .box_area ul li{
		text-indent: -1em;
	}
	.naika .box_area ul li::first-line{
		text-indent: 0;
	}
	.naika .box_area ul{
		padding-left: 1em;
	}
	.zinzou .ac_il{
		width: 80px;
	}
}



/* 初診ページ */


.baggage{
	padding-bottom: 150px;
}

.baggage .inner{
	position: relative; 
	max-width: 960px;
}

.baggage .ac_il{
	position: absolute;
	width: 100px;
	top: 0;
	right: 0;
}

.baggage ul li{
	padding: 10px 0;
	letter-spacing: 0.1em;
	line-height: 1;
}

.baggage p.ch{
	margin-top: 40px;
	margin-bottom: 15px;
}


.baggage .left{
	width: 42%;
}

.baggage .left img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	border-radius: 20px;
}

.baggage .right{
	width: 46%;
}

.baggage .sub_ttl{
	text-align: center;
}



.reservation{
	padding-top: 50px;
	padding-bottom: 150px;
	background-color: #fa8c8c;
}

.reservation .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fa8c8c;
	pointer-events: none;
}

.reservation .sub_ttl{
	text-align: center;
}

.reservation .fir{
	text-align: center;
	line-height: 2.4;
}

.reservation .btm_box{
	background-color: #f5f5f5;
	max-width: 800px;
	margin: 0 auto;
}

.reservation .btm_box .in{
	padding: 20px 60px 30px;
}

.reservation .btm_box h4{
	position: relative;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 20px;
	padding-top: 30px;
}

.reservation .btm_box h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/komidasi.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 200 / 75;
	height: 22px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.reservation .tel_box{
	margin-top: 10px;
	margin-bottom: 30px;
}

.reservation .tel_box .top_box p{
	text-align: center;
	margin-bottom: 15px;
}

.reservation .tel_box .top_box{
	margin-top: 40px;
}

.reservation .inner{
	background-color: #fff;
	border-radius: 20px;
	padding: 60px 20px;
	width: 96%;
}

.policy {
	padding-top: 80px;
}

.policy .box+.box{
	margin-top: 40px;
}

.policy h5{
	position: relative;
	padding-left: 26px;
	letter-spacing: 0.03em;
	padding-bottom: 8px;
	border-bottom: solid 1px #ccc;
	margin-bottom: 15px;
}

.policy h5::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 18px;
	top: 40%;
	left: 0;
	transform: translateY(-50%);
}

.policy .sub_ttl{
	text-align: center;
}


.policy .wave svg{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	fill: #fff;
	pointer-events: none;
}

.policy h4{
	line-height: 1.6;
}

.policy .inner{
	position: relative;
}

.policy .ac_il{
	position: absolute;
	top: 40px;
	right: 0;
	width: 110px;
}


@media (max-width: 1200px){
	.baggage .flex_bet{
		flex-direction: column;
	}
	.baggage .left{
		width: 100%;
	}
	.baggage .right{
		width: 100%;
		margin-top: 40px;
	}
	.baggage .inner{
		width: 80%;
	}
	.baggage .left .img img{
		height: 350px;
		width: 100%;
		object-fit: cover;
	}
}

@media (max-width: 650px){
	.baggage .inner{
		width: 90%;
	}
	.baggage .left .img img{
		height: 220px;
	}
	.baggage ul li{
		font-size: 1.5rem;
	}
	.baggage p.ch{
		font-size: 1.8rem;
	}
	.baggage{
		padding-bottom: 100px;
	}
	.reservation .fir{
		font-size: 1.6rem;
		text-align: left;
		line-height: 1.7;
	}
	.reservation .fir .br_1200{
		display: inline;
	}
	.reservation .tel_box .top_box p{
		font-size: 1.5rem;
	}
	.tel_box a{
		font-size: 3rem;
	}
	.reservation .tel_box .top_box p{
		padding: 18px 0 15px;
	}
	.tel_box .nbox{
		flex-direction: column;
	}
	.tel_box h5{
		font-size: 1.8rem;
		border-right: 0px;
	}
	.reservation .tel_box{
		margin-bottom: 40px;
	}
	.reservation .btm_box .in{
		padding-left: 20px;
		padding-right: 20px;
	}
	.reservation .btm_box h4{
		font-size: 2rem;
		padding-top: 30px;
		margin-bottom: 15px;
	}
	.reservation .btm_box h4::before{
		height: 20px;
	}
	.policy h5{
		font-size: 1.6rem;
		margin-bottom: 5px;
		line-height: 1.5;
		padding-bottom: 5px;
	}
	.policy h5::before{
		width: 16px;
		top: 40%;
	}
	.reservation{
		padding-top: 10px;
		padding-bottom: 100px;
	}
	.policy{
		padding-top: 10px;
	}
	.baggage .ac_il{
		width: 70px;
		top: 40px;
	}
	.policy .ac_il{
		width: 70px;
		top: 60px;
	}
	.policy .box+.box{
		margin-top: 30px;
	}
}



/* contactページ */



.p_contact .sub_ttl{
	text-align: center;
}

.p_contact .item{
	position: relative;
}

.p_contact .item .ac_il{
	position: absolute;
	top: -40px;
	right: 40px;
	width: 100px;
}


.tel_box h4{
	text-align: center;
	margin-bottom: 30px;
}


.tel_box a{
	display: block;
	color: #fa8c8c;
	letter-spacing: 0.05em;
	text-align: center;
	padding-right: 20px;
	margin-bottom: 20px;
	font-weight: 600;
}

.tel_box a .sm{
	font-size: 0.6em;
}

.tel_box a:hover{
	opacity: 0.75;
}

.k_contact .tel_box .s_box{
	background-color: #fff;
}

.tel_box h5{
	position: relative;
	letter-spacing: 0.05em;
	padding-left: 24px;
	padding-right: 40px;
	border-right: solid 1px #ccc;
	padding-top: 12px;
}

.tel_box h5::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fa8c8c;
	border-radius: 50%;
	top: 22px;
	left: 0;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 16px;
}

.tel_box ul{
	padding-left: 25px;
}

.tel_box ul .en{
	font-size: 1.3em;
}

.tel_box .nbox{
	justify-content: center;
	margin-top: 30px;
	border: solid 1px #fa8c8c;
	background-color: #fff;
	width: fit-content;
	margin: 30px auto 0;
	padding: 20px 40px;
}

.tel_box .s_box{
	margin: 0 auto;
	background-color: #f5f5f5;
}


.mailarea{
	position: relative;
	margin-top: 60px;
	padding-top: 60px;
	padding-bottom: 50px;
	background-color: #fef8e5;
	border-radius: 20px;
}

.mailarea .ac_il{
	position: absolute;
	top: -40px;
	left: 40px;
	width: 100px;
}



.form_box{
	max-width: 960px;
	width: 94%;
	margin: 0 auto;
}



input[type="checkbox"]{
	width: 20px;
	height: 20px;
	border: solid 1px #bababa;
	background-color: #fff;
	border: solid 1px #aaa;
	display: table-cell;
	margin-bottom: 5px;
}

input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #fff;
	width: 100% !important;
}

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #fff;
	width: 100% !important;
}


input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline-block;
	margin-top: -3px;
	margin-right: 20px;
}



input[type="checkbox"] + label{
	cursor: pointer;
}

input[type="checkbox"].toggle{
	display: none;
}

.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

td .box.mini{
	width: 85%;
	max-width: 300px;
	height: 40px;
}

textarea{
	padding: 10px;
	font-size: 1.8rem;
	background: #fff;
	width: 100% !important;
	height: 120px !important;
}

.contact_table{
	width: 100%;
}

.contact_table th span,.form_attention span{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.4rem;
}




.contact_table th span.ac,.form_attention span.ac{
	background-color: #fa8c8c;
	color: #fff;
	padding: 4px 8px 3px;
}

.contact_table th span.ac.nini{
	background-color: #fff;
	border: solid 1px #fa8c8c;
	color: #fa8c8c;
}

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	border-bottom: dotted 1px #ccc;
}

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: dotted 1px #ccc;
}


button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 10px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #fa8c8c;
	color: #fff;
	border: solid 2px #fa8c8c;
	font-size: 1.5rem;
	margin-top: 40px;
	font-weight: bold;
}

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 50px;
	font-size: 1.4rem;
}

.form_attention p a{
	color: #0000ff;
	text-decoration: underline;
}

.form_attention p+p{
	margin-top: 10px;
}

.form_attention p a:hover{
	opacity: 0.75;
}

.recruit{
	position: relative;
	background: url(../img/top02.jpg);
	background-size: cover;
	background-position: center;
}

.recruit::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(255, 255, 255,0.6);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 0;
}

.recruit .inner{
	position: relative;
	z-index: 1;
}

.recruit .s_f_txt{
	text-align: center;
	line-height: 1.8;
	font-weight: 600;
}

.recruit .sub_ttl{
	text-align: center;
}



.postal_btn{
	background-color: #fa8c8c;
	color: #fff;
	font-weight: 600;
	height: 40px;
	margin-left: 10px;
	padding: 0 30px;
	transition: all .3s;
	text-align: center;
}

.postal_btn:hover{
	opacity: 0.7;
}

.contact_table .flex{
	margin-bottom: 10px;
}

.contact_table .mark{
	line-height: 40px;
	padding: 0 5px;
	padding-right: 10px;
}


@media (max-width: 1200px){
	.contact_table th{
		display: block;
		width: 100%;
		border-bottom: 0px;
		padding-bottom: 10px;
	}
	.contact_table td{
		display: block;
		width: 100%;
		padding-top: 0;
	}
	.mailarea{
		padding: 60px 0 40px;
	}
	.mailarea .sub_ttl2{
		margin-bottom: 15px;
	}
	.p_contact .sub_ttl{
		margin-bottom: 60px;
	}
}

@media (max-width: 650px){
	.p_contact .sub_ttl{
		margin-bottom: 40px;
	}
	.p_contact .inner{
		width: 96%;
	}
	.tel_box h4{
		margin-bottom: 25px;
	}
	.tel_box .nbox{
		padding: 15px 20px;
		width: 100%;
	}
	.tel_box h5{
		border-right: 0px;
		margin-bottom: 10px;
	}
	.tel_box ul{
		padding-left: 0;
	}
	.mailarea{
		margin-top: 40px;
		padding-top: 40px;
	}
	.contact_table .flex{
		flex-direction: column;
	}
	.recruit .s_f_txt{
		text-align: left;
		font-size: 1.5rem;
	}
	.postal_btn{
		margin-left: 0;
		margin-top: 10px;
	}
	td .box.mini{
		margin-left: 40px;
		margin-top: -40px;
	}
	.p_contact .item .ac_il{
		width: 70px;
		right: 0;
	}
	.mailarea .ac_il{
		width: 70px;
		left: 0;
	}
}


/*thanksページ*/



.kasou.thanks .kasou_top{
	margin-bottom: 0;
}

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
	margin-bottom: 30px;
}

.thanks_ttl .ja{
	font-size: 3.4rem;
	display: block;
	margin-top: 10px;
}

.thanks_ttl .en{
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: #fa8c8c;
	line-height: 1;
}

.thanks_txt p{
	text-align: center;
}

.thanks_attention{
	font-size: 1.6rem;
	margin-top: 40px;
}

.sbtn{
    margin-top: 40px;
}

.sbtn a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: solid 2px #fa8c8c;
    color: #fa8c8c;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

.sbtn a:hover{
    background-color: #fa8c8c;
	color: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
}

/*251922求人*/
.recruit table {
	width: 100%;
}

.recruit table th{
	padding: 17px 0;
	letter-spacing: 0.1em;
	border-bottom: solid 1px #ddd;
	padding-left: 20px;
	color: #fa8c8c;
	width: 20%;
	min-width: 6rem;
}

.recruit table td{
	letter-spacing: 0.1em;
	padding: 17px 0;
	border-bottom: solid 1px #ddd;
	padding-left: 20px;
}
@media (max-width: 650px){
	.recruit table th{
		padding-left: 0;
		min-width: 7rem;
	}
	.recruit table td{
		padding-left: 16px;
	}
}
