@charset "utf-8";
/* CSS Document */
/*==================
	header
===============================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	border-bottom: 1px solid rgba(255,255,255,.3);
	z-index: 99;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:  rgba(255,255,255,.2);
	transition: .4s;
}
.hlogo{
	height: 100%;
	width:clamp(300px,26%,450px);
	text-align: center;
	padding: 15px 2rem;
	background: #2e3192;
}
.hlogo a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	color: #fff;
}

.hlogo a span{
	font-size: 15px;
	line-height: 1.2;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"
}
.hlogo a img{
	width: 80%;
	max-width: 230px;
	object-fit: contain;
	transition: .4s;
}
/*change*/
#header.change{
	height: 70px;	
	transition: .4s;
	background:  rgba(255,255,255,.7);
}
.change .hlogo{
	width:clamp(280px,25%,400px);	
	padding: 8px 2rem;
}
.change .hlogo a span{
	font-size: 13px;
}
.change .hlogo a img{
	height: 70%;
	width: 80%;
	max-width: 230px;
	object-fit: contain;
	transition: .4s;
}

.m1{
	display: flex;
	align-items: center;
	height: 100%;
}
.m1-top a,.gnav a{
	color: #2e3192;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;		
}
.m1-top a:hover,.gnav a:hover{
	color: #333;
}
.m1-top ul{
	display: flex;
	justify-content: flex-end;
	font-size: 15px;
	margin-bottom: 5px;
}
.m1-top li a{
	padding: 0 15px;
}
.m1-top li:first-child{
	border-right: 1px solid #2e3192;
}

.gnav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav li a {
	padding-right: 20px;
}
.gnav li.small{
	text-align: center;
	line-height: 1.1;
	font-size: 95%;
}

.pc_contact{
	padding: 0 15px;
}
.pc_contact a{
	background: #2e3192;
	color: #fff;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
	padding: .8rem 2rem;
	border-radius: 50px;
	border: 1px solid #2e3192;
}
.pc_contact a:hover{
	background: #fff;
	color: #2e3192;
	transition: .4s;
}

@media(max-width:1162px){
	#header{
		height: 70px;	
		transition: .4s;
		background:  rgba(255,255,255,.5);
	}
	.hlogo{
		width:clamp(280px,25%,400px);	
		padding: 8px 2rem;
	}
	.hlogo a span{
		font-size: 13px;
	}
	.hlogo a img{
		height: 70%;
		width: 80%;
		max-width: 230px;
		object-fit: contain;
		transition: .4s;
	}		
	.m1{
		display: none;
	}
}

/*==================
	Mobile-nav
===============================================================*/
@media(min-width:1163px){
	.openbtn{
		display: none;
	}	
}

.openbtn{
	position: relative;
	cursor: pointer;
    width: 55px;
    height:55px;
	border-radius: 50%;
	background: #2e3192;
	right: 10px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:17px;	
}

.openbtn span:nth-of-type(2) {
	top:26px;
}

.openbtn span:nth-of-type(3) {
	top:36px;
}

.openbtn.active span:nth-of-type(1) {
    top: 20px;
	left: 30%;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 32px;
	left: 30%;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}


#g-nav{
    position:fixed;
    z-index: 88;
	top:-200%;
    left:0;
	width:100%;
	background:#fff;
	transition: all 0.6s;
	padding: 100px 1% 20px;
}
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーション*/
#g-nav ul {
    margin:20px auto;
	width: 98%;
	max-width: 600px;
}
#g-nav li:first-child{
	border-top: 2px dotted #666;
}
#g-nav li{
	border-bottom: 1px dotted #666;
}
#g-nav li:last-child{
	border-bottom: 2px dotted #666;
}
#g-nav li a{
	color: #2e3192;
	text-decoration: none;
	padding:10px 2rem;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	position: relative;
}
#g-nav li a::after{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	top: 10px;
	right: 1rem;
}
#g-nav li a:hover{
	letter-spacing: .2rem;
	background: #EDF6FF;
}

