@charset "utf-8";
/* CSS Document */
:root {
  --baseColor: #c29e00;
  --theme_ppt: #ed7321;
  --theme_excel-basic: #0bad94;
  --theme_excel-apply: #21a163;
  --theme_bizText: #01308e;
  --theme_10point: #efa930;
}

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

    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: .01em;
}

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

.container_main {
  width: 730px;
}

.container_side {
  font-size: 12px;
  width: 200px;
}

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

.is-hide { display: none; }


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



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

    Container Header

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



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

    Container Body

================================*/
.container_body { margin-bottom: 50px; }
.container_body > *:last-child { margin-bottom: 0; }

.sectionBox { margin-bottom: 50px; }
.sectionBox--sm { margin-bottom: 30px; }
.sectionBox > *:last-child { margin-bottom: 0; }

/* ========== 段落 ========== */
.normalText {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: .01em;
  margin-bottom: 20px;
}

.text--note {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}

.text--theme_caution {
  color: #dc143c;
  font-weight: bold;
}

.text--theme_ask{
  position: relative;
  padding: 0 1em;
  color: #dc143c;
  font-weight: bold;
}
.text--theme_ask::before,
.text--theme_ask::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 2px;
  height: 1.5em;
  margin: auto;
  background: #dc143c;
}
.text--theme_ask::before{
  left: 0;
  transform: rotate(-45deg);
}
.text--theme_ask::after{
  right: 0;
  transform: rotate(45deg);
}
/* ========== リスト ========== */
.list {}

/* １文字ぶんのインデント */
.list--hasMark {}
.list--hasMark__item {
  padding-left: 1em;
  text-indent: -1em;
}

/* ▶マーク */
.list--hasAngle {}

.list--hasAngle__item {}

.list--hasAngle__link {
  display: inline-block;
  padding-left: 1.2em;
  position: relative;
}

.list--hasAngle__link:focus,
.list--hasAngle__link:hover {
  color: #054c7e;
  text-decoration: underline;
}

.list--hasAngle__link::before {
  border: 6px solid transparent;
  border-left: 11px solid currentColor;
  border-right: 0;
  content: "";
  display: block;
  height: 0;
  margin-right: 8px;
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
}


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

.link--normal:focus,
.link--normal:hover {
  color: #054c7e;
  text-decoration: underline;
}

/* ▶マーク */
.link--hasMark_angle {
  color: #052674;
  display: block;
  padding-left: 15px;
  position: relative;
	text-decoration: none;
}

.link--hasMark_angle::before {
  border: 6px solid transparent;
  border-left: 11px solid currentColor;
  border-right: 0;
  content: "";
  display: block;
  height: 0;
  margin-right: 8px;
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
}

.link--hasMark_angle:focus,
.link--hasMark_angle:hover {
  color: #054c7e;
  text-decoration: underline;
}


/* ========== ボタン ========== */
.linkWrapper {
  display: flex;
  margin: 20px 0;
}

.linkWrapper--center { justify-content: center; }
.linkWrapper--left { justify-content: flex-start; }
.linkWrapper--right { justify-content: flex-end; }

@media screen and (min-width: 768px){
  .linkWrapper--right > [class*=link--] { max-width: 65%; }
}

.btn {
  align-items: center;
  background-color: #dc143c;
  box-shadow: 0 3px 0 #680f20;
  border-radius: 3px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  letter-spacing: 0;
  text-indent: 0;
  text-decoration: none;
  padding: 10px;
  width: 400px;
  max-width: 100%;
}

.btn:focus,
.btn:hover {
  box-shadow: none;
  text-decoration: none;
  transform: translateY(3px);
}

.btn--theme_base {
  --theme_color_h: 49;
  --theme_color_s: 100%;
  --theme_color_b: 38%;
  background-color: hsl(var(--theme_color_h), var(--theme_color_s), var(--theme_color_b));
  box-shadow: 0 3px 0 hsl(var(--theme_color_h), var(--theme_color_s), 25%);
}

.btn--theme_ppt {
  --theme_color_h: 24;
  --theme_color_s: 85%;
  --theme_color_b: 53%;
  background-color: hsl(var(--theme_color_h), var(--theme_color_s), var(--theme_color_b));
  box-shadow: 0 3px 0 hsl(var(--theme_color_h), var(--theme_color_s), 25%);
}

.btn--theme_excel_b {
  --theme_color_h: 171;
  --theme_color_s: 88%;
  --theme_color_b: 36%;
  background-color: hsl(var(--theme_color_h), var(--theme_color_s), var(--theme_color_b));
  box-shadow: 0 3px 0 hsl(var(--theme_color_h), var(--theme_color_s), 20%);
}

