@chtext01rset "UTF-8";
/* CSS Document */


    html {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
      font-weight: 500;
     font-size: 62.5%;
      height: 100%;
      word-break: break-word;
      
    }

    body {

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

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

 

    img {
		width: 100%;
      border: 0;
      margin: 0;
    }

    figure {
      margin: 0;
    }

    p {
      margin: 0;
      padding: 0;
		color: #393939;
    }

    a {
      text-decoration:none;
      color:#4E4E4E;
		transition: 1s;
    }

 a:hover {
      opacity: 0.5;
    }
    ul,
    ol {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-size: 1.6rem;
      margin: 0;
      padding: 0;
    }

    input,
    select,
    textarea,
    button {
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      border-radius: 0;
      appearance: none;
    }
.sp_br{
	display: none;
}

/* DEMO */
.demo{
	width: 100%;
	height: 100vh;
	position: relative;
}

.demo img{
 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 20%;
}

header{
	width: 100%;
	position:relative;
}

.pc_navi{
	z-index: 2;
	width: 20%;

	height: 100vh;
	position: fixed;
	display: flex;
  
  align-items: center;
	 flex-direction: column;
	
}

.pc_navi h1{
	width:40%;
	margin:30px auto 0px auto;
	height: auto;
}
nav{
	width:75%;
	margin:auto;
	height: auto;
	
}

ul.headnavi{
	width:100%;
	font-weight:300;
	font-size: 1.8rem;
	letter-spacing: 2px;
	font-weight: 500;
	margin-top: 50px;

}

ul.headnavi li{
border-bottom: 1px #CECECE solid;
margin-bottom: 50px;
padding-bottom: 2px;
position: relative;
}

ul.headnavi li:last-of-type{
margin-bottom: 0px;

}




ul.headnavi li::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #808080;
bottom: -1px;              
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.8s; /*変形の時間*/
}

ul.headnavi li:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}


.pc_navi div{
margin: 20px 0 0 0;
}
span.contact {
	width:100%;
margin: 0px auto;
display: block;
padding-left: 0px;
	font-weight:400;
	font-size: 1.6rem;
	letter-spacing:1px;
	
}


 span.contact::before{
	content: "";
	display: inline-block;
background:url("../img/line_color.svg") 0 0 no-repeat;
   position:relative;
    top:8px;
margin-right: 10px;
	width: 30px;
	height:30px;
}



 span.contact:nth-of-type(2)::before{

background:url("../img/mail.svg") 0 0 no-repeat;
 
}

.sp_navi{
	display: none;
	position: fixed;
padding: 10px 20px;
	background-color:#006b9a;	
	 top:0;
	right: 0;
border-bottom-left-radius:20px;
z-index: 4;
}

.sp_switch{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
    width: 90px;
    height:50px;
text-align: center;
	z-index: 3;

}


/*ボタン内側*/
.sp_menu span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.sp_menu span:nth-of-type(1),
.sp_menu span:nth-of-type(3) {
    height: 2px;
  background: #fff;
    width: 100%;
    left: 0px;
 }

.sp_menu span:nth-of-type(1) {
  top:13px; 
}

.sp_menu span:nth-of-type(2) {
  top:19px;
  left:0px;
  font-size:1.0rem;
  text-transform: uppercase;
  color: #fff;
	width: 100%;
	text-align: center;
	
}

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


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

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

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



.sp_menu_list{
opacity: 0;
visibility: hidden;
transition:0.3s ease-in-out;
height:100vh;
background-color:hsla(0,0%,100%,0.98);
width:100%;

position: fixed;
	display:flex;
	justify-content: center;
}


.sp_menu_list.active{
  opacity: 1;
      visibility: visible;
z-index: 3;
}
.sp_menu_list h1{
	width:12%!important;
	margin:0 auto 50px auto;
}


ul.sp_headnavi{

	width:100%;
	font-weight:300;
	font-size: 1.9rem;
	letter-spacing: 2px;
	font-weight: 500;

}

nav.sp_nav{
	width:70%;
	margin:auto;
	height: auto;
	
}

ul.sp_headnavi li{
border-bottom: 1px #CECECE solid;
margin-bottom: 70px;
padding-bottom: 2px;
position: relative;
}





.sp_contact {
	width:100%;
margin: 70px auto 0px auto ;
display: flex;
justify-content:space-between;
}

div.sp_contact span {
	width:49%;
	text-align: center;
margin: 0px auto 0px auto ;
position: relative;
display: block;
padding-bottom: 5px;
	font-weight:400;
	font-size: 1.8rem;
	letter-spacing:1px;
border-bottom: 1px #CECECE solid;
}

div.sp_contact span::before{
	content: "";
	display: inline-block;
background:url("../img/line_color.svg") 0 0 no-repeat;
position:relative;
    top:8px;
margin-right: 10px;
	width: 30px;
	height:30px;
}


div.sp_contact span:nth-of-type(2)::before{
	
background:url("../img/mail.svg") 0 0 no-repeat;
  
}

main{
	width: 100%;
display: flex;
  justify-content: flex-end;
 flex-flow: column;
-webkit-box-align: flex-end;
      -ms-flex-align: flex-end;
          align-items:flex-end;
  -webkit-box-pack: flex-end;
      -ms-flex-pack: flex-end;
          justify-content: flex-end;
}



