<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

================================*/
body{
  color: #333;
  counter-reset: voiceNo serviceNo mainVoiceNo stepNum;
  font: 500 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;
}

@media screen and (max-width: 768px){
  body { width: 100%; }
}

#base {
  width: auto;
}

div#cont {
  margin: 0;
}

@media screen and (max-width:768px) {
  .to_page_top {
    bottom: 80px !important;
  }
}


/*===============================

    layout

================================*/
.l_wrap {
  margin: auto;
  max-width: 1200px;
}

.l_wrap__container {
  background-color: #f7f7f7;
  background-image: url("/resource/img/online-support/education-online-support-bg.png");
  background-position: right 0px top -500px;
  background-repeat: repeat-y;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 100px;
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}

.l_wrap__main {
  flex: 0 0 auto;
  order: 2;
  width: 920px;
}

.l_wrap__navi {
  flex: 0 0 auto;
  order: 1;
  width: 230px;
}

/*supports (position: sticky) {
  .l_wrap__navi {
    max-height: 80vh;
    overflow-y: scroll;
    position: sticky;
    top: 10px;
  }
}*/

.l_main {
  display: block;
}
.l_main &gt; *:last-child { margin-bottom: 0; }

@media screen and (max-width:768px) {
  .l_wrap__container {
    background-image: none;
  }
  .l_wrap__main {
    margin: auto;
    width: 90%;
  }
  .l_wrap__navi { display: none; }
}

/*
    セクション
================================*/
.l_section {}
.l_section &gt; *:last-child { margin-bottom: 0; }

.l_section--primary {}

.l_section--primary &gt; .l_section__item:not(:first-of-type) { margin-top: 100px; }
.l_section__item {}
.l_section__item &gt; *:last-child { margin-bottom: 0; }
.l_container:not(:first-of-type) { margin-top: 80px; }

@media screen and (max-width: 599px) {
  .l_section--primary &gt; .l_section__item:not(:first-of-type) { margin-top: 70px; }
}


