/* CSS Document */
/****************
base
****************/
/* リセット */
#base {
  width: auto;
}
div#cont {
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%; /*MT時削除？*/
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 95%;
  }
  #footer {
    width: 95%;
  }
}
/* ラッパー */
#cont {
  text-align: left;
  font-size: 15px;
  color: #333333;
  font-family: helvetica neue, "Noto Sans JP", yu gothic, YuGothic, ヒラギノ角ゴ pron w3, hiragino kaku gothic pron, Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #cont {
    font-size: 14px;
  }
}
/****************
layout
****************/
/* ラッパー */
.l_wrap {
  width: 1220px;
  margin: auto;
  overflow: hidden;
}
.l_wrap__main {
  width: 980px;
}
.l_wrap__sideNav {
  width: 200px;
}
.l_wrap--navLeft {
}
.l_wrap--navLeft .l_wrap__main {
  float: right;
}
.l_wrap--navLeft .l_wrap__sideNav {
  float: left;
}
@media screen and (max-width: 768px) {
  .l_wrap {
    width: 95%;
  }
  .l_wrap__main {
    width: 100%;
  }
  .l_wrap__sideNav {
    display: none;
  }
}
/* メインコンテンツ */
.l_main {
}
/* 節 */
.l_section {
}
.l_section__item {
}
.l_section--primary > .l_section__item + .l_section__item {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .l_section--primary > .l_section__item + .l_section__item {
    margin-top: 0;
    padding-top: 16vw;
  }
}

