@charset "utf-8";
/* CSS Document */


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

    common

================================*/
body{
  color: #333;
  font: 400 14px "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;
}

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

/* 段落 */
.container .text_normal {
  font-size: 14px;
  line-height: 1.6;
}

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

/* ※ */
.container .text_note {
  font-size: 12px;
}

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

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


/*
    link
================================*/
.link_normal {
  text-decoration: underline;
}

.link_normal:hover {
  text-decoration: none;
}

/* 三角付き */
.link_arrow {
  display: inline-block;
  padding-left: 15px;
  position: relative;
}

.link_arrow::before {
  border: 8px solid transparent;
  border-top-width: 5px;
  border-right: none;
  border-bottom-width: 5px;
  border-left: 8px solid currentColor;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
}

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

/* 楕円形 */
.link_btn-ellipse {
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  background-color: #D9002D;
  border-radius: 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 21px;
  font-weight: bold;
  justify-content: center;
  line-height: 1;
  padding: 15px;
  text-align: center;
  width: 100%;
}

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

.link_btn-ellipse > img {
  margin-right: 5px;
  vertical-align: middle;
}

.box_contact {
  -ms-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* バナー */
.link_banner {
  display: block;
}

.link_banner:hover {
  opacity: .6;
}

.is-hide { display: none; }

@media screen and (max-width:768px){
  .container_main { width: 100%; }
  .container_side { display: none; }
  .link_btn-ellipse { font-size: 16px; }
}



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

    Container Header

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


/*
    menu
================================*/
.navi_main {
  border-top: 1px solid #7a5d3b;
  border-bottom: 1px solid #7a5d3b;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.navi_main_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;*/
  width: 100%;
}

.navi_main_link {
  -ms-align-items: center;
  align-items: center;
  color: currentColor;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 0;
  padding: 8px 0;
  text-align: center;
  width: 100%;
}

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

@media screen and (max-width: 599px) {
  .navi_main {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .navi_main_item { width: 50%; }
}



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

    Container Body

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

.section_box {}

.section_box + .section_box { margin-top: 60px; }

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


/*
    見出し
================================*/
.heading_primary {
  -ms-align-items: center;
  align-items: center;
  border-bottom: 3px solid #27476E;
  color: #27476E;
  font-size: 20px;
  min-height: 40px;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.heading_primary::before {
  display: block;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
}

#about::before { content: url("../../img/set/icon-l-01_in-house_online_seminar.png"); }
#main::before { content: url("../../img/set/icon-l-02_in-house_online_seminar.png"); }
#problem::before { content: url("../../img/set/icon-l-03_in-house_online_seminar.png"); }
#point::before { content: url("../../img/set/icon-l-04_in-house_online_seminar.png"); }
#service::before { content: url("../../img/set/icon-l-05_in-house_online_seminar.png"); }
#faq::before { content: url("../../img/set/icon-l-06_in-house_online_seminar.png"); }


.heading_normal {
  font-size: 24px;
  margin-bottom: 20px;
}

.heading_normal > span {
  font-size: .6em;
  font-weight: normal;
  margin-left: 20px;
}

@media screen and (max-width:599px) {
  .box_headingLink { position: static; transform: none; margin-bottom: 10px; }
}


/*
    リスト
================================*/
.list_bullet {}

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

/*
    主な業務一覧
================================*/
.container_flow {
  border: 2px solid #ccc;
}

.box_flow {
  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;
}

.box_flow_ttl {
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 140px;
}

.box_flow_ttl::before {
  border: 70px solid #ccc;
  border-top: 35px solid #fff;
  border-right: 70px solid transparent;
  border-bottom: none;
  border-left:  70px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  z-index: 1;
}

.box_flow_ttl::after {
  border: 70px solid #ccc;
  border-top: 35px solid #ccc;
  border-right: 70px solid transparent;
  border-bottom: none;
  border-left:  70px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 0;
  z-index: 2;
}

.box_flow_ttl.before {
  border-bottom: 10px solid #fff;
  background-color: #6B5705;
}
.box_flow_ttl.before::before { content: none; }
.box_flow_ttl.before::after {border-top-color: #6B5705; }

.box_flow_ttl.onDay {
  border-bottom: 10px solid #fff;
  background-color: #055157;
}
.box_flow_ttl.onDay::after { border-top-color: #055157; }

.box_flow_ttl.after { background-color: #053657; }
.box_flow_ttl.after::after { content: none; }

.box_flow_contents {
  -webkit-flex: 1 1 0px;
  -moz-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  -o-flex: 1 1 0px;
  flex: 1 1 0px;
  padding: 20px 10px;
}

.box_flow_ttl.onDay + .box_flow_contents,
.box_flow_ttl.after + .box_flow_contents {
  border-top: 1px solid #ccc;
}

@media screen and (max-width:599px) {
  .box_flow_ttl { width: 100px; }
  .box_flow_ttl::before {
    border: 50px solid #ccc;
    border-top: 25px solid #fff;
    border-right: 50px solid transparent;
    border-bottom: none;
    border-left:  50px solid transparent;
  }

  .box_flow_ttl::after {
    border: 50px solid #ccc;
    border-top: 25px solid #ccc;
    border-right: 50px solid transparent;
    border-bottom: none;
    border-left:  50px solid transparent;
    bottom: -25px;
  }

}


/*
    課題・悩み
================================*/
.section_case {}

.box_case_upper {
  border-bottom: 1px solid #bbb;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}

.box_case_upper::after {
  background-color: #fff;
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  content: "";
  display: block;
  height: 1em;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  width: 1em;
}

.box_case_upper::after {}

.box_case_ttl {
  color: #27476E;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.box_case_ttl > span {
  display: block;
  font-size: .8em;
}

.box_case_lower {}

.box_case_lower a {
  color: currentColor;
  text-decoration: underline;
}

.box_case_lower a:hover {
  opacity: .6;
  text-decoration: none;
}

.box_case_label {
  background-color: #AC9408;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  width: auto;
}


/*
    ３つのポイント
================================*/
.section_point {}

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

.box_point_ttl {
  border-bottom: 1px solid #ccc;
  color: #27476E;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.box_point_ttl > span {
  background-color: #27476E;
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin-bottom: 20px;
  padding: 8px 10px;
  width: auto;
}

.box_point_contents {}

/* 実績 */
.list_performance {}

.list_performance + p { margin-top: 10px; }

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

.list_performance_ttl {}

.list_performance_ttl.koshi { color: #BC3643; }
.list_performance_ttl.bup { color: #008cff; }

.list_performance_contents {
  margin-left: auto;
}



/*
    他社比較（table）
================================*/
.tbl_comparison {
  border: 1px solid #999;
  margin: 30px 0;
  table-layout: fixed;
  width: 100%;
}

.tbl_comparison caption {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.tbl_comparison th {
  background-color: #999;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

.tbl_comparison th:first-of-type { border-bottom: 2px solid #fff; }

.tbl_comparison th + th { border-left: 2px solid #fff; }

.tbl_comparison .company {}
.tbl_comparison .cost { width: 65px; }
.tbl_comparison .ope {}
.tbl_comparison .format {}
.tbl_comparison .area { width: 75px; }
.tbl_comparison .remarks { width: 250px; }

.tbl_comparison td {
  border-color: #ccc;
  border-style: solid;
  border-width: 0 1px 1px 0;
  padding: 5px;
  vertical-align: middle;
}

.tbl_comparison td:first-of-type {
  background-color: #eee;
}

.tbl_comparison .ins td {
  color: #BC3643;
  font-weight: bold;
}

.tbl_comparison .ins td:first-of-type {
  background-color: #BC3643;
  border-right: 1px solid #fff;
  border-bottom: 2px solid #fff;
  color: #fff;
}

@media screen and (max-width:599px) {
  .tbl_comparison { border: none; }
  .tbl_comparison thead { display: none; }
  .tbl_comparison tr {
    border: 1px solid #333;
    display: block;
    width: 100%;
  }
  .tbl_comparison .ins { border: 2px solid #BC3643; }
  .tbl_comparison tr + tr { margin-top: 20px; }
  .tbl_comparison td:first-of-type { text-align: left; }
  .tbl_comparison td:first-of-type br { display: none; }
  .tbl_comparison td {
    display: flex;
    text-align: right;
    width: 100%;
  }
  .tbl_comparison .ins td:first-of-type { border: none; }
  .tbl_comparison td::before {
    content: attr(data-label);
    flex-shrink: 0;
    font-weight: bold;
    margin-right: auto;
    text-align: left;
    white-space: pre;
    width: 95px;
  }
}


/*
    サービス一覧
================================*/
/* 一覧 */
.box_serviceList {}

.box_serviceList_link {
  color: currentColor;
  display: block;
  text-decoration: none;
}

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

.box_serviceList_img { margin-bottom: 10px; }

.box_serviceList_img > img { display: block; }

.box_serviceList_ttl {
  border-bottom: 1px solid #999;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.box_serviceList_txt {}

/* 詳細 */
.box_service {}

.box_service_ttl {
  background-color: #27476E;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
}

.box_service_img { margin-bottom: 30px; }

.box_service_img > img { display: block; }

.box_service_inner {}

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

.box_service_subTtl {
  -ms-align-items: center;
  align-items: center;
  border-bottom: 3px solid #AC9408;
  color: #AC9408;
  font-size: 18px;
  min-height: 30px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.box_service_subTtl.price {
  border-bottom-color: #BC3643;
  color: #BC3643;
}

.box_service_subTtl::before {
  display: block;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
}

.box_service_subTtl.recommend::before { content: url("../../img/set/icon-s-01_in-house_online_seminar.png"); }
.box_service_subTtl.service::before { content: url("../../img/set/icon-s-02_in-house_online_seminar.png"); }
.box_service_subTtl.impression::before { content: url("../../img/set/icon-s-03_in-house_online_seminar.png"); }
.box_service_subTtl.price::before { content: url("../../img/set/icon-s-04_in-house_online_seminar.png"); }

/* DL,DT,DD */
.list_service {}

.list_service_inner {}

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

.list_service_ttl {
  font-weight: bold;
  margin-bottom: 5px;
}

.list_service_contents {
  padding-left: 1em;
}

/* 価格 */
.container .text_price {
  font-size: 21px;
}

.text_price_label {}

.text_price > .text_price_number {
  font-size: 1.5em;
  font-weight: bold;
  margin-right: .25em;
  margin-left: 1.5em;
}

.text_price > .text_price_number > span:nth-of-type(2) {
  font-size: .65em;
  font-weight: normal;
}

.text_price > .text_price_number > .add { margin-left: 2.2em; }


@media screen and (max-width:599px) {
  .text_price {
    display: flex;
    flex-direction: column;
  }
  .text_price > .text_price_number > .add { margin-left: 0; }
}

/*
    よくあるご質問
================================*/
.container_faq {
  background-color: #F3F4FF;
  padding: 30px;
}

.box_faq {}

.box_faq {
  border-bottom: 1px solid #bbb;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.box_faq:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.box_faq_question {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 1.8em;
  position: relative;
}

.box_faq_question::before {
  color: #5559DC;
  content: "Q";
  font-size: 1.5em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.box_faq_answer {
  font-size: 16px;
  padding-left: 1.8em;
  position: relative;
}

.box_faq_answer::before {
  color: #BE5550;
  content: "A";
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.box_faq .text_color {
  color: #5559DC;
  font-size: 18px;
  text-align: center;
}

.box_faq img {
  border: 1px solid #bbb;
  display: block;
  height: auto;
  width: 100%;
}

/*
    flex box
================================*/
.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 30px;
}

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

/*横幅*/
.u_col1{width:8.333%;}
.u_col2{width:16.667%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:83.33%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}
@media screen and (max-width:768px){
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
}
@media screen and (max-width:599px){
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
}

.u_hasGutterXs{padding:2.5px;}
.u_hasGutterSm{padding:5px;}
.u_hasGutterMd{padding:7.5px;}
.u_hasGutterLg{padding:10px;}
.u_hasGutterXl{padding:12.5px;}

.u_noGutterXs{margin:-2.5px;}
.u_noGutterSm{margin:-5px;}
.u_noGutterMd{margin:-7.5px;}
.u_noGutterLg{margin:-10px;}
.u_noGutterXl{margin:-12.5px;}

@media screen and (max-width:599px) {
  .box_flex { justify-content: center; }
}




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

    Utility

================================*/
.u_note {
  font-size: 10px;
  vertical-align: super;
}

/* 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_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_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_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; }

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

.sp { display: none; }

@media screen and (max-width:599px){
  .res_sm_w100p { width: 100% !important; }
}