/*
    ナビ
================================*/
.l_nav{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.l_nav__item{
  display: flex;
  width: 100%;
}
.l_nav__target{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.l_nav--main{
  border-left: 1px dotted;
  border-right: 1px dotted;
}
.l_nav--main .l_nav__item + .l_nav__item{
  border-left: 1px dotted;
}
@media screen and (max-width: 768px){
  .l_nav--main{
    flex-wrap: wrap;
    margin: -1px;
  }
  .l_nav--main .l_nav__item{
    width: 33.333%;
    border: 1px dotted;
  }
}




/*
    grid
================================*/
.l_grid{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.l_grid__item{
  display: flex;
}
.l_grid__item--01{
  order: 1;
}
.l_grid__item--02{
  order: 2;
}
.l_grid__item--03{
  order: 3;
}
.l_grid__item--04{
  order: 4;
}
.l_grid__item--05{
  order: 5;
}
.l_grid__item--06{
  order: 6;
}
.l_grid__inner{
  display: block;
  width: 100%;
}
.l_grid--choose .l_grid__item{
  width: 33.333%;
}

/* 配信サポート */
.l_grid--deliverySupport{
  margin: -16px;
}
.l_grid--deliverySupport .l_grid__item{
  width: 33.333%;
  padding: 16px;
}
.l_grid--caseTitle {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@supports (display: grid) {
  .l_grid--deliverySupport{
    margin: 0;
    gap: 32px;
  }
  .l_grid--deliverySupport .l_grid__item{
    padding: 0;
    width: calc(100% / 3 - (32px * 2 / 3));
  }
}

/* サービス一覧 */
.l_grid--serviceList {
  margin: -15px;
}
.l_grid--serviceList .l_grid__item {
  padding: 15px;
  width: 50%;
}

@supports (display: grid) {
  .l_grid--serviceList {
    margin: 0;
    gap: 30px;
  }
  .l_grid--serviceList .l_grid__item{
    padding: 0;
    width: calc(100% / 2 - (30px / 2));
  }
}

/* ご支援イメージ */
.l_grid--supportImage{
  margin: -20px;
}
.l_grid--supportImage .l_grid__item{
  width: 33.333%;
  padding: 20px;
}

@supports (display: grid) {
  .l_grid--supportImage{
    margin: 0;
    gap: 40px;
  }
  .l_grid--supportImage .l_grid__item{
    padding: 0;
    width: calc(100% / 3 - (40px * 2 / 3));
  }
}

@media screen and (max-width: 768px){
  .l_grid--choose .l_grid__item{
    width: 50%;
  }
  /* 配信サポート */
  .l_grid--deliverySupport .l_grid__item{
    width: 50%;
  }
  @supports (display: grid) {
    .l_grid--deliverySupport .l_grid__item{
      width: calc(100% / 2 - (32px / 2));
    }
  }
  /* サービス一覧 */
  .l_grid--serviceList .l_grid__item {
    padding: 15px;
    width: 100%;
  }
  
  @supports (display: grid) {
    .l_grid--serviceList {
      justify-content: center;
    }
    .l_grid--serviceList .l_grid__item{
      padding: 0;
      width: 100%;
      max-width: 400px;
    }
  }
/* ご支援イメージ */
  .l_grid--supportImage .l_grid__item{
    width: 100%;
    padding: 20px;
  }

  @supports (display: grid) {
    .l_grid--supportImage .l_grid__item{
      padding: 0;
      width: 100%;
    }
  }
}
@media screen and (max-width: 599px){
  .l_grid--choose .l_grid__item{
    width: 100%;
  }
  .l_grid--deliverySupport .l_grid__item{
    width: 100%;
  }
}



/*===============================

    module

================================*/
/*
    キービジュアル
================================*/
.m_keyvisual{
  position: relative;
  width: 100%;
  height: 400px;
  background: url("/resource/img/online-support/background_education-online-support-service.jpg") no-repeat center center / cover;
}
.m_keyvisual__img{
  position: absolute;
  display: block;
  width: 980px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.m_keyvisual__img &gt; img{
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .m_keyvisual{
    height: 0;
    padding-top: calc(100% * 400 / 980);
    background-image: url("/resource/img/online-support/__iy_topimg_education-online-support-service_2.jpg");
    background-position: right, center;
  }
  .m_keyvisual__img{
    display: none;
  }
}
@media screen and (max-width: 599px){
  .m_keyvisual{
    padding-top: calc(100% * 580 / 980);
  }
}


/*
    ローカルナビ
================================*/
/* ナビ */
.m_localNavWrap{
  align-items: center;
  box-shadow: 0 4px 4px #aaa;
  display: flex;
  justify-content: center;
  position: relative;
}
.m_localNavWrap__logo{
  flex: 0 0 140px;
  text-align: center;
}
.m_localNavWrap__logoLink{
  color: inherit;
  text-decoration: none;
  transition: .3s opacity;
}
.m_localNavWrap__logoLink:hover{
  opacity: .7;
  color: inherit;
  text-decoration: none;
}
.m_localNavWrap__body{
  flex: 0 0 980px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.m_localNavWrap__nav{
  flex: 1 0 auto;
}
.m_localNavWrap__btnList{
  flex: 0 0 140px;
  padding: 0 8px;
}
.m_localNavWrap__btn + .m_localNavWrap__btn{
  margin-top: 6px;
}
@media screen and (max-width: 768px){
  .m_localNavWrap{
    position: relative;
    display: block;
  }
  .m_localNavWrap__body{
    display: block;
  }
  .m_localNavWrap__logo{
    display: none;
  }
  .m_localNavWrap__btnList{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, .7);
  }
  .m_localNavWrap__btn + .m_localNavWrap__btn{
    margin: 0 0 0 16px;
  }
}

/* ローカルナビ */
.m_localNav{
  height: 5em;
  text-align: center;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: .3s opacity;
}
.m_localNav:hover{
  opacity: .7;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .m_localNav{
    height: 4.5em;
  }
}
@media screen and (max-width: 599px){
  .m_localNav{
    font-size: 13px;
  }
}

/*
    サイドナビ
================================*/
.m_sideNavi {}
.m_sideNavi__item {
  background-color: #fff;
  padding: 10px;
}

.m_sideNavi__item:not(:first-of-type) { margin-top: 20px; }

.m_sideNavi__title {
  border-bottom: 1px solid #000;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.m_sideServiceList {}
.m_sideServiceList__item {
  border-bottom: 1px solid #C7C7C7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.m_sideServiceList__item:last-of-type { margin-bottom: 0; }
.m_sideServiceList__link {
  align-items: center;
  color: currentColor;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: bold;
  transition: .3s opacity;
}

.m_sideServiceList__link:hover {
  opacity: .7;
  text-decoration: none;
}


.m_sideServiceList__title {
  flex: 1 1 auto;
}

.m_sideServiceList__image {
  flex: 0 0 50px;
  line-height: 0;
}

/* 活用事例 */
.m_sideCase {}
.m_sideCase__item {
  border-bottom: 1px solid #C7C7C7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.m_sideCase__item:last-of-type { margin-bottom: 0; }

.m_sideCase__link {
  color: currentColor;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  transition: .3s opacity;
}

.m_sideCase__link:hover {
  opacity: .7;
  text-decoration: none;
}


/*
    リスト
================================*/
.m_list { margin-bottom: 30px; }
.m_list &gt; *:last-child { margin-bottom: 0; }
.m_list__item {}

/* 1文字分のマーク付き（箇条書き） */
.m_list--hasMark {}

.m_list--hasMark &gt; .m_list__item {
  padding-left: 1em;
  text-indent: -1em;
}
.m_list--hasMark &gt; *:last-child { margin-bottom: 0; }


.m_list--footnote { margin: 16px 0; }

/* 脚注 */
.m_footnote{
  font-size: 12px;
  color: #4d4d4d;
}

/* アイコン */
.m_hasIco{
  position: relative;
  display: block;
}
.m_hasIco::before{
  content: "";
  position: absolute;
  left: 0;
  display: block;
}
.m_hasIco--dot{
  padding-left: 1em;
}
.m_hasIco--dot::before{
  content: "\30fb";/* ・ */
}
.m_hasIco--ast{
  padding-left: 1em;
}
.m_hasIco--ast::before{
  content: "\203b";/* ※ */
}



/*
    リンク
================================*/
.m_linkWrapper {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  margin: 50px 0;
}

.m_linkWrapper--align_left { justify-content: flex-start; }
.m_linkWrapper--align_center { justify-content: center; }
.m_linkWrapper--align_right { justify-content: flex-end; }

.m_link {
  display: inline-block;
}

/* ボタン */
.m_link--btn {
  background-color: #fff;
  border: 2px solid #10a4d3;
  border-radius: 50px;
  color: #10a4d3;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 20px;
  transition: .3s;
}

.m_link--btn__lg {
  font-size: 20px;
  padding: 20px 85px;
}

@media screen and (max-width: 768px){
  .m_link--btn__lg { padding: 20px 50px; }
}

.m_link--btn.__theme_violet {
  border-color: #5558a4;
  color: #5558a4;
}

.m_link--btn.__theme_violet.__rev {
  background-color: #5558a4;
  border-color: #5558a4;
  color: #fff;
}

.m_link--btn:focus,
.m_link--btn:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* 矢印付き */
.m_link--hasAngle {
  align-items: center;
  display: flex;
  justify-content: center;
}
.m_link--hasAngle::after {
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  display: block;
  height: 8px;
  margin-left: 20px;
  transform: rotate(45deg);
  width: 8px;
}

.m_link--hasAngle__down::after { transform: rotate(135deg); }

/* バナーリンク */
.m_link--banner {
  transition: .3s;
}

.m_link--banner:hover { opacity: 0.6; }

.m_link--banner &gt; img { display: block; }


/*
    ボタン
================================*/
.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: 6px solid #5558A4;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  background: #5558A4;
  letter-spacing: .1em;
  transition: .3s color, .3s background;
}
.m_btn--main .m_btn__target:hover{
  background: #fff;
  color: #5558A4;
}
.m_btn--keyvisual{
  font-size: 13px;
}
.m_btn--keyvisual::before{
  height: 1.8em;
}
.m_btn--keyvisual &gt; .m_btn__target{
  width: 100%;
  border-radius: 8px;
  background: #5558A4;
  color: #fff;
  transition: .3s opacity;
}
.m_btn--keyvisual &gt; .m_btn__target:hover{
  opacity: .7;
}
@media screen and (max-width: 768px){
  .m_btn--keyvisual{
    width: 33.333%;
  }
  .m_btn--keyvisual::before{
    height: 2.5em;
  }
}
@media screen and (max-width: 599px){
  .m_btn--main{
    font-size: 16px;
  }
  .m_btn--main .m_btn__target{
    width: 100%;
    padding: 0;
  }
}


/*
    画像
================================*/
.m_imageBoxWrapper {
  background-color: #F6F6F6;
  border-radius: 10px;
  padding: 10px;
}

.m_imageBox {
  display: flex;
  flex-wrap: wrap;
}

.m_imageBox--align_left { justify-content: flex-start; }
.m_imageBox--align_center { justify-content: center; }
.m_imageBox--align_right { justify-content: flex-end; }

.m_imageBox--caption {
  font-size: 13px;
  font-weight: bold;
}

.m_imageBox__image {
  display: block;
  height: auto;
  max-width: 100%;
}


/*
    見出し
================================*/
.m_heading {}

.m_heading--primary {}

.m_heading--primary &gt; .m_heading__title {
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.m_heading--primary .m_heading__subTxt {
  display: block;
  font-size: 20px;
}

/* 左に線 */
.m_heading--hasBorder { margin-bottom: 30px; }

.m_heading--hasBorder.__border_left {}

.m_heading--hasBorder.__border_left &gt; .m_heading__title {
  border-left: 6px solid #8c8802;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .m_heading--primary &gt; .m_heading__title { font-size: 30px; }
  .m_heading--hasBorder { margin-bottom: 20px; }
  .m_heading--hasBorder.__border_left &gt; .m_heading__title { font-size: 20px; }
} 

/*
    イベント例
================================*/
.m_example {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  padding: 50px 30px;
}
.m_example &gt; *:last-child { margin-bottom: 0; }

.m_example__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 30px;
}

/* イベント例 */
.m_list--example {
  display: flex;
  flex-wrap: wrap;
}

.m_list--example &gt; .m_list__item {
  color: #8c8802;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: bold;
}

.m_list--example &gt; .m_list__item:not(:last-of-type) {
  display: flex;
  flex-wrap: wrap;
}

.m_list--example &gt; .m_list__item:not(:last-of-type)::after {
  content: "\ff0f";/* ／（全角スラッシュ） */
  display: block;
  margin: auto;
}


/*
    サービスindex
================================*/
.m_service {}
.m_service &gt; *:last-child { margin-bottom: 0; }

.m_proxyService  {}
.m_deliverySupport {}

.m_service__item {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 50px 30px;
}

.m_service__titleBox:not(.__sub) {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.m_service__title:not(.__sub) {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.35;
}
.m_service__image {}
.m_service__image &gt; img {
  border-radius: 10px;
  display: block;
}

.m_service__titleBox.__sub {
  margin-bottom: 15px;
}
.m_service__title.__sub {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.m_service__tag {
  align-items: center;
  background-color: #ededed;
  border-radius: 25px;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: bold;
  justify-content: center;
  line-height: 1;
  margin-bottom: 15px;
  padding: 8px 10px;
  max-width: 9em;
}

.m_service__body {}

.m_service__body .m_list { font-size: 14px; }

.m_service__body .m_list &gt; .m_list__item:not(:last-of-type) { margin-bottom: 10px; }

.m_proxyService .m_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m_proxyService .m_list &gt; .m_list__item {
  width: 50%;
}

.m_service__messageWrap {
  background-color: #f5f4da;
  border-radius: 5px;
  padding: 20px;
}

.m_service__message {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}

/* 配信サポート */
.m_deliverySupport__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.m_deliverySupport__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.m_deliverySupport__body .m_service__messageWrap { flex-grow: 1; }

@media screen and (max-width: 768px) {
  .m_service__titleBox:not(.__sub) {
    display: block;
    margin-bottom: 30px;
  }
  .m_service__title:not(.__sub) {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .m_service__image {
    display: flex;
    justify-content: center;
  }
  .m_proxyService .m_list { display: block; }
  .m_proxyService .m_list &gt; .m_list__item { width: 100%; }
}

/*
    活用事例
================================*/
.m_case {}
.m_case &gt; *:last-child { margin-bottom: 0; }

.m_case__item {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 50px 30px;
}

.m_case__item .m_linkWrapper { margin: 0; }


.m_heading--case {}

.m_heading--case &gt; .m_heading__title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.538;
}

.u_note--gold { color: #8c8802; }

.m_caseDetail {
  border: 1px solid #c7c7c7;
  border-bottom: none;
}

.m_caseDetail__body {
  display: flex;
  flex-wrap: wrap;
}

.m_caseDetail__title {
  align-items: center;
  background-color: #ededed;
  border-right: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: bold;
  justify-content: center;
  width: 145px;
}

.m_caseDetail__contents {
  align-items: center;
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding: 10px;
  width: 100%;
}

.m_caseDetail__contents .m_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
}


.m_caseDetail__contents .m_list &gt; .m_list__item:not(:first-child:last-child) { width: 50%; }
/*.m_caseDetail__contents .m_list &gt; .m_list__item:only-child { width: 100%; } (兄弟要素がない場合)*/

.m_caseDetail__contents .m_list &gt; .m_list__item:not(:last-child):not(:nth-last-child(2)) { margin-bottom: 10px; }


@media screen and (max-width: 768px) {
  .l_grid--caseTitle { display: block; }
  .m_heading--case &gt; .m_heading__title { font-size: 20px; }
  .m_heading--case &gt; .m_heading__title br { display: none; }
  .m_case__item { padding: 40px 20px; }
  .m_case__item .m_linkWrapper { margin-top: 20px; }
  .m_case__item .m_link { width: 100%; }
  .m_case__item .m_link--btn { justify-content: center; }
  .m_caseDetail { border-width: 1px 1px 0; }
  .m_caseDetail__body { display: block; }
  .m_caseDetail__title {
    border-width: 1px;
    padding: 10px;
    width: calc(100% + 1px);
  }
  .m_caseDetail__contents { border-width: 1px; }
  .m_caseDetail__contents .m_list { display: block; }
  .m_caseDetail__contents .m_list &gt; .m_list__item:not(:first-child:last-child) { width: 100%; }
  .m_caseDetail__contents .m_list &gt; .m_list__item:not(:last-child) { margin-bottom: 10px; }
}


/*
    サービス一覧
================================*/
.m_serviceList {}
.m_serviceList &gt; *:last-child { margin-bottom: 0; }

.m_heading--serviceList {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.m_heading--serviceList:not(.__oneLine):after {
  content: url("/resource/img/online-support/education-online-support-icon.png");
  display: block;
  height: 25px;
  margin-left: 20px;
  position: absolute;
  top: calc(50% - 8px);
  right: 6px;
  transform: translateY(-50%) translateY(8px);
  width: 25px;
}

.m_heading--serviceList.__oneLine:after {
  content: url("/resource/img/online-support/education-online-support-icon.png");
  display: block;
  height: 25px;
  margin-left: 20px;
  position: absolute;
  top: 4px;
  right: 6px;
  width: 25px;
}


.m_serviceList__item {}

.m_serviceList__link {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  color: currentColor;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  overflow: hidden;
  transition: .3s opacity;
}

.m_serviceList__link:hover {
  opacity: .7;
  text-decoration: none;
}

.m_heading--serviceList {}

.m_serviceList__contents {
  padding: 0 30px 30px;
}

.m_serviceList__image {
  line-height: 0;
  margin-bottom: 30px;
}

.m_serviceList__image &gt; img {
  height: auto;
  max-width: 100%;
}

.m_serviceList__text {
  font-size: 14px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .m_serviceList__contents { padding: 0 20px 20px; }
}

/*
    ご支援イメージ
================================*/
.m_supportImage {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 50px 30px;
}

.m_supportImage__item {
  display: flex;
  position: relative;
}

@supports (display: grid) {
  .m_supportImage__item:not(:last-of-type)::after {
    border-left: 2px dotted #C7C7C7;
    content: "";
    height: calc(100% - 100px);
    position: absolute;
    right: -21px;
    bottom: 0;
  }
}

.m_heading--supportImage {}
.m_heading__stepNum {
  color: #8c8802;
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.m_heading__stepNum::after {
  content: counter(stepNum ,decimal-leading-zero);
  counter-increment: stepNum;
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  margin-left: 5px;
}

.m_supportImage__item .m_list {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.m_supportImage__item .m_list &gt; .m_list__item:not(:last-of-type) { margin-bottom: 10px; }


@media screen and (max-width: 768px) {
  @supports (display: grid) {
    .m_supportImage__item:not(:last-of-type)::after {
      border-left: none;
      border-bottom: 2px dotted #C7C7C7;
      height: auto;
      right: 0;
      bottom: -20px;
      width: 100%;
    }
  }
  .m_heading__stepNum::after { font-size: 26px; }
}



/*
    選ばれる理由
================================*/
.m_chooseWrap { background-color: #fff; }
.m_chooseWrap__img{
  line-height: 0;
}
.m_chooseWrap__img img{
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .m_chooseWrap__img{
    max-width: 400px;
    margin: 0 auto;
  }
  .m_chooseWrap__card{
    max-width: 400px;
    margin: 0 auto;
  }
}


/* 選ばれる理由 */
.m_choose{
  padding: 20px;
}
.m_choose__heading{
  position: relative;
  /*height: 108px;*/
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.m_choose__heading::before{
  /*content: "";*/
  position: absolute;
  right: 0;
  top: 0;
  bottom: 18px;
  z-index: -1;
  display: block;
  height: 1em;
  margin: auto 0;
  line-height: 1;
  font-weight: bold;
  font-size: 120px;
  color: #dcdcdc;
}
.m_choose__ttl{
  color: currentColor;
}
.m_choose__ttl.__letterSpacing_narrow{
  font-feature-settings: "palt" 1;
}
.m_choose__msg + .m_choose__performance{
  margin-top: 12px;
}
.m_choose__msg{
  font-size: 14px;
}
.m_choose__performanceList{
  display: flex;
  margin: -8px;
}
.m_choose__performanceItem{
  width: 100%;
  padding: 8px;
}
/*.m_choose--no01 .m_choose__heading::before{
  content: "01";
}
.m_choose--no02 .m_choose__heading::before{
  content: "02";
}
.m_choose--no03 .m_choose__heading::before{
  content: "03";
}*/
/* 実績 */
.m_performance{}
.m_performance__ttl {
  background-color: #f5f4da;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
  padding: 8px 20px;
}
.m_performance__num{
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.m_performance__num:not(:last-of-type) { border-bottom: 1px solid #C7C7C7; }
.m_performance__sum{
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px){
  .m_choose__heading{
    height: 80px;
  }
  .m_choose__heading::before{
    font-size: 102px;
    color: #dcdcdc;
  }
}
@media screen and (max-width: 599px){
  .m_choose__ttl{
    width: 100%;
    /*text-align: center;*/
  }
}


/*
    お客さまの声
================================*/
.m_voiceWrap{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: -1px;
}
.m_voiceWrap__item{
  display: flex;
  width: 33.33%;
  padding: 1px;
}
.m_voiceWrap__inner{
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px){
  .m_voiceWrap{ justify-content: flex-start; }
  .m_voiceWrap__item{
    width: 50%;
  }
  .m_voiceWrap__item--main{
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .m_voiceWrap{ flex-direction: column; }
  .m_voiceWrap__item{
    width: 315px;
  }
}
.m_mainVoice{
  position: relative;
  display: flex;
  align-items: stretch;
  counter-increment: mainVoiceNo;
}
.m_mainVoice::before{
  /*content: counter(mainVoiceNo, decimal-leading-zero);*/
  position: absolute;
  top: 4px;
  left: 24px;
  z-index: 2;
  display: block;
  line-height: 1;
  letter-spacing: -2px;
  font-size: 140px;
  color: #B7AE41;
}
.m_mainVoice__img{
  position: relative;
  z-index: 1;
  width: 50%;
  padding-top: 50%;
  line-height: 0;
  background: no-repeat left 50% center / cover;
}
@supports(clip-path:inset(0px)){
  .m_mainVoice__img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: calc(100% + 24px);
    height: 100%;
    background: no-repeat left calc(50% - 12px) center / cover;
    clip-path: polygon(99% 50%, 90% 60%, 90% 40%);
  }
}
.m_mainVoice__body{
  width: 50%;
  max-height: 540px;
  padding: 24px 24px 198px;
  border: 24px solid #B7AE41;
  background: url("/resource/img/online-support/education-online-support-service_voice_01.png") no-repeat right 20px bottom 20px #fff;
}
.m_mainVoice__body--02{
  background-image: url("/resource/img/online-support/education-online-support-service_voice_02.png");
}
.m_mainVoice__body--03{
  background-image: url("/resource/img/online-support/education-online-support-service_voice_03.png");
}
.m_mainVoice__heading{
  margin-bottom: 20px;
}
.m_mainVoice__ttl{
  color: #333;
  text-align: left;
  font-size: 30px;
}
@media screen and (max-width: 768px){
  .m_mainVoice{
    display: block;
  }
  .m_mainVoice__img{
    width: 100%;
    padding-top: calc(100% * 490 / 728);
  }
  .m_mainVoice__img::before{
    content: none;
  }
  .m_mainVoice__body{
    width: 100%;
    max-height: none;
  }
}
@media screen and (max-width: 599px){
  .m_mainVoice::before{
    left: 16px;
    font-size: 80px;
  }
  .m_mainVoice__ttl{
    font-size: 18px;
  }
  .m_mainVoice__body{
    padding: 16px 16px 132px;
    border-width: 16px;
    background-position: right 12px bottom 12px;
  }
}
/* お客さまの声 */
.m_voice{
  position: relative;
  display: block;
  padding-top: calc(100% * 165 / 245);
  background: no-repeat center center / cover;
  counter-increment: voiceNo;
  transition: .3s opacity;
}
.m_voice:hover{
  opacity: .7;
}
.m_voice__ttl{
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  background: rgba(255, 255, 255, .6);
}
.m_voice__ttl::before{
  /*content: counter(voiceNo, decimal-leading-zero);*/
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  display: block;
  height: 1em;
  margin: auto 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1px;
}
@media screen and (max-width: 599px){
  .m_voice__ttl{
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 20px;
    font-size: 18px;
    letter-spacing: -1px;
  }
  .m_voice__ttl br{
    /*display: none;*/
  }
  .m_voice__ttl::before{
    left: 4px;
    font-size: 20px;
  }
}
/* 画像呼び出しm_mainVoice, m_voice */
.m_mainVoice__img--01,
.m_mainVoice__img--01::before,
.m_voice--01{
  background-image: url("/resource/img/online-support/education-online-support-service_voice-l_agency.jpg");
}
.m_mainVoice__img--02,
.m_mainVoice__img--02::before,
.m_voice--02{
  background-image: url("/resource/img/online-support/education-online-support-service_voice-l_equipment-rental.jpg");
}
.m_mainVoice__img--03,
.m_mainVoice__img--03::before,
.m_voice--03{
  background-image: url("/resource/img/online-support/education-online-support-service_voice-l_venue-rental.jpg");
}
.m_mainVoice__img--04,
.m_mainVoice__img--04::before,
.m_voice--04{
  background-image: url("/resource/img/online/education-online-support-service_voice-xl_04-surugadai.jpg");
}
.m_mainVoice__img--05,
.m_mainVoice__img--05::before,
.m_voice--05{
  background-image: url("/resource/img/online/education-online-support-service_voice-xl_05-webinar-support.jpg");
}
.m_mainVoice__img--06,
.m_mainVoice__img--06::before,
.m_voice--06{
  background-image: url("/resource/img/online/education-online-support-service_voice-xl_06-total-support.jpg");
}
.m_mainVoice__img--07,
.m_mainVoice__img--07::before,
.m_voice--07{
  background-image: url("/resource/img/online/education-online-support-service_voice-xl_07-pc-rental.jpg");
}
.m_mainVoice__img--08,
.m_mainVoice__img--08::before,
.m_voice--08{
  background-image: url("/resource/img/online/education-online-support-service_voice-xl_08-webinar-instructor.jpg");
}



/*
    よくあるご質問
================================*/
.m_faqWrap {}

.m_faqWrap__body { margin-bottom: 50px; }
.m_faqWrap__body &gt; :last-child { margin-bottom: 0; }

.m_faqWrap__item {}

.m_faq {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 20px;
}

.m_faq__item {
  display: block;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

.m_faq__msg {
  align-items: center;
  display: flex;
  padding-right: 30px;
  position: relative;
  width: 100%;
}

.m_faq__msg--q {
  color: currentColor;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
}

.m_faq__msg--q::before {
  color: #5558a4;
  content: "Q";
  flex-shrink: 0;
  font-family: "roboto", sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  padding-right: 20px;
}

@supports selector(:is(details)){
  .m_faq__msg--q::after {
    content: url("/resource/img/online-support/education-online-support-icon.png");
    display: block;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(90deg);
    transition: .3s transform;
    width: 25px;
  }
}
.m_faq.is_opend .m_faq__msg--q::after { transform: rotate(270deg); }

.m_faq__msg--a {
  padding-top: 20px;
  font-size: 14px;
}

.m_faq__msg--a::before {
  color: #8C8802;
  content: "A";
  flex-shrink: 0;
  font-family: "roboto", sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  padding-right: 20px;
}

.m_faqWrap__footer { padding-bottom: 50px; }

.m_faqWrap__footerTtl{
  margin-bottom: 20px;
  color: #5558A5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.m_faqWrap__img{
  text-align: center;
}
.m_faqWrap__imgLink{
  display: inline-block;
  line-height: 1;
  color: inherit;
  transition: .3s opacity;
}
.m_faqWrap__imgLink:hover{
  opacity: .7;
}
.m_faqWrap__imgLink img{
  border: 1px solid #c7c7c7;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 599px) {
  .m_faq__msg--q::before { align-self: flex-start; }
  .m_faq__msg--a::before { align-self: flex-start; }
  @supports selector(:is(details)){
    .m_faq__msg--q::after {
      top: auto;
      bottom: auto;
    }
  }
}


/*===============================

    state

================================*/
/*
    slick hack ケース
================================*/
.js_slickCase .slick-track{
  display: flex;
  align-items: flex-end;
}
.js_slickCase .slick-slide{
  float: none;
}
.js_slickCase .slick-arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: none !important;
  width: 36px;
  height: 36px;
  margin: auto 0;
  border: none;
  border-top: 6px solid #5558A4;
  border-right: 6px solid #5558A4;
  text-indent: -9999px;
  background: none;
}
.js_slickCase .slick-prev{
  left: 2.5%;
  transform: scaleX(0.7) rotate(-135deg);
}
.js_slickCase .slick-next{
  right: 2.5%;
  transform: scaleX(0.7) rotate(45deg);
}
.js_slickCase .slick-dots{
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 12px -8px 0;
}
.js_slickCase .slick-dots li{
  display: flex !important;
  padding: 0 8px;
}
.js_slickCase .slick-dots button{
  display: block;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #DCDCDC;
  text-indent: -9999px;
  cursor: pointer;
} 
.js_slickCase .slick-dots button:hover,
.js_slickCase .slick-dots .slick-active button{
  background: #333;
}
@media screen and (max-width: 599px){
  .js_slickCase .slick-arrow{
    display: block !important;
  }
  .js_slickCase .slick-dots{
    display: none !important;
  }
}

/*
    見出しフェーダー
================================*/
.js_faderHeading{
  overflow: hidden;
}
.js_faderHeading__ttl{
  display: block;
  transform: translateY(100%);
  transition: 1s transform cubic-bezier(.4,.1,.3,1);
}
.js_faderHeading__ttl.is_show{
  transform: translateY(0%);
}

/* サブ見出しフェーダー */
.js_faderSubHeading .js_separateTxt__item{
  display: inline-block;
  opacity: 0;
  transform: scale(0.1);
  transform-origin: center bottom;
  transition: transform .4s cubic-bezier(.25,-.14,.16,1.07),opacity .3s cubic-bezier(.4,.1,.3,1);
}
.js_faderSubHeading.is_show .js_separateTxt__item{
  opacity: 1;
  transform: scale(1);
}

/*
    選ばれる理由フェーダー
================================*/
.js_faderChoose{}
.js_faderChoose__item{
  position: relative;
}
.js_faderChoose__item::before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  animation-play-state: paused;
  animation-duration: .5s;
  animation-timing-function: linear;
  animation-name: flip;
  animation-fill-mode: forwards;
  transform-origin: 100% 50%;
}
.js_faderChoose__item.is_show::before{
  animation-play-state: running;
  background: #5558A4;
}
.js_faderChoose__item:nth-child(1) {
  z-index: 6;
}
.js_faderChoose__item:nth-child(2) {
  z-index: 5;
}
.js_faderChoose__item:nth-child(3) {
  z-index: 4;
}
.js_faderChoose__item:nth-child(4) {
  z-index: 3;
}
.js_faderChoose__item:nth-child(5) {
  z-index: 2;
}
.js_faderChoose__item:nth-child(6) {
  z-index: 1;
}
.js_faderChoose__item:nth-child(1)::before {
  z-index: 6;
}
.js_faderChoose__item:nth-child(2)::before {
  z-index: 5;
}
.js_faderChoose__item:nth-child(3)::before {
  z-index: 4;
  animation-name: flip-vertical;
}
.js_faderChoose__item:nth-child(4)::before {
  z-index: 3;
  animation-name: flip-rev;
}
.js_faderChoose__item:nth-child(5)::before {
  z-index: 2;
  animation-name: flip-rev;
}
.js_faderChoose__item:nth-child(6)::before {
  z-index: 1;
  animation-name: flip-revEnd;
}
@media screen and (max-width: 768px){
  .js_faderChoose{
    opacity: 0;
    transform: translateY(64px);
    transition: .8s transform, .8s opacity;
  }
  .js_faderChoose.is_show{
    opacity: 1;
    transform: translateY(0);
  }
  .js_faderChoose__item::before{
    content: none;
  }
}


/*
    サービスフェーダー
================================*/
.js_faderService{
  opacity: 0;
  transform: translateY(64px);
  transition: .8s transform, .8s opacity;
}
.js_faderService.is_show{
  opacity: 1;
  transform: translateY(0);
}

/*
    ストーカー
================================*/
.js_stalkerArea{
  position: relative;
}
.js_stalkerArea__stalker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
}
.js_stalkerArea__stalkerBody {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #5558A4;
  flex-shrink: 0;
  overflow: hidden;
  transition: .5s width cubic-bezier(0.55, 0.05, 0.22, 0.99), .5s height cubic-bezier(0.55, 0.05, 0.22, 0.99), .5s transform cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.js_stalkerArea__stalker.is_show .js_stalkerArea__stalkerBody{
  width: 16px;
  height: 16px;
}
.js_stalkerArea__stalkerBody::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  color: #5558A4;
  opacity: 0;
  transform: translateY(-50%);
  transition: .5s opacity cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.js_stalkerArea__stalker.is_hov .js_stalkerArea__stalkerBody{
  position: relative;
  width: 80px;
  height: 80px;
  border: 2px solid #5558A4;
  background: #fff;
  transform: translate(20px, -20px);
}
.js_stalkerArea__stalker.is_hov .js_stalkerArea__stalkerBody::before{
  content: "詳細をみる";
  opacity: 1;
}
@media screen and (max-width: 768px){
  .js_stalkerArea__stalker {
    display: none !important;
  }
}

/*
    FAQアコーディオン
================================*/
/*.js_accordion__item { height: 0; }*/


/*
    アニメーション
================================*/
@keyframes flip{
  0% {
    transform: perspective(3000px) rotateY(-360deg);
    opacity: 1;
  }
  99%{
    transform: perspective(3000px) rotateY(-180deg);
    opacity: 1;
  }
  100% {
    transform: perspective(3000px) rotateY(-180deg);
    opacity: 0;
  }
}
@keyframes flip-vertical{
  0% {
    transform-origin: 50% 100%;
    transform: perspective(3000px) rotateX(0deg);
    opacity: 1;
  }
  99%{
    transform-origin: 50% 100%;
    transform: perspective(3000px) rotateX(-180deg);
    opacity: 1;
  }
  100%{
    transform-origin: 50% 100%;
    transform: perspective(3000px) rotateX(-180deg);
    opacity: 0;
  }
}
@keyframes flip-rev{
  0% {
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(0deg);
    opacity: 1;
  }
  99%{
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(-180deg);
    opacity: 1;
  }
  100% {
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(-180deg);
    opacity: 0;
  }
}
@keyframes flip-revEnd{
  0% {
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(0deg);
    opacity: 1;
  }
  49%{
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(-90deg);
    opacity: 1;
  }
  50% {
    transform-origin: 0% 50%;
    transform: perspective(3000px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*===============================

    Utility

================================*/
/* color */
.u_color-coral { color: #ff7f50 !important; }
.u_color-rouge { color: #ec2c43 !important; }
.u_color-crimson { color: #e6002d !important; }

/* display */
.u_d-b { display: block !important; }
.u_d-n { display: none !important; }
.u_d-fx { display: flex !important; }

@media screen and (max-width: 768px){
  .u_resMd_d-n { display: none !important; }
  .u_resMd_d-b { display: block !important; }
}

@media screen and (max-width: 599px){
  .u_res_d-n { display: none !important; }
  .u_res_d-b { display: block !important; }
}

/* float */
.u_fl-n { float: none !important; }
.u_fl-l { float: left !important; }
.u_fl-r { float: right !important; }

/* font-size */
.u_fz-xs { font-size: .75em !important; }
.u_fz-sm { font-size: .875em !important; }
.u_fz-md { font-size: 1em !important; }
.u_fz-lg { font-size: 1.25em !important; }
.u_fz-xl { font-size: 1.5em !important; }
.u_fz-sr { font-size: smaller !important; }
.u_fz-lr { font-size: larger !important; }

.u_fz10 { font-size: 10px !important; }
.u_fz11 { font-size: 11px !important; }
.u_fz12 { font-size: 12px !important; }
.u_fz13 { font-size: 13px !important; }
.u_fz14 { font-size: 14px !important; }
.u_fz15 { font-size: 15px !important; }
.u_fz16 { font-size: 16px !important; }
.u_fz17 { font-size: 17px !important; }
.u_fz18 { font-size: 18px !important; }
.u_fz19 { font-size: 19px !important; }
.u_fz20 { font-size: 20px !important; }

/* font-weigth */
.u_fw-b { font-weight: bold !important; }
.u_fw-n { font-weight: normal !important; }

/* line-height */
.u_lh-nm { line-height: normal !important; }
.u_lh-ih { line-height: inherit !important; }
.u_lh0 { line-height: 0 !important; }
.u_lh1 { line-height: 1 !important; }
.u_lh2 { line-height: 2 !important; }
.u_lh3 { line-height: 3 !important; }
.u_lh4 { line-height: 4 !important; }
.u_lh5 { line-height: 5 !important; }
.u_lh6 { line-height: 6 !important; }
.u_lh-xs { line-height: 1.25 !important; }
.u_lh-sm { line-height: 1.33 !important; }
.u_lh-md { line-height: 1.5 !important; }
.u_lh-lg { line-height: 1.75 !important; }
.u_lh-xl { line-height: 2 !important; }

/* padding */
.u_pt0 { padding-top: 0 !important; }
.u_pt-xs { padding-top: 0.2rem !important; }
.u_pt-sm { padding-top: 0.5rem !important; }
.u_pt-md { padding-top: 1rem !important; }
.u_pt-lg { padding-top: 1.5rem !important; }
.u_pt-xl { padding-top: 3rem !important; }

.u_pl0 { padding-left: 0 !important; }
.u_pl-xs { padding-left: 0.2rem !important; }
.u_pl-sm { padding-left: 0.5rem !important; }
.u_pl-md { padding-left: 1rem !important; }
.u_pl-lg { padding-left: 1.5rem !important; }
.u_pl-xl { padding-left: 3rem !important; }

.u_pb0 { padding-bottom: 0 !important; }
.u_pb-xs { padding-bottom: 0.2rem !important; }
.u_pb-sm { padding-bottom: 0.5rem !important; }
.u_pb-md { padding-bottom: 1rem !important; }
.u_pb-lg { padding-bottom: 1.5rem !important; }
.u_pb-xl { padding-bottom: 3rem !important; }

.u_pr0 { padding-right: 0 !important; }
.u_pr-xs { padding-right: 0.2rem !important; }
.u_pr-sm { padding-right: 0.5rem !important; }
.u_pr-md { padding-right: 1rem !important; }
.u_pr-lg { padding-right: 1.5rem !important; }
.u_pr-xl { padding-right: 3rem !important; }

.u_py0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.u_py10 { padding-top: 10px !important; padding-bottom: 10px !important; }
.u_py20 { padding-top: 20px !important; padding-bottom: 20px !important; }
.u_py30 { padding-top: 30px !important; padding-bottom: 30px !important; }

.u_pt5 { padding-top: 5px !important; }
.u_pt10 { padding-top: 10px !important; }
.u_pt15 { padding-top: 15px !important; }
.u_pt20 { padding-top: 20px !important; }
.u_pt30 { padding-top: 30px !important; }
.u_pt40 { padding-top: 40px !important; }
.u_pt50 { padding-top: 50px !important; }
.u_pt100 { padding-top: 100px !important; }

.u_pl5 { padding-left: 5px !important; }
.u_pl10 { padding-left: 10px !important; }
.u_pl15 { padding-left: 15px !important; }
.u_pl20 { padding-left: 20px !important; }
.u_pl30 { padding-left: 30px !important; }
.u_pl50 { padding-left: 50px !important; }
.u_pl100 { padding-left: 100px !important; }

.u_pb5 { padding-bottom: 5px !important; }
.u_pb10 { padding-bottom: 10px !important; }
.u_pb15 { padding-bottom: 15px !important; }
.u_pb20 { padding-bottom: 20px !important; }
.u_pb30 { padding-bottom: 30px !important; }
.u_pb40 { padding-bottom: 40px !important; }
.u_pb50 { padding-bottom: 50px !important; }
.u_pb100 { padding-bottom: 100px !important; }

.u_pr5 { padding-right: 5px !important; }
.u_pr10 { padding-right: 10px !important; }
.u_pr15 { padding-right: 15px !important; }
.u_pr20 { padding-right: 20px !important; }
.u_pr30 { padding-right: 30px !important; }
.u_pr50 { padding-right: 50px !important; }
.u_pr100 { padding-right: 100px !important; }


/* margin */
.u_mt0 { margin-top: 0 !important; }
.u_mt-xs { margin-top: 0.2rem !important; }
.u_mt-sm { margin-top: 0.5rem !important; }
.u_mt-md { margin-top: 1rem !important; }
.u_mt-lg { margin-top: 1.5rem !important; }
.u_mt-xl { margin-top: 3rem !important; }

.u_ml0 { margin-left: 0 !important; }
.u_ml-xs { margin-left: 0.2rem !important; }
.u_ml-sm { margin-left: 0.5rem !important; }
.u_ml-md { margin-left: 1rem !important; }
.u_ml-lg { margin-left: 1.5rem !important; }
.u_ml-xl { margin-left: 3rem !important; }

.u_mb0 { margin-bottom: 0 !important; }
.u_mb-xs { margin-bottom: 0.2rem !important; }
.u_mb-sm { margin-bottom: 0.5rem !important; }
.u_mb-md { margin-bottom: 1rem !important; }
.u_mb-lg { margin-bottom: 1.5rem !important; }
.u_mb-xl { margin-bottom: 3rem !important; }

.u_mr0 { margin-right: 0 !important; }
.u_mr-xs { margin-right: 0.2rem !important; }
.u_mr-sm { margin-right: 0.5rem !important; }
.u_mr-md { margin-right: 1rem !important; }
.u_mr-lg { margin-right: 1.5rem !important; }
.u_mr-xl { margin-right: 3rem !important; }

.u_my0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.u_my10 { margin-top: 10px !important; margin-bottom: 10px !important; }
.u_my20 { margin-top: 20px !important; margin-bottom: 20px !important; }
.u_my30 { margin-top: 30px !important; margin-bottom: 30px !important; }

.u_mt5 { margin-top: 5px !important; }
.u_mt10 { margin-top: 10px !important; }
.u_mt15 { margin-top: 15px !important; }
.u_mt20 { margin-top: 20px !important; }
.u_mt30 { margin-top: 30px !important; }
.u_mt50 { margin-top: 50px !important; }
.u_mt100 { margin-top: 100px !important; }

.u_mt-5 { margin-top: -5px !important; }
.u_mt-10 { margin-top: -10px !important; }
.u_mt-15 { margin-top: -15px !important; }
.u_mt-20 { margin-top: -20px !important; }
.u_mt-30 { margin-top: -30px !important; }
.u_mt-50 { margin-top: -50px !important; }
.u_mt-100 { margin-top: -100px !important; }

.u_ml5 { margin-left: 5px !important; }
.u_ml10 { margin-left: 10px !important; }
.u_ml15 { margin-left: 15px !important; }
.u_ml20 { margin-left: 20px !important; }
.u_ml30 { margin-left: 30px !important; }
.u_ml50 { margin-left: 50px !important; }
.u_ml100 { margin-left: 100px !important; }

.u_ml-5 { margin-left: -5px !important; }
.u_ml-10 { margin-left: -10px !important; }
.u_ml-15 { margin-left: -15px !important; }
.u_ml-20 { margin-left: -20px !important; }
.u_ml-30 { margin-left: -30px !important; }
.u_ml-50 { margin-left: -50px !important; }
.u_ml-100 { margin-left: -100px !important; }

.u_mb5 { margin-bottom: 5px !important; }
.u_mb10 { margin-bottom: 10px !important; }
.u_mb15 { margin-bottom: 15px !important; }
.u_mb20 { margin-bottom: 20px !important; }
.u_mb30 { margin-bottom: 30px !important; }
.u_mb50 { margin-bottom: 50px !important; }
.u_mb100 { margin-bottom: 100px !important; }

.u_mb-5 { margin-bottom: -5px !important; }
.u_mb-10 { margin-bottom: -10px !important; }
.u_mb-15 { margin-bottom: -15px !important; }
.u_mb-20 { margin-bottom: -20px !important; }
.u_mb-30 { margin-bottom: -30px !important; }
.u_mb-50 { margin-bottom: -50px !important; }
.u_mb-100 { margin-bottom: -100px !important; }

.u_mr5 { margin-right: 5px !important; }
.u_mr10 { margin-right: 10px !important; }
.u_mr15 { margin-right: 15px !important; }
.u_mr20 { margin-right: 20px !important; }
.u_mr30 { margin-right: 30px !important; }
.u_mr50 { margin-right: 50px !important; }
.u_mr100 { margin-right: 100px !important; }

.u_mr-5 { margin-right: -5px !important; }
.u_mr-10 { margin-right: -10px !important; }
.u_mr-15 { margin-right: -15px !important; }
.u_mr-20 { margin-right: -20px !important; }
.u_mr-30 { margin-right: -30px !important; }
.u_mr-50 { margin-right: -50px !important; }
.u_mr-100 { margin-right: -100px !important; }

.u_m-a { margin: auto !important; }

/* position */
.u_pos-r { position: relative !important; }
.u_pos-a { position: absolute !important; }

/* text-align */
.u_ta-c { text-align: center !important; }
.u_ta-r { text-align: right !important; }
.u_ta-l { text-align: left !important; }

/* text-indent */
.u_ti--1 { text-indent: -1em !important; padding-left: 1em !important; }
.u_ti-0 { text-indent: 0em !important; padding-left: 0em !important; }

/* text-decoration */
.u_td-n { text-decoration: none !important; }
.u_td-u { text-decoration: underline !important; }
.u_td-o { text-decoration: overline !important; }
.u_td-l { text-decoration: line-through !important; }

/* vertical-align */
.u_va-sup { vertical-align: super !important; }
.u_va-t { vertical-align: top !important; }
.u_va-tt { vertical-align: text-top !important; }
.u_va-m { vertical-align: middle !important; }
.u_va-bl { vertical-align: baseline !important; }
.u_va-b { vertical-align: bottom !important; }
.u_va-tb { vertical-align: text-bottom !important; }
.u_va-sub { vertical-align: sub !important; }

/* flexbox */
.u_ac-fs { align-content: flex-start !important; }
.u_ac-fe { align-content: flex-end !important; }
.u_ac-c { align-content: center !important; }
.u_ac-sb { align-content: space-between !important; }
.u_ac-sa { align-content: space-around !important; }
.u_ac-s { align-content: stretch !important; }
.u_ai-fs { align-items: flex-start !important; }
.u_ai-fe { align-items: flex-end !important; }
.u_ai-c { align-items: center !important; }
.u_ai-b { align-items: baseline !important; }
.u_ai-s { align-items: stretch !important; }
.u_as-a { align-self: auto !important; }
.u_as-fs { align-self: flex-start !important; }
.u_as-fe { align-self: flex-end !important; }
.u_as-c { align-self: center !important; }
.u_as-b { align-self: baseline !important; }
.u_as-s { align-self: stretch !important; }
.u_jc-fs { justify-content: flex-start !important; }
.u_jc-fe { justify-content: flex-end !important; }
.u_jc-c { justify-content: center !important; }
.u_jc-sb { justify-content: space-between !important; }
.u_jc-sa { justify-content: space-around !important; }
.u_fx0-1-a { flex: 0 1 auto !important; }
.u_fx1-0-a { flex: 1 0 auto !important; }
.u_fx1-1-a { flex: 1 1 auto !important; }
.u_fx0-0-a { flex: 0 0 auto !important; }
.u_fx1-0-0 { flex: 1 0 0% !important; }
.u_fx1-1-0 { flex: 1 1 0% !important; }

/* order */
.u_ord0 { order: 0 !important; }
.u_ord1 { order: 1 !important; }
.u_ord2 { order: 2 !important; }
.u_ord3 { order: 3 !important; }
.u_ord4 { order: 4 !important; }
.u_ord5 { order: 5 !important; }
.u_ord6 { order: 6 !important; }
.u_ord9999 { order: 9999 !important; }
.u_ord-1 { order: -1 !important; }

/* table-layout */
.u_tbl-a { table-layout: auto !important; }
.u_tbl-f { table-layout: fixed !important; }

/* width */
.u_w350 { width: 350px !important; }
.u_w400 { width: 400px !important; }

.u_w40p { width: 40% !important; }
.u_w45p { width: 45% !important; }
.u_w50p { width: 50% !important; }

.u_maW70p { max-width: 70% !important; }
.u_maW75p { max-width: 75% !important; }
.u_maW80p { max-width: 80% !important; }

/*横幅*/
.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%;}
}


@media screen and (max-width:768px){
  .u_resMdBlock { display: block; }
  .u_resMdHide { display: none; }
}
@media screen and (max-width:768px){
  .u_resSmBlock { display: block; }
  .u_resSmHide { display: none; }
}</pre></body></html>