@charset "utf-8";

/* コンテンツ幅 */
#base {
  width: 1220px;
}
div#cont div#c3_l {
  width: 970px;
}
div#cont div#c3_lr {
  width: 730px;
}
@media (max-width: 768px) {
  #base,
  div#cont div#c3_l,
  div#cont div#c3_lr {
    width: 100%;
  }
}

/* Flex */
.m_content_flex {
  display: flex;
}
.m_justifyContentCenter {
  justify-content: center;
}
.m_justifyContentBetween {
  justify-content: space-between;
}
.m_justifyContentEnd {
  justify-content: end;
}
.m_alignItemsCenter {
  align-items: center;
}
@media (max-width: 768px) {
  .m_content_flex {
    display: block;
  }
}

/* セクション */
.m_content_sec + .m_content_sec {
  margin-top: 45px;
}
.m_service_lead_sec {
  margin-top: 70px;
}
.m_service_sec,
.m_perform_num_sec,
.m_connect_service_sec {
  margin-top: 55px;
}
.m_content_sec p {
  font-size: 15px;
}
@media (max-width: 768px) {
  .m_service_lead_sec {
    margin-top: 50px;
  }
  .m_content_sec p {
    font-size: 14px;
  }
}

/* 見出し */
.m_content_head_h2 {
  position: relative;
  font-size: 23px;
  color: #333;
  font-weight: bold;
  padding-left: 30px;
  margin-bottom: 25px;
}
.m_content_head_h2:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 0;
  background-image: url(/resource/img/business_partner/ico_head_h2.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.m_content_head_h3 {
  position: relative;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  padding-left: 15px;
  margin-bottom: 30px;
}
.m_content_head_h3:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 25px;
  left: 0;
  background: #1b8092;
  background-size: contain;
}
@media (max-width: 768px) {
  .m_content_head_h2 {
    font-size: 20px;
  }
  .m_content_head_h3 {
    font-size: 18px;
  }
}