/* グリッド */
.l_grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.l_grid__item {
  display: flex;
}
.l_grid__inner {
  display: block;
  width: 100%;
}
.l_grid--target {
  margin: -16px;
}
.l_grid--target > .l_grid__item {
  padding: 16px;
}
.l_grid--strengths {
  margin: -12px;
}
.l_grid--strengths > .l_grid__item {
  padding: 12px;
}
.l_grid--achievement {
  margin: -12px;
}
.l_grid--achievement > .l_grid__item {
  padding: 12px;
}
.l_grid--image {
  margin: -20px;
}
.l_grid--image > .l_grid__item {
  padding: 20px;
}
.l_grid--service {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  overflow: hidden;
}
.l_grid--service > .l_grid__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  gap: 0;
  width: 100%;
  padding: 50px 50px 30px;
  margin-bottom: calc((1em * 1.75) + 10px);
  border: 2px solid #eaeaea;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l_grid--service {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 5.3vw;
  }
  .l_grid--service > .l_grid__item {
    padding: 20px 15px;
  }
}
/* ナビ */
.l_nav {
  display: flex;
  align-items: stretch;
}
.l_nav__item {
  display: flex;
  width: 100%;
}
.l_nav__target {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.l_nav--local > .l_nav__item {
  border-left: 1px dotted #666;
}
.l_nav--local > .l_nav__item:last-child {
  border-right: 1px dotted #666;
}
@media screen and (max-width: 768px) {
  .l_nav--local {
    display: block;
  }
  .l_nav--local > .l_nav__item {
    border-left: none;
  }
  .l_nav--local > .l_nav__item:last-child {
    border-right: none;
  }
  .l_nav--local .l_nav__target {
    justify-content: flex-start;
  }
}

/****************
module
****************/
/* 見出し */

.m_heading {
}
.m_heading__ttl {
  font-weight: bold;
}
.m_heading__subTtl {
  font-weight: bold;
}
.m_heading--primary {
  text-align: center;
  margin-bottom: 30px;
}
.m_heading--primary .m_heading__ttl {
  color: #0058a6;
  font-size: 30px;
}
.m_heading--primary .m_heading__subTtl {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 20px;
  font-weight: bold;
}
.m_heading--content {
  margin-bottom: 20px;
}
.m_heading--content .m_heading__ttl {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .m_heading--primary .m_heading__ttl {
    font-size: 22px;
  }
  .m_heading--primary .m_heading__subTtl {
    font-size: 16px;
  }
}

/* ボタンリスト */
.m_btns {
  display: flex;
  justify-content: center;
}
.m_btns__item {
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .m_btns {
    display: block;
  }
  .m_btns__item {
    padding: 0;
  }
  .m_btns__item + .m_btns__item {
    margin-top: 16px;
  }
}
/* ボタン */
.m_btn {
  display: flex;
  align-items: stretch;
}
.m_btn::before {
  content: "";
  display: block;
  width: 0;
}
.m_btn__target {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.m_btn--cta {
  justify-content: center;
  font-size: 18px;
}
.m_btn--cta::before {
  height: 3.5em;
}
.m_btn--cta .m_btn__target {
  padding: 0 4em;
  border-radius: 8px;
  background: #e6002d;
  color: #fff;
  font-weight: bold;
  transition: 0.3s opacity;
  white-space: nowrap;
}
.m_btn--cta .m_btn__target:hover {
  opacity: 0.7;
}
.m_btn--cta .m_btn__inner {
  position: relative;
  padding-left: 48px;
}
.m_btn--cta .m_btn__inner::before {
  content: url(/resource/img/inquiry/icon_inquiry.png);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 20px;
  margin: auto 0;
  line-height: 0;
}
.m_btn--demo {
  justify-content: center;
  font-size: 18px;
}
.m_btn--demo::before {
  height: 3.5em;
}
.m_btn--demo .m_btn__target {
  position: relative;
  width: 344px;
  border-radius: 8px;
  border: 2px solid #e6002d;
  color: #e6002d;
  font-weight: bold;
  transition: 0.3s opacity;
}
.m_btn--demo .m_btn__target:hover {
  opacity: 0.7;
}
.m_btn--demo .m_btn__target::after {
  content: "\f08e";
  position: relative;
  top: 2px;
  line-height: 1;
  font-size: 17px;
  color: inherit;
  font-family: FontAwesome;
  padding-left: 10px;
}
.m_btn--sub {
  justify-content: center;
  font-size: 18px;
}
.m_btn--sub::before {
  height: 2em;
}
.m_btn--sub .m_btn__target {
  padding: 0.5em 2.5em;
  border: 1px solid #0058a6;
  border-radius: 100px;
  color: #fff;
  background: #0058a6;
  transition: 0.3s color, 0.3s background-color;
}
.m_btn--sub .m_btn__target:hover {
  color: #0058a6;
  background: #fff;
}
.m_btn--common {
  flex-direction: column;
  margin-top: 60px;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.036em;
}
.m_btn--common .m_btn__target {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 60px;
  padding: 0 40px;
  border-radius: 8px;
  background: #59a7a2;
  color: #fff;
  font-weight: bold;
  transition: 0.3s opacity;
  white-space: nowrap;
}
.m_btn--common .m_btn__target:hover {
  opacity: 0.7;
}
.m_btn--common .m_btn__inner {
  position: relative;
}
.m_btn--common .m_btn__inner::before {
  display: none;
}
.m_btn--common .m_btn__note {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 0 calc(1em + 10px);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.m_btn--common .m_btn__note::before,
.m_btn--common .m_btn__note::after {
  position: absolute;
  bottom: 0;
  color: #59a7a2;
}
.m_btn--common .m_btn__note::before {
  content: "＼";
  left: 0;
}
.m_btn--common .m_btn__note::after {
  content: "／";
  right: 0;
}
@media screen and (max-width: 768px) {
  .m_btn--demo .m_btn__target {
    width: 100%;
    max-width: 344px;
  }
}
@media screen and (max-width: 599px) {
  .m_btn--cta::before {
    height: 4em;
  }
  .m_btn--cta .m_btn__inner {
    padding-left: 0;
  }
  .m_btn--cta .m_btn__inner::before {
    position: static;
    margin-bottom: 2px;
    text-align: center;
  }
  .m_btn--demo .m_btn__target {
    max-width: 296px;
  }
  .m_btn--cta .m_btn__target {
    width: 296px;
    padding: 0 3em;
  }
}

/* 脚注 */
.m_footNote {
  position: relative;
  padding-left: 1em;
  color: #777;
  font-size: 13px;
}
.m_footNote::before {
  content: "※";
  position: absolute;
  left: 0;
  display: block;
}

/* キービジュアル */
.m_keyvisual {
}
.m_keyvisual__wrap {
  background: url("../../img/recruitment-support/halfway/bg_recruitment-website-production.jpg") no-repeat center / cover;
}
.m_keyvisual__inner {
  width: 1220px;
  margin: auto;
}
.m_keyvisual__img {
  width: 980px;
  margin-left: auto;
  line-height: 0;
  text-align: center;
}
.m_keyvisual__img img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .m_keyvisual__inner {
    width: 100%;
    margin: auto;
  }
  .m_keyvisual__img {
    width: 100%;
  }
}
/* ローカルナビラッパー */
.m_localNavWrap {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.m_localNavWrap__inner {
  width: 1220px;
  margin: auto;
}
.m_localNavWrap__btn {
  display: none;
}
.m_localNavWrap__btnTarget {
  z-index: 9999;
  position: relative;
  width: 60px;
  height: 60px;
}
.m_localNavWrap__btnTarget span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 45%;
  height: 3px;
  margin: auto;
  border-radius: 2px;
  background: #000;
  transition: all 0.4s;
}
.m_localNavWrap__btnTarget span:nth-of-type(1) {
  top: -16px;
}
.m_localNavWrap__btnTarget span:nth-of-type(2) {
  top: 0;
}
.m_localNavWrap__btnTarget span:nth-of-type(3) {
  top: 16px;
}
.m_localNavWrap__btnTarget.active span:nth-of-type(1) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.m_localNavWrap__btnTarget.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.m_localNavWrap__btnTarget.active span:nth-of-type(3) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m_localNavWrap__nav {
  width: 980px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .m_localNavWrap {
    height: 60px;
    box-shadow: none;
  }
  .m_localNavWrap__inner {
    position: relative;
    width: 100%;
    height: 60px;
    z-index: 1;
    background: #fff;
    box-shadow: 0px 0px 8px 1px #aaa;
  }
  .m_localNavWrap__btn {
    display: block;
  }
  .m_localNavWrap__nav {
    position: absolute;
    left: 0;
    top: 60px;
    width: 220px;
    box-shadow: 4px 4px 4px #aaa;
    background: #fff;
  }
}
/* ローカルナビ */
.m_localNav {
  height: 60px;
  padding: 0 10px;
  border-top: 3px solid #0058a6;
  color: #333333;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.m_localNav:hover {
  background-color: #0058a6;
  color: #ffffff;
}
.m_localNav--otherSite {
  position: relative;
}
.m_localNav--otherSite::after {
  content: "\f08e";
  position: relative;
  top: 1px;
  display: block;
  line-height: 1;
  font-size: 16px;
  color: inherit;
  font-family: FontAwesome;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .m_localNav {
    height: 44px;
    padding: 0 20px;
    border-top: none;
    text-align: left;
  }
  .m_localNav br {
    display: none;
  }
}
/* コピー */
.m_topCopy {
  position: relative;
  background: rgba(254, 244, 239);
}
.m_topCopy::before,
.m_topCopy::after {
  content: "";
  position: absolute;
  left: 8px;
  display: block;
  width: 40px;
  height: 40px;
  border-left: 1px solid;
}
.m_topCopy::before {
  top: 8px;
  border-top: 1px solid;
}
.m_topCopy::after {
  bottom: 8px;
  border-bottom: 1px solid;
}
.m_topCopy__inner {
  position: relative;
  padding: 40px;
}
.m_topCopy__inner::before,
.m_topCopy__inner::after {
  content: "";
  position: absolute;
  right: 8px;
  display: block;
  width: 40px;
  height: 40px;
  border-right: 1px solid;
}
.m_topCopy__inner::before {
  top: 8px;
  border-top: 1px solid;
}
.m_topCopy__inner::after {
  bottom: 8px;
  border-bottom: 1px solid;
}
.m_topCopy__msg {
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .m_topCopy__inner {
    padding: 24px;
  }
}

/* お悩みラッパー */
.m_targetWrap {
}
.m_targetWrap__list + .m_targetWrap__msg {
  margin-top: 24px;
}

/* お悩み */
.m_target__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: -15px;
}
.m_target__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 20px) / 3);
  padding: 15px 0 15px 60px;
  font-weight: 700;
  line-height: 1.75;
  border-bottom: 2px dotted #707070;
}
.m_target__item::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(/resource/img/recruitment-support/halfway/recruit-accelerator-ico-theme.svg);
}
.m_target__itemInner {
}
.m_target__itemSpeech {
  background: url("../../img/recruitment-support/halfway/recruit-accelerator-halfway_target01.png") no-repeat center / contain;
  width: 460px;
  height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.m_target__itemSpeech_main {
  text-align: center;
  margin-top: -15px;
  color: #fff;
  font-size: 18px;
}
.m_target__itemSolution {
  display: flex;
  justify-content: space-between;
}
.m_target__itemSolution_arrow {
  background: url("../../img/recruitment-support/halfway/recruit-accelerator-halfway_target04.png") no-repeat center / contain;
  width: 175px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -16px;
  margin-left: 40px;
}
.m_target__itemSolution_arrowTxt {
  text-align: center;
  color: #ce4c36;
  font-size: 24px;
}
.m_target__itemSolution_people {
  display: flex;
  align-items: center;
}
.m_target__itemStr {
  border: 3px solid #ce4c36;
  border-radius: 15px;
  padding: 15px 14px 35px 14px;
}
.m_target__itemStr_ttl {
  border-bottom: 5px solid #ce4c36;
  padding-bottom: 10px;
}
.m_target__itemStr_ttlMain {
  text-align: center;
  color: #ce4c36;
  font-size: 18px;
  height: 52px;
}
.m_target__itemStr_msg {
  margin-top: 20px;
}
.m_target__itemStr_msgMain_sub {
  font-size: 14px;
  position: absolute;
  white-space: nowrap;
}
.m_target__itemStr_msgMain_subLink {
  color: #0000ff;
  text-decoration: underline;
}
.m_target__itemStr_msgMain_subLink:hover {
  opacity: 0.6;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .m_target__item {
    width: calc((100% - 20px) / 2);
  }
  /* .m_target__list{
    display: block;
    margin-top: 0px;
  }
  .m_target__item{
    width: 460px;
    margin: auto;
  }
  .m_target__item + .m_target__item{
    margin-top: 60px;
  }
  .m_target__itemInner{}
  .m_target__itemSpeech{  }
  .m_target__itemSpeech_main{}
  .m_target__itemStr_ttlMain {
    height: auto;
  } */
}
@media screen and (max-width: 599px) {
  .m_target__list {
    display: block;
    margin-top: 0px;
  }
  .m_target__item {
    width: 100%;
    /* max-width: 460px; */
    margin: auto;
  }
  .m_target__item + .m_target__item {
    margin-top: 2.6vw;
  }
  .m_target__itemInner {
  }
  .m_target__itemSpeech {
    max-width: 460px;
    width: 100%;
    padding: 20px;
    background: none;
    height: auto;
    background-color: #ce4c36;
    border-radius: 59px;
    position: relative;
  }
  .m_target__itemSpeech:after {
    position: absolute;
    content: "";
    border: 7px solid transparent;
    border-top: 15px solid #ce4c36;
    top: 100%;
    right: 25%;
  }
  .m_target__itemSpeech_main {
    margin-top: 0;
    font-size: 16px;
  }
  .m_target__itemSolution_arrow {
    margin-left: 0px;
  }
  .m_target__itemSolution_arrowTxt {
    white-space: nowrap;
    font-size: 20px;
  }
  .m_target__itemStr {
    padding: 15px 10px 15px 10px;
  }
  .m_target__itemStr_ttlMain {
    font-size: 16px;
  }
  .m_target__itemStr_msgMain_sub {
    position: relative;
    white-space: normal;
    text-indent: -1rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 399px) {
  .m_target__itemSpeech_main-update > br {
    display: none;
  }
}

/* 面倒な運用をアウトソーシングラッパー */
.m_operationWrap {
}
.m_operationWrap__item + .m_operationWrap__item {
  margin-top: 40px;
}

/* 面倒な運用をアウトソーシング */
.m_operation_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -30px;
}
.m_operation_item {
  width: 475px;
  border: 3px solid #ce4c36;
  padding: 15px 10px;
  margin-top: 30px;
}
.m_operation_itemTtl {
  border-bottom: 1px solid #ce4c36;
  padding-bottom: 15px;
}
.m_operation_itemTtl_main {
  font-size: 22px;
  color: #ce4c36;
  display: flex;
}
.m_operation_itemTtl_main_sub {
  background: url("../../img/recruitment-support/halfway/recruit-accelerator-halfway_operation.png") no-repeat center / contain;
  width: 36px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.m_operation_itemMsg {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .m_operation_list {
    display: block;
    margin-top: 0px;
  }
  .m_operation_item {
    margin: auto;
  }
  .m_operation_item + .m_operation_item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .m_operation_item {
    width: 100%;
  }
  .m_operation_itemTtl_main {
    font-size: 18px;
  }
  .m_operation_itemTtl_main_sub {
    max-width: 18px;
  }
}
/* 必要な理由ラッパー */
.m_requireWrap {
}
.m_requireWrap__item + .m_requireWrap__item {
  margin-top: 40px;
}

/* 必要な理由 */
.m_require {
}
.m_require__body::after {
  content: "";
  display: block;
  clear: both;
}
.m_require__img {
  float: right;
  margin-left: 24px;
  text-align: center;
  line-height: 0;
}
.m_require__img img {
  max-width: 100%;
  height: auto;
}
.m_require__bodyInner {
  overflow: hidden;
}
.m_require__msg + .m_require__msg {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .m_require__img {
    float: none;
    margin: 0 0 24px 0;
  }
}
/* 必要性 */
.m_necessary {
}
.m_necessary__ttl {
  margin-bottom: 20px;
  font-weight: bold;
}
.m_necessary__body::after {
  content: "";
  display: block;
  clear: both;
}
.m_necessary__img {
  float: right;
  margin-left: 24px;
  line-height: 0;
  text-align: center;
}
.m_necessary__img img {
  max-width: 100%;
  height: auto;
}
.m_necessary__bodyInner {
  overflow: hidden;
}
.m_necessary__msg + .m_necessary__msg {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .m_necessary__img {
    float: none;
    margin: 0 0 24px 0;
  }
}
/* 強み */
.m_strengths {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #ff8c27;
}
.m_strengths__ico {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.m_strengths__ico + .m_strengths__body {
  padding-left: 20px;
}
.m_strengths__body {
  flex: 1 1 auto;
  color: #fff;
}
.m_strengths__msg {
}
.m_strengths__msg--footNote {
  font-size: 12px;
}
.m_strengths__em {
  font-size: 24px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .m_strengths {
    padding: 12px;
  }
  .m_strengths__ico {
    flex: 0 0 56px;
    height: 56px;
  }
  .m_strengths__ico img {
    width: 28px;
    height: auto;
  }
  .m_strengths__ico + .m_strengths__body {
    padding-left: 12px;
  }
  .m_strengths__msg {
    font-size: 13px;
  }
}
/* クオリティラッパー */
.m_qualityWrap {
}
.m_qualityWrap__item + .m_qualityWrap__item {
  margin-top: 32px;
}

/* クオリティ */
.m_quality {
  display: flex;
  align-items: stretch;
}
.m_quality__numWrap {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  color: #59a7a2;
}
.m_quality__step {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.m_quality__num {
  line-height: 1;
  font-weight: bold;
  text-align: center;
  font-size: 100px;
  font-family: Arial, Helvetica, "sans-serif";
}
.m_quality__numWrap + .m_quality__body {
  padding-left: 64px;
  border-left: 2px solid #707070;
}
.m_quality__body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.m_quality__ttl {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 20px;
}
.m_quality__msg {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .m_quality__numWrap {
    flex: 0 0 120px;
  }
  .m_quality__numWrap + .m_quality__body {
    padding-left: 40px;
  }
  .m_quality__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .m_quality__numWrap {
    flex: 0 0 72px;
    align-items: flex-start;
  }
  .m_quality__numWrap + .m_quality__body {
    padding-left: 16px;
  }
  .m_quality__num {
    font-size: 50px;
  }
}
/* 実績ラッパー */
.m_achievementWrap {
}
.m_achievementWrap__msg {
  text-align: center;
}
.m_achievementWrap__msg + .m_achievementWrap__list {
  margin-top: 32px;
}
/* 実績 */
.m_achievement {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px;
  background: #ce4c36;
  text-align: center;
  color: #fff;
}
.m_achievement__inner {
}
.m_achievement__heading {
  margin-bottom: 16px;
}
.m_achievement__ttl {
  font-size: 16px;
}
.m_achievement__footNote {
  font-size: 13px;
}
.m_achievement__msg {
}
.m_achievement__em {
  font-size: 24px;
  line-height: 100%;
}

/* 価格ラッパー */
.m_priceWrap {
}
.m_priceWrap__body {
  display: flex;
  align-items: stretch;
  margin: -40px;
}
.m_priceWrap__item {
  display: flex;
  width: 50%;
  padding: 40px;
}
.m_priceWrap__item + .m_priceWrap__item {
  position: relative;
}
.m_priceWrap__item + .m_priceWrap__item::before {
  content: "+";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 1em;
  margin: auto 0;
  color: #707070;
  font-size: 80px;
  text-align: center;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.m_priceWrap__inner {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .m_priceWrap__body {
    display: block;
  }
  .m_priceWrap__item {
    width: 100%;
  }
  .m_priceWrap__item + .m_priceWrap__item::before {
    bottom: auto;
    right: 0;
    left: 0;
    width: 1em;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/* 価格 */
.m_price {
  border: 1px solid #41a9a5;
}
.m_price__ttl {
  padding: 12px 0;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #41a9a5;
}
.m_price__body {
  padding: 24px;
}
.m_price__price {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
.m_price__priceNum {
  line-height: 100%;
  font-size: 30px;
}
.m_price__price + .m_price__msg {
  margin-top: 16px;
}
.m_price__msg {
  font-weight: bold;
}
.m_price__msg + .m_price__ex {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #707070;
}
.m_price__ex + .m_price__footNote {
  margin-top: 12px;
}
.m_price__footNote {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .m_price__ttl {
    font-size: 18px;
  }
}
/* サイト構造ラッパー */
.m_siteWrap {
}
.m_siteWrap__body {
  line-height: 0;
  text-align: center;
}
.m_siteWrap__body img {
  max-width: 100%;
  height: auto;
}

/* サイトイメージラッパー */
.m_imageWrap {
}
.m_imageWrap__item + .m_imageWrap__item {
  margin-top: 24px;
}
.m_imageWrap__ttl {
  margin-bottom: 16px;
  color: #41a9a5;
}
.m_imageWrap__footer {
  margin-top: 64px;
}
/* サイトイメージ */
.m_image {
  text-align: center;
  line-height: 0;
}
.m_image img {
  max-width: 100%;
  height: auto;
}
/* Indeed求人画面イメージラッパー*/
.m_indeedWrap {
}
.m_indeedWrap__body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .m_indeedWrap__body {
    display: block;
  }
}
/* Indeed求人画面イメージ*/
.m_indeed__str {
  width: 547px;
}
.m_indeed__strTtl {
}
.m_indeed__strTtl_main {
  color: #ce4c36;
  font-size: 22px;
}
.m_indeed__strTtl_main_sub {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}
.m_indeed__strMsg {
  margin-top: 30px;
}
.m_indeed__strMsg_main {
}
.m_indeed__strMsg_main_sub {
  font-size: 14px;
  margin-top: 5px;
}
.m_indeed__img {
}
.m_indeed__imgMain {
  width: 400px;
  height: auto;
  cursor: pointer;
}
.m_indeed__imgMain:hover {
  transition: 0.3s;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .m_indeed__str {
    width: 100%;
  }
  .m_indeed__img {
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .m_indeed__strTtl_main {
    font-size: 18px;
  }
}
/* Indeed求人画面イメージ モーダル*/
.m_indeed_modalBg {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.m_indeed_modal_close {
  text-align: right;
  cursor: pointer;
}
.m_indeed_modal_closeTarget {
  width: 60px;
  height: 60px;
}
.m_indeed_modal {
  width: 95%;
  max-width: 997px;
  margin: auto;
  margin-top: 50px;
}
.m_indeed_modal_img {
  height: 380px;
  overflow: auto;
  cursor: default;
}
.m_indeed_modal_imgMain {
  vertical-align: bottom;
  max-width: 980px;
}
@media (min-height: 500px) {
  .m_indeed_modal_img {
    height: 380px;
    overflow: auto;
  }
}
@media (min-height: 600px) {
  .m_indeed_modal_img {
    height: 470px;
    overflow: auto;
  }
}
@media (min-height: 750px) {
  .m_indeed_modal_img {
    height: 600px;
    overflow: auto;
  }
}
@media (min-height: 900px) {
  .m_indeed_modal_img {
    height: 750px;
    overflow: auto;
  }
}
@media (min-height: 1100px) {
  .m_indeed_modal_img {
    height: 934px;
  }
}
@media screen and (max-width: 768px) {
  .m_indeed_modal_closeTarget {
    width: 30px;
    height: 30px;
  }
}
/* Indeed求人画面イメージ モーダルjs*/
.js_modal_active {
  visibility: visible;
  opacity: 1;
}
/* オプションサービスラッパー*/
.m_optionWrap {
}
.m_optionWrap__body {
  margin-top: 45px;
  overflow: hidden;
}

/* サービス */
.m_service {
  /* padding: 16px; */
  color: inherit;
  transition: 0.7s opacity;
}
.m_service:hover {
  /* opacity: .7; */
}
.m_service__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dotted #707070;
}
.m_service__ico {
  width: 50px;
  height: 50px;
  line-height: 0;
}
.m_service__ico img {
  width: 100%;
  height: auto;
}
.m_service__ttl {
  font-size: 20px;
  font-weight: bold;
}
.m_service__price {
  margin-top: 20px;
  color: #0058a6;
  font-weight: bold;
  font-size: 20px;
  text-align: right;
}
.m_service__price + .m_service__body {
  margin-top: 16px;
}
.m_service__msg + .m_service__msg {
  margin-top: 12px;
}
.m_service__msg + .m_service__tab {
  margin-top: 16px;
}
.m_service__tab {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  line-height: 1;
  color: #fff;
  font-size: 12px;
  background: #e6002d;
}
.m_service__footer {
  position: absolute;
  right: 0;
  bottom: calc((1em * 1.75 * -1) - 10px);
  margin-top: 30px;
}
.m_service__link {
  text-align: right;
}
.m_service__link a {
  color: #0058a6;
  font-weight: 700;
  text-decoration: underline;
}
.m_service__link a:hover {
  text-decoration: none;
}
.m_service--hasFooter {
  position: relative;
  /* padding: 20px 20px 72px; */
}
/* サービスご利用の流れラッパー */
.m_serviceFlowWrap {
}
.m_serviceFlowWrap__list {
  border-bottom: 1px solid #333;
}
.m_serviceFlowWrap__item + .m_serviceFlowWrap__item {
  padding-top: 64px;
  border-top: 1px solid #333;
}
.m_serviceFlowWrap__item + .m_serviceFlowWrap__item:before {
  content: "";
  position: absolute;
  left: 80px;
  top: -1px;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 35px solid #fff;
  z-index: 2;
}
.m_serviceFlowWrap__item + .m_serviceFlowWrap__item:after {
  content: "";
  position: absolute;
  left: 80px;
  top: 0px;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 35px solid #333;
}
.m_serviceFlowWrap__footer {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .m_serviceFlowWrap__item + .m_serviceFlowWrap__item:before {
    left: 0px;
  }
  .m_serviceFlowWrap__item + .m_serviceFlowWrap__item:after {
    left: 0px;
  }

  .m_service__heading {
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .m_service__ico {
    width: 40px;
    height: 40px;
  }
  .m_service__ttl {
    font-size: 16px;
  }
  .m_service__price {
    margin-top: 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .m_serviceFlowWrap__item + .m_serviceFlowWrap__item:before {
    border-left-width: 28px;
    border-right-width: 28px;
    border-top-width: 24px;
  }
  .m_serviceFlowWrap__item + .m_serviceFlowWrap__item:after {
    border-left-width: 28px;
    border-right-width: 28px;
    border-top-width: 24px;
  }
}
/* サービスご利用の流れ */
.m_serviceFlow {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-bottom: 24px;
}
.m_serviceFlow__numWrap {
  flex: 0 0 84px;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  color: #ce4c36;
}

.m_serviceFlow__step {
  text-align: center;
  font-size: 16px;
}
.m_serviceFlow__num {
  font-size: 100px;
  line-height: 1;
  text-align: center;
}
.m_serviceFlow__body {
  flex: 1 1 auto;
  padding-left: 24px;
}
.m_serviceFlow__heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.m_serviceFlow__ttl {
  font-weight: bold;
  font-size: 20px;
}
.m_serviceFlow__ttl + .m_serviceFlow__subTtl {
  margin-left: 12px;
}
.m_serviceFlow__subTtl {
  padding: 4px 1em;
  border-radius: 100px;
  color: #fff;
  line-height: 1;
  font-size: 15px;
  background: #c72914;
}
.m_serviceFlow__msg + .m_serviceFlow__msg {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .m_serviceFlow {
    padding-left: 0;
  }
  .m_serviceFlow__numWrap {
    flex: 0 0 56px;
  }
  .m_serviceFlow__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .m_serviceFlow {
    align-items: flex-start;
  }
  .m_serviceFlow__num {
    font-size: 50px;
  }
  .m_serviceFlow__body {
    padding-left: 10px;
  }
}
/* サービスオプション */
.m_serviceOpt {
  position: relative;
  display: flex;
  align-items: center;
}
.m_serviceOpt__ico {
  flex: 0 0 164px;
  color: #ce4c36;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
}
.m_serviceOpt__body {
  flex: 1 1 auto;
  padding-left: 24px;
}
.m_serviceOpt__heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.m_serviceOpt__ttl {
  font-weight: bold;
  font-size: 20px;
}
.m_serviceOpt__ttl + .m_serviceOpt__subTtl {
  margin-left: 12px;
}
.m_serviceOpt__subTtl {
  padding: 4px 1em;
  border-radius: 100px;
  color: #fff;
  line-height: 1;
  font-size: 15px;
  background: #c72914;
}
.m_serviceOpt__msg {
}
@media screen and (max-width: 768px) {
  .m_serviceOpt__ico {
    flex: 0 0 96px;
  }
}
@media screen and (max-width: 599px) {
  .m_serviceOpt {
    align-items: flex-start;
  }
  .m_serviceOpt__ico {
    flex: 0 0 64px;
    font-size: 16px;
  }
  .m_serviceOpt__subTtl {
    display: none;
  }
  .m_serviceOpt__body {
    padding-left: 16px;
  }
}

/* QAラッパー */
.m_faqWrap {
}
.m_faqWrap__footer {
  margin-top: 48px;
}

/* QA */
.m_faq {
  padding: 24px 0;
  border-top: 2px dotted;
}
.m_faq__q + .m_faq__a {
  margin-top: 20px;
}
.m_faq__q {
  display: flex;
  align-items: center;
  min-height: 52px;
  position: relative;
  padding-left: 64px;
  font-weight: bold;
}
.m_faq__q::before {
  content: url("../../img/recruitment-support/halfway/recruitment-website-production_q.svg");
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 52px;
  margin: auto 0;
  line-height: 0;
}
.m_faq__a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding-left: 64px;
}
.m_faq__a::before {
  content: url("../../img/recruitment-support/halfway/recruitment-website-production_a.svg");
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 52px;
  margin: auto 0;
  line-height: 0;
}
.m_faq__aMsg + .m_faq__aMsg {
  margin-top: 12px;
}

/* 利用規約 */
.m_serviceTerms {
  margin-top: 50px;
  text-align: center;
}
.m_serviceTerms_mainLink:hover {
  transition: 0.3s;
  opacity: 0.6;
}
@media screen and (max-width: 599px) {
  .m_serviceTerms {
    text-align: left;
  }
}

/* 関連サービス */
.m_relativeWrap {
}
.m_relativeWrap__body {
  overflow: hidden;
}

/****************
sidebar
****************/
.m_sidebar {
  font-size: 14px;
}
.m_sidebarTtl_main {
  color: #ffffff;
  background-color: #cc2914;
  font-weight: bold;
  padding: 5px 5px 5px 10px;
}
.m_sidebarsub {
  margin: 20px 0;
}
.m_sidebarsub_main {
  font-size: 14px;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 3px solid #cc2914;
  padding-left: 5px;
}
.m_sidebarSub_list {
  box-sizing: border-box;
  margin-left: 15px;
}
.m_sidebarSub_listItem {
  border-bottom: 1px solid #333;
}
.m_sidebarSub_listItem_tgt {
  display: flex;
  font-size: 13px;
  color: #333;
  padding: 5px 0;
}
.m_sidebarSub_listItem_tgt:before {
  content: "";
  display: inline-block;
  background-color: #333;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  top: 10px;
  flex-shrink: 0;
}
.m_sidebarSub_listItem_tgt:hover {
  color: #cc2914;
}
.m_sidebarSub_listItem_tgt:hover:before {
  background-color: #cc2914;
}
.m_sidebarBox_item {
  margin: 20px 0px;
}
.m_sidebarBox_itemTarget:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.m_sidebarBox_itemTarget_img {
  width: 200px;
  height: 200px;
  border: 1px solid #c7c7c7;
  box-sizing: border-box;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .m_sidebar {
    display: none;
  }
}
/****************
パーツ共通
****************/

.m_copy_main {
  text-align: center;
}
.m_copy_main {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .g_sec {
    width: 95%;
    float: none;
    margin: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .h_headingTtl_main {
    font-size: 21px;
  }
  .h_headingTtl_sub {
    font-size: 18px;
  }
  .m_case_ttlMain > br {
    display: block;
  }
  .m_copy_main {
    font-size: 15px;
  }
}

/****************
1,よくあるお悩み~problem
****************/
.m_problemContent {
  border: 3px solid #333;
  padding: 20px 50px;
}
.m_problemContent_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m_problemContent_list {
  width: 685px;
}
.m_problemContent_listItem {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  margin: 10px 0;
  position: relative;
  padding-left: 15px;
}
.m_problemContent_listItem:before {
  content: "";
  display: inline-block;
  background-color: #c72914;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 14px;
  left: 0px;
}
.m_problemContent_img {
}
.m_problemContent_imgMain {
  min-width: 181px;
  height: 203px;
}
@media screen and (max-width: 768px) {
  .m_problemContent_wrap {
    display: block;
  }
  .m_problemContent {
    padding: 20px;
  }
  .m_problemContent_list {
    width: auto;
  }
  .m_problemContent_img {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .m_problemContent {
    display: block;
  }
  .m_problemContent_listItem {
    font-size: 16px;
  }
  .m_problemContent_img {
    text-align: center;
  }
}
/****************
2,サービス詳細~service
****************/
.m_serviceContent {
  margin-top: 50px;
}
.m_serviceContent_boxWrap {
  display: flex;
  margin-bottom: 40px;
}
.m_serviceContent_boxCopy {
  flex: 2;
}
.m_serviceContent_boxCopy_Ttl {
  font-size: 22px;
}
.m_serviceContent_boxCopy_txt {
  font-size: 16px;
  margin-top: 20px;
}
.m_serviceContent_boxCopy_txt img {
  max-width: 100%;
  height: auto;
}
.m_serviceContent_boxCopy_txtLine {
  text-decoration: underline;
}
.m_serviceContent_boxCopy_txtSub {
  font-size: 14px;
  margin-top: 5px;
}
.m_serviceContent_boxCopy_indeed {
  border: 1px solid #333;
  padding: 10px 18px;
  margin-top: 20px;
}
.m_serviceContent_boxCopy_indeedTxt {
  margin-top: 10px;
}
.m_serviceContent_boxImg {
  flex: 1;
}
.m_serviceContent_lastCopy {
  text-align: center;
  margin-top: 50px;
}
.m_serviceContent_lastCopy_ttl {
  font-size: 22px;
  font-weight: bold;
  position: relative;
  padding: 0 40px;
  display: inline-block;
}
.m_serviceContent_lastCopy_ttl:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_side_left.png");
  position: absolute;
  left: 5px;
  bottom: 0;
}
.m_serviceContent_lastCopy_ttl:after {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_side_right.png");
  position: absolute;
  right: 5px;
  bottom: 0;
}
.m_serviceContent_lastCopy_txt {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .m_serviceContent_boxCopy {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .m_serviceContent_boxWrap {
    display: block;
  }
  .m_serviceContent_boxImg {
    text-align: center;
  }
  .m_serviceContent_boxCopy {
    padding-left: 0;
  }
  .m_serviceContent_boxCopy_Ttl {
    font-size: 18px;
    text-align: center;
  }
  .m_serviceContent_boxCopy_indeed {
    font-size: 15px;
  }
  .m_serviceContent_lastCopy_ttl {
    font-size: 19px;
  }
}
/****************
3,料金~price
****************/
.m_priceNum {
  text-align: center;
}
.m_priceNum_main {
  font-size: 50px;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  line-height: 1;
}
.m_priceNum_en {
  font-size: 30px;
  padding-left: 5px;
}
.m_priceNum_tax {
  font-size: 22px;
}
.m_priceNum_attn {
  display: inline-block;
}
.m_priceNum_attnTxt {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}
.m_priceOption {
  border: 1px solid #333;
  padding: 20px 30px;
  margin-top: 30px;
}
.m_priceOption_heading {
  display: flex;
  align-items: center;
}
.m_priceOption_headingBtn {
  margin-right: 20px;
}
.m_priceOption_headingBtn_target {
  background-color: #c72914;
  color: #fff;
  padding: 15px 10px;
  font-size: 14px;
}
.m_priceOption_headingTxt {
  color: #c72914;
  font-weight: bold;
  height: 50px;
  line-height: 1.3;
  text-align: left;
  margin-right: 40px;
}
.m_priceOption_headingTxt_sub {
  font-size: 16px;
}
.m_priceOption_headingTxt_main {
  font-size: 24px;
}
.m_priceOption_num {
  font-weight: bold;
}
.m_priceOption_numMain {
  font-size: 40px;
  font-family: Arial, Helvetica, "sans-serif";
}
.m_priceOption_numEn {
  font-size: 22px;
}
.m_priceOption_numTax {
  font-size: 16px;
}
.m_priceOption_copyMain {
  text-align: left;
  margin-top: 20px;
}
.m_priceOption_copySub {
  font-size: 14px;
}
.m_priceOption_btn {
  margin-top: 100px;
}
.m_priceOption_btnTarget {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #df002d;
  width: 436px;
  height: 79px;
  border-radius: 5px;
  font-size: 20px;
  margin: auto;
  font-weight: bold;
}
.m_priceOption_btnTarget:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_contact.png");
  width: 29px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding-top: 4px;
}
.m_priceOption_btnTarget:hover {
  opacity: 0.6;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .m_priceOption_heading {
    flex-wrap: wrap;
    justify-content: center;
  }
  .m_priceOption_btnTarget {
    width: 80%;
    max-width: 436px;
  }
}
@media screen and (max-width: 599px) {
  .m_priceNum_main {
    font-size: 30px;
  }
  .m_priceNum_en {
    font-size: 18px;
  }
  .m_priceNum_tax {
    font-size: 16px;
  }
  .m_priceOption_heading {
    flex-direction: column;
  }
  .m_priceOption_headingBtn {
    margin: 15px 0 0 0;
  }
  .m_priceOption_headingTxt {
    margin-right: 0;
    margin-top: 30px;
  }
  .m_priceOption_headingTxt_main {
    font-size: 20px;
  }
  .m_priceOption_numMain {
    font-size: 30px;
  }
  .m_priceOption_numEn {
    font-size: 18px;
  }
  .m_priceOption {
    padding: 20px;
  }
  .m_priceOption_btn {
    margin-top: 50px;
  }
}

/****************
4,実績紹介~achievement
****************/
.m_achievementContent {
  margin-top: 30px;
}
.m_achievementContent_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 786px;
  margin: auto;
}
.m_achievementBox {
  margin: 5px;
}
.m_achievementBoxWrap {
  box-sizing: border-box;
  padding: 20px 15px;
  color: #fff;
  background-color: #2eb0c4;
  width: 243px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.m_achievementBox_txtHeading {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.m_achievementBox_txtMain {
  font-size: 19px;
}
.m_achievementBox_txtMain_num {
  font-size: 34px;
}
.m_achievementSample {
  margin-top: 40px;
}
.m_achievementSample_heading {
  font-weight: bold;
  font-size: 22px;
}
.m_achievementSample_heading:before {
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  content: "\f00c";
  color: #2eb0c4;
  padding-right: 10px;
}
.m_achievementSample_content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.m_achievementSample_box {
  border: 1px solid #333;
  width: 479px;
}
.m_achievementSample_boxHeading_txt {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 5px 15px;
}
.m_achievementSample_boxTxt {
  padding: 20px 35px;
  line-height: 2;
}
.m_achievementSample_copy {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .m_achievementContent_wrap {
    width: 100%;
  }
  .m_achievementBoxWrap {
    margin: auto;
  }
  .m_achievementSample_content {
    display: block;
  }
  .m_achievementSample_box {
    width: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .m_achievementSample_heading {
    font-size: 18px;
    text-indent: -30px;
    padding-left: 30px;
  }
  .m_achievementBox_txtHeading {
    font-size: 14px;
  }
  .m_achievementContent_wrap {
  }
  .m_achievementBox {
  }
  .m_achievementBoxWrap {
    width: 219px;
  }
  .m_achievementSample_boxTxt {
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .m_achievementBoxWrap {
    width: 250px;
  }
  .m_achievementBox {
    margin-bottom: 10px;
  }
}
/***************
4,実績紹介　の　関連サービス
****************/
.m_achievement_relatedServ_headingTxt {
  font-weight: bold;
  font-size: 22px;
  margin-top: 40px;
}
.m_achievement_relatedServ_headingTxt:before {
  content: url("../../img/recruitment-support/recruitment_site_design/achievement_relatedServ.png");
  vertical-align: middle;
  padding-right: 10px;
}
.m_achievement_relatedServ_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.m_achievement_relatedServ_box {
  display: flex;
  border: 1px solid #ccc;
  width: 479px;
  box-shadow: 10px 10px 10px -5px rgb(0 0 0 / 50%);
  align-items: center;
  margin-bottom: 20px;
  margin-right: 10px;
}
.m_achievement_relatedServ_box:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.m_achievement_relatedServ_boxImg_main {
  width: 141px;
  height: 118px;
  vertical-align: bottom;
}
.m_achievement_relatedServ_boxTxt {
  display: flex;
}
.m_achievement_relatedServ_boxTxt_main {
  font-size: 16px;
  font-weight: bold;
  color: #353f64;
  padding-left: 30px;
}
.m_achievement_relatedServ_boxArrow {
  margin-left: auto;
  margin-right: 30px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .m_achievement_relatedServ_box {
    margin: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .m_achievement_relatedServ_headingTxt {
    font-size: 18px;
  }
  .m_achievement_relatedServ_box {
    box-shadow: none;
  }
  .m_achievement_relatedServ_boxImg {
    flex: 1.5;
  }
  .m_achievement_relatedServ_boxImg_main {
    width: 100%;
    height: auto;
  }
  .m_achievement_relatedServ_boxTxt {
    flex: 3;
    padding-left: 10px;
  }
  .m_achievement_relatedServ_boxTxt_main {
    padding-left: 5px;
    font-size: 14px;
    line-height: 1.4;
  }
  .m_achievement_relatedServ_boxTxt_main > br {
    disply: none;
  }
  .m_achievement_relatedServ_boxArrow {
    font-size: 16px;
    margin: 0 15px 5px;
  }
}
/****************
4,実際のWebサイト改善事例~case
****************/
.m_caseCopy_main {
  text-align: left;
}
.m_case_content {
  margin-top: 40px;
}
.m_case_box {
  border: 1px solid #333;
  position: relative;
}
.m_case_boxHeading {
  position: absolute;
  top: -15px;
  left: -1px;

  background: #333;
  color: #fff;
  padding: 5px 10px;
}
.m_case_boxWrap {
  padding: 30px 30px 30px 40px;
  line-height: 2;
}
.m_case_boxLine {
  list-style: disc;
}
.m_case_boxLine_marker {
  background: linear-gradient(transparent 60%, #ffe733 60%);
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 599px) {
  .m_case_boxWrap {
    padding: 30px 20px 20px 40px;
    font-size: 15px;
  }
}
/****************
5,サービスご利用の流れ~service_flow
****************/
.m_serviceFlow_line {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.m_serviceFlow_lineBlank {
  border-bottom: 1px solid #333;
  height: 140px;
  width: 90px;
}
.m_serviceFlow_lineNum {
  font-family: Arial, Helvetica, "sans-serif";
  color: #c72914;
  font-weight: bold;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.m_serviceFlow_lineNum:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -75px;
  border: 42px solid transparent;
  border-top: 35px solid #fff;
  z-index: 2;
}
.m_serviceFlow_lineNum:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -76px;
  border: 42px solid transparent;
  border-top: 35px solid #333;
}
.m_serviceFlow_line:last-of-type .m_serviceFlow_lineNum {
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}
.m_serviceFlow_line:last-of-type .m_serviceFlow_lineNum:before,
.m_serviceFlow_line:last-of-type .m_serviceFlow_lineNum:after {
  border: none;
}
.m_serviceFlow_lineNum_step {
  font-size: 16px;
}
.m_serviceFlow_lineNum_main {
  font-size: 100px;
  line-height: 1;
  width: 82px;
  text-align: center;
}
.m_serviceFlow_lineTxt {
  border-bottom: 1px solid #333;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: left;
}
.m_serviceFlow_lineTxt_heading {
  font-weight: bold;
  font-size: 22px;
}
.m_serviceFlow_lineTxt_copy {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .m_serviceFlow_lineBlank {
    width: 20px;
  }
  .m_serviceFlow_lineTxt_heading {
    font-size: 20px;
  }
  .m_serviceFlow_lineTxt_copy {
    margin-top: 5px;
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .m_serviceFlow_line {
    align-items: stretch;
    margin-top: 25px;
  }
  .m_serviceFlow_lineBlank {
    display: none;
  }
  .m_serviceFlow_lineNum {
    width: 60px;
    height: auto;
    justify-content: normal;
  }
  .m_serviceFlow_lineNum:before {
    content: "";
    position: absolute;
    bottom: -51px;
    border: 31px solid transparent;
    border-top: 22px solid #fff;
    z-index: 2;
  }
  .m_serviceFlow_lineNum:after {
    content: "";
    position: absolute;
    bottom: -52px;
    border: 31px solid transparent;
    border-top: 22px solid #333;
  }
  .m_serviceFlow_lineNum_main {
    font-size: 50px;
  }
  .m_serviceFlow_lineTxt {
    height: auto;
    padding-bottom: 15px;
  }
  .m_serviceFlow_lineTxt_heading {
    font-size: 18px;
  }
}
/****************
6,関連サービス~related_services
****************/
.m_relatedServices_content {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -15px;
}
.m_relatedServices_contentWrap {
  display: flex;
  width: 33.333%;
  padding: 15px;
}
.m_relatedServices_box {
  position: relative;
  width: 100%;
  border: 1px solid #333;
  padding: 15px 18px 80px;
  display: flex;
  flex-direction: column;
}
.m_relatedServices_boxHeading {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
.m_relatedServices_boxHeading-01:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_01.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading-02:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_02.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading-03:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_03.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading-04:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_04.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading-05:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_05.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading-06:before {
  content: url("../../img/recruitment-support/recruitment_site_design/icon_service_06.png");
  vertical-align: middle;
}
.m_relatedServices_boxHeading:before {
  padding-right: 5px;
}
.m_relatedServices_boxNum {
  color: #2eb0c4;
  font-size: 26px;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  text-align: right;
}
.m_relatedServices_boxNum_sub {
  font-size: 14px;
  margin-bottom: 5px;
}
.m_relatedServices_boxNum_txt {
  font-size: 18px;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.m_relatedServices_boxBtn {
  position: absolute;
  bottom: 15px;
  left: 18px;
  text-align: center;
  width: calc(100% - 36px);
  margin-top: auto;
}
.m_relatedServices_boxBtn_target {
  display: inline-block;
  color: #fff;
  background-color: #2eb0c4;
  width: 100%;
  padding: 10px 0;
  border-radius: 5px;
}
.m_relatedServices_boxBtn_target:hover {
  color: #2eb0c4;
  background: #fff;
  outline: 2px solid #2eb0c4;
}
@media screen and (max-width: 768px) {
  .m_relatedServices_content {
    justify-content: center;
    margin: 0;
  }
  .m_relatedServices_contentWrap {
    width: 100%;
    padding: 10px 0;
    margin: 0;
  }
  .m_relatedServices_box {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
  }
  .m_relatedServices_boxNum {
    margin-top: 0;
  }
  .m_relatedServices_boxNum_sub {
    margin-left: auto;
  }
  .m_relatedServices_boxBtn_target {
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .m_relatedServices_contentWrap {
    padding: 10px 0;
  }
  .m_relatedServices_box {
  }
  .m_relatedServices_boxHeading {
    font-size: 18px;
  }
  .m_relatedServices_boxNum_txt {
    font-size: 16px;
  }
}
/****************
6,関連サービス（IMD以外）~related_services
****************/
.m_relatedServices_ins {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.m_relatedServices_ins:after {
  content: "";
}
.m_relatedServices_insBox,
.m_relatedServices_ins:after {
  margin-bottom: 30px;
  width: 33.33%;
  text-align: center;
}
.m_relatedServices_insBox_txt {
  width: 211px;
  display: inline-block;
  text-indent: -22px;
  padding-left: 22px;
  text-align: left;
}
.m_relatedServices_insBox_txt:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.m_relatedServices_insBox_txtArrow {
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .m_relatedServices_ins {
    display: block;
  }
  .m_relatedServices_ins:after {
    display: none;
  }
  .m_relatedServices_insBox,
  .m_relatedServices_ins:after {
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
  }
  .m_relatedServices_insBox_txt {
    width: 100%;
    text-indent: 0px;
    padding-left: 0px;
  }
  .m_relatedServices_insBox_txt > br {
    display: none;
  }
}

/* サイドナビ実績 */
.m_sidePerformance {
}
.m_sidePerformance__ttl {
  margin-bottom: 10px;
  padding: 8px;
  color: #fff;
  background: #2d546b;
}
.m_sidePerformance__works {
}
.m_sidePerformance__worksItem + .m_sidePerformance__worksItem {
  margin-top: 16px;
}
.m_sidePerformance__works + .m_sidePerformance__btn {
  margin-top: 16px;
}
.m_sidePerformance__btn {
  display: flex;
  align-items: stretch;
  justify-content: center;
  font-size: 14px;
}
.m_sidePerformance__btn::before {
  content: "";
  display: block;
  width: 0;
  height: 2em;
}
.m_sidePerformance__btnTarget {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5em;
  border: 1px solid #f18440;
  border-radius: 100px;
  color: #fff;
  background: #f18440;
  transition: 0.3s color, 0.3s background;
}
.m_sidePerformance__btnTarget:hover {
  color: #f18440;
  background: #fff;
}
.m_sidePerformance__nums {
  padding: 8px;
  border: 3px solid #c8c8c8;
}
.m_sidePerformance__numsItem + .m_sidePerformance__numsItem {
  margin-top: 10px;
}
.m_sidePerformance__numsItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_sidePerformance__numTtl {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
}
.m_sidePerformance__numBody {
  font-size: 13px;
  line-height: 1;
}
.m_sidePerformance__numEm {
  margin-right: 3px;
  font-size: 22px;
  line-height: 100%;
}
.m_sidePerformance__footnotes {
  margin-top: 8px;
}
.m_sidePerformance__footnote {
  font-size: 12px;
}

/**********
utility
**********/
/*横幅*/
.u_col1 {
  width: 8.333%;
}
.u_col2 {
  width: 16.667%;
}
.u_col3 {
  width: 25%;
}
.u_col4 {
  width: 33.333%;
}
.u_col5 {
  width: 41.666%;
}
.u_col6 {
  width: 50%;
}
.u_col7 {
  width: 58.333%;
}
.u_col8 {
  width: 66.666%;
}
.u_col9 {
  width: 75%;
}
.u_col10 {
  width: 83.33%;
}
.u_col11 {
  width: 91.666%;
}
.u_col12 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .u_resMdCol1 {
    width: 8.333%;
  }
  .u_resMdCol2 {
    width: 16.667%;
  }
  .u_resMdCol3 {
    width: 25%;
  }
  .u_resMdCol4 {
    width: 33.333%;
  }
  .u_resMdCol5 {
    width: 41.666%;
  }
  .u_resMdCol6 {
    width: 50%;
  }
  .u_resMdCol7 {
    width: 58.333%;
  }
  .u_resMdCol8 {
    width: 66.666%;
  }
  .u_resMdCol9 {
    width: 75%;
  }
  .u_resMdCol10 {
    width: 83.33%;
  }
  .u_resMdCol11 {
    width: 91.666%;
  }
  .u_resMdCol12 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .u_resSmCol1 {
    width: 8.333%;
  }
  .u_resSmCol2 {
    width: 16.667%;
  }
  .u_resSmCol3 {
    width: 25%;
  }
  .u_resSmCol4 {
    width: 33.333%;
  }
  .u_resSmCol5 {
    width: 41.666%;
  }
  .u_resSmCol6 {
    width: 50%;
  }
  .u_resSmCol7 {
    width: 58.333%;
  }
  .u_resSmCol8 {
    width: 66.666%;
  }
  .u_resSmCol9 {
    width: 75%;
  }
  .u_resSmCol10 {
    width: 83.33%;
  }
  .u_resSmCol11 {
    width: 91.666%;
  }
  .u_resSmCol12 {
    width: 100%;
  }
}
/*間隙*/
.u_mb8 {
  margin-bottom: 8px;
}
.u_mb16 {
  margin-bottom: 16px;
}
.u_mb24 {
  margin-bottom: 24px;
}
.u_mb40 {
  margin-bottom: 40px;
}
.u_mb64 {
  margin-bottom: 64px;
}
.u_mr8 {
  margin-right: 8px;
}
.u_mt8 {
  margin-top: 8px;
}
.u_ml8 {
  margin-left: 8px;
}
/*フォントサイズ*/
.u_fs11 {
  font-size: 11px;
}
.u_fs10 {
  font-size: 10px;
}
.u_fs20 {
  font-size: 20px;
}
/*ポジション*/
.u_rel {
  position: relative;
}
/*文字間*/
.u_ls0 {
  letter-spacing: 0px;
}

@media screen and (max-width: 599px) {
  .u_resSmLs0 {
    letter-spacing: 0px;
  }
  .u_resSmLsN1 {
    letter-spacing: -1px;
  }
}

/* 上付き */
.u_super {
  font-size: 10px;
  vertical-align: super;
}

/*表示*/
.u_hide {
  display: none;
}
@media screen and (max-width: 768px) {
  .u_resMdHide {
    display: none;
  }
  .u_resMdInline {
    display: inline;
  }
}

@media screen and (max-width: 599px) {
  .u_resSmHide {
    display: none;
  }
  .u_resSmInline {
    display: inline;
  }
}

/* ----------------------------------------------------------
採用サイト制作ランディングページ改修
---------------------------------------------------------- */
.m_notice .m_heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 25px 10px;
  margin-bottom: 0;
  border-bottom: 5px solid #0058a6;
  letter-spacing: 0.1em;
}
.m_notice .m_heading__ttl {
  font-size: 18px;
}
.m_notice .m_heading__subTtl {
  font-size: 14px;
}
.m_notice__item {
  padding-bottom: 20px;
  border-bottom: 2px dotted #707070;
}
.m_notice__item + .m_notice__item {
  margin-top: 50px;
}
.m_notice__link {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: opacity 0.2s;
}
.m_notice__thum {
  width: 350px;
  flex-shrink: 0;
  line-height: 0;
}
.m_notice__thum img {
  width: 100%;
  height: auto;
}
.m_notice__ttl {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}
.m_notice__txt {
  margin-top: 15px;
  color: #000;
  font-weight: 500;
}
.m_notice__link:hover {
  opacity: 0.7;
}

.m_info__item {
  padding-bottom: 0;
}
.m_info__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px dotted #707070;
  transition: opacity 0.2s;
}
.m_info__thum {
  width: 200px;
  flex-shrink: 0;
  line-height: 0;
}
.m_info__thum img {
  width: 100%;
  height: auto;
}
.m_info__ttl {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.m_info__txt {
  margin-top: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
}
.m_info__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .m_notice__item + .m_notice__item {
    margin-top: 10.6vw;
  }
  .m_notice__link {
    flex-direction: column;
    align-items: start;
    gap: 5.3vw;
  }
  .m_notice__thum {
    width: 100%;
  }
  .m_notice__ttl {
    font-size: 18px;
  }
  .m_notice__txt {
    margin-top: 2.6vw;
  }

  .m_info__thum {
    display: none;
  }
  .m_info__ttl {
    font-size: 12px;
    text-decoration: underline;
  }
}

.m_overview__note {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .m_overview__note {
    text-align: left;
  }
}

.m_solution__ttl {
  font-size: 20px;
  text-align: center;
}
.m_solution__txt {
  margin-top: 20px;
  font-size: 16px;
}
.m_solution__txt > span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .m_solution__ttl {
    font-size: 18px;
  }
  .m_solution__txt {
    margin-top: 5.3vw;
  }
}
@media screen and (max-width: 599px) {
  .m_solution__ttl {
    text-align: left;
  }
  .m_solution__ttl br {
    display: none;
  }
}

.m_priceTop {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.m_price__lead {
  text-align: center;
}
.m_priceTop__ttl {
  padding: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  background-color: #0058a6;
}
.m_priceTop__ttl span {
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
}
.m_priceTop__cont {
  padding: 25px 20px 15px;
  background-color: #eef2f6;
}
.m_priceTop__note {
  font-weight: 700;
  text-align: center;
}
.m_priceTop__list {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.m_priceTop__listItem {
  width: 100%;
  padding: 20px 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.m_priceTop__listTtl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  color: #0058a6;
  font-weight: 700;
}
.m_priceTop__listTxt {
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .m_priceTop {
    margin-top: 20px;
  }
  .m_priceTop__ttl {
    padding: 15px;
    font-size: 22px;
  }
  .m_priceTop__ttl span {
    font-size: 14px;
  }
  .m_priceTop__cont {
    padding: 20px 15px 15px;
  }
  .m_priceTop__list {
    flex-direction: column;
    gap: 10px;
  }
  .m_priceTop__listItem {
    padding: 15px 10px;
  }
  .m_priceTop__listTtl {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .m_price__lead,
  .m_priceTop__note {
    text-align: left;
  }
}

.m_flow__step_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}

.m_flow__step_item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  width: 100%;
  text-align: center;
}

.m_flow__step_item:after {
  position: absolute;
  content: "";
  background: url(/resource/img/recruitment-support/halfway/leaveittome-web_workflow-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 40px;
  display: inline-block;
  top: 45%;
  right: -10px;
}

.m_flow__step_item:last-of-type:after {
  background: 0 0;
}

.m_flow__step_item:nth-of-type(1) {
  border-bottom: 5px solid #59a7a2;
}

.m_flow__step_item:nth-of-type(2) {
  border-bottom: 5px solid #4b9f9b;
}

.m_flow__step_item:nth-of-type(3) {
  border-bottom: 5px solid #3d949a;
}

.m_flow__step_item:nth-of-type(4) {
  border-bottom: 5px solid #218994;
}

.m_flow__step_item:nth-of-type(5) {
  border-bottom: 5px solid #1d7a84;
}

.m_flow__step_item_heading {
  color: #fff;
  font-weight: 700;
  padding: 2px 0;
}

.m_flow__step_item:nth-of-type(1) .m_flow__step_item_heading {
  background-color: #59a7a2;
}

.m_flow__step_item:nth-of-type(2) .m_flow__step_item_heading {
  background-color: #4b9f9b;
}

.m_flow__step_item:nth-of-type(3) .m_flow__step_item_heading {
  background-color: #3d949a;
}

.m_flow__step_item:nth-of-type(4) .m_flow__step_item_heading {
  background-color: #218994;
}

.m_flow__step_item:nth-of-type(5) .m_flow__step_item_heading {
  background-color: #1d7a84;
}

.m_flow__step_item_img {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_flow__step_item_txt {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}

.m_flow__format {
  margin-top: 100px;
}

.m_flow__format_Preparation {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: #f5f7ff;
  margin-top: 5px;
}

.m_flow__format_Preparation_heading {
  color: #1d7a84;
  font-size: 18px;
  font-weight: 700;
}

.m_flow__format_Preparation_list {
  margin-top: 5px;
}

.m_flow__format_Preparation_item {
  line-height: 1.4;
}

.m_flow__format_Preparation_img_main {
  vertical-align: bottom;
}

.m_flow__example_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.m_flow__example_box {
  padding: 10px 20px 15px;
}

.m_flow__example_box-Constitution {
  background-color: #f5f7ff;
  width: 480px;
}

.m_flow__example_box-specification {
  background-color: #f5f7ff;
  width: 480px;
}

.m_flow__example_box-top {
  background-color: #f5f5f5;
  width: 346px;
  margin-top: 20px;
  text-align: center;
}

.m_flow__example_box-bottom {
  background-color: #f5f5f5;
  width: 614px;
  margin-top: 20px;
  text-align: center;
}

.m_flow__example_box_heading {
  color: #1d7a84;
  font-size: 18px;
  font-weight: 700;
}

.m_flow__example_box-top .m_flow__example_box_heading,
.m_flow__example_box-bottom .m_flow__example_box_heading {
  color: #333;
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.m_flow__example_box_list {
  margin-top: 5px;
}

.m_flow__example_box_item {
  line-height: 1.4;
}

.m_flow__example_box_imgList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 658px;
  align-content: space-between;
}

.m_flow__example_box_imgItem {
  width: 180px;
}

.m_flow__example_box_imgItem_main {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .m_flow__step_list {
    display: block;
  }

  .m_flow__step_item {
    width: auto;
    background-color: #fff;
  }

  .m_flow__step_item:nth-of-type(1),
  .m_flow__step_item:nth-of-type(2),
  .m_flow__step_item:nth-of-type(3),
  .m_flow__step_item:nth-of-type(4),
  .m_flow__step_item:nth-of-type(5) {
    border-bottom: none;
  }

  .m_flow__step_item:after {
    background: 0 0;
  }

  .m_flow__step_item_txt {
    height: auto;
  }

  .m_flow__step_item_txt_main br {
    display: none;
  }

  .m_flow__format_Preparation {
    display: block;
  }

  .m_flow__format_Preparation_img {
    text-align: center;
    margin-top: 15px;
  }

  .m_flow__example_list {
    justify-content: center;
  }

  .m_flow__example_box-Constitution,
  .m_flow__example_box-specification {
    width: 100%;
  }

  .m_flow__example_box-specification {
    margin-top: 20px;
  }

  .m_flow__example_box-top {
    margin: auto;
    margin-top: 20px;
    width: 100%;
  }

  .m_flow__example_box-bottom {
    width: 100%;
  }

  .m_flow__example_box_imgList {
    height: auto;
    justify-content: center;
  }

  .m_flow__example_box_imgList:before {
    content: "";
    width: 190px;
    order: 1;
  }

  .m_flow__example_box_imgList:after {
    content: "";
    width: 190px;
  }

  .m_flow__example_box_imgItem {
    margin: 0 5px 10px;
  }
}

.m_works__lead {
  text-align: center;
}
.m_works__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin-top: 25px;
}
.m_works__link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: opacity 0.2s;
}
.m_works__link > * {
  color: #000;
}
.m_works__img {
  line-height: 0;
}
.m_works__img img {
  width: 100%;
  max-width: 100%;
  line-height: 0;
}
.m_works__cont {
  padding: 20px;
}
.m_works__ttl {
  position: relative;
  padding-left: 15px;
  font-size: 20px;
}
.m_works__ttlCompany {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.m_works__ttl::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #0058a6;
  border-radius: 2px;
}
.m_works__txt {
  margin-top: 20px;
  padding-left: 15px;
}
.m_works__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .m_works__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 5.3vw;
  }
  .m_works__item {
    padding: 6px;
  }
  .m_works__cont {
    padding: 20px 15px;
  }
  .m_works__ttl {
    padding-left: 10px;
    font-size: 16px;
  }
  .m_works__ttlCompany {
    font-size: 13px;
  }
  .m_works__ttl::before {
    width: 3px;
  }
  .m_works__txt {
    margin-top: 10px;
    padding-left: 10px;
  }
  .m_works__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 599px) {
  .m_works__lead {
    text-align: left;
  }
}