.slide{
	position: relative;
	width: 80%;
	height: 100vh;

}


.info{
	  width:80%;
    height:auto;
padding: 0 0 100px 20px;
position: relative;

}

.info h1{
    width:91%;
  border-bottom: 1px solid #D5D5D5!important;
	font-size: 2.5rem;
	color: #343434;
	letter-spacing: 3px;
	padding: 0 0 3px 10px; 
	
}

.info p{
   
	font-size: 1.8rem;
	letter-spacing: 1px;
	padding: 10px 0 0px 0px; 
	line-height:300%;
}

.section_scroll{
   width: 100%;
   height: auto;
}
 




.section06{
    width: 80%;
    height: 300vh;
}


.section06_box{
    margin-left:auto;
    margin-right: auto;
    width: 100%;
	height: 100vh;
	 position: -webkit-sticky;
  position:sticky;
	top :0;

}

.section06_box img{
width: 100%;

}

.text01{
	position: absolute;
	width: 60%;
	height: auto;
	background-color:hsla(0,0%,100%,0.90);
	top: 30%;
	left:3%;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing:1px;
	line-height:500%;
	padding: 50px 30px 80px 30px;
	border-radius: 10px;
	text-align: center;
	z-index: 3;
}

.text01 p{

	text-align: left;
}

.sec01{
    width: 80%;
    height:250vh;

position: relative;
}


.container {
position: -webkit-sticky;
  position:sticky;
	top :0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.box {
  width: 100%;
  height: auto;
display: none;
	
}

.box_movie{
	 animation: fadeIn02 2.0s forwards;
 display:inherit;
	 opacity:0;

	}

.box_sp{
display: none;
}
@keyframes fadeIn02 {
  0% {
    opacity:0;
    clip-path: inset(50% 25% 25% 50%);
	     -webkit-clip-path: inset(50% 25% 25% 50%);
  }

  100% {
    opacity:1;
    clip-path: inset(0% 0% 0% 0%);
	     -webkit-clip-path: inset(0% 0% 0% 0%);
  }
}


.sec02{
    width: 80%;
    height:auto;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
align-items: center;
padding: 100px 0px;
}

.sec02 div{
	width: 45%;
	padding: 100px 30px;
	text-align: center;
	border-radius: 10px;
	border: 1px  #C5C5C5 solid;
}

.sec02 h2{
	font-size: 2.0rem;
	font-weight:500;
	color: #383838;
	letter-spacing:4px;
	margin: 10px auto 30px 0;
	
}


.sec02 span, .text01 span{
	font-size: 1.8rem;
	font-weight:500;
	letter-spacing: 2px;
	position: relative;
	padding:0px 50px 5px 50px; 
	border-bottom: 1px #81643D solid;
		transition: all 0.8s;/*変形の時間*/
}



.sec02 span a:hover, .text01 span a:hover{
transition: all 0.8s;/*変形の時間*/
	color: #c09256;
}

.sec02 span::before,.text01 span::before{
	content: "→";
	position: absolute;
	
	 top: 51%;
    left: 15%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	
	transition: all 0.8s;/*変形の時間*/
}


.sec02 span:hover::before,.text01 span:hover::before{

    left: 18%;
  
	color: #c09256;
}


.sec02 span::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background:#c09256;
bottom: -1px;              
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.8s; /*変形の時間*/
}

.sec02 span:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}






footer{
	 width: 80%;
   height: auto;
	display: flex;
	
align-items:center; 

padding: 50px 0px 50px 0px;
	border-top: 1px solid #EEEEEE;
}
footer div{
	width: 60%;
	height: auto;
	margin:0 auto;
	
}

footer div:first-of-type{
	width: 40%;
	
	height: auto;
}

footer div h1{
	width: 50%;
	margin: auto;

}
.footer_info{

	margin: 20px auto 0 auto;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 200%;
	color: #363636;
	width: 80%!important;
	height: auto;
}

.logo{
	width:50%!important;
	margin:30px auto 0px auto;
height: auto;
display: flex;
	justify-content: center;
  align-items: center;
justify-content:space-around;
}


.logo  span{
	width:40%!important;
	
}

ul.footernavi{

	width:100%;
	font-weight:300;
	font-size: 1.6rem;
	letter-spacing: 2px;

display: flex;
	flex-wrap: wrap;
justify-content:space-around;
}



ul.footernavi li{
width: 45%;
border-bottom: 1px #CECECE solid;
margin-bottom: 30px;
padding-bottom: 2px;
position: relative;
}


.footer_contact{

	width:100%!important;
	font-weight:300;
	font-size: 1.6rem;
	letter-spacing: 2px;
margin: 10px 0 0 0;
display: flex;
	flex-wrap: wrap;
justify-content:space-around;
}

.footer_contact span{
width: auto;
font-weight: 600;
margin-bottom: 30px;
padding-bottom: 2px;
position: relative;
}

.footer_contact span::before{
	content: "";
	display: inline-block;
background:url("../img/line_color.svg") 0 0 no-repeat;
position:relative;
    top:8px;
margin-right: 10px;
	width: 30px;
	height:30px;
}
.footer_contact span:nth-of-type(2)::before{
	
background:url("../img/faq.svg") 0 0 no-repeat;

}

.footer_contact span:last-of-type::before{
	
background:url("../img/mail.svg") 0 0 no-repeat;

}

