@charset "utf-8";

/* PC表示 コンテンツ幅調整 */
@media screen and (min-width: 769px) {
  #base {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
  }
  div#cont div#c3_l {
    width: 1220px;
    overflow: hidden;
  }
  div#cont div#c3_lr {
    width: 970px;
  }
}

/* レイアウト */
.m_main_cont_flex {
  display: flex;
}
.m_main_cont_flex_between {
  justify-content: space-between;
}
.m_main_cont_flex_center {
  justify-content: center;
}
.m_main_cont_flex_align_end {
  align-items: end;
}
.m_main_cont_flex_align_center {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .m_main_cont_flex {
    display: block;
  }
}

/* メインコンテンツ */
.m_main_cont_sec {
  padding: 40px 0;
}
.m_main_image + .m_main_cont_sec {
  padding-top: 80px;
}
.m_main_contbox_bg_gray {
  background-color: rgb(12, 72, 114, 0.1);
  padding: 50px 30px;
}
.m_main_cont_lead + .m_main_cont_image {
  margin-top: 30px;
}
.m_main_cont_image img {
  width: 100%;
  max-width: 100%;
}
.m_case_list_box_sec {
  position: relative;
  background-color: rgb(12, 72, 114, 0.1);
  padding: 30px;
}
.m_case_list_box_sec::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 17px;
  right: -18px;
  top: 47%;
  background-image: url(/resource/img/consulting/ico_case_list_box.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .m_case_list_box_sec + .m_main_cont_image {
    margin-left: 55px;
  }
}
@media screen and (max-width: 768px) {
  .m_main_cont_sec {
    padding: 20px 0;
  }
  .m_main_image + .m_main_cont_sec {
    padding-top: 40px;
  }
  .m_main_contbox_bg_gray {
    padding: 30px 20px;
  }
  .m_case_list_box_sec::after {
    right: auto;
    top: auto;
    bottom: -17px;
    left: 48%;
    transform: rotate(-270deg);
  }
  .m_main_cont_image_sp {
    margin-top: 30px;
  }
}

/* 画像表示切替 */
@media screen and (min-width: 769px) {
  .m_main_cont_image_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_main_cont_image_sp {
    display: block;
  }
  .m_main_cont_image_pc {
    display: none;
  }
}

/* 見出し */
.m_main_contbox .m_main_cont_text_sec h2 {
  font-size: 28px;
  font-weight: bold;
  color: #0c4872;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 30px;
}
.m_main_cont_head_h2 {
  font-size: 24px;
  font-weight: bold;
  color: #0c4872;
  line-height: 24px;
  border-left: 7px solid #0c4872;
  padding-left: 15px;
  padding-top: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .m_main_cont_head_h2 {
    font-size: 16px;
  }
  .m_main_contbox .m_main_cont_text_sec h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* フォントサイズ */
.m_main_cont_sec p {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .m_main_cont_sec p {
    font-size: 12px;
  }
}

/* リンク */
.m_service_link {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #0d837e;
  border-bottom: 1px solid #0d837e;
  transition: 0.2s;
  padding-right: 15px;
}
.m_service_link:hover {
  opacity: 0.7;
  text-decoration: none;
  border-bottom: none;
}
.m_service_link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 4px;
  top: 7px;
  border-right: 1px solid #0d837e;
  border-bottom: 1px solid #0d837e;
  transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .m_link_list_item .ico_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .m_service_link {
    font-size: 14px;
  }
  .m_link_list_item .ico_sp {
    position: relative;
    padding-left: 1.1em;
  }
  .m_service_link::after {
    width: 5px;
    height: 5px;
    top: 5px;
  }
  .m_link_list_item .ico_sp::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    right: 4px;
    top: 5px;
    border-right: 1px solid #0d837e;
    border-bottom: 1px solid #0d837e;
    transform: rotate(-45deg);
  }
}

/* ボタン */
.m_casepage_btn_sec {
  width: 302px;
  margin: 40px auto 0 auto;
}
.m_casepage_btn_sec a:hover {
  text-decoration: none;
}
.m_casepage_btn {
  position: relative;
  font-size: 15px;
  color: #fff;
  background-color: #0d837e;
  border: 1px solid #0d837e;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
  transition: 0.2s;
}
.m_casepage_btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 20px;
  top: 19px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(135deg);
}
.m_casepage_btn:hover {
  background-color: #fff;
  color: #0d837e;
}
.m_casepage_btn:hover::after {
  border-right: 1px solid #0d837e;
  border-bottom: 1px solid #0d837e;
}
@media screen and (max-width: 768px) {
  .m_casepage_btn_sec {
    width: 100%;
  }
}

