<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 */


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

    common

================================*/
body{
  color: #333;
  counter-reset: listNum;
  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: .1em;
}

/* line-heightの上下の余白削除 */
.lineHeightCorp::before {
  content: "";
  display: block;
  height: 0;
  margin-top: calc((1 - 1.6) * .5em);
  width: 0;
}

.wrapper_main {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.container_main {
  width: 730px;
}

.container_side {
  width: 200px;
}

.container_main img { vertical-align: bottom; }

.txt_flat {}

.is-hide { display: none; }

.note { font-size: 12px; }

.hasIndent {
  padding-left: 1em;
  text-indent: -1em;
}

.box_image { margin: 20px 0; }

/*
    リスト
================================*/
/* 丸 */
.list_hasMarker { margin-bottom: 20px; }

.list_hasMarker_item {
  padding-left: 1em;
  text-indent: -1em;
}

.list_hasMarker_item::before {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: .5em;
  margin-right: 5px;
  vertical-align: 2px;
  width: .5em;
}

.list_hasMarker_item.red::before { background-color: #d84745; }
.list_hasMarker_item.blue::before { background-color: #008acc; }
.list_hasMarker_item.yellow:before { background-color: #e19939; }
.list_hasMarker_item.green::before { background-color: #33ca97; }
.list_hasMarker_item.purple::before { background-color: #905b99; }

/* 点 */
.list_bullet { margin: 0 0 20px; }

.list_bullet_item {
  padding-left: 1em;
  text-indent: -1em;
}

.list_bullet_item + .list_bullet_item { margin-top: 5px; }

/* 番号 */
.list_hasNum { counter-reset: listNum; }

.list_hasNum_item {
  -ms-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-weight: bold;
}

.list_hasNum_item + .list_hasNum_item { margin-top: 20px; }

.list_hasNum_item::before {
  color: currentColor;
  content: counter(listNum);
  counter-increment: listNum;
  font-family: 'Fira Sans', sans-serif;
  font-size: 2.8em;
  font-weight: normal;
  line-height: 1;
  margin-right: 20px;
}

.list_hasNum.orderMade .list_hasNum_item::before { color: #7F051C; }
.list_hasNum.bup .list_hasNum_item::before { color: #223d62; }
.list_hasNum.lms .list_hasNum_item::before { color: #03bd7b; }

/* アイコン付き（画像） */
.list_hasIco {}

.list_hasIco-check {}

.list_hasIco-check_item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 14px;
}

.list_hasIco-check_item + .list_hasIco-check_item { margin-top: 10px; }

.list_hasIco-check_item::before {
  content: url("../../img/online/on_check_icon_white-8.png");
  display: inline-block;
  flex-shrink: 0;
  margin-right: 5px;
}


/* ページ内メニュー */
.list_subNavi {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 20px -10px;
}

.list_subNavi_item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  padding: 10px;
  text-align: center;
}

.list_subNavi_link {
  background-color: #666;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  padding: 10px;
  width: 100%;
}

.list_subNavi_link:hover {
  color: #fff;
  opacity: .6;
  text-decoration: none;
}

.list_subNavi.orderMade .list_subNavi_link { background-color: #7F051C; }
.list_subNavi.bup .list_subNavi_link { background-color: #223d62; }
.list_subNavi.lms .list_subNavi_link { background-color: #03bd7b; }

@media screen and (max-width: 599px) {
  .list_subNavi { flex-direction: column; }
  .list_subNavi_item { padding: 0; flex-basis: auto; }
  .list_subNavi_item + .list_subNavi_item { border-top: 1px solid #fff; }
}

/*
    数字
================================*/
.txt_num {
  font-family: 'Fira Sans', sans-serif;
}

.txt_num.orderMade { color: #7f051c; }
.txt_num.bup { color: #223d62; }
.txt_num.lms { color: #03bd7b; }

/* ｈタグの中 */
.heading_primary &gt; .txt_num {
  color: #d45a43;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1;
  margin: 0 10px;
}

.heading_hasNum &gt; .txt_num {
  color: #d45a43;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  margin-right: 10px;
}


/*
    色文字
================================*/
.txt_color-red { color: #7F051C; }
.txt_color-blue { color: #223d62; }
.txt_color-yellow { color: #e19939; }
.txt_color-green { color: #03bd7b; }
.txt_color-purple { color: #905b99; }


/*
    リンク
================================*/
.link_normal {
  color: #052674;
  text-decoration: none;  
}

.link_normal:hover {
  color: #005580;
  text-decoration: underline;
}

/* 三角付き */
.link_arrow {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.link_arrow.red { color: #d84745; }
.link_arrow.blue { color: #008acc; }
.link_arrow.yellow { color: #e19939; }
.link_arrow.green { color: #33ca97; }
.link_arrow.purple { color: #905b99; }

.link_arrow::before {
  border: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-right: none;
  content: "";
  display: inline-block;
  margin-right: 5px;
}

.link_arrow:hover {
  text-decoration: underline;
}

/* bar */
.link_bar {
  background-color: #ccc;
  color: #fff;
  display: block;
  margin: auto;
  padding: 10px 20px;
  text-align: center;
  transition: .3s;
  max-width: 350px;
}

.link_bar.red { background-color: #d84745; }
.link_bar.blue { background-color: #008acc; }
.link_bar.yellow{ background-color: #e19939; }
.link_bar.green { background-color: #33ca97; }
.link_bar.purple { background-color: #905b99; }

.link_bar:hover {
  color: #fff;
  text-decoration: none;
  opacity: .6;
}

/* 画像リンク */
.link_image { display: block; }

.link_image:hover { opacity: .6 }

.link_image &gt; img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  /*width: 100%;*/
}


@media screen and (max-width:768px){
  .container_main { width: 100%; }
  .container_side { display: none; }
  .txt_flat {
    text-align: justify;
    text-justify: inter-ideograph;
  }
}



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

    Container Header

================================*/
.container_header {
  margin-bottom: 30px;
}


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

    Container Body

================================*/
.container_body {}

.box_section {}

.box_section + .box_section { margin-top: 50px; }

.box_section_inner { margin-top: 30px; }


/*
    見出し
================================*/
.heading_primary {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.heading_primary &gt; .heading_primary_sub {
  display: block;
  font-size: .8em;
}

.heading_secondary {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.heading_bold {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* アイコン画像付き */
.heading_hasIco {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 40px;
  padding: 5px 0 0 45px;
  position: relative;
}

.heading_hasIco::before {
  content: url("../../img/online/online-heading_purple.png");
  display: block;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.heading_hasIco.red::before { content: url("../../img/online/on_check_icon-8.png"); }
.heading_hasIco.blue::before { content: url("../../img/online/on_check_icon_blue-8.png"); }
.heading_hasIco.green::before { content: url("../../img/online/on_check_green-8.png"); }

/* アイコン画像付き（吹き出し） */
.heading_hasIco-speechBubble {}
.heading_hasIco-speechBubble::before { content: url("../../img/online/on_voice_red-8.png"); }
.heading_hasIco-speechBubble.bup::before { content: url("../../img/online/on_voice_blue-8.png"); }


/* バータイプ */
.heading_bar {
  background-color: #ccc;
  color: #fff;
  font-size: 21px;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.heading_bar.red { background-color: #d84745; }
.heading_bar.blue { background-color: #008acc; }
.heading_bar.yellow { background-color: #e19939; }
.heading_bar.green { background-color: #33ca97; }
.heading_bar.purple { background-color: #905b99; }

/* 数字付 */
.heading_hasNum {
  -ms-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 20px;
}

/* 文字色あり */
.heading_color {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.heading_color.orderMade { color: #7F051C; }
.heading_color.bup { color: #223d62; }
.heading_color.lms { color: #03bd7b; }


@media screen and (max-width:599px) {
}


/*
    flexbox
================================*/
.box_flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.box_flex_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 10px;
}

.box_flex-full {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px;
}

.box_flex-full_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

/* そのほかのオンライン研修関連サービス */
.box_flex.otherService { margin: -20px -10px 0; }
.box_flex.otherService &gt; .box_flex_inner {
  padding: 20px 10px;
  position: relative;
}
.box_flex.otherService .box_flex { margin-bottom: 0; }

.box_card-hasBorder + .box_link {
  font-size: 14px;
  position: absolute;
  right: 10px;
  bottom: -5px;
}

@media screen and (max-width: 599px){
  .box_flex.otherService &gt; .box_flex_inner {}
}

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


/*
    スプリングボード
================================*/
.springboard_item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.springboard_link {
  border: 2px solid #ccc;
  border-radius: 8px;
  color: currentColor;
  display: block;
  padding: 15px;
}

.springboard_link-flex {
  -ms-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}


.springboard_link.red { border-color: #d84745; }
.springboard_link.blue { border-color: #008acc; }
.springboard_link.yellow { border-color: #e19939; }
.springboard_link.green { border-color: #33ca97; }

.springboard_link:hover {
  background: #eee;
  color: currentColor;
  text-decoration: none;
}
.springboard_link.red:hover { background: #F3C8C8; }
.springboard_link.blue:hover { background: #C2EBFF; }
.springboard_link.yellow:hover { background: #F4DAB7; }
.springboard_link.green:hover { background: #B7ECDA; }

/* 塗りつぶし */
.springboard_link.fill {
  background-color: #e8e8e8;
  border: none;
}

.springboard_link.fill:hover { background-color: #bbb; }

/* Leaf */
.springboard_inner {}

.springboard_inner.right { margin-left: 48px; }

.springboard_ttl {
  -ms-align-items: center;
  align-items: center;
  background-color: #ccc;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  height: 55px;
  margin-bottom: 10px;
  transform: translateX(-15px);
  width: calc(100% + 32px);
}

.springboard_ttl.red { background-color: #d84745; }
.springboard_ttl.blue { background-color: #008acc; }
.springboard_ttl.yellow { background-color: #e19939; }

@media screen and (max-width:599px) {
  .springboard_link-flex { flex-direction: column; }
  .springboard_inner.right { margin-left: 0; }
}


/*
    ボーダーBOX
================================*/
.box_border {
  border: 2px solid #ccc;
  border-radius: 8px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.box_border.red { border-color: #d84745; }
.box_border.blue { border-color: #008acc; }
.box_border.yellow { border-color: #e19939; }
.box_border.green { border-color: #33ca97; }

.box_border_inner {
  max-height: 100%;
  max-width: 100%;
  padding: 20px;
}

/* オーダーメイド型オンライン研修 */
.box_border_inner.textIcon {
  font-size: 12px;
  flex-shrink: 0;
  letter-spacing: 0;
  width: 190px;
}

.box_border_inner.textIcon &gt; span { font-size: 16px; }


.box_border_inner.small {
  -webkit-flex: 0 0 30%;
  -moz-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  -o-flex: 0 0 30%;
  flex: 0 0 30%;
}

.box_border_inner.large {
  -webkit-flex: 0 0 70%;
  -moz-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  -o-flex: 0 0 70%;
  flex: 0 0 70%;
}


@media screen and (max-width:599px) {
  .box_border { align-items: center; flex-direction: column; }
  .box_border_txt { text-align: justify; text-justify: inter-ideograph; }
}


/*
    各種インデックス
================================*/
.box_flex.typeIndex {}

.box_flex.typeIndex .box_flex_inner { width: 100%; }

.box_flex.typeIndex .box_flex_item.left {
  flex-shrink: 0;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .box_flex.typeIndex .box_flex_inner {
    align-items: center;
    flex-direction: column;
  }
  .box_flex.typeIndex .box_flex_item.left { margin-right: 0; margin-bottom: 10px; }
}



/*
    summary（dl、dt、dd）
================================*/
.box_summary { margin: 10px 0 20px; }

.box_summary_inner {}

.box_summary_inner + .box_summary_inner { margin-top: 10px; }

.box_summary_ttl { margin-bottom: 5px; }

.box_summary_contents {}


/*
    カード(背景塗りつぶし：灰色)
================================*/
.box_card {
  background-color: #e8e8e8;
  border-radius: 8px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  width: 100%;
}

.box_card--hasGutter_sm { padding: 10px; }

.box_card_inner {}

.box_card_inner-flex {
  -ms-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 10px;
}

/* IE対応 */
.box_card_inner-flex p { max-width: 100%; }

.box_card_icon {
  margin-bottom: 10px;
  text-align: center;
}

.box_card_ttl {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.box_card_txt {
  font-size: 14px;
}

.box_card_txt &gt; img {
  display: block;
  margin: auto;
}

.box_card_txt + .box_card_txt { margin-top: 20px; }

/* 実線 */
.box_card-hasBorder {
  border: 1px solid #000;
  height: 100%;

  width: 100%;
}

.box_card-hasBorder_link {
  color: currentColor;
  display: block;
  padding: 20px;
}

.box_card-hasBorder_link:hover {
  color: currentColor;
  opacity: .6;
  text-decoration: none;
}

.box_card-hasBorder .box_flex {}

.box_card-hasBorder .box_flex_item.left {
  margin-right: 10px;
}

@media screen and (max-width:599px){
  .box_card_inner-flex { flex-direction: column; }
  .box_card_inner-flex p:nth-of-type(1) { margin-bottom: 10px; }
}


/*
    ２種類のオンライン研修
================================*/
.selectType {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.selectType__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.selectType__heading {
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

.selectType__inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 10px;
}

.selectType__inner:nth-child(2n + 1) { flex: 1.2 1 auto; }

.selectType__item {
  background-color: #e8e8e8;
  border-radius: 8px;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 10px;
}

.selectType__label {
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex: 0 0 auto;
  font-weight: bold;
  justify-content: center;
  margin-right: 10px;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 45px;
}

.selectType__contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 295px;
  /*width: 100%;*/
}
.selectType__contents &gt; *:last-child { margin-bottom: 0; }

.selectType__banner { margin-bottom: 24px; }

.selectType__banner a {}
.selectType__banner a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.selectType__banner img { vertical-align: bottom; }

.selectType__text {
  font-size: 14px;
  margin-bottom: 24px;
  width: 245px;
}

.selectType__link {
  margin-top: auto;
  width: 245px;
}

/* テキストリンク（背景色） */
.linkBar {
  align-items: center;
  display: flex;
  justify-content: center;
}

.linkBar__item {
  background-color: #bbb;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 1;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}

.linkBar__item--onlineDispatch { background-color: #7f051c; }
.linkBar__item--onlineBup { background-color: #223D62; }
.linkBar__item--offlineDispatch { background-color: #c45c72; }
.linkBar__item--offlineBup { background-color: #557db5; }

.linkBar__item:hover {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}


@media screen and (max-width:599px){
  .selectType__wrapper {
    background-color: #e8e8e8;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .selectType__item {
    flex-direction: column;
  }
  .selectType__label {
    margin-bottom: 20px;
    padding: 8px 16px;
    writing-mode: horizontal-tb;
    width: 100%;
  }
  .selectType__contents {
    width: auto;
  }
  .selectType__text {
    max-width: 295px;
    width: 100%;
  }
}


/*
    参加者の声
================================*/
.container_impression {}

.box_impression {
  border: 2px solid #ccc;
  border-radius: 15px;
  padding: 20px;
  position: relative;
}

.box_impression + .box_impression { margin-top: 30px; }

.box_impression::after {
  background-color: #fff;
  border-bottom: 2px solid #ccc;
  border-left: 2px solid #ccc;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 30px;
  bottom: -10px;
  transform: rotate(-45deg) skew(-5deg, -5deg);
  width: 15px;
}

.box_impression_txt { font-size: 14px; }

.box_impression_link {
  font-size: 13px;
  margin-top: 10px;
  text-align: right;
}


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

    サイドナビ

================================*/
.box_side { margin-bottom: 20px; }

.heading_topLine {
  border-top: 3px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 5px 0;
  position: relative;
}

.heading_topLine::before {
  border-top: 3px solid #E51E19;
  content: "";
  display: block; 
  position: absolute;
  left: 0;
  top: -3px;
  width: 38%;
  }

.heading_topLine &gt; img {
  background-color: #E51E19;
  float: left;
  margin-right: 5px;
  vertical-align: -6px;
  }

.heading_topLine &gt; span {
  display: block;
  font-family: inherit;
  padding-left: 29px;
  margin-top: 2px;
}

.side_anotherIns { font-size: 12px; }


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

    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-fx { display: flex !important; }

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

/* 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_pt50 { padding-top: 50px !important; }
.u_pt100 { padding-top: 100px !important; }

.u_pt-5 { padding-top: -5px !important; }
.u_pt-10 { padding-top: -10px !important; }
.u_pt-15 { padding-top: -15px !important; }
.u_pt-20 { padding-top: -20px !important; }
.u_pt-30 { padding-top: -30px !important; }
.u_pt-50 { padding-top: -50px !important; }
.u_pt-100 { 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_pl-5 { padding-left: -5px !important; }
.u_pl-10 { padding-left: -10px !important; }
.u_pl-15 { padding-left: -15px !important; }
.u_pl-20 { padding-left: -20px !important; }
.u_pl-30 { padding-left: -30px !important; }
.u_pl-50 { padding-left: -50px !important; }
.u_pl-100 { 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_pb50 { padding-bottom: 50px !important; }
.u_pb100 { padding-bottom: 100px !important; }

.u_pb-5 { padding-bottom: -5px !important; }
.u_pb-10 { padding-bottom: -10px !important; }
.u_pb-15 { padding-bottom: -15px !important; }
.u_pb-20 { padding-bottom: -20px !important; }
.u_pb-30 { padding-bottom: -30px !important; }
.u_pb-50 { padding-bottom: -50px !important; }
.u_pb-100 { 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; }

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

.u_p-a { padding: auto !important; }

/* margin */
.u_mt0 { margin-top: 0 !important; }
.u_mt-a { margin-top: auto !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-a { margin-left: auto !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-a { margin-bottom: auto !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-a { margin-right: auto !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_fxw-nw { flex-wrap: nowrap !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_sp { display: none; }
.u_pc { display: block; }

.u_hide { display: none; }

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

@media screen and (max-width:599px) {
  .u_sp { display: block; }
  .u_pc { display: none; }
}

</pre></body></html>