<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;
  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;
}
.wrapper{
  display: flex;
  justify-content: space-between;
}
.wrapper_main {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l_right__sideNav {
  order: 2;
  width: 200px;
}

.container_main {
  width: 730px;
}

.container_side {
  width: 200px;
}

.container_main img { vertical-align: bottom; }

.txt_normal {
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.box_link {
  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_link-r {
  justify-content: flex-end;
}

.link_btn {
  background-color: #cf2e3e;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  transition: .3s;
}

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

.is-hide { display: none; }

@media screen and (max-width:768px){
  .container_main { width: 100%; }
  .container_side { display: none; }
  .l_right__sideNav { display: none;}
}

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

.heading_primary { margin-bottom: 20px; }


/*
    Container Body
================================*/
.container_body {}

.box_section {}

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

.heading_secondary {
  position: relative;
  padding: 18px 18px 18px 36px;
  background: #f5f5f5;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.heading_secondary::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  display: block;
  margin: auto 0;
  width: 4px;
  height: 32px;
  border-radius: 100px;
  background: #333;
}



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

.col_2 {
  width: 50%;
}

.col_3 {
  width: 33.333%;
}

.col_4 {
  width: 25%;
}


/* カード */
.box_card {
  display: block;
  width: 100%;
  border-radius: 4px;
  color: inherit;
  transition: .3s;
  box-shadow: 3px 3px 5px 3px rgba(24, 24, 24, .5);
}
.box_card:hover {
  color: inherit;
  text-decoration: none;
}
.box_card-new{
  position: relative;
}
.box_card-new::before{
  content: "NEW";
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  display: block;
  width: 64px;
  padding: 8px 0 11px 3px;
  border: 2px solid;
  background: #333;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 16px;
}
.box_card_img {
  position: relative;
  line-height: 0;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.box_card_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: background-color .5s;
}

.box_card_img &gt; img {
  width: 100%;
  height: auto;
  transition: .5s transform;
}
.box_card:hover .box_card_img::before {
  background: rgba(24, 24, 24, .25);
}
.box_card:hover .box_card_img &gt; img{
  transform: scale(1.2);
}
.box_card_body {
  padding: 16px 12px;
}
.box_card_info {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  flex-wrap:wrap;
}
.box_card_cat{
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
}
.box_card_cat-sales{
  background: #d66363;
}
.box_card_cat-manner{
  background: #ffa85c;
}
.box_card_cat-management{
  background: #da70d6;
}
.box_card_cat-thiking{
  background: #87cefa;
}
.box_card_cat-claim{
  background: #32cd32;
}
.box_card_date {
  font-size: 13px;
  margin-left:auto;
}
.box_card_info + .box_card_ttl {
  margin-top: 12px;
}
.box_card_ttl {
  font-size: 16px;
}


/* もっと見るボタン */
#js_moreLink { overflow: hidden; }

.p_moreLink {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.c_moreLink,
.c_closeLink {
  border: 1px solid #774224;
  color: #774224;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  padding: 10px;
  text-align: center;
  transition: .3s;
  width: 40%;
}

.c_moreLink:hover,
.c_closeLink:hover {
  color: #774224;
  opacity: .6;
  text-decoration: none;
}

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

/* ページネーション */
.u_pos-r { position: relative; }
.u_my30 { margin-top: 30px !important; margin-bottom: 30px !important; }

.p_pageList { overflow: hidden; }
.p_pageList_item {
  width: 33%;
}
.p_pageList_item.prev { float: left; }
.p_pageList_item.next { float: right; }
.p_pageList_link {
  display: block;
  display: -webkit-box;
  color: currentColor;
  padding: 0 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  transition: .3s;
  word-break: break-all;
}
.p_pageList_link::before,
.p_pageList_link::after {
}
.p_pageList_link.prev::before {
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  content: '';
  display: block;
  height: .6em;
  position: absolute;
  top: 50%;
  left: .5em;
  transform: translateY(-50%) rotate(-45deg);
  width: .6em;
}
.p_pageList_link.next::after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: '';
  display: block;
  height: .6em;
  position: absolute;
  top: 50%;
  right: .5em;
  transform: translateY(-50%) rotate(45deg);
  width: .6em;
}
.p_pageList_link:hover { opacity: .7; }
.p_returnBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.c_returnBtn {
  -ms-align-items: center;
  align-items: center;
  background-color: #774224;
  border: 2px solid #774224;
  border-radius: 2px;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 16px;
  padding: 10px 25px;
  text-align: center;
}
.c_returnBtn:hover {
  color: #fff;
  opacity: .6;
}

.c_returnBtn &gt; img { margin-left: 5px; }

@media screen and (max-width: 599px){
  .c_returnBtn { padding: 10px; font-size: 12px;  }
  .c_returnBtn &gt; img { display: none; }
}

/*
    Social Button
================================*/
.socialBtnCont {
  border: 5px solid #ccc;
  margin: 30px 0;
  padding: 30px;
  text-align: center;
}

.socialBtnCont &gt; p {
  font-size: 17px;
  font-weight: 700;
}


.socialBtn {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  width: 210px;
}

.socialBtn &gt; li + li { margin-left: 10px; }

.socialBtn &gt; li.socialLineBtn { transition: .3s; }
.socialBtn &gt; li.socialLineBtn:hover { opacity: .6; }

.socialBtn_btn {/* aタグ */
  background-color: #333;
  border-radius: 20%;
  display: inline-block;
  height: 40px;
  position: relative;
  transition: .3s;
  vertical-align: middle;
  width: 40px;
  z-index: 1;
}

.socialBtn_btn::before {
  background-color: #999;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 1;
/*  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;*/
  transform: scale(1);
  transition: all .3s;
  z-index: -1;
}

.socialBtn_btn:hover::before {
  opacity: 0;
  transform: scale(0);
}

.socialBtn_icon {
  display: inline-block;
  height: 1.7em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.7em;
  z-index: 2;
}

.socialBtn_icon::before,
.socialBtn_icon::after {
content: "";
display: inline-block;
height: 1.7em;
vertical-align: text-top;
width: 1.7em;
}

.socialBtn_icon::after {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.socialBtn_btn:hover .socialBtn_icon::after {
  opacity: 1;
}

.socialBtn_icon.twi { height: 2.5em;width: 2.5em; }
.socialBtn_icon.blog { height: 2.2em;width: 2.2em; }


.socialBtn_btn.twi { background-color: #1da1f2; }
.socialBtn_btn.fb { background-color: #3b5998; }
.socialBtn_btn.inst { background-color: #CF0073; }
.socialBtn_btn.blog { background-color: #00a4de; }

.socialBtn_btn.twi:hover,
.socialBtn_btn.fb:hover,
.socialBtn_btn.inst:hover,
.socialBtn_btn.blog:hover {
  /*background-color: #fff;*/
  opacity: .6;
}

.socialBtn_icon.twi::before { content:url(/resource/img/contents/Twitter_Logo_White.svg);height: 2.5em;width: 2.5em; }
.socialBtn_icon.fb::before { content:url(/resource/img/contents/facebook_white.svg); }
.socialBtn_icon.inst::before { content:url(/resource/img/contents/Instagram_white.svg); }
.socialBtn_icon.blog::before { content:url(/resource/img/contents/hatenabookmark-logomark.svg);height: 2.2em;width: 2.2em; }


.facebook-wrapper {
  max-width: 500px;
  /*margin: 0 auto;*/
}
.facebook-wrapper &gt; .fb-page {
  width: 100%;
}
.facebook-wrapper &gt; .fb-page &gt; span,
.facebook-wrapper iframe {
  width: 100% !important;
}


/*
    サイドナビ(ランキング)
================================*/
.box_sideNavi { margin-bottom: 30px; }

.heading_sideNavi-image { margin-bottom: 20px; }

.list_ranking { margin-bottom: 30px; }

.list_ranking_item {}

.list_ranking_item &gt; a {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  padding-left: 45px;
  position: relative;
}

.list_ranking_item &gt; a:hover {
  color: #005580;
  text-decoration: underline;
}

.list_ranking_item &gt; a::before {
  background-position: top center;
  background-repeat: no-repeat;
  content :"";
  height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
}

.list_ranking_item:nth-of-type(2) &gt; a::before,
.list_ranking_item:nth-of-type(3) &gt; a::before,
.list_ranking_item:nth-of-type(4) &gt; a::before,
.list_ranking_item:last-of-type &gt; a::before {
  /*height: 18px;
  top: 5%;
  left: 4%;
  width: 18px;*/
}

.list_ranking_item:first-of-type &gt; a::before {  background-image: url("/resource/img/column/icon-rank1.png"); }
.list_ranking_item:nth-of-type(2) &gt; a::before {  background-image: url("/resource/img/column/icon-rank2.png"); }
.list_ranking_item:nth-of-type(3) &gt; a::before {  background-image: url("/resource/img/column/icon-rank3.png"); }
.list_ranking_item:nth-of-type(4) &gt; a::before {  background-image: url("/resource/img/column/icon-rank4.png"); }
.list_ranking_item:last-of-type &gt; a::before {  background-image: url("/resource/img/column/icon-rank5.png"); }

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

/* 記事一覧に戻るリンク */
.box_link-side { text-align: right; }

.link_btmLineArrow {
   border-bottom: 2px solid #774224;
  color: currentColor;
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  position: relative;
  text-align: right;
}

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

.link_btmLineArrow::after {
  border: 0;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #774224;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
}
/*
    サイドナビ（テーマタグ　）
================================*/
.l_right__sideNav &gt; .sidebar-themeTag:first-child{
  margin-top:0;
}
.l_right__sideNav &gt; .sidebar-themeTag:first-child &gt; .m_sideNav__theme:first-child{
  margin-top:0;
}

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

　　読み物リバイバル流し込み部のCSS

================================*/
.column_nav{
  margin-top: 20px;
  padding: 20px;
  background-color: #f4f9ff;
}
.column_nav_heading{
  font-weight: 700;
}
.column_nav_list{
  list-style: none;
  margin-top: 10px;
}
.column_nav_item{}
.column_nav_item + .column_nav_item{
  margin-top: 5px;
}
.column_nav_target{
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  font-weight: 700;
}
.column_nav_target:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: .45em;
  left: 0;
  border-top: 1px solid #052674;
  border-right: 1px solid #052674;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.column_body{
  font-size: 16px;
  font-family: "ゴシックMB101 R", Gothic MB101 Regular, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.column_body h3{
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}
.column_body h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #a7d6ff;
  display:block;
  width: 100%;
  height: 8px;
}
.column_body h4{
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
}
div.column_body p{
  margin-bottom: 0;
}
div.column_body &gt; p + p,
div.column_body &gt; p + div,
div.column_body &gt; div + div,
div.column_body &gt; div + p,
div.column_body &gt; ul + p,
div.column_body &gt; p + ul,
div.column_body &gt;  ul + ul,
div.column_body &gt; ul + div,
div.column_body &gt;  div + ul,
div.column_body &gt;  ul + div{
  margin-top: 24px;
}
div.column_body div &gt; p + p,
div.column_body div &gt; p + div,
div.column_body div &gt; div + div,
div.column_body div &gt; div + p,
div.column_body div &gt; ul + p,
div.column_body div &gt; p + ul,
div.column_body div &gt; ul + ul,
div.column_body div &gt; ul + div,
div.column_body div &gt; div + ul,
div.column_body div &gt; ul + div{
  margin-top: 16px;
}
.column_body li + li{
  margin-top: 8px;
}
.column_body .dot{
  padding: 12px;
  border: 3px dotted #B5D8F4;
}
.column_body .bk{
  background-color: #FFE4CC;
  padding: 12px;
  border-radius: 12px;
}
.column_body .linkbox{
  padding-top: 16px;
  border-top: 3px dotted #9c0000;
}
.column_body .same_cat_heading{
  font-size: 16px;
}
.same_cat_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
.same_cat_list:after{
  content:"";
  display: inline-block;
  width: calc(33.333% - 10px);
}
.same_cat_item{
  width: calc(33.333% - 10px);
}
.same_cat_item + .same_cat_item{
  margin-top: 0;
}
.same_cat_link{
  transition: .3s;
  color: #333;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.same_cat_link:hover{
  opacity: 0.6;
}
.same_cat_imgMain{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.same_cat_str{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.same_cat_title{
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
  letter-spacing: 1px;
}
.same_cat_time{
  font-size: 12px;
  text-align:right;
  display: block;
  color: #ccc;
}
@media screen and (max-width:768px){
  .same_cat_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .same_cat_list:after{
    width: calc(50% - 10px);
  }
  .same_cat_item{
    width: calc(50% - 10px);
  }
}
@media screen and (max-width:599px){}

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

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

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