/*----- 共通パーツ -----*/
html {
  scroll-behavior: smooth;
}
div#cont {
  font-family: helvetica neue, noto sans jp, yu gothic, YuGothic, ヒラギノ角ゴ pron w3, hiragino kaku gothic pron, Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.5;
  text-align: left;
  margin: 0 auto 55px;
}
.l_main {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1240px;
}
.l_main__body {
  color: #333;
  width: 1020px;
  order: 2;
}
.m_section:first-child {
  margin-top: 40px;
}
.m_section + .m_section {
  margin-top: 64px;
}
.m_heading_ttl {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  padding-left: 16px;
}
.m_heading_ttl::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 7px;
  height: 26px;
  background-color: #b72c2c;
}
.m_heading_lead {
  margin-top: 14px;
}
.m_body {
  margin-top: 32px;
}
@media (max-width:768px) {
  .l_main {
    width: 100%;
  }
  .l_main__body {
    margin-inline: auto;
    width: 95%;
  }
  .m_section:first-child {
    margin-top: 24px;
  }
  .m_section + .m_section {
    margin-top: 40px;
  }
  .m_heading_ttl {
    font-size: 22px;
  }
}


/*----- MV -----*/
.mainvisual_hierarchy-solution--sp {
  display: none;
}
@media (max-width:768px) {
  .mainvisual_hierarchy-solution--pc {
    display: none;
  }
  .mainvisual_hierarchy-solution--sp {
    display: block;
    line-height: 0;
  }
}


/*----- 各階層の役割変化に合わせた教育 -----*/
.hierarchy_dl_wrap {
  display: flex;
}
.hierarchy_dl_wrap:has(.hierarchy_dl_ttl) + .hierarchy_dl_wrap:has(.hierarchy_dl_ttl) {
  border-top: 3px solid #fff;
}
.hierarchy_dl dt {
  width: 100%;
  max-width: 240px;
  font-weight: 700;
}
.hierarchy_dl dd {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}
.hierarchy_dl dt.hierarchy_dl_head,
.hierarchy_dl dd.hierarchy_dl_head {
  font-size: 16px;
  font-weight: 700;
  padding-left: 10px;
  padding-bottom: 8px;
}
.hierarchy_dl_ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  color: #fff;
  font-size: 15px;
  padding: 12px 10px;
}
.hierarchy_dl_ttl--01 {
  background-color: #D76076;
}
.hierarchy_dl_ttl--02 {
  background-color: #1C99D7;
}
.hierarchy_dl_ttl--03 {
  background-color: #1C99D7;
}
.hierarchy_dl_ttl--04 {
  background-color: #278BCB;
}
.hierarchy_dl_ttl--05 {
  background-color: #1766A2;
}
.hierarchy_dl_ttl--06 {
  background-color: #20866E;
}
.hierarchy_dl_ttl--07 {
  background-color: #1D695C;
}
.hierarchy_dl_ttl--08 {
  background-color: #004E4A;
}
.hierarchy_dl_ttl__jp {
  margin: 0;
}
.hierarchy_dl_text {
  padding: 12px 10px;
  margin: 0;
}
.hierarchy_dl_text--01 {
  background-color: #F8E1E4;
}
.hierarchy_dl_text--02 {
  background-color: #D0E8F4;
}
.hierarchy_dl_text--03 {
  background-color: #D0E8F4;
}
.hierarchy_dl_text--04 {
  background-color: #CDDEED;
}
.hierarchy_dl_text--05 {
  background-color: #C6D6E9;
}
.hierarchy_dl_text--06 {
  background-color: #DAEDDD;
}
.hierarchy_dl_text--07 {
  background-color: #CFE6D2;
}
.hierarchy_dl_text--08 {
  background-color: #C5D9D0;
}
@media (max-width:768px) {
  .hierarchy_dl_wrap {
    flex-direction: column;
  }
  .hierarchy_dl dt {
    max-width: unset;
  }
  .hierarchy_dl dt.hierarchy_dl_head,
  .hierarchy_dl dd.hierarchy_dl_head {
    display: none;
  }
  .hierarchy_dl dd {
    font-size: 14px;
  }
}