.copy{
	width: 100%;
	display: block;
	text-align:right;
	font-size: 1.4rem;
	color: #666666;
	padding-right: 35px;
	
}



/* 会社概要 */


.company{
    width: 80%;
    height:auto;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-around;
align-items: center;
padding: 100px 30px;
}

.company h1{
	width: 100%;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing:15px;
position: relative;
color: #535353;
display: flex;
align-items: center;
}

.company h1::after{
content: "company";
color:#8E8E8E;
	letter-spacing:5px;
	font-size: 1.2rem;
display: inline-block;
margin: 0 0 0 10px;

}

.company h2{
	width: 100%;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing:1px;
position: relative;
color: #3A3A3A;
	text-align: center;
}


.greeting h2{
	font-size: 1.8rem;
	font-weight:500;
	letter-spacing:5px;
color:#3A3A3A;
	text-align: left;
}

.greeting p{
	letter-spacing:4px;
	font-size: 1.4rem;
	line-height: 300%;
	font-weight: 300;
	margin:20px 0 0 0;
}


.company div{
	width: 45%;
	
}

.staff{
width:95%!important;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 0 20px;
margin:80px 0 0 0;	
}

.staff h4{
width: 100%!important;
border-bottom: 1px solid  #C9C9C9;
font-size: 1.8rem;
font-weight: 600;
letter-spacing:2px;
color: #535353;
margin-bottom:30px;
padding-bottom: 3px;
}

.profile{
width:95%!important;
text-align: center;
margin: auto;
}

.staff .profile{
width:35%!important;
text-align: center;
margin: auto;
}


.profile img{
width:70%!important;
margin: 50px auto 5px auto;
}

.staff .profile img{
width:100%!important;
margin: 0px auto 0px auto;
}

.staff .profile br{
display: none;
}

.history{
	width:95%!important;
	border: 1px solid #7B7B7B;
	margin:30px auto 50px auto;
	border-radius: 10px;
	padding: 20px 20px 10px 20px;
	position: relative;
	
	
}

.staff .history{
	width:50%!important;
	margin:30px auto 50px auto;
	padding: 20px 20px 10px 20px;
	
}


.staff .history p{
font-size: 1.5rem;
	
}

.history h3{
	letter-spacing:2px;
	font-size: 1.8rem;
	font-weight: 600;
	color: #343434;
	background-color: #fff;
	padding: 0px 10px;
position: absolute;
top: 0%;
    left: 14%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.history p{
	letter-spacing:2px;
	font-size: 1.3rem;
	line-height: 300%;
	font-weight: 300;
}

.company-info{
    width: 80%;
    height:auto;
padding: 50px 30px;
display: flex;
flex-wrap: wrap;
align-items:center;
justify-content:space-around;
}


.company-info div{
width:60%!important;


}

.company-info div.company_photo{
width:40%!important;
	text-align: center;
}

.company-info div.company_photo img{
width:70%;
	margin-bottom: 20px;
}


.company-info div div{
	width: 100%!important;
	display: flex;
	justify-content: center;
  align-items: center;
justify-content:space-around;
border-bottom: 1px solid #CBCBCB;
	margin-bottom:80px;
	padding-bottom: 5px;
}

.company-info div div span{
	width: 85%;
	letter-spacing:2px;
	font-size: 1.6rem;
	font-weight:500;
	color:#393939;
	
}

.company-info div div span a{
	margin-left:50px;
	text-decoration:underline;
	color: #006b9a;
}


.company-info  div div span:nth-of-type(odd){
width:80px;
margin-right:20px;
text-align:inter-word;
text-align-last:justify;
font-weight:600;
color:#393939;

}


.company-info b{
color: #006b9a;
margin-left:40px;
}



/* 訪問看護について */


.visting{
    width: 80%;
    height:auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	
padding: 100px 30px 0px 30px;
}



.visting h1{
	width: 100%;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing:15px;
position: relative;
color: #535353;
display: flex;
align-items: center;
margin-bottom:50px;
}

.visting h1::after{
content: "Visiting nursing";
color:#8E8E8E;
	letter-spacing:5px;
	font-size: 1.2rem;
display: inline-block;
margin: 0 0 0 10px;

}

.child h1::after{
content: "Visiting child care";

}

.visting div{
width: 56%;
margin:0px auto;
}

.visting div:first-of-type{
width: 40%;
margin:0px auto;
	
}

.visting div:last-of-type{
width: 100%;
margin:20px auto;

}
.visting_text{
	letter-spacing:3px;
	font-size: 1.5rem;
	line-height: 250%;
	font-weight: 300;
	margin:0px 0 0 0;

}

.visting_text b{
	font-size: 1.6rem;
	font-weight: 600;

}

/* 訪問看護について チャート */
.chart{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:100px 0 100px 0px ;
padding: 30px 30px;
}



.chart h1,.works h1{
	width: 100%;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing:25px;
	text-align: center;
margin:0 auto 10px auto;
color: #006b9a;
display: flex;
align-items: center;
justify-content: center;
	padding: 0;
	
}


.chart h1::before{
	
	content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
display: inline-block;
	margin-right: 30px;
}


.chart h1::after{
	display: inline-block;
	content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
		margin-left:10px;
}



.chart h3{
	width: 100%;
	font-size: 1.8rem;
font-weight:600;
color: #515151;
text-align: center;
line-height: 140%;
margin-bottom:60px;
letter-spacing: 5px;
}

.chart h3 small{
font-size: 1.3rem;
font-weight:400;
letter-spacing:1px;
}


.chart span{
	width:30%;
	text-align: center;
	font-size: 1.6rem;
	background-color:#006b9a;
	border-radius: 10px;
	margin-bottom: 40px;
	position: relative;
	padding:3px 2px;
	color: #fff;

}
.chart span::before{
	
	content: "▼";
color:#AEAEAE;
	font-weight:800;
	font-size:2.0rem;
position: absolute;
top:-35px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
}

.blank{
opacity: 0;
}
.type01{
width:50%!important;
display: flex;
flex-wrap: wrap;
align-items:center;
padding: 30px 20px 0px 20px;
}

.type02{
width:40%!important;
	height:auto;
	background-color: #006b9a;
	display: flex;
	flex-direction:column;
justify-content:center;
  align-items: center;
position: relative;
}

.chart_sp{
display: none;
}

.type02 h2{
font-size: 2.0rem;
font-weight: 600;
letter-spacing: 2px;
color:#fff;
	margin: 0;
	padding:10px 0 0 0;
}


.type02 ul{
	background-color:#fff;
	width: 95%;
	padding: 10px 30px;
	margin: 10px auto 15px auto;
}

.type02 ul li{
	text-align:left;
	font-size: 1.6rem;
	margin-bottom: 20px;
	list-style: disc;
}

.type02::after{
content: "◀︎";
color:#AEAEAE;
	font-weight:800;
	font-size:2.0rem;
position: absolute;
bottom:40px;
    left:-3%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);

}

