/* CSS Document */
@keyframes fadein_right02{
   0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0%);
      opacity: 1;
    }
}
@keyframes fadein_left02{
   0% {
      transform: translateX(-100%);
    }
  100% {
      transform: translateX(0%);
      opacity: 1;
    }
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box::before,
[wc-view-type*="tb"] div.recruit_block section.recruit_box::before,
[wc-view-type*="pc"] div.recruit_block section.recruit_box::before{
  animation: fadein_right02;
  animation-duration: 0.6s;
  animation-timing-function:linear;
  animation-fill-mode:forwards;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box::after,
[wc-view-type*="tb"] div.recruit_block section.recruit_box::after,
[wc-view-type*="pc"] div.recruit_block section.recruit_box::after{
  animation: fadein_left02;
  animation-duration: 0.6s;
  animation-timing-function:linear;
  animation-fill-mode:forwards;
}
/*コンテンツ*/
section.recruit_page{
  width: 100vw;
  background-color: #fff;
}
/*ページタイトル*/
section.recruit_page section.pagetitle{
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin-top: calc(var(--headerHeight) * -1);
}
[wc-view-type*="sp"] section.recruit_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 200px;;
}
[wc-view-type*="tb"] section.recruit_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 300px;
}
[wc-view-type*="pc"] section.recruit_page section.pagetitle{
  padding-top: var(--headerHeight);
  height: 400px;
}
section.recruit_page section.pagetitle figure{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
[wc-view-type*="sp"] section.recruit_page section.pagetitle figure img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
[wc-view-type*="tb"] section.recruit_page section.pagetitle figure img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}
[wc-view-type*="pc"] section.recruit_page section.pagetitle figure img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
section.recruit_page section.pagetitle h2{
  position: absolute;
  top: calc(40% + var(--headerHeight));
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 3;
  color: #fff;
}
[wc-view-type*="sp"] section.recruit_page section.pagetitle h2{
  font-size: 2rem;
}
[wc-view-type*="tb"] section.recruit_page section.pagetitle h2{
}
section.recruit_page section.pagetitle h2::before{
  content: "COMPANY";
  position: absolute;
  top: -3.5rem;
  font-size: 3.5rem;
  line-height: 1em;
  font-family: 'Oswald';
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
[wc-view-type*="sp"] section.recruit_page section.pagetitle h2::before{
  top: -3rem;
  font-size: 3rem;
}
/*文章*/
div.recruit_block{
}
div.recruit_block section.recruit_text{
  position: relative;
  z-index: 1;
}
div.recruit_block section.recruit_text figure{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
div.recruit_block section.recruit_text figure::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.95) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.95) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
div.recruit_block section.recruit_text figure img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_text{
  padding: calc(var(--headerHeight) * 3) 0 var(--headerHeight) 0;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="tb"] div.recruit_block section.recruit_text{
  padding: calc(var(--headerHeight) * 2.5) 3rem var(--headerHeight) 3rem;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_text{
  padding: calc(var(--headerHeight) + 4.2rem) 0 var(--headerHeight) 0;
}
div.recruit_block section.recruit_text h2{
  position: relative;
  z-index: 4;
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_text h2{
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_text h2{
  margin-left: calc((100vw - 1100px) / 2);
  display: table;
  margin-right: auto;
  margin-bottom: 2rem;
}
div.recruit_block section.recruit_text h2::before{
  content: "MESSAGE";
  color: #000;
  font-family: 'Oswald';
  position: absolute;
  top: -4.5rem;
  font-size: 3.5rem;
  line-height: 1em;
}
div.recruit_block section.recruit_text p{
  line-height: 2.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_text p{
  padding: 0 1rem;
}
[wc-view-type*="tb"] div.recruit_block section.recruit_text p{
  padding: 0 1rem;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_text p{
  width: 800px;
  margin: 0 calc((100vw - 1100px) / 2) 0 auto;
}
/*募集要項*/
div.recruit_block section.recruit_box{
  position: relative;
  z-index: 1;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box{
  padding: calc(var(--headerHeight) * 3) 0 var(--headerHeight) 0;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="tb"] div.recruit_block section.recruit_box{
  padding: calc(var(--headerHeight) * 2.5) 3rem var(--headerHeight) 3rem;
  width: 100vw;
  box-sizing: border-box;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_box{
  padding: calc(var(--headerHeight) + 4.2rem) 0 var(--headerHeight) 0;
}
div.recruit_block section.recruit_box::before,
div.recruit_block section.recruit_box::after{
  content: "";
  position: absolute;
  opacity: 0;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box::before{
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  width: 100vw;
  background-color: rgba(0, 106, 197, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  z-index: 2;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box::after{
  content: "";
  width: 100vw;
  background-color: rgba(0, 106, 197,0.5);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 50%;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
[wc-view-type*="tb"] div.recruit_block section.recruit_box::before{
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  width: 100vw;
  background-color: rgba(0, 106, 197, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  z-index: 2;
}
[wc-view-type*="tb"] div.recruit_block section.recruit_box::after{
  content: "";
  width: 100vw;
  background-color: rgba(0, 106, 197,0.5);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 50%;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
[wc-view-type*="pc"] div.recruit_block section.recruit_box::before{
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  width: 50vw;
  background-color: rgba(0, 106, 197, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_box::after{
  content: "";
  width: 50vw;
  background-color: rgba(0, 106, 197,0.3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
div.recruit_block section.recruit_box h2{
  position: relative;
  z-index: 4;
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box h2{
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_box h2{
  margin-left: calc((100vw - 1100px) / 2);
  display: table;
  margin-right: auto;
  margin-bottom: 2rem;
}
div.recruit_block section.recruit_box h2::before{
  content: "APPLICATION";
  color: #000;
  font-family: 'Oswald';
  position: absolute;
  top: -4.5rem;
  font-size: 3.5rem;
  line-height: 1em;
}
div.recruit_block section.recruit_box div.recruit_list{
  position: relative;
  z-index: 4;
}
[wc-view-type*="sp"] div.recruit_block section.recruit_box div.recruit_list{
  padding: 0 1rem;
  box-sizing: border-box;
}
[wc-view-type*="pc"] div.recruit_block section.recruit_box div.recruit_list{
  width: 800px;
  margin: 0 auto;
}
div.recruit_block section.recruit_box div.recruit_list dl{
  display: flex;
  padding: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.5);
}
div.recruit_block section.recruit_box div.recruit_list dl:nth-of-type(1){
  border-top: 1px solid rgba(0,0,0,0.5);
}
div.recruit_block section.recruit_box div.recruit_list dl dt{
  width: 30%;
}
div.recruit_block section.recruit_box div.recruit_list dl dd{
  width: 70;;
}