/*----- インソースの階層別教育のポイント -----*/
.point_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: feature_possible_num 0;
}
.point_list_item {
  position: relative;
  padding-left: 46px;
}
.point_list_item::before {
  position: absolute;
  content: counter(feature_possible_num, decimal-leading-zero);
  counter-increment: feature_possible_num 1;
  top: -6px;
  left: 0;
  display: block;
  color: #b72c2c;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.point_list_ttl {
  display: flex;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.point_list_text {
  line-height: 1.65;
  margin-top: 6px;
}
.point_inrlist {
  margin-top: 4px;
}
.point_inrlist_text {
  position: relative;
  line-height: 1.65;
  padding-left: 1.5em;
  margin-top: 8px;
}
.point_inrlist_text::before {
  position: absolute;
  content: '';
  display: block;
  top: 8px;
  left: 0;
  width: 12px;
  height: 6px;
  border-left: 3px solid #b72c2c;
  border-bottom: 3px solid #b72c2c;
  transform: rotate(-45deg);
}
.point_inrlist_text + .point_inrlist_text {
  margin-top: 4px;
}

@media (max-width:768px) {
  .point_list_ttl {
    font-size: 16px;
  }
  .point_list_item {
    padding-left: 36px;
  }
  .point_list_item::before {
    top: -5px;
    font-size: 24px;
  }
  .point_list_text {
    font-size: 14px;
  }
}


/*----- まるっとお任せプラン -----*/
.plan_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan_list_item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.plan_list_itemTtl a {
  position: relative;
  display: block;
  font-weight: 500;
  padding-left: 1.3em;
  transition: 0.3s;
}
.plan_list_itemTtl a::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  display: inline-block;
  width: .5em;
  height: 0.5em;
  border-top: 3px solid #b72c2c;
  border-right: 3px solid #b72c2c;
  transform: rotate(45deg);
  margin-right: 8px;
}
.plan_hierarchyList {
  display: flex;
}
.plan_hierarchyList_item {
  position: relative;
  width: 9em;
  text-align: center;
  color: #aaa;
  font-size: 14px;
  line-height: 30px;
  white-space: nowrap;
}
.plan_hierarchyList_item:first-child {
  width: calc(9em - 4px)
}
.plan_hierarchyList_item + .plan_hierarchyList_item {
  padding-left: 8px
}
.plan_hierarchyList_item::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)
}
.plan_hierarchyList_item::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)
}
.plan_hierarchyList_item:last-child::after,
.plan_hierarchyList_item:last-child::before {
  content: none
}
.plan_hierarchyList_item--wakate {
  background-color: #eeeeee;
}
.plan_hierarchyList_item--chuken {
  background-color: #e6e6e6;
}
.plan_hierarchyList_item--kanrishoku {
  background-color: #dedede;
}
.plan_hierarchyList_item--keieisou {
  background-color: #d6d6d6;
}
.plan_hierarchyList_item.is-active {
  color: #fff;
}
.plan_hierarchyList_item--wakate.is-active {
  background-color: #E88888;
}
.plan_hierarchyList_item--chuken.is-active {
  background-color: #E56F6F;
}
.plan_hierarchyList_item--kanrishoku.is-active {
  background-color: #E25555;
}
.plan_hierarchyList_item--keieisou.is-active {
  background-color: #b72c2c;
}
@media (any-hover:hover) {
  .plan_list_itemTtl a:hover {
    opacity: 0.6
  }
}
@media (max-width:768px) {
  .plan_list_item {
    flex-direction: column;
  }
  .plan_hierarchyList {
    padding-left: 1.3em;
  }
  .plan_list_itemTtl a {
    font-size: 14px;
  }
}