.type03{
width:100%!important;
display: flex;
	flex-wrap: wrap;
gap: 0px 10px; 
}

.type03 span{
width:66%!important;

}
.type04{
width: 97%;
display: flex;
flex-wrap: wrap;
	justify-content: flex-end;
}

.type04 span{
width:66%!important;

}

.type05{
	width:100%!important;
	display: flex;
	flex-wrap: wrap;

	gap: 0px 10px; 
}

.type06{
	width:90%!important;
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
margin-top: 40px;

}

.type06 span{
width: 100%;	
	
}

.type06 span br{
display:none;
}

span.chart_color01{
background-color:#c2e3f5; 
color: #333333;
}

span.chart_color02{
background-color:#41bfed;

	}

.chart div.type03:nth-of-type(1) span::before{
	display: none;
}



.chart div.type04 span::before{
top:-35px;
left: 25%;
}

.chart div.type05:nth-of-type(5) span:nth-of-type(1)::before{
top:-70px;

}

.chart div.type05:nth-of-type(5) span:nth-of-type(1)::after,.chart div.type05:nth-of-type(5) span:nth-of-type(3)::after{
content: "▼";
color:#AEAEAE;
	font-weight:800;
	font-size:2.0rem;
position: absolute;
top:50px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);

}


.chart div.type05:nth-of-type(5) span:nth-of-type(2){
margin-left: 20px;
}

.chart div.type05:nth-of-type(5) span:nth-of-type(2)::after{
content: "◀︎";
color:#AEAEAE;
	font-weight:800;
	font-size:2.0rem;
position: absolute;
top:0px;
    left: -7%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);

}

.chart div.type06 span:nth-of-type(1)::before{
display: none;
}

/* 訪問看護について できること */

.works{
    width: 80%;
    height:auto;
display : flex;
  flex-wrap : wrap;
  justify-content:space-between;
	gap: 20px 20px; 
padding: 30px 30px;
}

.works div{
	text-align: center;
	width: 32%;
	height: 300px;
	border: 5px solid #41bfed;
	border-radius: 10px;
	box-shadow: 5px 5px #41bfed;
	padding: 10px 0px;
	position: relative;
}

.works div::after{
	content: "";
	background-image: url("../img/icon01.jpg");
	background-repeat: repeat;
	background-size: contain;
	width:100px;
	height: 100px;
	position: absolute;
bottom:20px;
    left:50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
}
.works div:nth-of-type(2)::after{
display: none;
}


.works div:nth-of-type(3)::after{
	background-image: url("../img/icon02.jpg");
}

.works div:nth-of-type(4)::after{
	background-image: url("../img/icon03.jpg");
}

.works div:nth-of-type(5)::after{
	background-image: url("../img/icon07.jpg");
	width:125px;
	height:125px;
	bottom:0px;
	z-index: -1;
}

.works div:nth-of-type(6)::after{
	background-image: url("../img/icon04.jpg");
	width:150px;
	height:150px;
	bottom:0px;
}
.works div:nth-of-type(7)::after{
	background-image: url("../img/icon05.jpg");
}
.works div:nth-of-type(8)::after{
	background-image: url("../img/icon06.jpg");
	width:180px;
	height:180px;
	bottom:0px;
}

.works div:nth-of-type(9)::after{
	background-image: url("../img/icon08.jpg");
}

.works div.cild_list::after{
bottom:0px;
   left:50%;
}


.works div h2{
font-size: 2.2rem;
font-weight:700;
letter-spacing:3px;
margin-bottom:10px;
color: #006b9a;
}

.works div p{
font-size: 1.6rem;
text-align: left;
	line-height:200%;
	font-weight:400;
display: block;
	margin: auto;
	width: 94%;}