.sp-contact{
	display: flex;
	justify-content: space-between;
}
.sp_tel,.sp_mail{
	width: 48%;
	text-align: center;
}
.sp_tel a{
	display: block;
	padding: .3rem .5rem;
	border: 1px solid #2e3192;
	border-radius: 10px;
	color: #2e3192;
}
.sp_mail a{
	display: block;
	padding: .3rem .5rem;
	background: #6383FF;
	color: #fff;
	border: 1px solid #2e3192;
	border-radius: 10px;
}

/*==================
	page-top
===============================================================*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
	position: relative;
}

#page-top a::after{
	position: absolute;
	content: '';
	display: block;
	width:40%;
	aspect-ratio:1/1;
	transform: rotate(-45deg);
	border-top:1px solid #808080;
	border-right:1px solid #808080;
	bottom: 15px;
}


#page-top a::before{
	position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #808080;
    bottom: 10px;
}

#page-top a:hover::after{
	animation: loop2 800ms linear infinite;
}

@keyframes loop2 {	
	0%{transform: translateY(0) rotate(-45deg);}
	50%{transform: translateY(-10px) rotate(-45deg);}
  100%{transform: translateY(0) rotate(-45deg);}
}
#page-top {
	position: fixed;
	right: 30px;
	bottom:18px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime-pagetop 0.5s forwards;
}
@keyframes UpAnime-pagetop{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime-pagetop 0.5s forwards;
}
@keyframes DownAnime-pagetop{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



@media(max-width:800px){
	
	#page-top {
		right: 10px;
    	bottom: 10px;
	}
	
	#page-top a {
    	width: 40px;
		height: 40px;
	}
	
}


/*==================
	footer
===============================================================*/
footer{
	background: #2e3192;
	padding: 50px 0;
	color: #fff;
}
.flogo {
	width: 80%;
	max-width: 450px;
}
.flogo img{
	width: 100%;
	object-fit: contain;
}
.ftable td{
	padding-bottom: 15px;
}
.ftable th{
	text-align: left;
}
.ftable h3{
	margin-bottom: 30px;
	text-align: center;
}
.footer_right{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.footer_right h3{
	border-bottom: 1px dotted #fff;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.footer_info,.footer_right{
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.ftable th{
		text-align: center;
	}	
	.flogo {
		width: 80%;
		max-width: 350px;
		margin: 0 auto;
	}	
}

.copy{
	background: #2e3192;
	color: #fff;
	text-align: end;
	font-size: 14px;
	padding: 5px 0;
}
/*==================
	topslide
===============================================================*/
.topfv{
	width: 92vw;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
	min-height: 50vh;
	margin-left: auto;
	padding: 0;
}

#slider {
    width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 100vh;
	min-height: 50vh;
	position: relative;
}

.catch{
	position: absolute;
	right: 0;
	bottom:10vh;
	
}

.catch-txt{
	display: table;
	padding: .5rem 3vw;
	background: #fff;
	margin-bottom: 15px;
	font-size: clamp(1.125rem, 0.633rem + 2.07vw, 2.188rem);
	text-align: end;
	margin-left: auto;
}
.catch-txt span{
	color: #2e3192;
}
@media(max-width:600px){
	.catch{
		bottom:20px;

	}	
}








/*==================
	index
===============================================================*/
/*TOPあいさつ*/
.t-about{
	padding-bottom: 30px;
}
.t-about::before{
	position: absolute;
	content: '';
	width: 35vw;
	height: 35vw;
	background: url("../img/logo2.svg")no-repeat center/contain;
	mix-blend-mode: overlay;
	top: 0;
	right: 3vw;
	z-index: -1;
}

.about-txt{
	max-width: 750px;
}

/*TOPservice*/
.nayami .comn5{
	width: 70%;
}
.nayami ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 15px 0;	
}
.nayami li{
	width: 32%;
	margin: 10px 0;
}
.nayami-img{
	width: 25%;
	margin-top: auto;
}
.nayami-img img{
	vertical-align: bottom;
}

@media (max-width: 768px) {
	.nayami .comn5{
		width: 100%;
	}	
	.nayami-img{
		width: 60%;
		max-width: 500px;
		margin: 0 auto 20px;
	}	
	.nayami .h50{
		height: 20px;
	}
}
@media (max-width: 500px) {
	.nayami li{
		width: 46%;
		margin: 10px 0;
	}	
}

