<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/* ===============
base
=============== */
/*初期設定CSS*/
.l_wrap{
  color:#333;
  font:400 16px "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  line-height:1.6;
  letter-spacing: 0;
}

/* ===============
layout
=============== */
/* メイン */
.l_main{}
.l_main__cont{}
.l_main__cont--full{
  width: auto;
}
@media screen and (max-width: 768px){
  .l_main{
    overflow: hidden;
  }
  .l_main__cont{
    width: 95%;
  }
  .l_main__cont--full{
    width: auto;
  }
  .l_main__cont--resMdFull{
    width: auto;
  }
}

/* 節 */
.l_section{}
.l_section__item{}
.l_section--primary{}
.l_section--primary &gt; .l_section__item + .l_section__item{
  margin-top: 64px;  
}
.l_section--service &gt; .l_section__item + .l_section__item{
  margin-top: 48px;  
}
.l_section--case &gt; .l_section__item + .l_section__item{
  margin-top: 24px;  
}
@media screen and (max-width: 768px){
  .l_section--primary &gt; .l_section__item{
    width: 95%;
    margin: 0 auto;
  }
  .l_section--primary &gt; .l_section__item + .l_section__item{
    margin-top: 32px;  
  }
}
/* リスト */
.l_list{}
.l_list__item{}
.l_list--footnote{}
.l_list--footnote &gt; .l_list__item + .l_list__item{
  margin-top: 4px;
}

/* グリッド */
.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--hasGutter{
  margin: -12px;
}
.l_grid--hasGutter .l_grid__item{
  padding: 12px;
}


/* ===============
module
=============== */
/* ラッパー */
.m_wrap{
  padding: 64px 0;
  background: #eee;
}
@media screen and (max-width: 768px){
  .m_wrap{
    padding-top: 0;
  }
}


/* ローカルナビ */
@media screen and (max-width: 768px){
  .m_localNavWrap{
    display: none;
  }
}