/* 訪問看護について 料金 */

.price{
    width: 80%;
    height:auto;
 position: relative;
margin:100px 0px  180px 0px;
}

.price h1{
	position: absolute;
top:0%;
    left:50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
background-color:#fff;
	padding: 0 30px;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing:25px;
color: #006b9a;
	
}

.price_list{
    width: 95%;
    height:auto;
display : flex;
  flex-wrap : wrap;
	gap:30px 0px; 
margin: auto;
padding: 50px 0px;
	border:4px solid #006b9a;
	
}

.price_list div{
	width:80%;
	display : flex;
  flex-wrap : wrap;
align-items: center;
	margin: auto;
	
}

.price_list div:nth-of-type(3){
	justify-content: center;
}
.price_list div h2{
font-size: 1.8rem;
font-weight:500;
letter-spacing: 15px;
color: #fff;
background-color: #006b9a;
padding:3px 10px 3px 20px;
border-radius: 20px;
}

.price_list div span{
font-size: 1.8rem;
font-weight:400;
margin-left:20px;
}

.price_list div p{
	
font-size: 1.8rem;
font-weight:400;
text-align: center;
line-height: 150%;
	letter-spacing: 2px;
}

.price_list div p b{
	
font-size: 2.0rem;
font-weight:600;
display: inline-block;
	margin-bottom: 20px;
}


/* 小児訪問看護について 悩み */

.worries{
    width: 80%;
    height:auto;
	margin:100px 0 50px 0px ;
padding: 30px 30px;
	display: flex;
flex-wrap: wrap;
  justify-content:space-between;
align-items:center}



.worries h1{
	width: 100%;
	font-size:6.0rem;
	font-weight: 700;
	letter-spacing:2px;
	text-align: left;
margin-bottom:50px;
color: #006b9a;opacity: 0.4;
	
}


.worries ul{
	width:100%;
	padding: 10px 30px;
	margin:0px 0 15px 0;
	z-index:2;
	
	position: relative;
}

.worries ul li{
	text-align:left;
	font-size: 2.0rem;
	font-weight:500;
	margin-bottom:60px;
	letter-spacing:1px;

	}