.linkbox{
	background: #fff;
	padding: 2rem;
}
.link_child{
	width: 90%;
	max-width: 400px;
	margin: 0 20px;
}
.link_child_02{
	width: 100%;	
}
.bgimg{
	position: relative;
}
.bgimg::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/kokokara.jpg")no-repeat top/cover;
	left: 0;
	top: 0;
}

@media (max-width: 768px) {
	.link_child{
		margin-bottom: 20px;
		max-width: 100%;
	}
	.link_child:first-child{
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px dotted #2e3192;
	}
	.bgimg {
		height: 30vh;
		margin-bottom: 0;
	}	
}

/*==================
下層共通
===============================================================*/
.kfv{
	height: 45vh;
	background: url(../img/pagetitlebg.jpg)no-repeat center 60%/cover;
	text-align: center;
}
.pagetitle{
	position: relative;
	display: flex;
	width: 100%;
	height: 30vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.pagetitle h2{
	color: #fff;
	text-shadow: 0 0 5px #2e3192;
	font-size:clamp(2rem, 1.768rem + 0.98vw, 2.5rem);
	z-index: 2;
}
.pagetitle p{
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(70px, 10vw, 150px);
	white-space: nowrap;
	color:rgba(46,49,146,0.3);
	z-index: 0;
	 font-family: "Barlow Condensed", sans-serif;
	font-weight: 900;
}


/*パンくず*/
.breadcrumb{
	position: relative;
	z-index: 3;
	font-size: 14px;
	letter-spacing: 0.05em;
	padding: 5px 0;
	text-align: left;
	bottom:-15px;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li::after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child::after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #2e3192;
	font-weight: 500;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}

.w-box{
	background: #fff;
	padding: 2rem 3%;
	border-radius: 20px;
}


/*==================
	about -私たちについて・会社概要-
===============================================================*/
.about-top{
	text-align: center;
	font-size: clamp(1.1rem, 0.915rem + 0.78vw, 1.5rem);
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin-bottom: 30px;
	padding: 2rem 0;
	color: #2e3192;
}

.rinen_txt{
	font-size: 2rem;
	font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding: 2rem;
	font-weight: 600;
	color: #fff;
  	-webkit-text-stroke: 4px #2e3192;
  	paint-order: stroke fill;
}

.rinen_img{
	max-width: 400px;
	margin: auto;
	padding: 2rem;
}
.rinen_sub{
	padding: 1rem;
}

@media (max-width: 768px) {
	.rinen_txt{
		font-size: clamp(1.3rem, 0.614rem + 2.89vw, 2rem);
	}
}
@media (max-width: 500px) {
	.rinen_txt{
		padding: 1.5rem;
		-webkit-text-stroke: 2px #2e3192;
	}
}

.reason-list {
    margin-top: 1rem;
    counter-reset: reason_list
}

@media screen and (min-width: 768px),print {
    .reason-list {
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 1.5rem;
        grid-row-gap: 0px;
    }
}

@media screen and (min-width: 1100px),print {
    .reason-list {
        max-width:none;
        margin-top: 0;
    }
}

@media screen and (min-width: 1600px),print {
    .reason-list {
        grid-column-gap:4rem;
        max-width: 1400px;
        margin: auto
    }
}

.reason-item:not(:last-child) {
    margin-bottom: 8rem
}

@media screen and (min-width: 768px),print {
    .reason-item:not(:last-child) {
        margin-bottom:0
    }
}

.reason-content {
    position: relative;
    height: 100%;
    padding: 3rem .5rem 2.5rem;
    text-align: center;
    border-radius: 2rem;
    border: 5px solid #1d56a5;
	background: #fff;
}

@media screen and (min-width: 768px),print {
    .reason-content {
        display:flex;
        flex-direction: column
    }
}

.reason-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2rem;
    right: 0;
    left: 0;
    width: 5rem;
    height: 5rem;
    margin: auto;
    line-height: 1em;
    color: #fff;
    border-radius: 100%;
    background-color: #1d56a5
}

