@charset "utf-8";
/* CSS Document */

#work_top_wrapper{
	position: relative;/*position stickyの基点にするため relativeをかける*/
	display: flex;/*左エリア、右エリア横並び指定*/
	flex-wrap: wrap;/*ボックスの折り返し可*/
}

/*左エリア*/
.fixed-area{
  /*左固定記述*/
  position: relative;
  position: -webkit-sticky;/*Safari用*/
  position: sticky;
  top:0;
  /*横半分50%　縦を100vhにする*/
  width: 50%;
  height: 100vh;
  /*装飾のためのCSS*/
  display: flex;
  justify-content: center;
  align-items: center;
  background-size:cover;
  color:#fff;
}


.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  
  animation: image-switch-animation 15s infinite;
}
.src1 {
  background-image: url("../recruit/img/top_radio.png");}
.src2 {
  background-image: url("../recruit/img/top_radio02.png");}
.src3 {
  background-image: url("../recruit/img/top_radio03.png");}

.reha_img1 {
  background-image: url("../recruit/img/top_reha.png");}
.reha_img2 {
  background-image: url("../recruit/img/top_reha02.png");}
.reha_img3 {
  background-image: url("../recruit/img/top_reha03.png");}

.para_img1 {
  background-image: url("../recruit/img/top_paramedic.png");}
.para_img2 {
  background-image: url("../recruit/img/top_paramedic02.png");}
.para_img3 {
  background-image: url("../recruit/img/top_paramedic03.png");}

.mt_img1 {
  background-image: url("../recruit/img/top_mt.png");}
.mt_img2 {
  background-image: url("../recruit/img/top_mt02.png");}
.mt_img3 {
  background-image: url("../recruit/img/top_mt03g.png");}

.ce_img1 {
  background-image: url("../recruit/img/top_ce.png");}
.ce_img2 {
  background-image: url("../recruit/img/top_ce02.png");}
.ce_img3 {
  background-image: url("../recruit/img/top_ce03.png");}

.pharma_img1 {
  background-image: url("../recruit/img/top_pharma.png");}
.pharma_img2 {
  background-image: url("../recruit/img/top_pharma02.png");}
.pharma_img3 {
  background-image: url("../recruit/img/top_pharma03.png");}

.clinical_img1 {
  background-image: url("../recruit/img/top_.png");}
.clinical_img2 {
  background-image: url("../recruit/img/top_.png");}
.clinical_img3 {
  background-image: url("../recruit/img/top_.png");}

.rgd_img1 {
  background-image: url("../recruit/img/top_rgd03.png");}
.rgd_img2 {
  background-image: url("../recruit/img/top_rgd.png");}
.rgd_img3 {
  background-image: url("../recruit/img/top_rgd02.png");}

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}
.image:nth-of-type(1) {
  animation-delay: 0s;
}
.image:nth-of-type(2) {
  animation-delay: 5s;
}
.image:nth-of-type(3) {
  animation-delay: 10s;
}
/*.image:nth-of-type(4) {
  animation-delay: 15s;
}
.image:nth-of-type(5) {
  animation-delay: 20s;
}
.image:nth-of-type(6) {
  animation-delay: 25s;
}*/
/*右エリア*/
#work_right_container{
  /*横半分50%にする*/
  width:50%;
}
/*右各セクション 装飾のためのCSS*/
section{
  /*min-height: 70vh;*/
  padding:30px;
}

/*section:nth-of-type(2n)
  background:#eaf5f9;	//装飾のためのCSS
}*/

.work_text{
  position:relative;
  width:100%;
  height:520px;
}

.work_text img{
  position:absolute;
  top:50px;
  left:50px;
  width:450px;
}

.work_text p{
  position:absolute;
  top:380px;
  left:350px;
  width:400px;
  background:#00ABDF;
  padding:30px;
  box-shadow:0 0 5px #999;
  color: #fff;
  box-sizing: border-box;  
  line-height:3;
  z-index:1;
}
.work_text_flx {
    display: flex!important;
    justify-content: space-evenly;
}
.work_text_flx img {
    width: 500px;
    
}
#business_content .sub_list {
	list-style: url(../img/libg2.gif);
}
#business_content .sub_list li {
	margin: 0px 0 5px 50px;
}
#schedule h3 {
	font-size: 1.5em;
	color: black!important;
	font-weight: bold;
	border-bottom: solid 3px #cce4ff;
	position: relative;
	padding-bottom: 5px;
	margin: 30px 0 30px;
}
#schedule h3::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #5472cd;
	bottom: -3px;
	width: 20%;
}

/*＝＝＝＝＝＝＝＝＝＝＝768px以下の見え方＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (max-width:768px){
#work_top_wrapperr{
  display: block;/*display:flex;を解除*/
}
section{
    min-height:auto;/*縦を100vh⇒解除*/
    padding: 10px;
    margin: 0 0 100px 0;
}

.fixed-area{
  position:relative!important;/*position stickyを解除*/
  width:100%;/*横幅を100%にして1列に見せる*/
  height: 80vh;/*縦幅を100vh⇒40vh　※任意の高さに設定可能*/
}

#work_right_container{
  width:100%;/*横幅を100%にして1列に見せる*/

}
.work_text{
  position:relative;
  width:100%;
  margin: 0 auto!important;
  display: block!important;
}

.work_text img{
  position:absolute;
  display: block;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
 width: 100%;
  left: 0;  
}

.work_text p{
  position:absolute;
  top:300px;
  left: auto!important;
  right: auto!important;
  margin: 0 auto!important;
  display: block; 
  background:#00ABDF;
    
  padding:30px;
  box-shadow:0 0 5px #999;
  color: #fff;
  line-height:3;
  z-index: 1;
  width: 100%;
    box-sizing: content-box;
}
.flow10_flx {
    display: block!important;
}
.flow10 > li dl {
  padding: 0!important;

}
.flow10 > li dl dt {
 width: 100%!important;
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  color: #8cc220;      
}
.flow10 > li dl {
width: 100%!important; 
}
.flow10_flx {
        padding: 20px;
    }
.flow10 > li {
  list-style-type: none;
  border: 2px solid #0393D9;
  border-radius: 20px;
  margin: 10px;  
}
}
.slider_ftam img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

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

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

.slider_ftam {
    margin-top: 500px;
}

@media screen and (max-width:1700px){
    .work_text p{
  position:absolute;
  top:380px;
  left:110px;

  background:#00ABDF;
  padding:30px;
  box-shadow:0 0 5px #999;
  color: #fff;
  box-sizing: border-box;  
  line-height:3;
  z-index:1;
}

}

.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
  width: 1000px;  
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #0393D9;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #8cc220;
}

.flow10 > li dl dt {
   
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  color: #8cc220;      
}
.flow10 > li dl {
  padding: 40px;
width: 500px; 
}
.flow10 > li .icon10 {
  color: #4D9BC1;
  margin-right: 0.5em;
    
}

.flow10 > li dl dd {
  margin: 0;
}

.flow10 > li .flow-title {
    font-size: 1.2em;
    background: #0393D9;
    padding: 15px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0!important;
    display: block;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.flow10_flx {
    display: flex;
}

p.ulp_flow10 {
    font-weight: bold;
    color: #0393D9;
    background: #F1F1F1;
    padding: 10px;
    margin-left: auto;
}

.work_con_msg {
    margin-top: 550px!important;
}

