/*----- サービスの全体像 -----*/
/* ナビ */
.service_nav {
  border: 2px solid #b72c2c;
  padding: 22px 22px;
}
.service_nav_item + .service_nav_item {
  margin-top: 20px;
}
.target_list,
.theme_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  margin-top: 8px;
}
.target_list_item a,
.theme_list_item a {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 30px;
  padding-left: 28px;
  opacity: 1;
  transition: 0.3s;
}
.target_list_item a::before,
.theme_list_item a::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 13px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #b72c2c;
  border-right: 2px solid #b72c2c;
  transform: rotate(135deg);
}
@media (any-hover:hover) {
  .target_list_item a:hover,
  .theme_list_item a:hover {
    color: #b72c2c;
  }
}

/* サービス一覧 */
.service_all_wrap {
  margin-top: 32px;
}
.service_all_item + .service_all_item {
  padding-top: 40px;
}
.service_all_item#shinjin {
  padding-top: 40px;
  margin-top: -40px;
}
.service_all_item__ttl {
  color: #b72c2c;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.service_all_heading {
  margin-bottom: 16px;
}
.service_all_ttl {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding-left: 1.5em;
}
.service_all_ttl::before {
  position: absolute;
  content: "";
  top: calc((1lh - 1em) / 2);
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #b72c2c;
}
.lineup_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  align-items: stretch;
  margin-top: 16px;
}
.lineup_list_item a {
  position: relative;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding-bottom: 12px;
  transition: .3s;
}
.lineup_list_item + .lineup_list_item a {
  border-top: 1px solid #bbb;
  padding-top: 12px;
}
.lineup_list_item:nth-child(-n+3) a {
  border-top: unset;
  padding-top: 0;
}
.lineup_list_head {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  justify-content: space-between;
}
.lineup_list_ttl {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.lineup_list_img {
  line-height: 0;
  max-width: 38%;
}
.lineup_list_img > img {
  width: 100%;
  line-height: 0;
}
.lineup_list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #b72c2c;
  font-size: 12px;
  font-weight: 500;
}
.lineup_list_tagItem::before {
  content: "#";
  color: inherit;
}
.lineup_list_item a {
  position: relative;
  display: block;
}
.lineup_list_item a::before {
  display: block;
  font-size: 11px;
  line-height: 1;
  width: fit-content;
  padding: 2px 8px;
  margin-bottom: 4px;
  border-radius: 2px;
  white-space: nowrap;
  content: attr(service_type) !important;
  background: #fff !important;
}
[service_type="派遣"]::before {
  color: #842e30 !important;
  border: 1px solid #842e30;
}
[service_type="公開講座"]::before {
  color: #0c3f71 !important;
  border: 1px solid #0c3f71;
}
[service_type="動画教材"]::before {
  color: #cc2d5e !important;
  border: 1px solid #cc2d5e;
}
[service_type="シリーズ"]::before {
  color: #6b3fa0 !important;
  border: 1px solid #6b3fa0;
}
[service_type="アセスメント"]::before {
  color: #b8860b !important;
  border: 1px solid #b8860b;
}
[service_type="人事部門コンサル"]::before {
  color: #7a614f !important;
  border: 1px solid #7a614f;
}
[service_type="eラン・研修システム"]::before {
  color: #008d79 !important;
  border: 1px solid #008d79;
}
[service_type="その他"]::before {
  color: #626161 !important;
  border: 1px solid #626161;
}

@media (any-hover:hover) {
  .lineup_list_item a:hover {
    opacity: 0.7;
  }
}
@media (max-width:768px) {
  .lineup_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .service_all_item + .service_all_item {
    padding-top: 32px;
  }
  .lineup_list_item:nth-child(3) a {
    border-top: 1px solid #bbb;
    padding-top: 12px;
  }
}
@media (max-width:576px) {
  .lineup_list {
    grid-template-columns: 1fr;
  }
  .lineup_list_item:nth-child(2) a {
    border-top: 1px solid #bbb;
    padding-top: 12px;
  }
}