/* リスト */
.m_case_list {
  list-style: none;
}
.m_case_list_item {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding-left: 20px;
}
.m_case_list_item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 5px;
  background-image: url(/resource/img/consulting/ico_caselist.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.m_case_list_item + .m_case_list_item {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .m_case_list_item + .m_case_list_item {
    margin-top: 0;
  }
}
/* リード文 */
.m_lead_sec .m_main_contbox .m_main_cont_image {
  width: 330px;
  height: 311px;
}
@media screen and (min-width: 769px) {
  .m_lead_sec .m_main_cont_text_sec + .m_main_cont_image {
    margin-left: 80px;
  }
  .m_lead_sec .m_main_cont_text_sec {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .m_case_list_item {
    font-size: 12px;
  }
  .m_case_list_item::before {
    top: 6px;
  }
  .m_lead_sec .m_main_cont_text_sec {
    width: 100%;
  }
  .m_lead_sec .m_main_contbox .m_main_cont_image {
    width: 100%;
    height: auto;
  }
  .m_lead_sec .m_main_cont_text_sec + .m_main_cont_image {
    margin-top: 20px;
  }
}

/* 内製化を検討される様々なケース */
.m_case_sec .m_main_cont_image {
  width: 77px;
  height: 200px;
}
.m_case_sec .m_case_list_box_sec {
  width: 759px;
}
@media screen and (max-width: 768px) {
  .m_case_sec .m_case_list_box_sec {
    width: 100%;
  }
  .m_case_sec .m_main_cont_image {
    width: 58px;
    height: 158px;
    margin-left: auto;
    margin-right: auto;
  }
  .m_case_sec .m_case_list_box_sec + .m_main_cont_image {
    margin-top: 20px;
  }
}

/* メリット・デメリット */
.m_melit_box {
  flex: 1;
}
.m_melit_box_head {
  background-color: #0c4872;
  text-align: center;
  padding: 15px 0;
}
.m_melit_box_head h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.m_melit_box_head figure + h3 {
  margin-left: 10px;
}
.m_melit_box_head figure {
  width: 25px;
  height: 25px;
}
.m_melit_box_inr {
  border: 1px solid #0c4872;
  padding: 20px 30px;
}
@media screen and (min-width: 769px) {
  .m_melit_box:nth-of-type(1) .m_melit_box_inr {
    border-right: none;
    height: 240px;
  }
  .m_melit_box:nth-of-type(1) .m_melit_box_head {
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .m_melit_box_head h3 {
    font-size: 18px;
    padding-top: 5px;
  }
  .m_melit_box_head.m_main_cont_flex {
    display: flex;
  }
  .m_melit_box + .m_melit_box {
    margin-top: 20px;
  }
}

/* 研修内製化支援サービス一覧 */
.m_service_list_item + .m_service_list_item {
  margin-top: 50px;
}
.m_service_list_text_head {
  border-top: 1px solid #0c4872;
  border-bottom: 1px solid #0c4872;
  padding: 15px 0;
  margin-bottom: 20px;
}
.m_service_list_text_head h3 {
  font-size: 18px;
  font-weight: bold;
}
.m_service_list_text_sec {
  width: 100%;
}
.m_service_price {
  background-color: rgb(12, 72, 114, 0.1);
  text-align: right;
  padding: 10px;
  margin-top: 10px;
}
.m_service_price p {
  font-size: 15px;
}
.m_service_link_sec {
  text-align: right;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .m_service_list_image + .m_service_list_text_sec {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .m_service_list_text_head {
    margin-bottom: 10px;
  }
  .m_service_list_image + .m_service_list_text_sec {
    margin-top: 20px;
  }
  .m_service_list_text_head h3 {
    font-size: 16px;
  }
  .m_service_price {
    margin-top: 20px;
  }
  .m_service_price p {
    font-size: 12px;
  }
  .m_service_list_image {
    text-align: center;
  }
}

/* 研修内製化支援事例 */
.m_case_cont_sec .m_case_list_item {
  transition: 0.2s;
  padding-left: 0;
}
.m_case_cont_sec .m_case_list_item:hover {
  opacity: 0.7;
}
.m_case_cont_sec .m_case_list_item::before {
  content: none;
}
.m_case_cont_sec .m_case_list_item_inr {
  align-items: center;
}
.m_case_cont_sec .m_case_list_text {
  font-weight: bold;
}
.m_case_cont_sec .m_case_list_image + .m_case_list_text {
  margin-left: 10px;
}
.m_case_cont_sec .m_case_list_item a {
  color: #333;
}
.m_case_cont_sec .m_case_list_item a:hover {
  color: #333;
  text-decoration: none;
}
.m_case_cont_sec .m_case_list_item + .m_case_list_item {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .m_case_cont_sec .m_case_list_item + .m_case_list_item {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .m_case_cont_sec .m_case_list_text {
    font-size: 12px;
    line-height: 18px;
  }
  .m_case_list_item_inr.m_main_cont_flex {
    display: flex !important;
  }
  .m_case_cont_sec .m_case_list_item + .m_case_list_item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .m_case_cont_sec .m_case_list_image + .m_case_list_text {
    margin-left: 20px;
  }
  .m_case_cont_sec .m_case_list_text {
    width: 60%;
  }
  .m_case_cont_sec .m_case_list_image {
    width: 110px;
  }
}

/* 関連リンク */
.m_link_list_item a {
  line-height: 24px;
}
.m_link_list_item + .m_link_list_item {
  margin-top: 10px;
}
.m_link_list_item .m_service_link {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .m_link_list_item .m_service_link::after {
    content: none;
  }
  .m_link_list_item .m_service_link {
    padding-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .m_link_list .m_link_list_item:nth-child(2) {
    margin-top: 10px;
  }
}

/* 下層ページ（ご支援事例ページ）用 */
.m_casepage_head_sec {
  margin-top: 80px;
}
.m_casepage_head_inr {
  border-top: 3px solid #0c4872;
  background-image: url(/resource/img/consulting/bg_casepage_head.png);
  background-size: contain;
  background-repeat: repeat-x;
  padding: 20px;
}
.m_casepage_head_inr h2 {
  font-size: 27px;
  font-weight: bold;
  color: #0c4872;
  margin-bottom: 20px;
}
.m_case_term {
  display: flex;
  align-items: center;
}
.m_case_term_ttl {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: #0c4872;
  text-align: center;
  padding: 5px;
}
.m_case_term p {
  font-size: 15px;
}
.m_case_term_ttl + p {
  margin-left: 10px;
}

.m_casepage_goal_sec {
  margin: 80px 0 40px 0;
}
.m_casepage_goal_inr {
  background-color: rgb(12, 72, 114, 0.1);
  padding: 20px;
}
.m_casepage_goal_inr h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #0c4872;
  padding-left: 55px;
  margin-bottom: 25px;
}
.m_casepage_goal_inr h2::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 39px;
  left: 3px;
  top: -5px;
  background-image: url(/resource/img/consulting/ico_goal.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.m_goal_text_box {
  background-color: #fff;
  border: 1px solid #cccccc;
  padding: 20px;
}
.m_goal_text_box p {
  font-size: 16px;
  color: #0c4872;
  line-height: 28px;
}
.m_casepage_cont_sec__last {
  padding-bottom: 100px;
}
.m_casepage_cont_inr + .m_casepage_cont_inr {
  margin-top: 20px;
}
.m_casepage_cont_inr h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .m_casepage_head_sec {
    margin-top: 40px;
  }
  .m_casepage_goal_sec {
    margin: 40px 0 20px 0;
  }
  .m_casepage_cont_sec__last {
    padding-bottom: 60px;
  }
  .m_casepage_head_inr h2 {
    font-size: 18px;
    line-height: 27px;
  }
  .m_casepage_goal_inr h2 {
    font-size: 16px;
    padding-left: 40px;
  }
  .m_casepage_goal_inr h2::before {
    width: 30px;
    height: 29px;
  }
  .m_goal_text_box p {
    font-size: 14px;
    line-height: 24px;
  }
  .m_casepage_cont_inr h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
