/* エナジーモジュール */
/* 記事カードのラッパー */
.m_contCardWrap{
  position: relative;
  height: 100%;
}
.m_contCardWrap__footer{
  position: absolute;
  bottom: 0;
  right: 0;
} 
/* 記事カード */
.m_contCard{
  display: flex;
  align-items: stretch;
  letter-spacing: 0;
}
.m_contCard__thumbnail{
  flex: 0 0 120px;
}
.m_contCard__img{
  line-height: 0;
  text-align: center;
}
.m_contCard__img img{
  max-width: 100%;
  height: auto;
  margin: auto;
}
.m_contCard__img + .m_contCard__btn{
  margin-top: 12px;
}
.m_contCard__btnTarget{
  display: block;
  padding: 2px 0;
  border: 2px solid #333;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  background: #333;
}
.m_contCard__btnTarget:hover{
  color: #333;
  background: #fff;
}
/*
.m_contCard__btnTarget::after{
  content: "\f019";
  display: inline-block;
  margin-left: 0;
  line-height: 1;
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
}*/
.m_contCard__body{
  flex: 1 1 auto;
}
.m_contCard__thumbnail + .m_contCard__body{
  padding-left: 16px;
}
.m_contCard__heading{
  position: relative;
  margin-bottom: 8px;
  padding: 8px 0 8px 16px;
}
.m_contCard__heading::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 48px;
  margin: auto 0;
  border-radius: 40px;
  background: #be0833;
  background: var(--theme-color);
}
.m_contCard__date{
  color: #a6a5a6;
  line-height: 1;
  font-size: 11px;
}
.m_contCard__ttl{
  line-height: 1;
  font-weight: bold;
  font-size: 14px;
}
.m_contCard__date + .m_contCard__ttl{
  margin-top: 8px;
}
.m_contCard__msg{
  font-size: 11px;
}
.m_contCard__msg + .m_contCard__tableBox{
  margin-top: 16px;
}
.m_contCard__tableHeading{
  position: relative;
  margin-bottom: 8px;
}
.m_contCard__tableHeading::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto 0;
  border-top: 1px dotted;
}
.m_contCard__tableTtl{
  display: inline-block;
  padding-right: 1em;
  line-height: 1;
  font-weight: bold;
  font-size: 16px;
  background: #fff;
}
.m_contCard__table{}
.m_contCard__tableItem + .m_contCard__tableItem{
  margin-top: 4px;
}
.m_contCard__tableItem{
  position: relative;
  padding-left: 6em;
  font-size: 11px;
}
.m_contCard__link{
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
.m_contCard__linkTtl{
  position: relative;
  display: inline;
}
.m_contCard__noLinkTtl{
  display: inline;
}
.m_contCard__link:hover{
  color: inherit;
  text-decoration: underline;
}
.m_contCard__link--inline{
  display: inline;
}
.m_contCard__tab{
  position: absolute;
  top: 2px;
  left: 0;
  font-weight: normal;
}
.m_contCard__pdf{
  color: #fa0f00;
}
@media screen and (max-width: 768px){
  .m_contCard{
    flex-direction: column;
  }
  .m_contCard__thumbnail + .m_contCard__body{
    margin-top: 16px;
    padding-left: 0;
  }
  .m_contCard__tableItem{
    padding-left: 0;
  }
  .m_contCard__tab{
    position: static;
  }
}

/* エナジータブ */
/* タブ */
.m_contCard .m_tab{
  display: inline-block;
  width: 6em;
  padding: 2px 0;
  border-radius: 40px;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-size: 10px;
  background: #333;
}
.m_contCard .m_tab--pickup{
  background: #c1272d;
}
.m_contCard .m_tab--web{
  background: #0071bc;
}
.m_contCard .m_tab--book{
  background: #937960;
}
/* slickのオーバーライド */
.js_energySlider{
  padding-bottom: 56px;
}
.slick-dots{
  position: absolute;
  bottom: 4px;
  left: 32px;
  display: flex !important;
  align-items: stretch;
}
.slick-dots li{
  padding: 0 5.5px;
}
.slick-dots button{
  display: block;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #aaa;
  text-indent: -99999px;
}
.slick-dots .slick-active button{
  background: #be0533;
}
.slick-arrow{
  position: absolute;
  bottom: 28px;
  display: block;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #aaa;
  text-indent: -99999px;
}
.slick-arrow::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid rgba(255, 255, 255, 0);
  border-bottom: 6px solid rgba(255, 255, 255, 0);
}
.slick-prev{
  left: 0;
  bottom: 0px;
}
.slick-prev::before{
  border-right: 10px solid #fff;
}
.slick-next{
  left: 230px;
  bottom: 0px;
}
.slick-next::before{
  border-left: 10px solid #fff;
}
@media screen and (max-width:599px) {
  .slick-dots button{
    width: 14px;
    height: 14px;
  }
}
/* ENERGY Slider用 */
.energySlider{
  margin-top:40px;
  padding: 20px;
  border: 1px solid #C2C2C2;
  color: inherit;
  line-height: 1.6;
 letter-spacing: 2px;
  font-size: 13px;
  transition: .2s background;
}
.l_contents--top .energySlider--freshers{
  width: 1020px;
}
.l_contents--bottom .energySlider--freshers{
  width: 1048px;
}
.energySlider .c_btn{
  width: auto;
}
.c_btn--headlineNews>.c_btn__target {
  padding: 0 24px;
  border: 1px solid #383838;
  color: inherit;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 13px;
  transition: .2s background;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_btn--headlineNews > .c_btn__target:hover{
  background: #e9e9e9;
}
.c_btn__target::before{
  content: "";
  display: block;
  width: 0;
}
.c_btn--headlineNews > .c_btn__target::before{
  height: 1em;
  padding: 4px 0;
}
@media screen and (max-width:768px) {
  .l_contents--top .energySlider--freshers{
    width: 100%;
  }
  .l_contents--bottom .energySlider--freshers{
    width: 95%;
    margin: 40px auto 0;
  }
  .energySlider .m_contCard__img img{
    margin:auto;
  }
}
@media screen and (max-width:599px) {
  .energySlider .slick-arrow{
    margin-left: -12px;
  }
  .p_mainContents__news .slick-arrow{
    margin-left: 0px;
  }
  .energySlider .slick-dots{
    left: 14px;
  }
  .p_mainContents__news .slick-dots{
    left: 25px;
  }
  .energySlider .slick-dots li{
    padding: 0 2px;
  }  
  .p_mainContents__news .slick-dots li{
    padding: 0 2px;
  }
  .p_mainContents__news .slick-next{
    left: 227px;
  }
}

