<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

================================*/
:root {
    --theme_main: #ff841d;
}

body {
  color: #3E3A39;
  font-family: "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  height: 100%;
  text-align: left;
  width: 100%;
}

.main { margin-top: 30px; }

.p_mainContainer {
  /* margin: 30px auto; */
  width: 750px;
}

@media screen and (max-width:768px) {
  h1 img { width: 100%; height: auto; }
  .p_mainContainer {
    margin-inline: auto;
    width: 95%;
  }
}

.c_link-box {
  border: 2px solid #ff841d;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  transition: .3s;
}

.c_link-normal {
  color: #052674;
}

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

.c_link-box:hover {
  opacity: .6;
  text-decoration: none;
}


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

    コンテンツ

================================*/
.p_container {}

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

.p_txt {
  /* font-size: 16px;
  line-height: 1.6; */
}

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

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

/*
    ナビ
================================*/
.p_menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.p_menu_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;
}

.p_menu_item + .p_menu_item {
  margin-left: 15px;
}

.p_menu_item &gt; a {
  -ms-align-items: center;
  align-items: center;
  background-color: #ff841d;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  padding: 10px;
  transition: .3s;
  width: 100%;
} 

.p_menu_item &gt; a:hover {
  opacity: .6;
  text-decoration: none;
}