/* キービジュアル */
.m_keyvisual{
  display: flex;
  align-items: stretch;
  margin-bottom: 64px;
}
.m_keyvisual__img{
  flex: 0 0 600px;
  order: 1;
  line-height: 0;
}
.m_keyvisual__img img{
  width: 100%;
  height: auto;
}
.m_keyvisual__body{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.m_keyvisual__ttl{
  font-size: 28px;
  color: #5558A4;
  line-height: 1.6;
}
@media screen and (max-width: 768px){
  .m_keyvisual{
    display: block;
  }
  .m_keyvisual__body{
    padding: 12px;
  }
  .m_keyvisual__ttl{
    font-size: 20px;
  }
}
@media screen and (max-width: 599px){
  .m_keyvisual__ttl{
    font-size: 18px;
  }
}
/* コンテンツ */
.m_content{
  padding: 24px;
  background: #fff;
}
.m_content__item + .m_content__item{
  margin-top: 24px;
}
.m_content__listItem + .m_content__listItem{
  margin-top: 12px;
}
.m_content__listTtl{
  font-size: 14px;
  font-weight: bold;
}
.m_content__listTtl + .m_content__listMsg{
  margin-top: 4px;
}
.m_content__link{
  font-size: 14px;
  font-weight: bold;
  color: inherit;
}
.m_content--secondary{}
.m_content--secondary .m_content__item + .m_content__item{
  margin-top: 12px;
}
.m_content--secondary .m_content__listTtl{
  font-weight: normal;
}
.m_content--hasBorder{
  border-top: 8px solid #5558a4;
}

/* 見出し */
.m_heading{}
.m_heading__ttl{
  font-weight: bold;
  line-height: 1.4;
}
.m_heading__sub{
  font-weight: bold;
}
.m_heading--primary{
  margin-bottom: 64px;
  text-align: center;
}
.m_heading--primary .m_heading__ttl{
  font-size: 30px;
  letter-spacing: .2em;
}
.m_heading--secondary{
  margin-bottom: 20px;
}
.m_heading--secondary .m_heading__ttl{
  font-size: 24px;
  color: #5558A9;
}
@media screen and (max-width: 768px){
  .m_heading--primary{
    margin-bottom: 32px;
  }
  .m_heading--primary .m_heading__ttl{
    font-size: 20px;
    letter-spacing: 1px;
  }
  .m_heading--secondary{
    margin-bottom: 16px;
  }
  .m_heading--secondary .m_heading__ttl{
    font-size: 20px;
  }
}

/* ボタン */
.m_btn{
  display: flex;
  align-items: stretch;
  color: inherit;
}
.m_btn::before{
  content: "";
  display: block;
  width: 0;
}
.m_btn__target{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}
.m_btn--main{
  justify-content: center;
  font-size: 24px;
}
.m_btn--main::before{
  height: 4em;
}
.m_btn--main .m_btn__target{
  padding: 0 5em;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  background: #5558A4;
  letter-spacing: .1em;
}
@media screen and (max-width: 599px){
  .m_btn--main{
    font-size: 16px;
  }
  .m_btn--main .m_btn__target{
    width: 100%;
    padding: 0;
  }
}

/* 画像 */
.m_onlyImg{
  line-height: 0;
  text-align: center;
}

/* 画像リンク */
.m_imgLink{
  display: block;
  line-height: 0;
  text-align: center;
}
.m_imgLink img{
  max-width: 100%;
  height: auto;
}

/* 金額 */
.m_price{
  display: flex;
  align-items: flex-end;
}
.m_price__ttl{
  flex: 0 0 200px;
  font-size: 18px;
  font-weight: bold;
}
.m_price__body{
  flex: 0 0 240px;
  line-height: 1;
  text-align: right;
}
.m_price__num{
  font-size: 30px;
  color: #5558A9;
}
@media screen and (max-width: 599px){
  .m_price{
    display: block;
  }
  .m_price__ttl{
    margin-bottom: 8px;
  }
}

/* オペレータ派遣用価格表ラッパー */
.m_opPriceWrap{}
.m_opPrice{}

/* お客さまの声のラッパー */
.m_voiceWrap{}
.m_voiceWrap__item + .m_voiceWrap__item{
  margin-top: 20px;
}

/* お客さまの声 */
.m_voice{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  padding-left: 132px;
}
.m_voice::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 120px;
  height: 120px;
  margin: auto 0;
  background: no-repeat center center / contain;
}
.m_voice--01::before{
  background-image: url("/resource/img/online/education-online-support-service_voice_01.png");
}
.m_voice--02::before{
  background-image: url("/resource/img/online/education-online-support-service_voice_02.png");
}
.m_voice--03::before{
  background-image: url("/resource/img/online/education-online-support-service_voice_03.png");
}
@media screen and (max-width: 599px){
  .m_voice{
    display: block;
    min-height: none;
    padding-left: 0;
  }
  .m_voice::before{
    position: static;
    width: 100%;
    height: 88px;
    margin: 0 0 12px 0;
    text-align: center;
  }
}

/* オペレータ派遣の価格ラッパー */
.m_opPriceWrap{}
.m_opPriceWrap__item + .m_opPriceWrap__item{
  margin-top: 40px;
}
/* オペレータ派遣の価格 */
.m_opPrice{
  padding: 6px 0;
  border-bottom: 3px solid #5558A4;
}
.m_opPrice__heading{
  margin-bottom: 14px;
}
.m_opPrice__note{
  text-align: right;
  font-size: 14px;
}
.m_opPrice__ttl{
  padding: 8px;
  background: #5558A4;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 18px;
}
.m_opPrice__price{
  display: block;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}