.worries ul li b{
font-weight:600;
	color: #393939;
width: auto;
	padding: 0 50px 8px 20px;
border-bottom:3px solid #D9D9D9;}




.worries ul::after{
	content: "";
 position: absolute;
width:50%;
	height:700px;
	z-index:1;
  opacity: 0.1;
right:100px;
bottom: 80px;
  background-image:url("../img/child.jpg");
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
 
}
.worries span{
	display: block;
	margin-top: 50px;
	width: 100%;
	text-align: center;
font-weight: 700;
	font-size: 3rem;
	color: #393939;
	letter-spacing: 8px;
}

/* 小児訪問看護について ご利用の流れ */

.child_flow{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:100px 0 100px 0px ;
padding: 30px 30px;
}







.child_flow h1{
	width: 100%;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing:20px;
	text-align: center;
margin-bottom:10px;
color: #006b9a;
display: flex;
align-items: center;
justify-content: center;
	
}

.child_flow h1::before{
	
		content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
display: inline-block;
	margin-right: 30px;
}


.child_flow h1::after{
	
display: inline-block;
	content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
		margin-left:10px;
}

.child_flow ol{
	
	width: 50%;
	padding: 10px 30px;
	margin:50px auto 15px auto;
}

.child_flow ol li{
	text-align:left;
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom:80px;
	letter-spacing:3px;
	list-style:decimal-leading-zero;
	color:#006b9a;
	position: relative;
}

.child_flow ol li::before{
	
	content: "▼";
color:#AEAEAE;
	font-weight:800;
	font-size:3.0rem;
position: absolute;
top:-60px;
    left: 15%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
}

.child_flow ol li:first-of-type::before{
	
display: none;
}

.child_flow ol li p{
	text-align:left;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing:2px;
	margin-top: 5px;
	
}

.child_flow ol li span{
	display:inline-block;
	color:#393939;
	text-align:left;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing:2px;
	line-height: 200%;
	margin:10px 0px 0px 0px; 
	border: dotted 1px #2F2F2F;
	padding: 10px 30px 10px 30px;
}



/* 求人情報 */


.offer_flow{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:100px 0 100px 0px ;
padding: 30px 30px;
	 gap: 0px 15px;
}




.offer_flow h1{
	width: 100%;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing:15px;
position: relative;
color: #535353;
display: flex;
align-items: center;
}

.offer_flow h1::after{
content: "Recruitment info";
color:#8E8E8E;
	letter-spacing:5px;
	font-size: 1.2rem;
display: inline-block;
margin: 0 0 0 10px;

}


.offer_flow h2{
width:100%;
font-size: 2.2rem;
font-weight:700;
letter-spacing:10px;
margin:80px 0px;
color: #006b9a;
text-align: center;
}

.offer_flow div{
width: 22%;
	text-align: center;
}


.offer_flow div span{
 background-image:url("../img/offer_01.jpg");
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
	display: block;
margin: auto;
width:200px;
height: 200px;
border-radius: 50%;
	position: relative;
	box-shadow: 5px 5px #006b9a;
}


.offer_flow div span:before{
content: "1";
font-size: 2.0rem;
font-weight:700;
color: #006b9a;
text-align: center;
width: 50px;
padding:7px 0px;
border:3px solid #006b9a;
background-color:#fff;
display: block;	
border-radius: 50%;
}


.offer_flow div:nth-of-type(2) span {
 background-image:url("../img/offer_02.jpg");
}

.offer_flow div:nth-of-type(3) span {
 background-image:url("../img/offer_03.jpg");
}
.offer_flow div:nth-of-type(4) span {
 background-image:url("../img/offer_04.jpg");
}






.offer_flow div:nth-of-type(2) span::before{
content: "2";
}

.offer_flow div:nth-of-type(3) span::before{
content: "3";
}

.offer_flow div:nth-of-type(4) span::before{
content: "4";
}





.offer_flow div h3{
color: #006b9a;
font-size: 1.6rem;
font-weight:700;
letter-spacing:5px;
margin: 18px 0px 5px 0px; 
}

.offer_flow div p{
font-size: 1.4rem;
font-weight:400;
text-align: left;
width: 80%;
display: block;
	margin: auto;
}



/* 求人 募集要項*/


.offer{
    width: 80%;
    height:auto;
padding: 50px 30px;

}


.offer h1{
	width: 100%;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing:20px;
	text-align: center;
margin-bottom:10px;
color: #006b9a;
	position: relative;
	
}

.offer h1::before{
	
	content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
position: absolute;
top:50%;
    left:20%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


.offer h1::after{
	
	content: "";
	width:30%;
	height: 2px;
	background-color: #006b9a;
		position: absolute;
top:50%;
    right:20%;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
}

.offer div{
	width: 90%;
	display: flex;
	justify-content: center;
  align-items: center;
justify-content:space-around;
border-bottom: 1px solid #CBCBCB;
	margin:50px auto;
	padding-bottom: 5px;
}

.offer div span{
	width: 85%;
	letter-spacing:2px;
	font-size: 1.6rem;
	font-weight:500;
	color:#393939;
	line-height: 200%;

}
.offer div span:nth-of-type(odd){
width:100px;
text-align:inter-word;
text-align-last:justify;
font-weight:600;
color:#393939;

}



/* 求人 求める人材*/

.offer_target{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:0px 0 0px 0 ;
padding: 30px 30px;

}

.offer_target div{
    width: 90%;
   padding: 50px 0px;
margin:0px auto 100px auto;
position: relative;
border: 5px solid #006b9a;
border-radius: 10px;
display: flex;

}

.offer_target h1{
	
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing:5px;
	text-align: center;
margin-bottom:10px;
color: #006b9a;
position: absolute;
top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	background-color:#fff;
	padding: 0 30px;
	display: inline-block;
	
}

.offer_target div ul{
	margin: auto;
	font-size: 2.0rem;
	line-height: 320%;
	font-weight:700;
	color: #2B2B2B;
	letter-spacing: 5px;
}

.offer_target div ul li{
	

    position: relative;

}


.offer_target div ul li::before{
	 background: #fff;
    border:2px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 25px;
      width: 25px;
   top:50%;
    left:-4%;
	position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

 

}

.offer_target div ul li::after{
	content: '';
  display: block;
 top:30%;
    left:-5%;
	position: absolute;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  width: 25px;
  height: 12px;
  border-left: 4px solid #006b9a;
  border-bottom: 4px solid #006b9a;
  transform: rotate(-45deg);
}




/* お問い合わせ */


.contact{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:100px 0 100px 0px ;
padding: 30px 30px;
	 gap: 0px 15px;
}




.contact h1{
	width: 100%;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing:15px;
position: relative;
color: #535353;
display: flex;
align-items: center;
}

.contact h1::after{
content: "Contact";
color:#8E8E8E;
	letter-spacing:5px;
	font-size: 1.2rem;
display: inline-block;
margin: 0 0 0 10px;

}

.contact span{
	width: 100%;
	font-size: 1.6rem;
	letter-spacing:8px;
	text-align: center;
	margin: 100px 0px;

}

.privacy_list {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.privacy-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.privacy-wrap::-webkit-scrollbar {
  display: none;
}

.privacy-wrap:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;

}
.privacy-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}

.privacy-box {
  width: 100%;
  max-width: 1200px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.privacy-box .inner {
  background: #fff;
  padding: 50px 20px;
  text-align: left;
}


.privacy-box .inner > :first-child {
  margin-top: 0;
}

.privacy-box .inner ul{
	width: 90%;
	font-size: 1.5rem;
	margin: auto;
	
}

.privacy-box .inner ul li{
margin-bottom: 30px;
font-weight: 600;
letter-spacing: 3px;
color: #2D2D2D;	
	
}
.privacy-box .inner ul li p{
	width: 100%;
	 font-size: 1.3rem;
	line-height: 150%;
	margin: 5px 0px 0px 0px;
	font-weight: 400;
letter-spacing: 1px;
color: #505050;	
}

.privacy-close{
width:100%;
	text-align: center;
	font-size: 1.6rem;
	letter-spacing:8px;
	font-weight:600;
	color: #505050;	
	margin:80px 0 0 0;
}


.iframe-wrapper{
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    margin: 0 0 20px;
}
.iframe-wrapper iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}




/* よくあるご質問 */


.faq{
    width: 80%;
    height:auto;
display: flex;
	flex-wrap: wrap;
justify-content: center;
	margin:100px 0 100px 0px ;
padding: 30px 30px;
	 gap: 0px 15px;
}




.faq h1{
	width: 100%;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing:15px;
position: relative;
color: #535353;
display: flex;
align-items: center;
}

.faq h1::after{
content: "FAQ";
color:#8E8E8E;
	letter-spacing:5px;
	font-size: 1.2rem;
display: inline-block;
margin: 0 0 0 10px;

}


.qa-list {
   width:90%;
	margin:50px auto 0 auto;
	   
}
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #8E8E8E;
}
.qa-list dl:first-child {
    border-top:none;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size:1.8rem;
	color: #3A3A3A;
	letter-spacing: 2px;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #006b9a;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #006b9a;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
	font-size:1.8rem;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 414px) {
.qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
}
.qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 0 0 0 30px;
font-size:1.4rem;
letter-spacing: 1px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 5px;
    content: 'Q.';
}
.qa-list dl dd::before {
 font-size: 14px;
    top: 5px;
    left: 5px;
    content: 'A.';
}
.qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
   font-size:1.4rem;
	letter-spacing: 150%;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}



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

.qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
   font-size:1.1rem!important;
	letter-spacing:0%!important;
}

}




/* 母子訪問看護について 悩み */


.mother_visting{

	position: relative;
	
}


.mother_visting h1{

	text-align: center;
color: #ea5769;
	opacity: 1;
	
}


.mother_visting ul{
	width:100%;
	padding:30px 10px;
	margin:0px 0 15px 0;
	z-index:2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	gap:40px 20px; 
	border:5px solid #ea5769;
	border-radius: 30px;
	background-color:hsla(0,100%,100%,0.70);
	
}

.mother_visting ul.baby_visting{
	margin:50px 0 0px 0;
	
	border:5px solid #2c94bc;
	
	
}

.mother_visting ul::before{
content: "お母様の場合";
background-color:#ea5769;
position: absolute;
top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	font-size:2.0rem;
	letter-spacing: 2px;
	color: #fff;
	border-radius: 20px;
padding:1px 20px;
}

.mother_visting ul.baby_visting::before{
content: "お子様の場合";
background-color:#2c94bc;
}

.mother_visting ul li{

	font-size: 1.8rem;
	margin-bottom:0px;
	
	}

.mother_visting ul li::before{
	content: "";
	background-image:url("../img/mother_list.gif");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 15px;
	height: 15px;
	display: inline-block;
	

	}


.mother_visting ul.baby_visting li::before{

	background-image:url("../img/baby_list.gif");
	}

.mother_visting ul li b{
	text-align: center;
	padding: 0 0px 0px 3px;
border-bottom:none;}

.mother_visting ul li small{
font-size: 1.5rem;
display: block;
	text-align: center;
	letter-spacing: 0px;
}

.mother_visting::after{
	content: "";

width:60%;
height:60%;
z-index:1;
  opacity: 0.4;
 position: absolute;
top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  background-image:url("../img/mother_back.jpg");
  background-size: contain;
  background-position: center 0;
  background-repeat: no-repeat;
	
}

.mother_visting ul::after{
 background-image:none;
}

.mother_visting_catch{
	width: 100%;
	padding: 20px 0px;
background-color:#f094b0;
margin: 50px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:20px 0px;
	border-radius: 20px;
}


.mother_visting_catch span{
	display: block;
	margin-top: 0px;
	width: auto;
font-weight: 500;
	font-size: 2.8rem;
	color: #fff;
	letter-spacing: 2px;
	position: relative;
}

.mother_visting_catch span br{
		display: none;
	}

.mother_visting_catch span::before{
	content: "";
	background-image:url("../img/mother_list_cath01.gif");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 38px;
	height: 38px;
	position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	

	}

.mother_visting_catch span::after{
	content: "";
	background-image:url("../img/mother_list_cath02.gif");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 38px;
	height: 38px;
	position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	

	}

.mother_visting_detail{
width: 80%;
height:auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap:20px 50px;
}

.mother_visting_detail h1{
	width:95%;
	color: #ea5769;
	text-align: center;
	font-size: 3.0rem;
	line-height: 150%;
	letter-spacing: 1px;
	border-top: solid #ea5769 4px;
	border-bottom:solid #ea5769 4px;
	padding: 10px 50px;
}


.mother_visting_case{
	
	width: 45%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
gap:30px 0;
}


.mother_visting_case h2{
	letter-spacing: 2px;
	width:100%;
	text-align: left;
	font-size: 3.0rem;
	color: #4ab134;
	padding: 0 0 3px 0;
	background-image: url("../img/mother_h2_01.gif");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
	margin: 20px 0 0 0;
	position: relative;
}

.mother_visting_case h2::before,.mother_visting_case h2::after{
content: "";
	height:45px;
	width: 45px;
	background-image: url("../img/mother_h2_front01.gif");
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	padding: 0 60px 0 0; 
}


.mother_visting_case h2::after{
	background-image: url("../img/mother_h2_back01.gif");
	padding: 0 0px 0 0; 
	position: absolute;
	top: 10px;
	right: 0;
}


.mother_visting_case:nth-of-type(2) h2{
color: #28bbee;
background-image: url("../img/mother_h2_02.gif");
	
}