.btn--theme_excel_apl {
  --theme_color_h: 151;
  --theme_color_s: 66%;
  --theme_color_b: 38%;
  background-color: hsl(var(--theme_color_h), var(--theme_color_s), var(--theme_color_b));
  box-shadow: 0 3px 0 hsl(var(--theme_color_h), var(--theme_color_s), 20%);
}

.btn--theme_bizText {
  --theme_color_h: 220;
  --theme_color_s: 99%;
  --theme_color_b: 28%;
  background-color: hsl(var(--theme_color_h), var(--theme_color_s), var(--theme_color_b));
  /*box-shadow: 0 3px 0 hsl(var(--theme_color_h), 41%, 10%); 濃い影*/
  box-shadow: 0 3px 0 hsl(var(--theme_color_h), 81%, 64%);
}


/* ========== iframe ========== */
.iframeBox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-top: calc(100% * 9 / 16);
}

.iframeBox > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*
    見出し
================================*/
.heading--primary {
  border-bottom: 4px solid #c09d00;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
  padding-bottom: 8px;
  padding-left: 50px;
  position: relative;
}

.heading--primary::before {
  background-color: #c09d00;
  background-image: url("/resource/img/contents/icon_text.png");
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}

/* 講師向け */
#title_text::before { background-image: url("/resource/img/middle/shinjintext-Instructions-icon.png"); }
#title_kenshu::before { background-image: url("/resource/img/middle/shinjintext-teacher.png"); }
#title_dvd::before { background-image: url("/resource/img/middle/shinjintext-dvd.png"); }

.heading--primary > span { font-size: 0.8em; }

.heading--secondary {
  border-left: 5px solid #c09d00;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding: 0.05em 0.5em;
}

.heading--bold {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.heading--hasBorder_bottom {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
}




/*
    トップ画下のナビ
================================*/
.naviWrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px 30px;
}