@media screen and (min-width: 1600px),print {
    .reason-counter {
        right:auto;
        left: -2rem;
        margin: 0
    }
}

.reason-counter::before,.reason-counter::after {
    -webkit-transform: rotate(0.05deg);
    transform: rotate(0.05deg)
}

.reason-counter::before {	
    content: "Reason";
    display: block;
    font-size: 1.1rem;
    font-weight: 800

}

.reason-counter::after {
    counter-increment: reason_list;
    content: counter(reason_list);
    display: block;
    margin-top: .5rem;
    font-weight: 800;
    font-size: 2rem	

}

.reason-title {
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: calc(1.2rem + 1vw);
    color: #1d56a5;
    letter-spacing: normal;
	border-bottom: 1px dashed #aaa;
}

@media screen and (min-width: 768px),print {
    .reason-title {
        display:flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 4em;
        margin-bottom: 1rem;
        font-size: calc(1rem + .4vw)
    }
}

@media screen and (min-width: 1100px),print {
    .reason-title {
        font-size:1.3rem
    }
}

@media screen and (min-width: 1600px),print {
    .reason-title {
        display:block;
        height: auto;
        margin-bottom: 2rem
    }
}

.reason-title .br {
    display: block
}

@media screen and (min-width: 1600px),print {
    .reason-title .br {
        display:none
    }
}
.reason-txt{
	text-align: left;
	font-size: 16px;
}



.infotabl th{
	width: 25%;
	padding: 1rem;
	color: #2e3192;
	border-bottom: 1px solid #2e3192;
	vertical-align: top;
}
.infotabl td{
	padding: 1rem;
	border-bottom: 1px solid #aaa;
}

.infotabl td p:not(:last-child){
	padding-bottom: 5px;
	border-bottom: 1px dotted #aaa;
}

@media(max-width:854px){
.infotabl th{
	display: block;
	width: 100%;	
	padding: 1rem;
	padding-bottom: 0;
	text-align: left;
	border-width: 0px;
}
.infotabl td{
	display:block;
	width: 100%;
	padding: 1rem;
	padding-top: .3rem;
}	
}


/*==================
訪問看護ステーションについて
===============================================================*/
.s_greet_txt h2{
	color: #2e3196;
	margin-bottom: 20px;
	text-align: center;
}

.s_greet_img{
	border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
	object-fit: cover;
	width: 100%;
}
.merit{
	background: rgba(255,255,255,.5);
	padding: 2rem 3rem;
	border: 2px solid #2e3196;
}
.stitle{
	text-align: center;
	color: #2e3196;
	position: relative;
	margin-bottom: 20px;
	font-size: clamp(1.25rem, 1.105rem + 0.61vw, 1.563rem);
}
.stitle::before,.stitle::before{
	position: absolute;
	content: '';
	width: 120px;
	height: 2px;
	border-radius: 15px;
	bottom:-10px;
	left: 50%;
	transform: translateX(-50%);
	background:#00037B;
}

.merit li{
	padding: 8px 0;
	padding-left: 2rem;
	position: relative;
	font-size: clamp(18px,2.1vw,22px);
}

.merit li::before{
	position: absolute;
	content: '\f058';
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #2E3196;
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
}

.shikkan_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:15px;
}

.shikkan_list li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 286px;
    height: 54px;
    background-color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #034e95;
	text-align: center;
}

@media screen and (max-width: 1220px) {

	.shikkan_list{
		max-width: 800px;
		margin: 0 auto;
	}	
	.shikkan_list li {
		width: 48%;
		height: 54px;
		font-size: 18px;
		line-height: 1.3;
	}
}

@media(max-width:620px){
	.merit{
		padding: 2rem 1.5rem;	
	}
	.shikkan_list li {
        width: 45%;
		font-size: 16px
	}
}


.t-service{
	display: flex;
	justify-content: space-between;
	margin: 15px 0;
}