/* ボタン */
.m_content_btn_sec {
  width: 44%;
  margin-left: auto;
  margin-top: 25px;
}
.m_content_btn_sec a:hover {
  text-decoration: none;
}
.m_content_btn {
  position: relative;
  font-size: 16px;
  color: #458da8;
  background-color: #fff;
  font-weight: bold;
  border: 1px solid #458da8;
  text-align: center;
  padding: 10px 30px;
  transition: 0.2s;
}
.m_content_btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 18px;
  right: 20px;
  border-right: 2px solid #458da8;
  border-bottom: 2px solid #458da8;
  transform: rotate(-45deg);
}
.m_content_btn:hover {
  background-color: #458da8;
  color: #fff;
}
.m_content_btn:hover::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.m_content_btn_sec.m_contact_btn_sec {
  width: 230px;
  margin-right: auto;
}
.m_contact_btn {
  position: relative;
  font-size: 16px;
  color: #fff;
  background-color: #e62121;
  font-weight: bold;
  border: 1px solid #e62121;
  text-align: center;
  padding: 10px 30px;
  transition: 0.2s;
}
.m_contact_btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 18px;
  right: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.m_contact_btn:hover {
  color: #e62121;
  background-color: #fff;
}
.m_contact_btn:hover::after {
  border-right: 2px solid #e62121;
  border-bottom: 2px solid #e62121;
}
.m_plan_option_sec .m_content_btn_sec .m_content_btn br {
  display: none;
}
@media (min-width: 769px) {
  .m_plan_option_sec .m_content_btn_sec {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .m_content_btn_sec {
    width: 100%;
  }
  .m_content_btn_sec.m_contact_btn_sec {
    width: 100%;
  }
  .m_plan_option_sec .m_content_btn_sec {
    width: 100%;
  }
  .m_plan_option_sec .m_content_btn_sec .m_content_btn br {
    display: block;
  }
  .m_content_btn {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .m_contact_btn {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .m_content_btn::after {
    top: 19px;
  }
  .m_contact_btn::after {
    top: 23px;
  }
  .m_plan_option_sec .m_content_btn_sec .m_content_btn::after {
    top: 32px;
  }
}

/* 画像 */
figure img {
  width: 100%;
  max-width: 100%;
}

/* アンカーリンク */
.m_unkerlink_nav {
  display: flex;
}
.m_unkerlink_nav li {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #1b8092;
  text-align: center;
  transition: 0.2s;
  flex: 1;
}
.m_unkerlink_nav li a {
  color: #333;
  transition: 0.2s;
}
.m_unkerlink_nav li a {
  color: #333;
  text-decoration: none;
}
.m_unkerlink_nav li:hover {
  opacity: 0.7;
  border-bottom: none;
}
.m_unkerlink_nav li + li {
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .m_unkerlink_nav li a {
    font-size: 10px;
  }
}

/* こんなお悩みありませんか？ */
.m_lead_head_text {
  font-size: 23px;
  background: linear-gradient(transparent 81%, rgba(27, 128, 146, 0.2) 19%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.m_lead_head_text:nth-of-type(1) {
  width: 260px;
}
.m_lead_head_text:nth-of-type(2) {
  width: 310px;
}
.m_lead_head_text + .m_lead_head_text {
  margin-top: 5px;
}
.m_head_intv {
  margin-top: 40px;
}
.m_head_intv_item {
  display: flex;
  align-items: center;
}
.m_head_intv_item + .m_head_intv_item {
  margin-top: 30px;
}
.m_head_intv_text_sec {
  width: 85%;
  background-image: url(/resource/img/business_partner/bg_intv_text_l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 15px 67px;
}
.m_head_intv_text_sec p {
  font-size: 15px;
}
.m_head_intv_image {
  width: 95px;
  height: 92px;
}
.m_head_intv_item_r .m_head_intv_image {
  order: 1;
}
.m_head_intv_item_r .m_head_intv_text_sec {
  background-image: url(/resource/img/business_partner/bg_intv_text_r.svg);
  padding-right: 82px;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .m_head_intv_image {
    width: 70px;
    height: 70px;
  }
  .m_head_intv_text_sec {
    width: 67%;
  }
  .m_head_intv_text_sec {
    position: relative;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    background-image: none;
    padding: 15px;
    margin-left: 35px;
  }
  .m_head_intv_text_sec::before {
    content: "";
    position: absolute;
    width: 33px;
    height: 28px;
    left: -33px;
    top: 33px;
    z-index: 1;
    background-image: url(/resource/img/business_partner/bg_intv_text_l_sp_ico.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .m_head_intv_item_r .m_head_intv_text_sec {
    position: relative;
    background-image: none;
    padding: 15px;
    margin-right: 35px;
    margin-left: 0;
  }
  .m_head_intv_item_r .m_head_intv_text_sec::before {
    content: none;
  }
  .m_head_intv_item_r .m_head_intv_text_sec::after {
    content: "";
    position: absolute;
    width: 33px;
    height: 28px;
    right: -32px;
    top: 40%;
    z-index: 1;
    background-image: url(/resource/img/business_partner/bg_intv_text_r_sp_ico.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .m_head_intv_text_sec p {
    font-size: 14px;
  }
  .m_head_intv_item {
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .m_lead_head_text {
    font-size: 20px;
  }
  .m_lead_head_text:nth-of-type(1) {
    width: 62vw;
  }
  .m_lead_head_text:nth-of-type(2) {
    width: 72vw;
  }
}

/* インソースの研修業務委託サービスとは？ */
.m_service_plan_sec {
  margin-top: 50px;
}
.m_service_plan_table {
  flex: 1;
}
.m_service_plan_table + .m_service_plan_table {
  margin-left: 5px;
}
.m_service_plan_table li {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #d6d6d6;
  padding: 15px 0;
}
.m_service_plan_table li + li {
  border-top: none;
}
.m_service_plan_table .m_bg_gray {
  background-color: #e3e3e3;
  color: #707070;
}
.m_service_plan_table .today_plan_head,
.agency_plan_head,
.all_plan {
  color: #fff;
}
.m_service_plan_table .today_plan_head {
  background-color: #458da8;
  border: 1px solid #458da8;
}
.m_service_plan_table .agency_plan_head {
  background-color: #2eb2ad;
  border: 1px solid #2eb2ad;
}
.m_service_plan_table .all_plan {
  background-color: #45a891;
  border: 1px solid #45a891;
}
.m_service_plan_sec + .m_service_plan_detail_sec {
  margin-top: 50px;
}
.m_service_plan_detail_sec + .m_service_plan_detail_sec {
  margin-top: 50px;
}
.m_service_plan_detail_sec + .m_service_collum_sec {
  margin-top: 50px;
}
.m_service_collum_sec {
  background-color: #f4f4f4;
  padding: 35px 40px 30px 40px;
}
.m_service_collum_sec h3 {
  font-size: 20px;
  color: #1b8092;
  font-weight: bold;
  text-align: center;
}
.m_service_collum_sec h3 + p {
  margin-top: 25px;
}
.m_service_collum_sec p + .m_content_btn_sec {
  margin-top: 50px;
}
.m_service_collum_sec h3 br {
  display: none;
}
@media (max-width: 768px) {
  .m_content_btn_sec {
    width: 100%;
    margin-right: auto;
  }
  .m_service_plan_table + .m_service_plan_table {
    margin-left: 0px;
    margin-top: 5px;
  }
  .m_service_collum_sec h3 {
    font-size: 18px;
  }
  .m_service_collum_sec p {
    font-size: 15px;
  }
  .m_service_collum_sec {
    padding: 30px 20px;
  }
  .m_service_collum_sec h3 br {
    display: block;
  }
}

/* プラン比較 */
.m_plan_name_sec {
  padding: 17px 0px;
  text-align: center;
}
.m_plan_detail_box_itm {
  flex: 1;
  border: 1px solid #d6d6d6;
}
.m_plan_detail_box_itm:nth-child(1) .m_plan_name_sec {
  background-color: #458DA8;
}
.m_plan_detail_box_itm:nth-child(2) .m_plan_name_sec {
  background-color: #2EB2AD;
}
.m_plan_detail_box_itm:nth-child(3) .m_plan_name_sec {
  background-color: #45A891;
}
.m_plan_name_sec p {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.m_plan_detail_box_text {
  padding: 20px;
  text-align: center;
}
.m_plan_detail_box_itm:nth-child(1) .m_plan_detail_box_text {
  padding-top: 45px;
}
.m_plan_detail_box_text p {
  font-size: 15px;
  font-weight: bold;
}
.m_plan_table_sec {
  margin-top: 40px;
}
p + .m_plan_option_table_sec {
  margin-top: 25px;
}
.m_plan_option_table tr {
  border: 1px solid #d6d6d6;
}
.m_plan_option_table th {
  font-size: 15px;
  color: #1b8092;
  font-weight: bold;
  border-right: 1px solid #d6d6d6;
  padding-left: 10px;
  padding-right: 15px;
  vertical-align: middle;
}
.m_plan_option_table td {
  font-size: 13px;
  vertical-align: middle;
  padding: 15px;
}
.m_plan_option_table_sec + .m_content_btn_sec {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .m_plan_table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .m_plan_option_table_sec_sp {
    display: none;
  }
  .m_plan_detail_box_itm + .m_plan_detail_box_itm {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .m_plan_detail_box_itm + .m_plan_detail_box_itm {
    border-top: none;
  }
  .m_plan_option_table_sec {
    display: none;
  }
  .m_plan_option_table_sec_sp {
    display: block;
    margin-top: 20px;
  }
  .m_plan_detail_box_itm:nth-child(1) .m_plan_detail_box_text {
    padding-top: 20px;
  }
  .m_plan_detail_box_text br:nth-of-type(2) {
    display: none;
  }
  .m_plan_option_table_sp_head {
    font-size: 14px;
    color: #1b8092;
    border: 1px solid #d6d6d6;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
  }
  .m_plan_option_table_sp_cont {
    font-size: 13px;
    border: 1px solid #d6d6d6;
    border-top: none;
    border-spacing: 0;
    padding: 20px;
  }
  .m_plan_option_table_sp_cont + .m_plan_option_table_sp_head {
    border-top: none;
  }
}

/* プラン比較表 */
.m_plan_table {
  width: 730px;
  border-right: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  border-collapse: separate;
}
.m_null_head {
  border-left: none !important;
  border-top: none !important;
}
.m_plan_table th,
td {
  border-top: 1px solid #d6d6d6;
  border-left: 1px solid #d6d6d6;
  vertical-align: middle;
}
.m_plan_table th {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  background-color: #fff;
}
.m_plan_table td {
  font-size: 13px;
  padding: 5px 12px;
}
.m_th_plan_name {
  color: #fff;
}
.m_th_plan_name.m_plan_name_today {
  background-color: #458DA8;
}
.m_th_plan_name.m_plan_name_agency {
  background-color: #2EB2AD;
}
.m_th_plan_name.m_plan_name_all {
  background-color: #45A891;
}
.m_plan_table tbody td:nth-child(n + 2) {
  font-weight: bold;
  text-align: center;
}
.m_plan_table_subHead {
  font-size: 15px !important;
  color: #1b8092;
  text-align: left !important;
  vertical-align: top !important;
}
.m_plan_table_subHead_nb {
  font-size: 13px !important;
  color: #333333;
  font-weight: 400 !important;
  text-align: left !important;
  border-top: none !important;
  border-bottom: none !important;
  vertical-align: top !important;
}
.m_plan_table_cont_nmtext {
  font-size: 13px !important;
  font-weight: 500 !important;
  text-align: left !important;
}
.m_plan_table_nb_btm {
  border-bottom: none !important;
}
.m_plan_option_sec {
  margin-top: 60px;
}
.m_plan_table_note {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .m_plan_table thead th:nth-child(-n + 2) {
    border-bottom: 1px solid #d6d6d6;
  }
  .m_plan_table tbody tr:nth-child(1) th {
    border-top: none;
  }
  .m_plan_table tbody tr:nth-child(1) td {
    border-top: none;
  }
  .m_plan_table_note {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_plan_table_sec {
    width: 100%;
    height: auto;
    overflow-x: scroll;
  }
  .m_plan_table {
    white-space: nowrap;
  }
  .m_plan_table_note {
    display: block;
    margin: 10px 0;
  }
}

/* 実績 */
.m_perform_ttl_item {
  font-size: 18px;
  color: #fff;
  background-color: #1b8092;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  flex: 1;
}
.m_perform_ttl_sec + .m_perform_detail_sec {
  margin-top: 30px;
}
.m_perform_image {
  width: 350px;
  height: 230px;
}
@media screen and (min-width: 769px) {
  .m_perform_ttl_item + .m_perform_ttl_item {
    border-left: 1px solid #fff;
  }
  .m_perform_image {
    margin-right: 30px;
  }
  .m_perform_detail_sec p {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .m_perform_ttl_item + .m_perform_ttl_item {
    border-left: none;
  }
  .m_perform_ttl_item:nth-of-type(2) {
    position: relative;
  }
  .m_perform_ttl_item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    top: 0;
    left: 45%;
    right: 45%;
    background-image: url(/resource/img/business_partner/border_wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .m_perform_image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}

/* 実績数字 */
.m_perform_num_table {
  width: 100%;
}
.m_perform_num_table tr th:nth-child(1) {
  border-right: 1px solid #eee;
  border-left: none;
}
.m_perform_num_table tr td:nth-child(1) {
  border-right: 1px solid #eee;
  border-left: none;
}
.m_perform_num_table th {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #36b7a7;
  text-align: center;
  padding: 10px 20px;
}
.m_perform_num_table td {
  background-color: #fafafa;
  padding: 20px;
}
.m_perform_num_table .num_text {
  text-align: right;
}
.m_perform_num_table + .m_content_btn_sec {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .m_perform_num_table_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_perform_num_table {
    display: none;
  }
  .m_perform_num_table_sp {
    display: block;
  }
  .m_perform_num_table_sp_head {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #36b7a7;
    text-align: center;
    padding: 15px 0;
  }
  .m_perform_num_table_sp_cont {
    background-color: #fafafa;
    padding: 15px 20px 15px 15px;
  }
  .m_perform_num_table_sp_cont.num_text {
    text-align: right;
  }
}

/* 導入の流れ */
.m_flow_item {
  border: 1px solid #1b8092;
  padding: 35px 30px;
}
.m_flow_item + .m_flow_item {
  margin-top: 10px;
}
.m_flow_detail_sec {
  width: 95%;
}
.m_flow_num {
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #1b8092;
  border-radius: 50px;
  padding: 5px;
  text-align: center;
  order: 1;
}
.m_flow_detail_sec {
  order: 2;
}
.m_flow_image {
  order: 3;
  margin-left: auto;
  margin-right: auto;
}
.m_flow_detail_sec h3 {
  font-size: 16px;
  font-weight: bold;
}
.m_flow_detail_sec h3 + p {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .m_flow_num {
    margin-right: 20px;
  }
  .m_flow_detail_sec {
    width: 62%;
    margin-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .m_flow_num {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .m_flow_item {
    padding: 30px 20px;
  }
  .m_flow_detail_sec {
    margin-top: 30px;
  }
  .m_flow_item:nth-child(1) .m_flow_image {
    width: 141px;
  }
  .m_flow_item:nth-child(2) .m_flow_image {
    width: 57px;
  }
  .m_flow_item:nth-child(3) .m_flow_image {
    width: 100px;
  }
}

/* 関連サービス */
.m_connect_service_list_item + .m_connect_service_list_item {
  margin-top: 15px;
}
.m_connect_service_list_item a {
  position: relative;
  font-size: 16px;
  color: #1a328d;
  text-decoration: none;
  padding-left: 75px;
}
.m_connect_service_list_item a:hover {
  text-decoration: underline;
}
.m_connect_service_list_item.m_cat_consul a::before {
  content: "コンサル";
  position: absolute;
  display: inline-block;
  min-width: 60px;
  margin-right: 0;
  padding: 3px 0;
  border: 2px solid #7a614f;
  border-radius: 2px;
  line-height: 1;
  color: #7a614f;
  background: #fff;
  font-size: 13px;
  text-align: center;
  position: absolute;
  top: 1px;
  left: 0;
}
.m_connect_service_list_item.m_cat_summary a::before {
  content: "まとめ";
  position: absolute;
  display: inline-block;
  min-width: 60px;
  margin-right: 0;
  padding: 3px 0;
  border: 2px solid #842e30;
  border-radius: 2px;
  line-height: 1;
  color: #842e30;
  background: #fff;
  font-size: 13px;
  text-align: center;
  position: absolute;
  top: 1px;
  left: 0;
}
.m_connect_service_list_item.m_cat_agency a::before {
  content: "運営代行";
  position: absolute;
  display: inline-block;
  min-width: 60px;
  margin-right: 0;
  padding: 3px 0;
  border: 2px solid #e6002d;
  border-radius: 2px;
  line-height: 1;
  color: #e6002d;
  background: #fff;
  font-size: 13px;
  text-align: center;
  position: absolute;
  top: 1px;
  left: 0;
}
