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


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

    common

================================*/
body{
  color: #333;
  font: 500 16px "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: .1em;
}

div#cont { margin: 0; }

.wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  width: 980px;
}

.header { margin: 20px 0; }

.container { width: 730px; }


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

    下層ページ

================================*/
/*
    コンテンツヘッダー
================================*/
.p_contentsHeader {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.p_heading-primary {}

.c_date {
  color: #999;
  font-size: 16px;
}


/*
    ページナビ
================================*/
.p_pageNavi {
  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;
  /*justify-content: space-between;*/
  margin: 30px 0;
}

.p_pageNavi_item {
  /*-right: 50px;*/
  width: calc(100% / 3);
}

.p_pageNavi_link {
  color: #a17326;
  display: block;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 0;
  transition: .3s;
  width: 100%;
}

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

.p_pageNavi_link::before {
  content: "\f13a";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
}

@media screen and (max-width:350px){
  .p_pageNavi { flex-direction: column; }
  .p_pageNavi_item { width: 100%; }
}


/*
    コンテンツボディ
================================*/
.p_topTtl {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

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

@media screen and (max-width:599px){
  .p_topData { flex-direction: column; }
  .p_imagePicture { display: none; }
}

/* tag */
.p_tag {
  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;
}

.c_tag {
  color: #276b7a;
  border: 1px solid #276b7a;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 3px 5px;
  word-break: keep-all;
}

.c_pageTtl {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  width: 90%;
}

.p_imagePiture {}

.p_imagePicture > img { vertical-align: bottom; }


/*
    各セクション
================================*/
.p_sectionBox {}

.p_sectionBox + .p_sectionBox {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 30px;
}


.p_heading-secondary {
  border-bottom: 3px solid #dace9f;
  color: #a17326;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.p_heading-secondary.related {/* 関連サービス */
  border-bottom: none;
  color: inherit;
}

.p_heading-secondary.related::before {
  content: "\f0c1";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}


/* 顧客概要 */
.p_infoList {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

.p_infoList_box {
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 50%;
}

.p_infoList_ttl {
  border: 3px solid #eee;
  line-height: 1;
  margin-right: 20px;
  padding: 3px 10px;
}

.p_infoList_content {
  font-weight: bold;
}

@media screen and (max-width:599px){
  .p_infoList { flex-direction: column; }
  .p_infoList_box { width: 100%; }
  .p_infoList_box + .p_infoList_box { margin-top: 20px; }
}



/* ご提案内容 */
.p_decorationBox {
  background-color: #faf8ef;
  padding: 20px;
  position: relative;
}

.p_decorationBox::before,
.p_decorationBox::after {
  content: "";
  display: block;
  height: 1em;
  position: absolute;
  width: 1em;
}

.p_decorationBox::before {
  border-top: 5px solid #bd9a1e;
  border-left: 5px solid #bd9a1e;
  top: 0;
  left: 0;
}

.p_decorationBox::after {
  border-right: 5px solid #bd9a1e;
  border-bottom: 5px solid #bd9a1e;
  right: 0;
  bottom: 0;
}

.p_decorationBox_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.p_decorationBox_leadTxt {
  margin-bottom: 20px;
  padding-left: 1em;
  position: relative;
}

.p_decorationBox_leadTxt::before {
  content: "\021D2";
  position: absolute;
  top: 0;
  left: 0;
}

.p_decorationBox_leadTxt ~ .p_decorationBox_txt { padding-left: 1em; }

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


/* 検討プロセス */
.p_stepBox {}

.p_stepBox + .p_stepBox { margin-top: 25px; }

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

.p_stepBox_txt {}

.c_step {
  background-color: #276b7a;
  color: #fff;
  display: inline-block;
  font-family: century, sans-serif;
  font-size: 16px;
  font-style: italic;
  height: 28px;
  line-height: 28px;
  margin-right: 1.5em;
  padding: 0 .5em;
  position: relative;
}

.c_step::before {
  border: 14px solid transparent;
  border-left-color: #276b7a;
  border-right-width: 0;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  right: -14px;
  width: 0;
}

/* リスト */
.p_stepBox > ul {}

.p_stepBox > ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.p_stepBox > ul > li + li { margin-top: 10px; }
 

/* 関連サービス */
.p_borderBox {
  border: 2px solid #eee;
  padding: 20px;
}


/* ページネーション */
.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: 5px 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: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c_returnBtn {
  background-color: #333;
  border:2px solid #333;
  border-radius: 2px;
  color: #fff;
  display: block;
  padding: 5px 20px;
  text-align: center;
  transition: .3s;
}

.c_returnBtn:hover {
  background-color: #fff;
  color: #333;
}


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

.p_list > li {}

.p_list > li + li { margin-top: 10px; }

.p_list-checkCircle {}

/* チェックマーク */
.p_list-checkCircle > li {
  /*font-weight: bold;*/
  padding-left: 1.4em;
  position: relative;
}

.p_list-checkCircle > li::before {
  color: #a17326;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

/* ユーザーマーク */
.p_list-user {}

.p_list-user > li {
  padding-left: 1.4em;
  position: relative;
}

.p_list-user > li::before {
  color: #333;
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

/* リンク付き */
.p_list-link {}

.p_list-link > li > a {
  color: #052674;
  font-weight: bold;
  padding-left: 1.4em;
  position: relative;
  text-decoration: underline;
}

.p_list-link > li > a:hover {
  text-decoration: none;
}

.p_list-link > li > a::before {
  color: inherit;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}



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

    まとめページ

================================*/
.p_heading-primary > img { vertical-align: bottom; }
.p_text {}

.p_text-lead {
  font-size: 16px;
  margin: 20px 0;
}

.p_heading-secondary.sideBorder {
  border-bottom: none;
  color: #333;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

.p_heading-secondary.sideBorder > span {
  color: inherit;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
  padding: 0 55px;
  position: relative;
}

.p_heading-secondary.sideBorder > span::before,
.p_heading-secondary.sideBorder > span::after {
  background-color: #333;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 45px;
}

.p_heading-secondary.sideBorder > span::before { left: 0; }

.p_heading-secondary.sideBorder > span::after { right: 0; }

/* 記事一覧 */
.p_articleBox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  flex-flow: row wrap;
}

.p_articleBox_inner {
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 15px;
  width: 49%;
}

.p_articleBox_link {
  color:inherit;
  display: block;
  padding: 10px;
  transition: .3s;
}

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

.p_articleBox_ttl {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-left: 23px;
  position: relative;
}

.p_articleBox_ttl::before {
  content: url("../../img/consulting/consoluting_case__ico_book.png");
  position: absolute;
  top: 0;
  left: 0;
}

/* DX事例 */
.p_container_dx .p_articleBox_ttl::before { filter: hue-rotate(180deg); }

.p_articleBox_date {
  color: #999;
  font-size: 12px;
}

.p_articleDetail {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 10px 0;
}

.p_articleDetail_info { width: 100%; }

.p_articleDetail_image {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  -o-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 10px;
}

.p_articleDetail_info {}

.p_articleDetail_info > .p_infoList_box {
  display: block;
  width: 100%;
}

.p_articleDetail_info .p_infoList_ttl {
  background-color: #eee;
  border: none;
  font-size: 13px;
  margin: 0 0 5px 0;
  padding: 5px 10px;
}

.p_articleDetail_info .p_infoList_content {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.p_tag.top .c_tag {
  border-radius: 3px;
  font-size: 13px;
}

/* DX事例 */
.list_tag {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 20px;
}

.list_tag_item {
  background-color: #fff;
  border: 1px solid #0071BC;
  color: #0071BC;
  font-size: 13px;
  line-height: 1;
  padding: 5px;
}

.list_tag_item + .list_tag_item { margin-left: 5px; }

/* 複合提案 */
.p_cardList {
  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;
  justify-content: space-between;
}

.p_cardList::after {
  content: "";
  display: block;
  height: 0;
  width: 220px;
}

.p_cardList_item { margin-bottom: 10px; }

.p_cardList_link {
  transition: .3s;
}

.p_cardList_link:hover {
  opacity: .6;
}

.p_cardList_thumbnail {
  display: block;
}

@media screen and (max-width:599px){
  .p_articleBox_inner { width: 100%; }
  .p_cardList { align-items: center;flex-direction: column; }
}

/* 2022/10/26 オンライン支援サービス */
.link--normal {
  color: #052674;
  text-decoration: none;
  transition: .3s;
}

.link--normal:hover {
  opacity: 0.6;
  text-decoration: none;
}

.u_emphasys {
  font-weight: bold;
  text-decoration: underline;
}

.p_tag--online {}

.p_tag--online > .c_tag {
  background-color: #276b7a;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  padding: 4px 23px;
  text-align: center;
  width: 40%;
}

.list--hasMark {}
.list--hasMark {}
.list--hasMark > .list__item {
  padding-left: 1em;
  text-indent: -1em;
}
.list--hasMark > .list__item + .list__item { margin-top: 5px; }

.list--hasMark .list__itemInner {
  padding-left: 1em;
}

.seminarOutline {}
.seminarOutline > *:last-child { margin-bottom: 0; }

.seminarOutline__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.seminarOutline__title {
  flex: 0 0 20%;
  font-weight: bold;
  min-width: 7em;
}

.seminarOutline__contents { flex: 0 1 80%; }

.seminarDetail {}
.seminarDetail > *:last-child { margin-bottom: 0; }

.seminarDetail__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.seminarDetail__title {
  flex: 0 0 20%;
  font-weight: bold;
  min-width: 7em;
}

.seminarDetail__contents { flex: 0 1 80%; }

@media screen and (max-width: 599px){
  .p_tag--online > .c_tag { width: 100%; }
  .seminarOutline__wrapper { display: block; }
  .seminarDetail__wrapper { display: block; }
  .seminarOutline__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .seminarDetail__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .seminarDetail__title > br { display: none; }
}


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

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

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


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

    ★★レスポンシブ

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

.container {}

/*h1 img {
height: auto;
width: 100%;
}*/


}/* @media */