.service-list{
	width: calc(95% / 4);
	font-size: 1rem;
	margin-top: 15px;
}
.service-list-img{
	border-radius: 50%;
	width: 280px;
	height: 280px;
	padding: 10px;
	background: linear-gradient(130deg,#73b1e1,#0079c1);
	position: relative;
	margin-bottom: 10px;
}
.service-list-img .numb{
	position: absolute;
	font-size: 80px;
	color: #bdccd4;
	bottom:0;
	right: -15px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 600;
	line-height: 1;
}
.service-list-img img{
	border-radius: 50%;
	width: 100%;
	aspect-ratio: 1 / 1;	
}

@media screen and (max-width: 1220px) {
	.t-service{
		flex-wrap: wrap;
		justify-content: center;
		max-width: 960px;
		margin: 15px auto;
	}	
	.service-list{
		width: 48%;
		max-width: 300px;
		font-size: 1rem;
		margin: 1%;
	}
}

@media(max-width:620px){
	.service-list-img{
		width: 200px;
		height: 200px;
		aspect-ratio: 1 / 1;
		margin:15px auto;
	}
}
@media(max-width:480px){
	.service-list{
		width: 100%;
		max-width: 300px;
		font-size: 1rem;
		margin: 1%;
	}	
}


.maptitle{
	padding: 5px 1rem;
	font-size: clamp(1.15rem, 0.941rem + 0.88vw, 1.6rem);
	border-bottom: 2px solid #2e3196;
	margin-bottom: 15px
}
.map{
	width: 100%;
	height: 40vh;
}
.map iframe{
	border-radius: 20px;
	outline: 2px solid#2e3196;
}


/*==================
	利用について
===============================================================*/
.flow_section01 .flow_list{
  margin-top: 56px;
}

.flow_section01 .flow_block{
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
}

.flow_section01 .flow_block + .flow_block{
  margin-top: 40px;
}

.flow_section01 .flow_block::before,
.flow_section01 .flow_block::after{
  content:'';
  width:4px;
  height:100%;
  background-color: #2e3192;
  position: absolute;
  left:-2px;
  z-index: 1;
}

.flow_section01 .flow_block::before{
  top:50%;
}
.flow_section01 .flow_block::after{
  bottom:50%;
}

.flow_section01 .flow_block:first-child::after{
  content:none;
}
.flow_section01 .flow_block:last-child::before{
  content:none;
}


.flow_section01 .flow_block .flow_thumb{
  width:294px;
  aspect-ratio: 1/0.795;
  flex-shrink: 0;
}

.flow_section01 .flow_block .flow_thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
	vertical-align: bottom;
}

.flow_section01 .flow_block .flow_text_area{
  width:100%;
  padding:24px 40px 24px 90px;
  position: relative;
}

.flow_section01 .flow_block .flow_title{
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: #2e3192;	
}

.flow_section01 .flow_block .flow_text{
  margin-top: 16px;
  line-height: 2.25;
}

