/*----------------------------

         topへ戻る
         body直下に設置

--------------------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: #20BAE4;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  z-index: 1000;
}

#page_top::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  /* top: -5px; */
  top: -20px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  /* z-index: 1001; */
}

.c-spblock{
  display: none;
}
@media screen and (max-width:600px){
  .c-spblock{
    display: block;
  }

  .c-spline{
    display: none;
  }
}
c-pcline{

}


/*---------------------------------

             textbox

-------------------------------------*/

.c-textBox{
  text-align: center;
  line-height: 2;
}
.c-textBox p{
  margin-bottom: 24px;
}
@media screen and (max-width:959px){
  .c-textBox{
    text-align: left;
  }
}

/*------------------------------------

           imageBox

-------------------------------------*/
.c-imageBox{
  /* text-align: center; */
  /* margin: auto; */
}
.c-imageBox figure{
  text-align:center;
}


/*---------------------------------

               flex

------------------------------------*/

.c-flex{
  display: flex;
}
.c-flexWrap{
  flex-wrap: wrap;
}
.c-flexCenter{
  justify-content: center;
}

/* 最初のアイテムは先頭に寄せ、最後のアイテムは末尾に寄せる */
.c-flexBetween{
  justify-content: space-between;
}
/* 各アイテムの両側に半分の大きさの間隔を置く */
.c-flexAround{
  justify-content: space-around;
}
.c-flexAlignCenter{
  align-items: center;
}

/*------------------------------------------

            button中央配置

-----------------------------------------*/

.c-btnCenter{
  margin: 48px auto;
  text-align: center;
}
@media screen and (max-width:959px){
  .c-btnCenter{
    margin: 32px auto;
  }
}
.c-btn{
  width: 400px;
  max-width: 100%;
  padding: 15px 0;
  position: relative;
  font-size: 2.0rem;
  display: inline-block;
  border-radius: 22px;
  transition: all 0.5s;
}
.c-btn::before{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

/*----------------------------------------------


                  見出し

-----------------------------------------------*/
/* sectionのタイトル */
.c-secTit{
  font-size: 3.0rem;
  text-align: center;
  color:#004E98;
  margin: 64px auto;
}
/* 見出しに装飾する場合の設定 */
.c-secTit::before{
  content:"";
  font-family: 'M PLUS Rounded 1c', sans-serif;
  display: block;
  color:#004E98;
  font-size: 4.3rem;
  font-weight: 800;
  line-height: 1;
}
.c-secTit-contact::before{
  content:"CONTACT";
}
.c-secTit-strengths::before{
  content:"STRENGTHS";
}
.c-secTit-reason::before{
  content:"REASON";
}
.c-secTit-step::before{
  content:"STEP";
}
.c-secTit-voice::before{
  content:"VOICE";
}
.c-secTit-company::before{
  content:"COMPANY";
}
.c-secTit-recruit::before{
  content:"RECRUIT";
}
.c-secTit::after{
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 100px;
  height: 3px;
  background: #F63907;
}

@media screen and (max-width:959px){
  .c-secTit{
    font-size: 2.0rem;
    margin: 48px auto;
  }
  .c-secTit::before{
    font-size: 1.6rem;
  }
  .c-secTit::after{
    width: 65px;
    height: 2px;
    margin: 8px auto 0;
  }
}
@media screen and (max-width:600px){
  .c-secTit{
    font-size: 1.6rem;
    margin: 24px auto;
  }
  .c-secTit::before{
    font-size: 1.4rem;
  }
  .c-secTit::after{
    width: 50px;
  }
}

/* 見出し */
.c-headingTit{

}
/* 小見出し */
.c-subheadingTit{

}