.mother_visting_case:nth-of-type(2) h2::before{
	background-image: url("../img/mother_h2_front02.gif");
	
}


.mother_visting_case:nth-of-type(2) h2::after{
	background-image: url("../img/mother_h2_back02.gif");
}

.mother_visting_case:nth-of-type(3) h2{
color: #e9815d;
background-image: url("../img/mother_h2_03.gif");
	
}

.mother_visting_case:nth-of-type(3) h2::before{
	background-image: url("../img/mother_h2_front03.gif");
	
}


.mother_visting_case:nth-of-type(3) h2::after{
	background-image: url("../img/mother_h2_back03.gif");
}

.mother_visting_case:nth-of-type(4) h2{
color: #958dc3;
background-image: url("../img/mother_h2_04.gif");
	
}

.mother_visting_case:nth-of-type(4) h2::before{
	background-image: url("../img/mother_h2_front04.gif");
	
}


.mother_visting_case:nth-of-type(4) h2::after{
	background-image: url("../img/mother_h2_back04.gif");
}

.mother_visting_case:nth-of-type(4) h2:nth-of-type(2){
color: #dc4191;
background-image: url("../img/mother_h2_05.gif");
	
}

.mother_visting_case:nth-of-type(4) h2:nth-of-type(2)::before{
	background-image: url("../img/mother_h2_front05.gif");
	
}


.mother_visting_case:nth-of-type(4) h2:nth-of-type(2)::after{
	background-image: url("../img/mother_h2_back05.gif");
}

.case_list{
	width: 100%;
	border:5px solid #ea5769;
	border-radius: 10px;
	font-size: 1.8rem;
	padding: 30px 20px;
	position: relative;
	margin-bottom: 20px;
}
.mother_visting_case:first-of-type .case_list:nth-of-type(2),.mother_visting_case:nth-of-type(3) .case_list:first-of-type{

border:5px solid #2c94bc;
	
}


.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(2){

border:5px solid #2c94bc;
		padding: 12px 20px;
}




.case_list::before{
	content: "ママのケア";
	position: absolute;
	top:-20px;
	left:10px;
	background-color: #fff;
	font-weight: 700;
	letter-spacing:2px;
	font-size: 2.5rem;
	color: #ea5769;
	padding: 0 10px 0 43px;
}


.mother_visting_case:first-of-type .case_list:nth-of-type(2)::before{
	content: "赤ちゃんのケア";
	color: #2c94bc;
}

.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(1)::before{
	content: "ママに診断がある場合 ";
	
}

.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(2)::before{
	content: "お子さまに診断がある場合 ";
		color: #2c94bc;
}

.mother_visting_case:nth-of-type(3) .case_list:nth-of-type(1)::before{
	content: "赤ちゃんの30分ケアの例 ";
		color: #2c94bc;
}

.mother_visting_case:nth-of-type(3) .case_list:nth-of-type(2)::before{
	content: "ママの60分ケアの例 ";
	
}


.case_list::after{
	content: "";
	position: absolute;
	top:-16px;
	left:16px;
	background-image: url("../img/mother_mark.gif");
	background-repeat: no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
}

.mother_visting_case:first-of-type .case_list:nth-of-type(2)::after,.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(2)::after,.mother_visting_case:nth-of-type(3) .case_list:first-of-type::after{
	background-image: url("../img/baby_mark.gif");
}

.case_list span{
display: block;
display: flex;
flex-wrap: wrap;
gap:0px 20px;
margin-top:20px;
}
.case_list span:first-of-type{
margin-top:0px;
	
}

.case_list span b{
width: 25%;
text-align:justify;
text-align-last:justify;
font-weight:700;
color:#ea5769;
}


.mother_visting_case:first-of-type .case_list:nth-of-type(2) span b,.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(2) h3 b,.mother_visting_case:nth-of-type(3) .case_list:nth-of-type(1) span b{
color:#2c94bc;
}

.mother_visting_case:nth-of-type(3) .case_list  span b{
width:auto;
font-size: 2.0rem;
}

.case_list span p{
width: 70%;
padding: 0px 0 0 0;
font-size: 1.6rem;
}

.case_list h3,.case_list h4{
	text-align: center;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 2px;
}

.case_list h3 b{
	
	font-size: 5.0rem;
	font-weight: 700;
	letter-spacing:1px;
	padding: 0 10px;
	color: #ea5769;
}

.case_list h4{
	font-size: 1.8rem;
	letter-spacing:1px;
}

.case_list p{
font-size: 1.2rem;
padding: 10px 0 0 0;
}

.mother_visting_case:nth-of-type(2) .case_list:nth-of-type(2) p{

border:5px solid #2c94bc;
		padding: 12px 20px;
}

.case_list02{
	font-size: 1.8rem;
	line-height: 150%;
}

.mother_visting_case ul{
	font-size: 1.8rem;
	line-height:120%;
	width: 87%;
	margin: auto;
}

.mother_visting_case ul li{
margin-bottom: 20px;
list-style: decimal-leading-zero;
	color: #ea5769;
font-weight: 800;
}


.mother_visting_case ul li b{
	color: #ea5769;
	display: block;
	margin: 0 0 7px 0;
font-weight: 700;
}

.mother_visting_case ul li p{
		font-size: 1.6rem;
	line-height:130%;
	font-weight: 500;
}