.flow_section01 .flow_block .flow_num{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #2e3192;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  position: absolute;
  z-index: 2;
  left:-45px;
  top:0;
  bottom:0;
  margin:auto;
}
@media screen and (max-width:767px){

  .flow_section01 .flow_list{
    margin-top: 40px;
  }

  .flow_section01 .flow_block{
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .flow_section01 .flow_block + .flow_block{
    margin-top: 40px;
  
  }

  .flow_section01 .flow_block::before,
  .flow_section01 .flow_block::after{
    width:2px;
    left:-1px;
    z-index: 1;
  }


  .flow_section01 .flow_block .flow_thumb{
    width:100%;
    max-width: 100%;
   aspect-ratio: 4 / 3;
	  
  }


  .flow_section01 .flow_block .flow_text_area{
    width:100%;
    padding:24px 16px 32px 40px;
    position: static;
  }

  .flow_section01 .flow_block .flow_title{
    font-size: 20px;
    line-height: 1.3;
  }

  .flow_section01 .flow_block .flow_text{
    margin-top: 16px;
    line-height: 1.75;
  }

  .flow_section01 .flow_block .flow_num{
    width: 50px;
    height: 50px;
    font-size: 24px;
    left:-8px;
  }	
}

/*費用*/
.hoken ,.kaigo{
	margin-bottom: 30px;
}
.hoken th,.kaigo th{
	width: 280px;
	font-size: 1.2rem;
	padding: 1rem;
	background:#4E52CF;
	color: #fff;
	
}
.kaigo th{
	background:#1A79D1;
}
.hoken td,.kaigo td{
	padding: 1rem;
	padding-left: 1.5rem;
	background: #fff;
	
}

.hoken td p,.kaigo td p{
	margin-bottom: 15px;	
}
.check li{
	padding-left: 1.5rem;
	position: relative;
}
.check li::before{
	position: absolute;
	content:'\f058';
	font-size: 15px;
	top: 2px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	color: #2e3196;
}
@media(max-width:767px){
.hoken th,.kaigo th{
	display: block;
	width: 100%;		
}	
.hoken td,.kaigo td{
	display: block;
	width: 100%;	
}	
}


/*FAQ*/

.faq .actab {
  position: relative;
  width: 100%;
  margin: 0 0 1em 0;
  color: #1b2538;
}
.faq .actab input {
  display: none;
}
/* 質問 */
.faq .actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.5em;
  cursor: pointer;
  text-indent: 1em;
  border-radius: 0.5em;
  background: rgba(27,37,56,0.1);
}
.faq .actab label::before {
  content: 'Q';
  font-family: serif;
  font-size: 1.5em;
  margin-left: -2em;
  padding-right: 0.5em;
}
.faq .actab label:hover {
  color: #00838f;
  transition: all 0.3s;
}
/* --質問の＋アイコン */
.faq .actab label::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  font-size: 1.7em;
  font-weight: bold;
  line-height: 2em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 0.4s;
}
/* 答え */
.faq .actab .actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  border-radius: 0 0 0.5em 0.5em;
  transition: max-height 0.2s;
  background: rgba(255,255,255,0.3);
}
.faq .actab .actab-content::before {
  position: absolute;
  content: 'A';
  font-family: serif;
  font-size: 1.5em;
  margin: 0.4em 0 0 -1em;
  padding: 0;
	color: #B43739;
}
.faq .actab .actab-content p {
  margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.faq .actab input:checked ~ .actab-content {
  max-height: 40em;
  border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.faq .actab input:checked ~ label {
  color: #00838f;
  border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.faq .actab input[type=checkbox]:checked + label::after {
  transform: rotateZ(45deg);
  transform-origin: 50% 50%;
}



/*==================
kokokara
===============================================================*/
.space{
	height: 20px;
}

.imgflex{
	display: flex;
	align-items: center;
	justify-content: center;
	gap:5px;
}
.imgflex div{
	width: calc(90% / 3 - 5px);
}
.imgflex img{
	width: 100%;
	object-fit: contain;
	vertical-align: bottom;
}

@media(max-width:768px){
	.imgflex{
		margin-top: -60px;
	}
.imgflex div{
	width: calc(100% / 3 - 5px);
}	
}

.kokokara_active ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.kokokara_active .contents{
	padding: 1rem 2rem;
	background:rgba(255,255,255,.5);
	margin-bottom: 30px;
	border-radius: 20px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
}
.kokokara_active .contents .comn4{
	padding: 2rem;
	text-align: center;
}
.kokokara_active .contents .comn4 img{
	width: 80%;
	max-width: 400px;
	object-fit: contain;
	margin: auto;
}


.kokokara_active li{
	width: 30%;	
}
.kokokara_active li img{
	width: 100%;
	object-fit: contain;
}
.min-slider li{
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
}
.min-slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:100%;
	object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.min-slider .slick-slide {
    margin:0 15px;/*スライド左右の余白調整*/
}


/*==================
CONTACTCONTACT
===============================================================*/

.contact_top_text {
	margin-bottom: 70px;
	max-width: 695px;
}
.contact_top_text span {
	font-size: 107%;
	border-bottom: 2px dotted #181D61;
	padding-bottom: 5px;
}
@media(max-width:550px) {
	.contact_top_text {
		font-size: 95%;
		margin-bottom: 40px;
	}
}
.contactp {
	padding-bottom: 0;
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	border-radius: 10px;
	margin: auto;
	padding: 30px 10px;
	background: rgba(255, 255, 255, 0.85);
	border: 2px solid #181D61;
}
.rcheck p::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #181D61;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact {
	color: #595757;
	font-size: clamp(1.45rem, 0.7625rem + 2.2vw, 2rem);
	margin-bottom: 3px;
	white-space: nowrap;
	z-index: 1;
	position: relative;
	font-weight: 700;
}
.tel_contact i {
	color: #181D61;
}
.tel_contact:hover {
	opacity: 0.6;
}
.telflex {
	max-width: 1160px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	margin-top: 7px;
	margin-bottom: 5px;
}
.faxlist p, .tel_text {
	font-size: 95%;
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.te.tel_text {
	font-size: 100%;
	margin-top: 5px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		margin-bottom: 30px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	margin-bottom: 0;
	white-space: nowrap;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	position: relative;
	margin-bottom: 12px;
	letter-spacing: 0.1em;
	font-size: clamp(1.1rem, 0.6625rem + 1.4vw, 1.45rem);
	line-height: 1.5;
	font-weight: 700;
	color: #2e3192;
}
.spb {
	margin-bottom: 60px;
}
@media (max-width: 1210px) {
	.tel_text {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
	.telflex div:first-child {
		margin-bottom: 35px !important;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
	}
}
@media (max-width: 550px) {
	.spb {
		margin-bottom: 12px;
		font-size: 1.15rem;
	}
	.telmini {
		margin-bottom: 12px;
		font-size: 1.15rem;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 7px;
	}
	.faxlist {
		display: block;
		width: fit-content !important;
		margin-right: auto;
	}
	.faxlist p {
		margin-right: 0;
	}
}
.tmgb {
	margin-bottom: 25px;
}
.fpdt {
	padding-top: 60px;
}
@media (max-width: 950px) {
	.fpdt {
		padding-top: 20px;
	}
}
@media (max-width: 550px) {
	.fpdt {
		padding-top: 50px;
	}
}
.tl_text {
	margin-top: 13px;
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
}
@media (max-width: 450px) {
	.tmgb {
		margin-bottom: 15px;
	}
	.contact_wrap {
		max-width: 100%;
		padding: 20px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
/* メール ====================*/
.mpdb .inner {
	max-width: 1050px;
}
.mailcontop {
	margin-bottom: 40px;
}
.mnote {
	max-width: 865px;
	margin: auto;
	margin-top: 55px;
}
@media(max-width:550px) {
	.mailcontop {
		font-size: 93%;
		margin-bottom: 33px;
	}
	.mnote {
		margin-top: 45px;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595757;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 1rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #181D61;
	padding: 5px;
	margin-right: 5px;
	font-size: 12px;
	border-radius: 3px;
}
.mailform .row span.mailsp {
	color: #181D61;
	background: #fff;
	border: 1px solid #181D61;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #595757;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	margin: 0 auto;
	white-space: nowrap;
	padding: 15px 10px;
	width: 260px;
	transition: .4s;
	border: 1px solid transparent;
	color: #fff;
	background: #181D61;
	border-radius: 50px;
}
.mailform button:hover {
	background-color: transparent;
	color: #181D61;
	border: 1px solid #181D61;
	opacity: 1;
	background: #fff;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #181D61;
	border-bottom: 3px solid #181D61;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
@media (max-width: 550px) {
	.mailform button {
		width: 200px;
		padding: 10px 13px;
	}
	.formsel label {
		font-size: 1rem;
	}
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
@media (max-width: 800px) {
	.mailform .row:first-child {
		padding-top: 5px;
	}
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	margin: 0 auto;
	border-bottom: 1px solid #181D61;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	font-weight: 700;
	transition: ease-in-out 100ms;
	font-size: clamp(1rem, 0.625rem + 1.2vw, 1.3rem);
	padding-bottom: 7px;
}
.privacy_header i {
	color: #181D61 !important;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 95%;
}
.privacy_text span::before {
	content: "■";
	display: inline-block;
	font-size: 0.7rem;
	margin-right: 0.35em;
	transform: translateY(-2px);
	color: #181D61;
}
@media(max-width:750px) {
	.privacy_text {
		font-size: 0.9rem;
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 47%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 90%;
}
.privacy_gold {
	color: #181D61;
}





