@media screen and (max-width:599px) {
  .p_menu { flex-direction: column; }
  .p_menu_item + .p_menu_item { margin-left: 0; border-top: 1px solid #000; }
}


/*
    見出し
================================*/
.p_heading-underline {
  border-bottom: 2px solid #333;
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.p_heading-underline &gt; span {
  display: inline-block;
  font-size: .7em;
  margin-left: 10px;
}

.p_heading-bold {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* 色付きタイトル（メリット） */
.c_colorTtl-faq {
  color: #E461BF;
  font-weight: bold;
}

.c_colorTtl {
  color: #ff841d;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  .p_heading-underline &gt; span { margin-left: 0; }
}




/*
    メリット
================================*/
.p_flexBox-merit {
  justify-content: space-between;
}

.p_flexBox-merit_inner {
  width: 220px;
}

@media screen and (max-width:599px) {
  .p_flexBox-merit { flex-direction: column; align-items: center; }
}

/* 2025/06/27 追記 */
/*
    merit
================================*/
.m_merit {
  counter-reset: merit_num;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(350px - 30px), 1fr));
  gap: 30px; */
  &gt; * + *  { margin-top: 30px; }

  .m_merit__title {
    display: grid;
    font-size: 24px;
    font-size: clamp(16px, 2.4cqw, 18px);
    gap: 10px;
    grid-template-columns: auto auto 1fr;
    margin-bottom: 10px;
    place-content: center;
    
    &amp;::before {
      color: var(--theme_main);
      content: counter(merit_num, decimal-leading-zero);
      counter-increment: merit_num;
      align-self: center;
    }

    &amp;::after {
      align-self: center;
      background-color: var(--theme_main);
      content: "";
      display: block;
      height: 1px;
      width: 100%;
    }
  }

  .m_merit__body {
    /* display: grid;
    grid-template-columns: auto auto; */
    * + * { margin-top: 10px; }

    @container sectionWrapper (max-width: 680px) {
      grid-template-columns: minmax(auto, 50%) auto;
      br { display: none; }
    }

    &gt; p {
      align-self: center;
    }

    &gt; img {
      height: auto;
      margin-inline: auto;
      width: 60%;
      max-width: 130px;
    }
  }
}


/*
    開催地情報
================================*/
.c_selectBtn { display: none; }

.list_selectVenue {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 20px -10px;
}

.list_selectVenue_item {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -o-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 10px;
  width: calc(100% / 5);
}

.list_selectVenue_item.c_col4 { width: calc(100% / 4); }


.list_selectVenue_item label,
.list_selectVenue_item a{
  border: 2px solid #ff841d;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.list_selectVenue_item label:hover,
.list_selectVenue_item a:hover {
  background-color: #ff841d;
  color: #fff;
}

#selectBtn-aomori:checked~.list_selectVenue #aomori label,
#selectBtn-toyama:checked~.list_selectVenue #toyama label,
#selectBtn-kyoto:checked~.list_selectVenue #kyoto label,
#selectBtn-koriyama:checked~.list_selectVenue #koriyama label,
#selectBtn-tsuchiura:checked~.list_selectVenue #tsuchiura label,
#selectBtn-takasaki:checked~.list_selectVenue #takasaki label,
#selectBtn-tachikawa:checked~.list_selectVenue #tachikawa label,
#selectBtn-shizuoka:checked~.list_selectVenue #shizuoka label,
#selectBtn-okayama:checked~.list_selectVenue #okayama label,
#selectBtn-matsumoto:checked~.list_selectVenue #matsumoto label,
#selectBtn-matsuyama:checked~.list_selectVenue #matsuyama label,
#selectBtn-fukushima:checked~.list_selectVenue #fukushima label,
#selectBtn-kitakyushu:checked~.list_selectVenue #kitakyushu label,
#selectBtn-nagasaki:checked~.list_selectVenue #nagasaki label,
#selectBtn-naha:checked~.list_selectVenue #naha label,
#selectBtn-akita:checked~.list_selectVenue #akita label,
#selectBtn-kanazawa:checked~.list_selectVenue #kanazawa label,
#selectBtn-mito:checked~.list_selectVenue #mito label,
#selectBtn-hitachi:checked~.list_selectVenue #hitachi label,
#selectBtn-morioka:checked~.list_selectVenue #morioka label,
#selectBtn-niigata:checked~.list_selectVenue #niigata label,
#selectBtn-hiroshima:checked~.list_selectVenue #hiroshima label,
#selectBtn-utsunomiya:checked~.list_selectVenue #utsunomiya label,
#selectBtn-yamanashi:checked~.list_selectVenue #yamanashi label,
#selectBtn-kawasaki:checked~.list_selectVenue #kawasaki label {
    background-color: #ff841d;
    color: #fff;
}

[id^=venueInfo-]{
  max-height: 0;
  opacity: 0;
  overflow-y: hidden;
  transition: .3s opacity;
  display: none;/* 暫定対応 */
}

#selectBtn-aomori:checked~#venueInfo-aomori,
#selectBtn-toyama:checked~#venueInfo-toyama,
#selectBtn-koriyama:checked~#venueInfo-koriyama,
#selectBtn-kyoto:checked~#venueInfo-kyoto,
#selectBtn-tsuchiura:checked~#venueInfo-tsuchiura,
#selectBtn-takasaki:checked~#venueInfo-takasaki,
#selectBtn-tachikawa:checked~#venueInfo-tachikawa,
#selectBtn-shizuoka:checked~#venueInfo-shizuoka,
#selectBtn-okayama:checked~#venueInfo-okayama,
#selectBtn-matsuyama:checked~#venueInfo-matsuyama,
#selectBtn-matsumoto:checked~#venueInfo-matsumoto,
#selectBtn-fukushima:checked~#venueInfo-fukushima,
#selectBtn-kitakyushu:checked~#venueInfo-kitakyushu,
#selectBtn-nagasaki:checked~#venueInfo-nagasaki,
#selectBtn-naha:checked~#venueInfo-naha,
#selectBtn-akita:checked~#venueInfo-akita,
#selectBtn-kanazawa:checked~#venueInfo-kanazawa,
#selectBtn-mito:checked~#venueInfo-mito,
#selectBtn-hitachi:checked~#venueInfo-hitachi,
#selectBtn-morioka:checked~#venueInfo-morioka,
#selectBtn-niigata:checked~#venueInfo-niigata,
#selectBtn-hiroshima:checked~#venueInfo-hiroshima,
#selectBtn-utsunomiya:checked~#venueInfo-utsunomiya,
#selectBtn-yamanashi:checked~#venueInfo-yamanashi,
#selectBtn-kawasaki:checked~#venueInfo-kawasaki {
  max-height: 100%;
  opacity: 1;
  display: block;/* 暫定対応 */
}