.naviWrapper--sticky{
  position: sticky;
  top: 0;
  z-index:2;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.naviWrapper__item {
  padding: 0 16px;
}
.naviWrapper__item:first-of-type { border-right: 3px solid #c29e00; }

.naviWrapper__item:first-of-type.naviWrapper__item--no_border{ border: none; }

.naviWrapper__inner {}

.naviWrapper__title {
  color: #c29e00;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width:768px){
  .naviWrapper--sticky{
    position: unset;
  }
}

/* ========== ナビ ========== */
.localNav {}

.localNavi--flex{
  display: flex;
  flex-wrap: wrap;
}

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

.localNavi__item { margin-bottom: 5px; }

.localNavi__link {
  color: currentColor;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-left: 2.3em;
  transition: .3s;
}

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

.localNavi__link::before {
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
}

.localNavi__link--text::before {
  background-color: #c09d00;
  background-image: url("/resource/img/contents/icon_text.png");
  border-radius: 50%;
}
.localNavi__link--text--theme_ppt::before{  background-color: var(--theme_ppt); }
.localNavi__link--text--theme_excel_b::before{  background-color: var(--theme_excel-basic); }
.localNavi__link--text--theme_excel_apl::before{  background-color: var(--theme_excel-apply); }
.localNavi__link--text--theme_bizText::before{  background-color: var(--theme_bizText); }
.localNavi__link--text--theme_10point::before{  background-color: var(--theme_10point); }

.localNavi__link--instructorGuide::before { background-image: url("/resource/img/middle/shinjintext-Instructions-icon.png"); }
.localNavi__link--instructor::before { background-image: url("/resource/img/middle/shinjintext-teacher.png"); }
.localNavi__link--videoMaterials::before { background-image: url("/resource/img/middle/shinjintext-dvd.png"); }

/*
    問合せ
================================*/
.askMsg{
  display: flex;
  justify-content: center;
}
/*
    メディアデザイン
================================*/
.media{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: -15px;
}
.media__body{
  flex: 1 1 auto;
  padding: 15px;
}
.media__img{
  flex: 0 0 auto;
  padding: 15px;
  line-height: 0;
  text-align: center;
}
.media__img img{
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 599px){
  .media--resSmCancel{
    display: block;
  }
}
/*
    テキストの目次
================================*/
.tableOfContents {
  columns: 2;
  column-gap: 4em;
}
.tableOfContents > *:last-child { margin-bottom: 0; }

.tableOfContents__item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.tableOfContents__title {
  border-bottom: 2px dashed #c09d00;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 2em;
  text-indent: -2em;
}

.tableOfContents--theme_ppt .tableOfContents__title { border-color: var(--theme_ppt); }
.tableOfContents--theme_excel_b .tableOfContents__title { border-color: var(--theme_excel-basic); }
.tableOfContents--theme_excel_apl .tableOfContents__title { border-color: var(--theme_excel-apply); }
.tableOfContents--theme_bizText .tableOfContents__title { border-color: var(--theme_bizText); }

.tocList {}

.tocList__item {
  font-size: 15px;
  letter-spacing: 0;
  padding-left: 3em;
  text-indent: -3em;
}

/* 連番が２桁になったら */
.tocList__item.towDigits {
  padding-left: 4em;
  text-indent: -4em;
}

/* インデント無し */
.tocList__item--noIndent {
  padding-left: 0;
  text-indent: 0;
}

@media screen and (max-width: 599px) {
  .tableOfContents { column-count: 1; }
}


/*
    価格
================================*/
.priceBox {}

.priceBox__item {}

.priceBox__number {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}


/*
    ご購入の流れ
================================*/
/* ========== 枠線ボックス ========== */
.board {
  border: 3px solid #c09d00;
  margin-bottom: 30px;
  padding: 20px;
}
.board > *:last-child { margin-bottom: 0; }

.board--theme_ppt { border-color: var(--theme_ppt); }
.board--theme_excel_b { border-color: var(--theme_excel-basic); }
.board--theme_excel_apl { border-color: var(--theme_excel-apply); }
.board--theme_bizText { border-color: var(--theme_bizText); }

/* ========== 購入の流れリスト ========== */
.list--flow {}
.list--flow > *:last-child { margin-bottom: 0; }

.list--flow__item {
  letter-spacing: 0;
  margin-bottom: 10px;
  padding-left: 3em;
  text-indent: -3em;
}

/* 連番が２桁になったら */
.list--flow__item.towDigits {
  padding-left: 4em;
  text-indent: -4em;
}

/* flowの中のボタンのインデントを打消し */
.list--flow__item .linkWrapper { margin-left: -3em; }


/* ========== 注釈ボックス ========== */
.annotationBox {
  border: 1px solid #a9a9a9;
  padding: 20px;
  margin: 30px 0;
}

.annotationBox__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
}


/*
    商品リスト（ビジネス基礎テキスト）
================================*/
.commodityList {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.commodityList__item {
  padding: 16px;
}

.commodityList__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.commodityList__inner > *:last-child { margin-bottom: 0; }

.commodityList__title {}

.commodityTitle{
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.commodityTitle__image { margin-bottom: 8px; }

.commodityTitle__title {
  color: #c09d00;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  width: 100%;
}

.commodityList__text { margin-bottom: 20px; }

.commodityList__link { margin-top: auto; }

/*
    実績
================================*/
.performanceBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.performanceBox > *:last-child { margin-bottom: 0; }

.performanceBox__item {}

.performanceBox__title { font-weight: bold; }

.performanceBox__contents {}

.performanceBox__number {
  color: #c09d00;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
  margin: 0 8px;
}

/* ビジネス文書 */
.performanceBox--theme_bizText  .performanceBox__number { color: var(--theme_bizText); }


@media screen and (max-width: 599px) {
  .performanceBox { display: block; }
  .performanceBox__item { margin-bottom: 20px; }
}


/* テーマカラー */
.heading--theme_ppt { border-color: var(--theme_ppt); }
.heading--theme_excel_b { border-color: var(--theme_excel-basic); }
.heading--theme_excel_apl { border-color: var(--theme_excel-apply); }
.heading--theme_bizText { border-color: var(--theme_bizText); }
.heading--theme_10point { border-color: var(--theme_10point);}

.heading--theme_ppt::before { background-color: var(--theme_ppt); }
.heading--theme_excel_b::before { background-color: var(--theme_excel-basic); }
.heading--theme_excel_apl::before { background-color: var(--theme_excel-apply); }
.heading--theme_bizText::before { background-color: var(--theme_bizText); }
.heading--theme_10point::before { background-color: var(--theme_10point);}

.text--theme_10point{
  color: var(--theme_10point);
}
.text--theme_10point::before, .text--theme_10point::after{
  background-color: var(--theme_10point);
}
.performanceBox__number--theme_10point{
  color: var(--theme_10point);
}
.btn--theme_10point{
  background-color: var(--theme_10point);
  box-shadow: 0 3px 0 #a66e0c;
}
.performanceBox__number--theme_10point{
  color: var(--theme_10point);
}
@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; }

.u_disp--sp { display: none; }
.u_mark--note {
  font-size: 10px;
  vertical-align: super;
}
.u_dispBk{ display: block; }
@media screen and (max-width:599px){
  .res_sm_w100p { width: 100% !important; }
  .u_disp--sp { display: block; }
}

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