/* CSS Document */


/* -----
base
----- */
#base{
  width: 1240px;
}
@media screen and (max-width: 768px) {
  #base{
    width: 100%;
  }
}
div#cont {
  margin: 0px 0;
}
.l_wrap{
  color: #333;
  font: 500 16px helvetica neue,noto sans jp,yu gothic,YuGothic,ヒラギノ角ゴ pron w3,hiragino kaku gothic pron,Arial,メイリオ,Meiryo,sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

/* -----
layout
----- */
/* ラッパー */
.l_wrap{
  display: flex;
  align-items: stretch;
  gap: 20px
}
.l_wrap__main{
  order: 1;
  width: 1020px;
}
.l_wrap__sideNav{
  width: 200px;
}
@media screen and (max-width: 768px) {
  .l_wrap{
    display: block;
  }
  .l_wrap__main{
    width: 100%;
    margin-bottom: 64px;
  }
  .l_wrap__sideNav{
    display: none;
  }
}
/* 節 */
.l_section{}
.l_section__item{}
.l_section--primary{}
.l_section--primary > .l_section__item + .l_section__item{
  margin-top: 64px;
}

/* ------
module
------- */
/*　ヒーローズエリア */
.m_herosArea{
  margin-bottom: 40px;
}
.m_herosArea__keyvisual{}
.m_herosArea__keyvisual + .m_herosArea__subvisual{
  margin-top: 6px;
}

/* キービジュアル */
.m_keyvisual {}
.m_keyvisual__img{
  line-height: 0;
  text-align: center;
}
.m_keyvisual__item{}
.m_keyvisual__link{
  display: block;
  transition: .3s opacity;
}
.m_keyvisual__link:hover{
  opacity: .6;
}
.m_keyvisual__img > img {
  max-width: 100%;
  height: auto;
}
/* サブヴィジュアルのラッパー */
.m_subvisualWrap {}
.m_subvisualWrap__item {}
.m_subvisualWrap__item + .m_subvisualWrap__item{
  margin-top: 6px;
}

/* サブヴィジュアル */
.m_subvisual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.m_subvisual__item{}
.m_subvisual__link{
  display: block;
  transition: .3s opacity;
}
.m_subvisual__link:hover{
  opacity: .6;
}
.m_subvisual__img{
  line-height: 0;
  text-align: center;
}
.m_subvisual__img img{
  width: 100%;
  height: auto;
}

/* 見出し */
.m_heading{}
.m_heading__ttl{}
.m_heading--primary{
  position: relative;
  margin-bottom: 10px;
}
.m_heading--primary .m_heading__ttl{
  width: fit-content;
  margin: auto;
  color: #E53C3C;
  font-weight: bold;
  font-size: 20px;
}
/* 
.m_heading--primary::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 100px;
  height: 3px;
  border-radius: 100px;
  background: #E53C3C;
}
*/

/* コンテンツ */
.m_contents{}
.m_contents__lead{
  text-align: center;
}
.m_contents__lead + .m_contents__body{
  margin-top: 25px;
}

/* プランリスト */
.m_planList {
  margin: 16px 50px 0
}
.m_planList__item {}
.m_planList__item + .m_planList__item{
  margin-top: 8px
}
@media screen and (max-width: 768px){
  .m_planList {
    margin: 16px 0 0;
  }
}

/* プラン */
.m_plan{}
.m_plan__inner{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.m_plan__ttl{
  flex: 1 1 auto;
}
.m_plan__target {
  color: inherit;
  display: block;
  padding-left: 1.3em;
  position: relative;
  text-decoration: none;
  transition: .3s
}
.m_plan__target:hover {
  opacity: .6
}
.m_plan__target::before {
  border-top: 3px solid #E53C3C;
  border-right: 3px solid #E53C3C;
  content: "";
  display: inline-block;
  height: .5em;
  margin-right: 8px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(45deg);
  width: .5em
}
.m_plan__body{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start
}
.m_plan__ttl + .m_plan__body{
  padding-left: 8px
}
.m_plan__hierarchyList {
    display: flex;
    align-items: stretch;
    justify-content: flex-start
}
.m_plan__hierarchy {
  position: relative;
  width: 10em;
  line-height: 30px;
  text-align: center;
  background: #eee;
  color: #aaa;
  font-size: 14px;
  white-space: nowrap;
}

.m_plan__hierarchy:first-child {
  width: calc(10em - 4px)
}
.m_plan__hierarchy + .m_plan__hierarchy {
  padding-left: 8px
}
.m_plan__hierarchy::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -4px;
    z-index: 1;
    border-right: 2px solid #fff;
    background: inherit;
    display: block;
    width: 8px;
    height: 15px;
    transform: skew(-30deg)
}
.m_plan__hierarchy::before {
    content: "";
    position: absolute;
    top: 0;
    right: -4px;
    z-index: 1;
    display: block;
    width: 8px;
    height: 15px;
    border-right: 2px solid #fff;
    background: inherit;
    transform: skew(30deg)
}
.m_plan__hierarchy:last-child::after,.m_plan__hierarchy:last-child::before {
    content: none
}
.m_plan__hierarchy--active {
    background: #E53C3C;
    color: #fff
}

@media screen and (max-width: 768px) {
    .m_plan {
        overflow:hidden!important
    }
    .m_plan__inner{
        flex-direction: column-reverse;
        align-items: flex-start
    }
    .m_plan__ttl {
        width: 100%
    }
    .m_plan__body{
        width: 100%
    }
    .m_plan__ttl + .m_plan__body{
        padding-left: 0
    }
    .m_plan__hierarchy {
      width: 8em;
      font-size: 12px;
    }
    .m_plan__hierarchy:first-child {
      width: calc(8em - 4px)
    }
}
@media screen and (max-width: 599px) {
    .m_plan__hierarchy {
      width: 8em;
      font-size: 12px;
    }
    .m_plan__hierarchy:first-child {
      width: calc(8em - 4px)
    }
}
/* 商材のラッパー */
.m_serviceWrap{}
.m_serviceWrap__nav{}
.m_serviceWrap__nav + .m_serviceWrap__body{
  margin-top: 25px;
}
.m_serviceWrap__body{}

/* 商材マップ */
.m_serviceGraph{}
.m_serviceGraph__explain{
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

.m_serviceGraph__clickIco{
  margin-right: 10px;
  color: #E53C3C;
}
.m_serviceGraph__wrap {
  text-align: center;
  margin-right: 20px;
}
.m_serviceGraph__headingList {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: stretch;
  margin-bottom:5px;
}
.m_serviceGraph__headingItem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  height: 40px;
  list-style: none;
  letter-spacing: 3px;
  font-weight: 500;
  color: #fff;
}
.m_serviceGraph__headingItem::before, .m_serviceGraph__headingItem::after{
  content: "";
  position: absolute;
  right: 5px;
  z-index: 1;
  display: block;
  width: 10px;
  height: 20px;
  background: inherit;
}
.m_serviceGraph__headingItem::before{
  top: 0;
  background: inherit;
  transform: skew(30deg) translateX(100%);
}
.m_serviceGraph__headingItem::after{
  bottom: 0;
  background: inherit;
  transform: skew(-30deg) translateX(100%);
}

.m_serviceGraph__headingItem:nth-of-type(1){
  background: #E53C3C;
}
.m_serviceGraph__headingItem:nth-of-type(2){
  background: #FC6D6D;
}
.m_serviceGraph__headingItem:nth-of-type(3){
  background: #FFA2A2;
}

.m_serviceGraph__lineList{
  display: flex;
  align-items: stretch;
}
.m_serviceGraph__lineItem{
  width: 33.333%;
  display: flex;
  padding: 5px;
}
.m_serviceGraph__lineItem--noItem {}
.m_serviceGraph__lineItem--2cel {
  width: 66.666%;
}
.m_serviceGraph__lineItem--3cel {
  width: 100%;
}
.m_serviceGraph__lineTarget {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 40px;
  border: 1px solid #BEBEBE;
  border-radius: 30px;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  flex: 1;
  font-weight: 500;
}
.m_serviceGraph__lineTarget:after {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #BEBEBE;
  border-radius: 50%;
}
.m_serviceGraph__lineTarget:hover {
  color: #fff;
  background:#E24A3D;
  border-color: #E24A3D;
}
.m_serviceGraph__lineTarget:hover:after {
  border-color: #fff;
}
.m_serviceGraph__lineTarget:before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  bottom: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .m_serviceGraph__headingItem {
    font-size: 14px;
    letter-spacing: 0;
  }
  .m_serviceGraph__lineTarget {
    height: 40px;
    font-size: 14px;
  }
  .m_serviceGraph__lineTarget:after, .m_serviceGraph__lineTarget:before{
    content: none;
  }
}
@media screen and (max-width: 599px) {
    .m_serviceGraph__headingItem {
    height: 32px;
    font-size: 12px;
  }
  .m_serviceGraph__headingItem::before, .m_serviceGraph__headingItem::after{
    content: none;
  }
  .m_serviceGraph__wrap {
    margin-right: 0;
  }
  .m_serviceGraph__lineItem{
    padding: 2px;
  }
  .m_serviceGraph__lineTarget {
    height: 32px;
    font-size: 11px;
    letter-spacing: -1px;
  }
  .m_serviceGraph__lineTarget:after, .m_serviceGraph__lineTarget:before{
    content: none;
  }
}
/* 商材ラインナップ */
.m_lineUp{
  padding:0 20px 20px 0;
  overflow: hidden;
}
.m_lineUp__heading{
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}
.m_lineUp__ttl{
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
  font-size: 16px;
}
.m_lineUp__ttl::before{
  content: "";
  position: absolute;
  top: calc((1lh - 1em) / 2);
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #E53C3C;
}
.m_lineUp__resetBtn{}
.m_lineUp__resetBtnTarget{
  position: relative;
  display: block;
  width: fit-content;
  padding-left: 1.5em;
  color: #E53C3C;
}
.m_lineUp__resetBtnTarget::before{
  content: "";
  position: absolute;
  top: calc((1lh - 1em) / 2);
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  background: url(/resource/img/recruitment-support/ico_resetbtn.png) no-repeat center center / contain;
}
.m_lineUp__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -1px 0 0 -1px;
}
.m_lineUp__card {
  position: relative;
  box-sizing: border-box;
  width: 33.333%;
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  text-align: center;
  padding: 10px;
}
.m_lineUp__card::before{
  content : "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  transform: translate(50%, -50%);
}
.m_lineUp__card:hover {
  position: relative;
  z-index: 2;
  border: none;
  box-shadow: 10px 10px 10px -5px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.m_lineUp__cardWrap {
  position: relative;
  text-decoration: none;
  color: #000;
}
.m_lineUp__cardInner {
  padding-top: 30px;
  margin: auto;
  width: 90%;
  height: 100%;
}
.m_lineUp__cardImg > img {
  width: 100%;
  height: auto;
}
.m_lineUp__cardTtl {
  font-size: 18px;
  text-align: left;
  margin: 10px 0;
  height: 45.5px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.m_lineUp__cardCopy {
  font-size: 14px;
  text-align: left;
  padding-bottom: 50px;
  font-weight:400;
}
.m_lineUp__cardTag {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  padding-bottom: 20px;
  font-weight: 500;
}
.m_lineUp__cardTagItem {
  padding-right: 5px;
}
.m_lineUp__cardTagItem:before {
  content: "#";
}
@media screen and (max-width: 768px) {
  .m_lineUp{
    padding: 0;
  }
  .m_lineUp__card{
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .m_lineUp__heading{
    display: block;
  }
  .m_lineUp__card{
    width: 100%;
    max-width: 375px;
    margin: auto;
    border: none;
  }
  .m_lineUp__cardInner {
    padding-top: 0;
  }
}
/* -----------
QAリスト
----------- */
.m_qaList{}
.m_qaList__item{}
.m_qaList__item + .m_qaList__item{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #bbb;
}

/* -----------
QA
----------- */
.m_qa {}
.m_qa__q, .m_qa__a {
  display: flex;
  align-items: center;
  list-style: none;
  position: relative;
}
.m_qa__q{
  margin-bottom: 20px;
}
.m_qa__q:before, .m_qa__a:before {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}
.m_qa__text {
  padding-left: 40px;
}
.m_qa__link:hover {
  opacity: 0.6;
  transition: .4s;
}

/* -----
state
----- */
/* slick オーバーライド */
.slick-slider{
  padding-bottom: 12px;
}
.m_subvisual .slick-list {
  margin: 0 -15px !important;
}
.slick-slide.m_subvisual__item {
  margin: 0 15px;
}
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.slick-dots li{
  line-height: 0;
}
.slick-dots button {
  display: block;
  width: 60px;
  height: 4px;
  border: none;
  background: #ccc;
  text-indent: -99999px;
  overflow: hidden;
}
.slick-dots button:hover,.slick-dots .slick-active button {
  background: #E53C3C;
}
.slick-prev, .slick-next {
  position: absolute;
  top: 0;
  width: 25px;
  height: calc(100% - 10px);
  border: none;
  z-index: 1;
  display: block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position-y: center;
  opacity: 0.5;
  text-indent: -9999px;
  overflow: hidden;
  &:hover {
    opacity: 1;
    transition: .3s;
  }
}
.slick-prev {
  left: 0;
  background-image: url(/resource/img/recruitment-support/slider_arrow-sm-left.png);
}
.slick-next {
  right: 0;
  background-image: url(/resource/img/recruitment-support/slider_arrow-sm-right.png);
  background-position-x: right;
}
.js_slider{
  display: flex;
  opacity: 0;
}
.js_slider .m_keyvisual__item:nth-of-type(1) ~ .m_keyvisual__item{
  display: none;
}
.js_slider .m_subvisual__item:nth-of-type(3) ~ .m_subvisual__item{
  display: none;
}
.js_slider.slick-initialized{
  display: block;
  opacity: 1;
}
.js_slider.slick-initialized .m_keyvisual__item:nth-of-type(1) ~ .m_keyvisual__item{
  display: block;
}
.js_slider.slick-initialized .m_subvisual__item:nth-of-type(3) ~ .m_subvisual__item{
  display: block;
}
@media screen and (max-width: 768px){
  .slick-dots {
    gap: 6px;
  }
  .slick-dots button {
    width: 20px;
  }
  .m_subvisual .slick-list {
    margin: 0 !important;
  }
  .slick-slide.m_subvisual__item {
    margin: 0;
  }
}

/* サービスの表示 */
.m_serviceGraph__lineTarget.is_active {
  color: #fff;
  background:#E24A3D;
  border-color: #E24A3D;
}
.m_serviceGraph__lineTarget.is_active::after {
  border-color: #fff;
}
.m_lineUp__card{
  transform: scale(.7);
  opacity: 0;
  transition: .3s all;
}
.m_lineUp__card.is_active{
  transform: scale(1);
  opacity: 1;
}