.p_venueInfo {
/*  background-color: #eee;*/
  padding: 20px;
}

/* スケジュールテーブル */
.area_scheduleTable {
  background-color: #fff;
  margin-bottom: 20px;
}

.area_scheduleTable table {
  width: 100%;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #ccc;
  border-collapse: collapse;
  table-layout: fixed;
}

.area_scheduleTable table th, .area_scheduleTable table td {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #ccc;
}

.area_scheduleTable table th {
  background-color: #C8DEFF;
  text-align: center;
  padding: 5px;
}

.area_scheduleTable table th.seminar_date { width: 184px; }

.area_scheduleTable table th.apply { width: 15%; }

.area_scheduleTable table th:nth-of-type(2) { width: 300px; }

.area_scheduleTable table td {
  padding: 3px;
  text-align: center;
  vertical-align: middle;
}

.area_scheduleTable table td a { color: #052674; }

.area_scheduleTable table td a:hover {
  color: #005580;
  text-decoration: underline;
}

/* 会場情報 */
.p_flexBox-venue {
  justify-content: space-between;
}

.p_flexBox-venue_inner {}

.p_flexBox-venue_inner.txt { margin-right: 20px; }

.p_flexBox-venue_inner.map { width: 200px; }

.p_venueAccess {}

.p_venueAccess_container {}

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

.p_venueAccess_ttl {
  display: inline-block;
  line-height: 1.5;
  vertical-align: top;
}

.p_venueAccess_txt {
  display: inline-block;
  line-height: 1.5;

  /* Googleマップ */
  a[href*="google.com/maps"]::after,
  a[href*="google.co.jp/maps"]::after,
  a[href^="https://maps.app.goo.gl/"]::after {
    content: " [map]";
    color: #555;
    font-size: 0.8em;
    margin-left: 0.3em;
    /* vertical-align: super; */
  }
}


@media screen and (max-width:599px) {
  .list_selectVenue_item { width: calc(100% / 3); }
  .list_selectVenue_item.c_res_col2 { width: calc(100% / 2); }
  .area_scheduleTable { overflow: auto; }
  .area_scheduleTable table { width: 730px; }
  .p_flexBox-venue { flex-direction: column; }
  .p_flexBox-venue_inner.txt { margin-right: 0; margin-bottom: 10px; }
}

/* 2025/06/30 追記 */
/* ボトムのスケジュール */
.m_contentsBox {
  &gt; * + * { margin-top: 20px; }
  .p_venueInfo { padding: 0; }
  ul.p_flexBox {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.m_table--btmSchedule {
  font-size: 14px;
  height: 100%;
  width: 100%;
  &amp;:not(:last-child) { margin-bottom: 30px; }

  thead {
    th {
      background-color: #194a72;
      color: #fff;
      font-weight: normal;
      padding: 3px;
      text-align: center;
      &amp;:not(:first-child) { border-left: 1px solid #fff; }
      &amp;:nth-of-type(1) { width: 190px; }
      &amp;:nth-of-type(3) { width: 147px; }
      &amp;:nth-of-type(4) { width: 170px; }
    }
    &amp;::after {
      content: "";
      display: block;
      padding-top: 2px;
      width: 100%;
    }
  }
  tbody {
    tr {
      &amp;:hover { background-color: #e8f1ff; }
    }
    td {
      border: 1px solid #000;
      height: 100%;
      padding: 5px;
      vertical-align: middle;
      .td_cell--date {
        .td_cell--place {
          display: grid;
          font-size: 12px;
          gap: 0 10px;
          grid-template-columns: repeat(2, 1fr);
          margin-top: 5px;
          span {
            background-color: #fff;
            border: 1px solid #f26a32;
            border-radius: 9999px;
            color: #f26a32;
            display: grid;
            place-content: center;
          }
          &gt; a {
            color: #f26a3f;
            &amp;:hover {
              color: #f26a3f;
              text-decoration: underline;
            }
          }
        }
      }
      .td_cell--name {
        &gt; a {
          color: #052674;
          text-decoration: none;
          &amp;:hover {
            color: #005580;
            text-decoration: underline;
          }
        }
      }
      .td_cell--price {
        display: grid;
        gap: 0 5px;
        grid-template-columns: repeat(2,1fr);
        span:nth-of-type(2n) { text-align: right; }
        a {
          color: #052674;
          text-decoration: none;
          &amp;:hover {
            color: #005580;
            text-decoration: underline;
          }
        }
      }
      .td_cell--appBtn {
        display: grid;
        gap: 0 5px;
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        height: 100%;
        width: 100%;
        [class^="btn--"] {
          border-radius: 5px;
          color: #fff;
          display: grid;
          height: 100%;
          place-content: center;
          width: 100%;
          &amp;:hover {
            color: #fff;
            opacity: .7;
            text-decoration: none;
          }
        }
        .btn--webins { background-color: #2352A4; }
        .btn--normal { background-color: #4ea0de; }
      }
    }
  }
  @media screen and (max-width: 599px) {
    thead { display: none; }
    tr {
      display: block;
      &amp; + &amp; { margin-top: 10px; }
    }
    td {
      display: flex;
      gap: 0 20px;
      &amp; + &amp; { margin-top: -1px; }
      &amp;:not(:has([class="td_cell--appBtn"]))::before {
        background-color: #194a72;
        color: #fff;
        content: attr(data-label);
        display: grid;
        flex-shrink: 0;
        margin: -5px;
        padding: 3px;
        place-content: center;
        width: 7em;
      }
    }
    .td_cell--price { margin-left: auto; }
    .td_cell--date {
      br { display: none; }
    }
    .td_cell--appBtn {
      [class^="btn--"] {
        min-height: 3em;
        place-items: center;
        &amp;::after {
          content: "で申込";
          font-size: 0.8em;
        }
      }
    }
  }
}

/* buttonスタイル初期化 */
:where(button) {
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.m_venueInfo {
  .m_venueInfo__tabs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    margin-bottom: 20px;
    &amp;:has( + .__showAll) { margin-bottom: 0; }
    &amp;.__showAll {
      place-items: flex-end;
    }
  }

  .m_tabs {
    --buttonColor: var(--theme_main);
    .m_tabs__button:not([id]) {
      border: 2px solid var(--buttonColor);
      color: inherit;
      font-family: inherit;
      font-size: inherit;
      font-weight: bold;
      padding: 10px;
      :is(&amp;:hover, &amp;.is_active) {
        background-color: var(--buttonColor);
        color: #fff;
      }
      &amp;#show-all-button {
        --buttonColor:  #28a745;
      }
    }
  }
  .m_venueInfo__contents {
    display: none;
    &amp;.is_active {
      display: block;
      border-bottom: 1px solid #333;
      margin-bottom: 20px;
      padding-bottom: 20px;
    }
  }

}



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

    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; }

/* 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_py0 { padding-top: 0 !important; padding-bottom: 0 !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_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_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_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; }

/* 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_fxb-c { flex-basis: content !important; }

.u_fxd-r { flex-direction: row !important; }
.u_fxd-rr { flex-direction: row-reverse !important; }
.u_fxd-c { flex-direction: column !important; }

.u_fxd-cr { flex-direction: column-reverse !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; }

@media screen and (max-width:768px) {
  .u_res_mr0 { margin-right: 0 !important; }
  .u_res_mb30 { margin-bottom: 30px !important; }
  .u_res_w100p { width: 100% !important; }
}

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