.m_opPrice__priceNum{
  font-size: 30px;
  color: #5558A9;
}
.m_opPrice__price + .m_opPrice__contentList{
  margin-top: 14px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.m_opPrice__content + .m_opPrice__content{
  border-top: 1px solid #707070;
}
.m_opPrice__contentList + .m_opPrice__case{
  margin-top: 8px;
}

/* オペレータ派遣のサービス内容（価格内） */
.m_opContent{
  display: flex;
  align-items: stretch;
}
.m_opContent__ttl{
  flex: 0 0 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #F1F1F1;
  font-weight: bold;
  font-size: 14px;
}
.m_opContent__body{
  flex: 1 1 auto;
  padding: 16px;
  font-size: 14px;
}
.m_opContent__em{
  font-weight: bold;
  font-size: 16px;
  color: #5558A4;
}
@media screen and (max-width: 599px){
  .m_opContent{
    display: block;
  }
  .m_opContent__ttl{
    padding: 8px 16px;
  }
}
/* オペレータ派遣の事例（価格内） */
.m_opCase{
  display: flex;
  align-items: stretch;
  background: #EDEEF6;
}
.m_opCase__heading{
  flex: 0 0 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.m_opCase__ttl{
  padding: 6px 24px;
  background: #5558A4;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 14px;
}
.m_opCase__body{
  flex: 1 1 auto;
  padding: 16px;
  font-size: 14px;
}
.m_opCase__item{
  position: relative;
  padding-left: 1em;
}
.m_opCase__item::before{
  content: "・";
  position: absolute;
  left: 0;
  display: block;
}
.m_opCase__item + .m_opCase__item{
  margin-top: 6px;
}
@media screen and (max-width: 599px){
  .m_opCase{
    display: block;
  }
  .m_opCase__heading{
    padding-bottom: 0;
  }
}

/* 研修運営代行のサービス内容ラッパー */
.m_actingServices{
  padding: 0 64px;
}
.m_actingServices__heading{
  margin-bottom: 8px;
}
.m_actingServices__ttl{
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  color: #5558A4;
  font-weight: bold;
  font-size: 23px;
}
.m_actingServices__noteWrap{
  display: flex;
  justify-content: flex-end;
}
.m_actingServices__note{
  position: relative;
  padding-left: 1em;
  font-size: 14px;
}
.m_actingServices__note::before{
  content: "※";
  position: absolute;
  left: 0;
  display: block;
}
.m_actingServices__body{
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.m_actingServices__item + .m_actingServices__item{
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px){
  .m_actingServices{
    padding: 0;
  }
}
@media screen and (max-width: 599px){
  .m_actingServices__heading{
    margin-bottom: 20px;
  }
  .m_actingServices__ttl{
    font-size: 16px;
  }
  .m_actingServices__body{
    border-top: none;
    border-bottom: none;
  }
  .m_actingServices__item + .m_actingServices__item{
    margin-top: 24px;
    border-top: none;
  }
  .m_actingServices__ttl + .m_actingServices__noteWrap{
    margin-top: 8px;
  }  
  .m_actingServices__note{
    font-size: 12px;
  }
}
/* 研修運営代行のサービス内容 */
.m_actingService{
  display: flex;
  align-items: stretch;
}
.m_actingService__ttl{
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  font-weight: bold;
  font-size: 16px;
}
.m_actingService__body{
  flex: 1 1 auto;
  padding: 16px;
  font-size: 14px;
}
.m_actingService__list{}
.m_actingService__item + .m_actingService__item{
  margin-top: 8px;
}
.m_actingService__list + .m_actingService__note{
  margin-top: 16px;
}
.m_actingService__note{
  padding-left: 16px;
  font-size: 12px;
}
@media screen and (max-width: 599px){
  .m_actingService{
    display: block;
  }
  .m_actingService__ttl{
    justify-content: center;
    margin-bottom: 8px;
    padding: 0 0 8px 0;
    border-bottom: 1px solid #707070;
  }
  .m_actingService__body{
    padding: 0;
  }
}
/* 研修運営代行の価格ラッパー */
.m_actingPriceWrap{
  padding: 0 64px;
}
.m_actingPriceWrap__heading{}
.m_actingPriceWrap__note{
  text-align: right;
  font-size: 13px;
}
.m_actingPriceWrap__ttl{
  padding: 14px 0;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  background: #F1F1F1;
}
.m_actingPriceWrap__body{
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.m_actingPriceWrap__item + .m_actingPriceWrap__item{
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px){
  .m_actingPriceWrap{
    padding: 0;
  }
}
/* 研修運営代行の価格 */
.m_actingPrice{
  display: flex;
  align-items: stretch;
}
.m_actingPrice__ttl{
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  font-weight: bold;
  font-size: 14px;
}
.m_actingPrice__body{
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 16px;
}
.m_actingPrice__price{
  flex: 0 0 180px;
  text-align: right;
  font-weight: bold;
  color: #5558A4;
}
.m_actingPrice__priceNum{
  line-height: 100%;
  font-size: 20px;
}

.m_actingPrice__price + .m_actingPrice__unit{
  margin-left: 20px;
}
.m_actingPrice__unit{
  flex: 1 1 auto;
  font-size: 13px;
}
@media screen and (max-width: 768px){
  .m_actingPrice__ttl{
    flex: 0 0 160px;
  }
  .m_actingPrice__price{
    flex: 0 0 120px;
  }
}
@media screen and (max-width: 599px){
  .m_actingPrice__body{
    display: block;
  }
  .m_actingPrice__ttl{
    flex: 1 1 90px;
    padding: 16px 8px;
    font-size: 14px;
  }
  .m_actingPrice__body{
    padding: 16px 0;
  }
  .m_actingPrice__unit{
    text-align: right;
    margin-left: 0;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* サイドナビ */
.m_sideNav{}
.m_sideNav__item + .m_sideNav__item{
  margin-top: 32px;
}
.m_sideNav__item{
  padding: 16px;
  background: #fff;
}
.m_sideNav__ttl{
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid;
  font-size: 14px;
  font-weight: bold;
}
.m_sideNav__body + .m_sideNav__footer{
  margin-top: 20px;  
}
.m_sideNav__footer{
  font-size: 12px;
}
/* サイドナビ実績 */
.m_sidePerformance{}
.m_sidePerformance__item + .m_sidePerformance__item{
  margin-top: 12px;
}
.m_sidePerformance__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_sidePerformance__ttl{
  font-size: 16px;
  font-weight: bold;
}
.m_sidePerformance__body{
  line-height: 1;
}
.m_sidePerformance__num{
  color: #5558A4;
  font-size: 24px;
}

/* サイドナビコンテンツラインナップのリスト */
.m_sideLineupList{}
.m_sideLineupList__item + .m_sideLineupList__item{
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #CBCBCB;
}

/* サイドナビコンテンツラインナップ */
.m_sideLineup{
  display: flex;
  align-items: center;
  color: inherit;
  transition: .3s opacity;
}
.m_sideLineup:hover{
  opacity: .7;
}
.m_sideLineup__ttl{
  flex: 1 1 auto;
  line-height: 1.3;
  font-size: 12px;
  font-weight: bold;
}
.m_sideLineup__img{
  position: relative;
  flex: 0 0 64px;
  height: 64px;
  overflow: hidden;
}
.m_sideLineup__img img{
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 64px;
  transform: translate(-50%, -50%);
}

/* モーダル */
.m_overlay{
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  transition: 1s opacity;
}
.m_overlay.is_show{
  opacity: 1;
}

/* モーダル */
.m_modal{
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  padding: 24px;
  background: #fff;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 1s opacity;
}
.m_modal.is_show{
  opacity: 1;
}
.m_modal__body{
  display: block;
  width: 790px;
  height: 540px;
}
.m_modal__btn{
  position: absolute;
  right: 2px;
  top: 2px;
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
/* ===============
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_mb32{
  margin-bottom: 32px;
}
.u_mb40{
  margin-bottom: 40px;
}
/* 要素を出す/隠す */
.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;
  }
}</pre></body></html>