/*! dipro Official Style */
@charset "UTF-8";


/*
dipro Official Style

dipro オフィシャルで使用するclass

Styleguide 32
*/

/*! Official Only plugins CSS */

/*
dipro-official CSS

dipro officialサイト専用 Style

Styleguide 32.
*/
/*
dipro-official new class
============================================================*/
/* -------------------------------------
micro cf
-------------------------------------- */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

/* -------------------------------------
汎用スタイル
-------------------------------------- */
.mL10 {
  margin-left: 10px !important;
}

.mL16 {
  margin-left: 16px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR16 {
  margin-right: 16px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.size170,
.size142,
.size128,
.size114,
.size100,
.size85 {
  line-height: 1.6;
}

.size170 {
  font-size: 170% !important;
  /* IE8 */
  font-size: 38.4px !important;
  font-size: 2.4rem !important;
}

.size142 {
  font-size: 142% !important;
  /* IE8 */
  font-size: 32px !important;
  font-size: 2.0rem !important;
}

.size128 {
  font-size: 128% !important;
  /* IE8 */
  font-size: 28.8px !important;
  font-size: 1.8rem !important;
}

.size114 {
  font-size: 114% !important;
  /* IE8 */
  font-size: 25.6px !important;
  font-size: 1.6rem !important;
}

.size100 {
  font-size: 100% !important;
  /* IE8 */
  font-size: 22.4px !important;
  font-size: 1.4rem !important;
}

.size85 {
  font-size: 85% !important;
  /* IE8 */
  font-size: 19.2px !important;
  font-size: 1.2rem !important;
}

.txtnormal {
  font-weight: normal;
}

/* -------------------------------------
汎用class
-------------------------------------- */
/*
verticalWrite

verticalWrite

Markup:
<p class="verticalWrite">
縦書きテキスト
</p>

Styleguide 32.1.1
============================================================ */
.verticalWrite {
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*
ofHeadLine1

ofHeadLine1

Markup:
<h2 class="ofHeadLine1">汎用タイトル2</h2>

Styleguide 32.2.1
============================================================ */
.ofHeadLine1 {
  position: relative;
  margin: 0 0 20px 0;
  padding: 5px 10px;
  line-height: 1.9;
  font-size: 14px;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 　bold;
  background: #f1eab8;
}

.ofHeadLine1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #f1eab8;
}

/*
ofHeadLine2

ofHeadLine2

Markup:
<h2 class="ofHeadLine2">汎用タイトル2</h2>

Styleguide 32.2.2
============================================================ */
.ofHeadLine2 {
  margin: 0 0 20px 0;
  padding: 12px 10px 5px 15px;
  font-size: 140%;
  /* IE8 */
  font-size: 18px;
  font-size: 28.8px;
  font-size: 1.8rem;
  line-height: 170%;
  font-weight: normal;
  border-top: 3px solid #c70029;
  background: #f2f2f2;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f2f2f2), color-stop(95%, #ffffff));
  background: linear-gradient(to bottom, #f2f2f2 1%, #ffffff 95%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
}

.ofHeadLine2:first-child {
  margin-top: 0;
}

/*
ofBoxLineList

ofBoxLineList

Markup:
<div class="ofBoxLineList {$modifiers}">
  <div class="ofBoxLineList_list">
    <div class="ofBoxLineList_item">
      <a href="" class="ofBoxLineList_itemInner">
        <h4 class="ofBoxLineList_title"><span>タイトル</span></h4>
        <div class="ofBoxLineList_body">
          <p class="ofBoxLineList_txt">
            テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
          </p>
        </div>
        <div class="ofBoxLineList_mores">
          <p class="ofBoxLineList_more">詳細はこちら</p>
        </div>
      </a>
    </div><!-- /.ofBoxLineList_item -->
    <div class="ofBoxLineList_item">
      <div class="ofBoxLineList_itemInner">
        <h4 class="ofBoxLineList_title"><span>タイトル (リンクなしVer.)</span></h4>
        <div class="ofBoxLineList_body">
          <p class="ofBoxLineList_txt">
            テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
          </p>
        </div>
        <div class="ofBoxLineList_mores">
          <p class="ofBoxLineList_more">詳細はこちら</p>
        </div>
      </div>
    </div><!-- /.ofBoxLineList_item -->
  </div>
</div><!-- /.ofBoxLineList -->

.ofBoxLineList-box2 - box2

Styleguide 32.3.1
============================================================ */
.ofBoxLineList {
  margin: 20px auto 0;
}

.ofBoxLineList:first-child {
  margin-top: 0;
}

.ofBoxLineList_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}

.ofBoxLineList_list > * {
  margin: 20px 0 0 20px;
}

.ofBoxLineList_item {
  width: 100%;
  border: 1px solid #c3c3c3;
}

.ofBoxLineList_item > a,
.ofBoxLineList_item > div {
  position: relative;
  display: block;
  height: 100%;
  padding: 15px 20px;
  color: #333333;
  font-size: 14px;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-decoration: none;
}

.ofBoxLineList_item:hover > a {
  background-color: #f0f4f8;
}

.ofBoxLineList_title {
  position: relative;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px solid #E5E5E5;
}

.ofBoxLineList_title > span {
  display: inline-block;
  position: relative;
  padding: 5px 5px 3px 15px;
}

.ofBoxLineList_title > span::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #c70029;
  border-left: 4px solid #c70029;
}

.ofBoxLineList_body {
  line-height: 2;
  padding-bottom: 25px;
}

.ofBoxLineList_txt {
  margin: 0;
}

.ofBoxLineList_mores {
  position: absolute;
  bottom: 10px;
}

.ofBoxLineList_more {
  position: relative;
  display: block;
  margin: 0;
  padding-left: 1em;
  color: #19547f;
  line-height: 180%;
}

.ofBoxLineList_more::before {
  position: absolute;
  top: 0;
  left: 1px;
  color: #0066AA;
  font-family: 'fontello';
  content: '\e801';
}

.ofBoxLineList-box2 .ofBoxLineList_list > * {
  width: calc( ( 100% - 20px * 2 ) / 2);
  width: calc( ( 100% - 4px - 20px * 2 ) / 2) \9;
}

/*
ofBoxLineList02

ofBoxLineList02

Markup:
<div class="ofBoxLineList02 {$modifiers}">
  <div class="ofBoxLineList02_list">
    <div class="ofBoxLineList02_item">
      <a href="" class="ofBoxLineList02_itemInner">
        <div class="ofBoxLineList02_heading">
          <h4 class="ofBoxLineList02_title"><span>タイトル</span></h4>
        </div>
        <div class="ofBoxLineList02_body">
          <h5 class="ofBoxLineList02_subTitle" data-mh="ofBoxLineList02_subTitle"><span>サブタイトル</span></h5>
          <div class="ofBoxLineList02_thumbs">
            <figure class="ofBoxLineList02_imgs"><img class="ofBoxLineList02_img" src="http://fakeimg.pl/50x50/660000/fff/" alt=""></figure>
          </div>
        </div>
      </a>
    </div><!-- /.ofBoxLineList02_item -->
    <div class="ofBoxLineList02_item">
      <a href="" class="ofBoxLineList02_itemInner">
        <div class="ofBoxLineList02_heading">
          <h4 class="ofBoxLineList02_title"><span>タイトル</span></h4>
        </div>
        <div class="ofBoxLineList02_body">
          <h5 class="ofBoxLineList02_subTitle" data-mh="ofBoxLineList02_subTitle"><span>長いサブタイトルサブタイトルサブタイトルサブタイトルサブタイトルサブタイトル</span></h5>
          <div class="ofBoxLineList02_thumbs">
            <figure class="ofBoxLineList02_imgs"><img class="ofBoxLineList02_img" src="http://fakeimg.pl/300x500/660000/fff/" alt=""></figure>
          </div>
        </div>
      </a>
    </div><!-- /.ofBoxLineList02_item -->
    <div class="ofBoxLineList02_item">
      <div class="ofBoxLineList02_itemInner">
        <div class="ofBoxLineList02_heading">
          <h4 class="ofBoxLineList02_title"><span>タイトル (リンクなしVer.)</span></h4>
        </div>
        <div class="ofBoxLineList02_body">
          <h5 class="ofBoxLineList02_subTitle" data-mh="ofBoxLineList02_subTitle"><span>サブタイトル</span></h5>
          <div class="ofBoxLineList02_thumbs">
            <figure class="ofBoxLineList02_imgs"><img class="ofBoxLineList02_img" src="http://fakeimg.pl/600x300/660000/fff/" alt=""></figure>
          </div>
        </div>
      </div>
    </div><!-- /.ofBoxLineList02_item -->
  </div>
</div><!-- /.ofBoxLineList02 -->

.ofBoxLineList02-box3 - box3

Styleguide 32.3.2
============================================================ */
.ofBoxLineList02 {
  margin: 20px auto 0;
}

.ofBoxLineList02:first-child {
  margin-top: 0;
}

.ofBoxLineList02_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}

.ofBoxLineList02_list > * {
  margin: 20px 0 0 20px;
}

.ofBoxLineList02_item {
  width: 100%;
  border: 1px solid #c3c3c3;
}

.ofBoxLineList02_item > a,
.ofBoxLineList02_item > div {
  position: relative;
  display: block;
  height: 100%;
  padding-bottom: 10px;
  color: #333333;
  text-decoration: none;
}

.ofBoxLineList02_item:hover > a {
  background-color: #f0f4f8;
}

.ofBoxLineList02_heading {
  padding: 12px 10px 5px;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  background: #f2f2f2;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f2f2f2), color-stop(95%, #ffffff));
  background: linear-gradient(to bottom, #f2f2f2 1%, #ffffff 95%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  border-top: 3px solid #c70029;
}

.ofBoxLineList02_title {
  color: #19547f;
  font-size: 17px;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: bold;
}

.ofBoxLineList02_body {
  padding: 5px;
}

.ofBoxLineList02_subTitle {
  display: block;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: center;
  color: #19547f;
  font-size: 15px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
}

.ofBoxLineList02_thumbs {
  position: relative;
  margin: 0 auto;
  text-align: center;
  min-width: 180px;
  width: 180px;
}

.ofBoxLineList02_imgs {
  position: relative;
  display: block;
  margin: 0 auto;
  padding-top: calc( 140 / 180 * 100%);
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ofBoxLineList02_img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.ofBoxLineList02-box3 .ofBoxLineList02_list > * {
  width: calc( ( 100% - 20px * 3 ) / 3);
  width: calc( ( 100% - 4px - 20px * 3 ) / 3) \9;
}

/*
ofStaffList

ofStaffList

Markup:
<div class="ofStaffList {$modifiers}">
  <div class="ofStaffList_list">
    <div class="ofStaffList_item">
      <a href="" class="ofStaffList_itemInner">
        <div class="ofStaffList_thumbs">
          <figure class="ofStaffList_imgs"><img class="ofStaffList_img" src="http://fakeimg.pl/540x440/660000/fff/" alt=""></figure>
        </div>
        <div class="ofStaffList_body">
          <p class="ofStaffList_business">開発業務</p>
          <h4 class="ofStaffList_name"><span>山田　太郎</span></h4>
          <p class="ofStaffList_join">2018年X月入社</p>
        </div>
      </a>
    </div><!-- /.ofStaffList_item -->
    <div class="ofStaffList_item">
      <div class="ofStaffList_itemInner">
        <div class="ofStaffList_thumbs">
          <figure class="ofStaffList_imgs"><img class="ofStaffList_img" src="http://fakeimg.pl/100x100/660000/fff/" alt=""></figure>
        </div>
        <div class="ofStaffList_body">
          <p class="ofStaffList_business">開発業務</p>
          <h4 class="ofStaffList_name"><span>山田　太郎 (リンクなしVer.)</span></h4>
          <p class="ofStaffList_join">2018年X月入社</p>
        </div>
      </div>
    </div><!-- /.ofStaffList_item -->
  </div>
</div><!-- /.ofStaffList -->

.ofStaffList-box4 - box4

Styleguide 32.4
============================================================ */
.ofStaffList {
  margin: 20px auto 0;
}

.ofStaffList:first-child {
  margin-top: 0;
}

.ofStaffList_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -22px 0 0 -22px;
}

.ofStaffList_list > * {
  margin: 22px 0 0 22px;
}

.ofStaffList_item {
  width: 100%;
  border: 1px solid #c3c3c3;
}

.ofStaffList_item > a,
.ofStaffList_item > div {
  position: relative;
  display: block;
  height: 100%;
  color: #333333;
  text-decoration: none;
}

.ofStaffList_item:hover > a {
  background-color: #f0f4f8;
}

.ofStaffList_thumbs {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.ofStaffList_imgs {
  position: relative;
  display: block;
  margin: 0 auto;
  padding-top: calc( 440 / 540 * 100%);
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ofStaffList_img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.ofStaffList_body {
  padding: 10px 20px 7px;
  line-height: 1.9;
  font-size: 14px;
  font-size: 22.4px;
  font-size: 1.4rem;
  border-top: solid 4px #c70029;
}

.ofStaffList_body > * {
  margin: 0;
}

.ofStaffList_name {
  font-size: 18px;
  font-size: 28.8px;
  font-size: 1.8rem;
}

.ofStaffList-box4 .ofStaffList_list > * {
  width: calc( ( 100% - 22px * 4 ) / 4);
  width: calc( ( 100% - 4px - 22px * 4 ) / 4) \9;
}

/*
ofBlockLineList

ofBlockLineList

Markup:

.ofBlockLineList-box2 - box2

Styleguide 32.5.1
============================================================ */
.ofBlockLineList {
  margin: 20px auto 0;
}

.ofBlockLineList:first-child {
  margin-top: 0;
}

.ofBlockLineList_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px 0 0 -65px;
}

.ofBlockLineList_block > * {
  margin: 20px 0 0 65px;
  width: 100%;
}

.ofBlockLineList_txt {
  margin-top: 0;
}

.ofBlockLineList-box2 .ofBlockLineList_block > * {
  width: calc( ( 100% - 65px * 2 ) / 2);
  width: calc( ( 100% - 4px - 65px * 2 ) / 2) \9;
}

/*
ofBlockLineList02

ofBlockLineList02

Markup:
<div class="ofBlockLineList02 {$modifiers}">
  <div class="ofBlockLineList02_list">
    <div class="ofBlockLineList02_item">
      <div class="ofBlockLineList02_thumbs">
        <figure class="ofBlockLineList02_imgs"><img class="ofBlockLineList02_img" src="http://fakeimg.pl/284x182/336699/fff/" alt=""></figure>
        <div class="ofBlockLineList02_caption">
          キャプション
        </div>
      </div>
    </div><!-- /.ofBlockLineList02_item -->
    <div class="ofBlockLineList02_item">
      <div class="ofBlockLineList02_thumbs">
        <figure class="ofBlockLineList02_imgs"><img class="ofBlockLineList02_img" src="http://fakeimg.pl/50x50/336699/fff/" alt=""></figure>
        <div class="ofBlockLineList02_caption">
          キャプション
          <br>説明テキスト説明テキスト説明テキスト説明テキスト説明テキスト説明テキスト
        </div>
      </div>
    </div><!-- /.ofBlockLineList02_item -->
    <div class="ofBlockLineList02_item">
      <div class="ofBlockLineList02_thumbs">
        <figure class="ofBlockLineList02_imgs"><img class="ofBlockLineList02_img" src="http://fakeimg.pl/600x300/336699/fff/" alt=""></figure>
        <div class="ofBlockLineList02_caption">
          <b>キャプション (太字)</b>
          <br>説明テキスト説明テキスト説明テキスト説明テキスト説明テキスト説明テキスト
        </div>
      </div>
    </div><!-- /.ofBlockLineList02_item -->
  </div>
</div><!-- /.ofBlockLineList02 -->

.ofBlockLineList02-box3 - box3
.ofBlockLineList02-box4 - box4

Styleguide 32.5.2
============================================================ */
.ofBlockLineList02 {
  margin: 20px auto 0;
}

.ofBlockLineList02:first-child {
  margin-top: 0;
}

.ofBlockLineList02_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -16px 0 0 -16px;
}

.ofBlockLineList02_list > * {
  margin: 16px 0 0 16px;
}

.ofBlockLineList02_item {
  width: 100%;
}

.ofBlockLineList02_item > a,
.ofBlockLineList02_item > div {
  position: relative;
  display: block;
  height: 100%;
  color: #333333;
  text-decoration: none;
}

.ofBlockLineList02_thumbs {
  position: relative;
  margin: 0 auto;
}

.ofBlockLineList02_imgs {
  position: relative;
  display: block;
  margin: 0 auto;
  padding-top: calc( 180 / 280 * 100%);
  width: 100%;
  overflow: hidden;
  text-align: center;
  border: 1px solid #c3c3c3;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ofBlockLineList02_img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.ofBlockLineList02_caption {
  margin: 10px 0 0;
  text-align: left;
  font-size: 12px;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.9;
}

.ofBlockLineList02-box3 .ofBlockLineList02_list > * {
  width: calc( ( 100% - 16px * 3 ) / 3);
  width: calc( ( 100% - 4px - 16px * 3 ) / 3) \9;
}

.ofBlockLineList02-box4 .ofBlockLineList02_list > * {
  width: calc( ( 100% - 16px * 4 ) / 4);
  width: calc( ( 100% - 4px - 16px * 4 ) / 4) \9;
}

/*
ofFloatBox

※共通スタイルとして使うことになったため、スタイルを「 dipro-common.css 」に移動

Styleguide 32.6
============================================================ */

/*
ofTableGraph

ofTableGraph

Markup:
<div class="tableScroll">
  <table class="ofTableGraph" width="100%" border="0">
    <thead>
      <tr>
        <th rowspan="2">製品名称</th>
        <th rowspan="2">ツール名称</th>
        <th colspan="5">コスト最適化</th>
        <th rowspan="2"><span class="verticalWrite">簡易成形性解析</span></th>
        <th rowspan="2"><span class="verticalWrite">増分法解析</span></th>
        <th rowspan="2" width="30%">用途、狙い</th>
      </tr>
      <tr>
        <th><span class="verticalWrite">ブランク展開</span></th>
        <th><span class="verticalWrite">歩留り向上</span></th>
        <th><span class="verticalWrite">材料コスト削減</span></th>
        <th><span class="verticalWrite">プレス工程見積</span></th>
        <th><span class="verticalWrite">余肉面作成</span></th>
      </tr>
    </thead>
    <tbody>
    <tr>
      <td rowspan="2" class="tLeft vam" style="background-color:#fdfbee;">Forming Suite</td>
      <td class="tLeft vam" style="background-color:#fdfbee;">FASTBLANK</td>
      <td>●</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td class="tLeft">短時間でブランク形状を作成したい。</td>
    </tr>
    <tr>
      <td class="tLeft vam" style="background-color:#fdfbee;">COSTOPTIMIZER</td>
      <td>●</td>
      <td>●</td>
      <td>●</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td class="tLeft">材料歩留まりを向上させ、部品コスト低減設計をしたい。</td>
    </tr>
    <tr>
      <td class="tLeft vam" style="background-color:#fdfbee;">Sculptured Die Face</td>
      <td class="tLeft vam" style="background-color:#fdfbee;">-</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>　</td>
      <td>●</td>
      <td>　</td>
      <td>　</td>
      <td class="tLeft">簡易的なダイフェースを作成したい。</td>
    </tr>
    </tbody>
  </table>
</div><!-- /.tableScroll -->

Styleguide 32.7
============================================================ */
.ofTableGraph {
  margin: 20px auto;
  border: 1px solid #E5E5E5;
}

.ofTableGraph th,
.ofTableGraph td {
  padding: 8px;
  line-height: 140%;
  font-size: 14px;
  font-size: 22.4px;
  font-size: 1.4rem;
  letter-spacing: .05em;
  border: 1px solid #E5E5E5;
}

.ofTableGraph th.nowr,
.ofTableGraph td.nowr {
  white-space: nowrap;
}

.ofTableGraph th {
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  font-weight: normal;
  background: #f2f2f2;
}

.ofTableGraph td {
  vertical-align: middle;
  text-align: center;
}

.ofTableGraph td.c01 {
  color: #669900;
}

.ofTableGraph td.c02 {
  color: #006699;
}

.ofTableGraph td.c03 {
  color: #FF6600;
}

.ofTableGraph td.c04 {
  color: #a262fd;
}

.ofTableGraph td.c05 {
  color: #f5c645;
}

.ofTableGraph td.c06 {
  color: #fd96eb;
}

.ofTableGraph td.c07 {
  color: #6ae095;
}

.ofTableGraph td.c08 {
  color: #eb5389;
}

.ofTableGraph td.c09 {
  color: #32aae8;
}

.ofTableGraph td.c10 {
  background-color: #f4f6f8;
}

.ofTableGraph thead th.c01 {
  background-color: #F1FFD5;
}

.ofTableGraph thead th.c02 {
  background-color: #D5F1FF;
}

.ofTableGraph thead th.c03 {
  background-color: #FFEED5;
}

.ofTableGraph thead th.c04 {
  background-color: #e8d9fd;
}

.ofTableGraph thead th.c05 {
  background-color: #f7e6b7;
}

.ofTableGraph thead th.c06 {
  background-color: #f9e4fb;
}

.ofTableGraph thead th.c07 {
  background-color: #d9efe1;
}

.ofTableGraph thead th.c08 {
  background-color: #fcd0e2;
}

.ofTableGraph thead th.c09 {
  background-color: #bae1f5;
}

.ofTableGraph .bg_pink {
  background-color: #FFE6F2;
}

.ofTableGraph .bg_purple {
  background-color: #E1E1FF;
}

.ofTableGraph .txt_pink {
  color: #FF95C8;
}

.ofTableGraph .txt_purple {
  color: #95C8FF;
}

.ofTableGraph .verticalWrite {
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/*
ofColumnBoxList

ofColumnBoxList

Markup:
<div class="ofColumnBoxList {$modifiers}">
  <div class="ofColumnBoxList_block">
    <div class="ofColumnBoxList_unit">
      <ul class="ofColumnBoxList_list">
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリストリストリスト</span></li>
      </ul>
    </div><!-- /.ofColumnBoxList_unit -->
    <div class="ofColumnBoxList_unit">
      <ul class="ofColumnBoxList_list">
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリストリストリスト</span></li>
      </ul>
    </div><!-- /.ofColumnBoxList_unit -->
    <div class="ofColumnBoxList_unit">
      <ul class="ofColumnBoxList_list">
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
      </ul>
    </div><!-- /.ofColumnBoxList_unit -->
    <div class="ofColumnBoxList_unit">
      <ul class="ofColumnBoxList_list">
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリストリストリストリストリスト</span></li>
        <li class="ofColumnBoxList_item"><span>リストリスト</span></li>
      </ul>
    </div><!-- /.ofColumnBoxList_unit -->
  </div><!-- /.ofColumnBoxList_block -->
</div><!-- /.ofColumnBoxList -->

.ofColumnBoxList-column2 - column2
.ofColumnBoxList-column3 - column3
.ofColumnBoxList-column4 - column4

Styleguide 32.8
============================================================*/
.ofColumnBoxList {
  margin: 20px 0 0;
}

.ofColumnBoxList:first-child {
  margin-top: 0;
}

.ofColumnBoxList_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: -20px 0 0 -20px;
}

.ofColumnBoxList_block > * {
  margin: 20px 0 0 20px;
}

.ofColumnBoxList_list {
  margin: 0 0 0 20px;
}

.ofColumnBoxList_item {
  display: list-item;
  margin: 0 0 .3em;
  line-height: 1.6;
}

.ofColumnBoxList-column2 .ofColumnBoxList_block > * {
  width: calc( ( 100% - 20px * 2 ) / 2);
  width: calc( ( 100% - 4px - 20px * 2 ) / 2) \9;
}

.ofColumnBoxList-column3 .ofColumnBoxList_block > * {
  width: calc( ( 100% - 20px * 3 ) / 3);
  width: calc( ( 100% - 4px - 20px * 3 ) / 3) \9;
}

.ofColumnBoxList-column4 .ofColumnBoxList_block > * {
  width: calc( ( 100% - 20px * 4 ) / 4);
  width: calc( ( 100% - 4px - 20px * 4 ) / 4) \9;
}

/*
ofSortBlock

ofSortBlock

Markup:
<div class="ofSortBlock {$modifiers}">
  <div class="ofSortBlock_inner">
    <div class="ofSortBlock_block">
      <div class="ofSortBlock_unit ofSortBlock_unit-01 sortUnit-sp04">
        【 PC表示 : 1番目に表示 】
        <br><b>【 SP表示 : 4番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div><!-- /.ofSortBlock_unit -->
      <div class="ofSortBlock_unit ofSortBlock_unit-02 sortUnit-sp06">
        【 PC表示 : 2番目に表示 】
        <br><b>【 SP表示 : 6番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div><!-- /.ofSortBlock_unit -->
      <div class="ofSortBlock_unit ofSortBlock_unit-03 sortUnit-sp05">
        【 PC表示 : 3番目に表示 】
        <br><b>【 SP表示 : 5番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div><!-- /.ofSortBlock_unit -->
      <div class="ofSortBlock_unit ofSortBlock_unit-04 sortUnit-sp01">
        【 PC表示 : 4番目に表示 】
        <br><b>【 SP表示 : 1番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div><!-- /.ofSortBlock_unit -->
      <div class="ofSortBlock_unit ofSortBlock_unit-05 sortUnit-sp02">
        【 PC表示 : 5番目に表示 】
        <br><b>【 SP表示 : 2番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div><!-- /.ofSortBlock_unit -->
      <div class="ofSortBlock_unit ofSortBlock_unit-06 sortUnit-sp03">
        【 PC表示 : 6番目に表示 】
        <br><b>【 SP表示 : 3番目に表示 】</b>
        <br>テキストテキストテキストテキストテキストテキストテキスト
      </div>
    </div><!-- /.ofSortBlock_block -->
  </div>
</div><!-- /.ofSortBlock -->

.ofSortBlock-box2 - box2

Styleguide 32.9
============================================================*/
.ofSortBlock {
  margin: 20px 0 0;
}

.ofSortBlock:first-child {
  margin-top: 0;
}

.ofSortBlock_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px 0 0 -10px;
}

.ofSortBlock_block > * {
  margin: 10px 0 0 10px;
  padding: .5em;
}

.ofSortBlock_unit-01 {
  background-color: #ffc;
}

.ofSortBlock_unit-02 {
  background-color: #ccf;
}

.ofSortBlock_unit-03 {
  background-color: #ccc;
}

.ofSortBlock_unit-04 {
  background-color: #fcc;
}

.ofSortBlock_unit-05 {
  background-color: #cfc;
}

.ofSortBlock_unit-06 {
  background-color: #fcf;
}

.ofSortBlock-box2 .ofSortBlock_block > * {
  width: calc( ( 100% - 10px * 2 ) / 2);
  width: calc( ( 100% - 4px - 10px * 2 ) / 2) \9;
}

/*
ofRecruitBlock

ofRecruitBlock

Markup:
<div class="ofRecruitBlock ofRecruitBlock-sideRight">
  <div class="ofRecruitBlock_inner">
    <div class="ofRecruitBlock_main">
      <p>メインコンテンツメインコンテンツメインコンテンツメインコンテンツメインコンテンツメインコンテンツ</p>
    </div><!-- /.ofRecruitBlock_main -->
    <div class="ofRecruitBlock_side">
      <p>sideRight サイドコンテンツサイドコンテンツサイドコンテンツサイドコンテンツサイドコンテンツ</p>
    </div><!-- /.ofRecruitBlock_side -->
  </div>
</div><!-- /.ofRecruitBlock -->
<div class="ofRecruitBlock ofRecruitBlock-sideLeft">
  <div class="ofRecruitBlock_inner">
    <div class="ofRecruitBlock_main">
      <p>メインコンテンツメインコンテンツメインコンテンツメインコンテンツメインコンテンツメインコンテンツ</p>
    </div><!-- /.ofRecruitBlock_main -->
    <div class="ofRecruitBlock_side">
      <p>sideLeft サイドコンテンツサイドコンテンツサイドコンテンツサイドコンテンツサイドコンテンツ</p>
    </div><!-- /.ofRecruitBlock_side -->
  </div>
</div><!-- /.ofRecruitBlock -->

Styleguide 32.10
============================================================*/
.ofRecruitBlock {
  position: relative;
  margin: 45px auto 0;
}

.ofRecruitBlock_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  width: 100%;
}

.ofRecruitBlock_inner > * {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  margin: 0 0 0 28px;
}

.ofRecruitBlock_inner > *:first-child {
  margin-left: 0;
}

.ofRecruitBlock_main {
  width: 100%;
  overflow: hidden;
}

.ofRecruitBlock_side {
  width: 279px;
  min-width: 279px;
}

.ofRecruitBlock-sideLeft .ofRecruitBlock_main {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 28px;
}

.ofRecruitBlock-sideLeft .ofRecruitBlock_side {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 0;
}

.ofRecruitBlock-sideRight .ofRecruitBlock_main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.ofRecruitBlock-sideRight .ofRecruitBlock_side {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.ofRecruitBlock-recruitNewgraduates {
  margin-top: 26px;
}

.recruitSideBnrWrap-pc {
  margin-top: 28px;
}

.recruitSideBnrWrap-sp {
  margin-top: 0;
}

.recruitSideBnr {
  margin-top: 20px;
}

.recruitSideBnr:first-child {
  margin-top: 0;
}

.recruitSideBnr_item {
  text-align: center;
}

.recruitSideBnr_item img {
  margin: auto;
}

/*
採用情報　お知らせ一覧
 * 「 .recruitNewsScroll 」 はニュース表示範囲固定スクロール用class

recruitNewsScroll , recruitNewsList

Markup:
<div class="recruitNewsScroll">
  <div class="recruitNewsList">
    <div class="recruitNewsList_inner">
      <div class="recruitNewsList_list">
        <div class="recruitNewsList_item">
          <a href="#" class="recruitNewsList_itemInner">
            <div class="recruitNewsList_body">
              <div class="recruitNewsList_bars">
                <div class="recruitNewsList_dateTimes">
                  <p class="recruitNewsList_date">2018.06.05</p>
                </div>
              </div>
              <div class="recruitNewsList_detail">
                <p class="recruitNewsList_title">テキストテキストテキストテキストテキストテキストテキスト<span class="recruitNewsList_newTxt">NEW</span></p>
              </div>
            </div><!-- /.recruitNewsList_body -->
          </a><!-- /.recruitNewsList_itemInner -->
        </div><!-- /.recruitNewsList_item -->
        <div class="recruitNewsList_item">
          <a href="#" class="recruitNewsList_itemInner">
            <div class="recruitNewsList_body">
              <div class="recruitNewsList_bars">
                <div class="recruitNewsList_dateTimes">
                  <p class="recruitNewsList_date">2018.06.01</p>
                </div>
              </div>
              <div class="recruitNewsList_detail">
                <p class="recruitNewsList_title">テキストテキストテキストテキストテキストテキストテキストテキストテキスト</p>
              </div>
            </div><!-- /.recruitNewsList_body -->
          </a><!-- /.recruitNewsList_itemInner -->
        </div><!-- /.recruitNewsList_item -->
        <div class="recruitNewsList_item">
          <div class="recruitNewsList_itemInner">
            <div class="recruitNewsList_body">
              <div class="recruitNewsList_bars">
                <div class="recruitNewsList_dateTimes">
                  <p class="recruitNewsList_date">2018.06.01</p>
                </div>
              </div>
              <div class="recruitNewsList_detail">
                <p class="recruitNewsList_title">テキスト（リンクなし）</p>
              </div>
            </div><!-- /.recruitNewsList_body -->
          </div><!-- /.recruitNewsList_itemInner -->
        </div><!-- /.recruitNewsList_item -->
      </div>
    </div><!-- /.recruitNewsList_inner -->
  </div><!-- /.recruitNewsList -->
</div><!-- /.recruitNewsScroll -->

Styleguide 32.11
============================================================*/
.recruitNewsScroll {
  border-bottom: 1px solid #E5E5E5;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
  height: 138px;
}

.recruitNewsList {
  position: relative;
  margin: -1px auto 0;
}

.recruitNewsList:first-child {
  margin-top: 0;
}

.recruitNewsList_item {
  position: relative;
  padding: 1px 0;
  border-top: 1px dotted #B2B2B2;
}

.recruitNewsList_item:first-child {
  border-top-color: transparent;
}

.recruitNewsList_item > a,
.recruitNewsList_item > div {
  position: relative;
  display: block;
  padding: 16px 17px 13px;
  color: #333333;
  text-decoration: none;
}

.recruitNewsList_item > a .recruitNewsList_title {
  color: #19547f;
}

.recruitNewsList_item:hover > a {
  text-decoration: none;
  background-color: #f0f4f8;
}

.recruitNewsList_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.recruitNewsList_body > * {
  margin: 0 0 0 30px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruitNewsList_body > *:first-child {
  margin-left: 0;
}

.recruitNewsList_bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.recruitNewsList_bars > * {
  margin: 0 0 0 10px;
}

.recruitNewsList_bars > *:first-child {
  margin-left: 0;
}

.recruitNewsList_dateTimes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruitNewsList_dateTimes > * {
  margin: 0 0 0 8px;
}

.recruitNewsList_dateTimes > *:first-child {
  margin-left: 0;
}

.recruitNewsList_date, .recruitNewsList_time {
  white-space: nowrap;
  line-height: 1;
}

.recruitNewsList_date > em {
  font-style: normal !important;
  font-weight: normal;
}

.recruitNewsList_time {
  color: #888888;
}

.recruitNewsList_detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  overflow: hidden;
  /* 改行表示の場合 */
}

.recruitNewsList_title {
  margin: 0;
  line-height: inherit;
}

.recruitNewsList_newTxt {
  margin-left: 1em;
  color: red;
  font-weight: bold;
}

/*
recruitNavList

recruitNavList

Markup:
<div class="recruitNavList {$modifiers}">
  <div class="recruitNavList_inner">
    <div class="recruitNavList_list">
      <div class="recruitNavList_item">
        <a href="/recruit/newgraduates" class="recruitNavList_itemInner">
          <div class="recruitNavList_body">
            <h3 class="recruitNavList_title"><span>新卒採用</span></h3>
          </div>
        </a><!-- /.recruitNavList_itemInner -->
      </div><!-- /.recruitNavList_item -->
      <div class="recruitNavList_item">
        <a href="/recruit/carrer" class="recruitNavList_itemInner">
          <div class="recruitNavList_body">
            <h3 class="recruitNavList_title"><span>キャリア採用</span></h3>
          </div>
        </a><!-- /.recruitNavList_itemInner -->
      </div><!-- /.recruitNavList_item -->
      <div class="recruitNavList_item">
        <a href="/recruit/handicap" class="recruitNavList_itemInner">
          <div class="recruitNavList_body">
            <h3 class="recruitNavList_title"><span>障がい者採用</span></h3>
          </div>
        </a><!-- /.recruitNavList_itemInner -->
      </div><!-- /.recruitNavList_item -->
    </div>
  </div><!-- /.recruitNavList_inner -->
</div><!-- /.recruitNavList -->

.recruitNavList-box3 - box3
.recruitNavList-box4 - box4

Styleguide 32.12.1
============================================================*/
.recruitNavList {
  position: relative;
  margin: 35px auto 0;
}

.recruitNavList:first-child {
  margin-top: 0;
}

.recruitNavList_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: -14px 0 0 -14px;
}

.recruitNavList_list > * {
  margin: 14px 0 0 14px;
  width: auto;
  width: auto\9;
}

.recruitNavList_item {
  border: 1px solid #E5E5E5;
  border-top: none;
}

.recruitNavList_item > a,
.recruitNavList_item > div {
  display: table;
  position: relative;
  padding: 1em 1.5em .8em;
  width: 100%;
  height: 100%;
  min-height: 68px;
  text-align: center;
  color: #333333;
  text-decoration: none;
  background-color: #fff;
  border-top: 3px solid #c70029;
}

.recruitNavList_item > a::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  width: 11px;
  height: 11px;
  border-top: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.recruitNavList_item:hover > a {
  text-decoration: none;
  background-color: #f0f4f8;
}

.recruitNavList_body {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin-top: 0;
  overflow: hidden;
}

.recruitNavList_title {
  position: relative;
  margin: 0;
  color: #19547f;
  font-size: 18px;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.recruitNavList-box3 .recruitNavList_list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruitNavList-box3 .recruitNavList_item {
  width: calc( ( 100% - 14px * 3 ) / 3);
  width: calc( ( 100% - 4px - 14px * 3 ) / 3) \9;
}

.recruitNavList-box4 .recruitNavList_list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruitNavList-box4 .recruitNavList_item {
  width: calc( ( 100% - 14px * 4 ) / 4);
  width: calc( ( 100% - 4px - 14px * 4 ) / 4) \9;
}

/*
recruitNavList02

recruitNavList02

Markup:
<div class="recruitNavList02">
  <div class="recruitNavList02_inner">
    <div class="recruitNavList02_list">
      <div class="recruitNavList02_item">
        <a href="" class="recruitNavList02_itemInner">
          <div class="recruitNavList02_thumbs">
            <figure class="recruitNavList02_imgs"><img class="recruitNavList02_img" src="http://fakeimg.pl/279x140/668899/ffffff?text=Fake-Image&font=lobster" alt=""></figure>
          </div>
          <div class="recruitNavList02_body">
            <div class="recruitNavList02_bodInner">
              <h3 class="recruitNavList02_title"><span>タイトル</span></h3>
            </div>
          </div>
        </a><!-- /.recruitNavList02_itemInner -->
      </div><!-- /.recruitNavList02_item -->
      <div class="recruitNavList02_item">
        <a href="" class="recruitNavList02_itemInner">
          <div class="recruitNavList02_thumbs">
            <figure class="recruitNavList02_imgs"><img class="recruitNavList02_img" src="http://fakeimg.pl/279x140/668899/ffffff?text=Fake-Image&font=lobster" alt=""></figure>
          </div>
          <div class="recruitNavList02_body">
            <div class="recruitNavList02_bodInner">
              <h3 class="recruitNavList02_title"><span>タイトル</span></h3>
            </div>
          </div>
        </a><!-- /.recruitNavList02_itemInner -->
      </div><!-- /.recruitNavList02_item -->
      <div class="recruitNavList02_item">
        <a href="" class="recruitNavList02_itemInner">
          <div class="recruitNavList02_thumbs">
            <figure class="recruitNavList02_imgs"><img class="recruitNavList02_img" src="http://fakeimg.pl/279x140/668899/ffffff?text=Fake-Image&font=lobster" alt=""></figure>
          </div>
          <div class="recruitNavList02_body">
            <div class="recruitNavList02_bodInner">
              <h3 class="recruitNavList02_title"><span>タイトル</span></h3>
            </div>
          </div>
        </a><!-- /.recruitNavList02_itemInner -->
      </div><!-- /.recruitNavList02_item -->
      <div class="recruitNavList02_item">
        <div class="recruitNavList02_itemInner">
          <div class="recruitNavList02_thumbs">
            <figure class="recruitNavList02_imgs"><img class="recruitNavList02_img" src="http://fakeimg.pl/50x50/668899/ffffff?text=Fake-Image&font=lobster" alt=""></figure>
          </div>
          <div class="recruitNavList02_body">
            <div class="recruitNavList02_bodInner">
              <h3 class="recruitNavList02_title"><span>テキスト（リンクなし）</span></h3>
            </div>
          </div>
        </div><!-- /.recruitNavList02_itemInner -->
      </div><!-- /.recruitNavList02_item -->
    </div>
  </div><!-- /.recruitNavList02_inner -->
</div><!-- /.recruitNavList02 -->

Styleguide 32.12.2
============================================================*/
.recruitNavList02 {
  position: relative;
  margin: 41px auto 0;
}

.recruitNavList02:first-child {
  margin-top: 0;
}

.recruitNavList02_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -28px 0 0 -28px;
}

.recruitNavList02_list > * {
  margin: 28px 0 0 28px;
  width: calc( 279px);
}

.recruitNavList02_item {
  border: 1px solid #E5E5E5;
}

.recruitNavList02_item > a,
.recruitNavList02_item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: relative;
  padding: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  color: #333333;
  text-decoration: none;
}

.recruitNavList02_item:hover > a {
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  text-decoration: none;
}

.recruitNavList02_item:hover .recruitNavList02_img {
  display: inline-block;
  zoom: 1;
}

.recruitNavList02_thumbs {
  position: relative;
  text-align: center;
  background-color: #fff;
}

.recruitNavList02_imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 auto;
  height: calc( 140px - 1px);
  overflow: hidden;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.recruitNavList02_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  -webkit-transition: none;
  transition: none;
}

.recruitNavList02_img:hover {
  filter: alpha(opacity=10);
  /*IE*/
  -moz-opacity: 1;
  /*Firefox*/
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  /*Opera・Safari*/
}

.recruitNavList02_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  margin-top: 0;
  padding: 11px 24px 9px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #569BE9;
}

.recruitNavList02_body > * {
  width: 100%;
  color: #fff;
}

.recruitNavList02_body::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #F3F3F3;
  border-right: 1px solid #F3F3F3;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.recruitNavList02_title {
  position: relative;
  margin: 0;
  font-size: 15px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

/*
ドットマークアイコンリスト

ofDotMarkList

Markup:
<ul class="ofDotMarkList">
  <li>テキストテキスト</li>
  <li>長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト長いテキスト</li>
  <li><a href="">テキストリンク</a></li>
</ul><!-- /.ofDotMarkList -->

Styleguide 32.13
============================================================*/
.ofDotMarkList {
  margin: 0;
  list-style-type: none;
}

.ofDotMarkList > li {
  list-style: none;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  line-height: inherit;
  background: url("../../images/dipro/official/icons/icon_dot-yellow.gif") no-repeat 0 7px;
}

/*
descList

descList

Markup:
<dl class="descList {$modifiers}">
  <dt>あああああ</dt>
  <dd>テキストテキストテキストテキスト</dd>
  <dt>あああああああああああああああ</dt>
  <dd>dtタグエリアの用語が長い場合： テキストテキストテキストテキスト</dd>
  <dt>ああああああああ</dt>
  <dd>ddタグエリアの内容が長い場合： <br>
  テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</dd>
</dl><!-- /descList -->

descList-small - small
descList-middle - middle
descList-large - large
descList-colonOut - colonOut（「:」記号なし）

Styleguide 32.14
============================================================ */
.descList {
  display: block;
  margin: 12px 15px 15px;
}

.descList::before, .descList::after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
}

.descList::after {
  content: "";
  clear: both;
}

.descList > dt,
.descList > dd {
  display: block;
  margin: 0 0 5px;
  line-height: 120%;
}

.descList > dt {
  position: relative;
  margin-right: 1.5em;
  float: left;
  clear: left;
  z-index: 5;
  font-weight: normal;
}

.descList > dd {
  position: relative;
  text-indent: -1em;
}

.descList > dd::before {
  content: "：";
  display: inline-block;
  position: relative;
  top: -1px;
  left: 0;
  text-indent: 0;
  min-width: 1em;
  font-weight: inherit;
}

.descList-small > dt {
  width: 6em;
  min-width: 6em;
}

.descList-small > dd {
  padding-left: calc( 6em + 1.5em);
}

.descList-middle > dt {
  width: 12em;
  min-width: 12em;
}

.descList-middle > dd {
  padding-left: calc( 12em + 1.5em);
}

.descList-large > dt {
  width: 18em;
  min-width: 18em;
}

.descList-large > dd {
  padding-left: calc( 18em + 1.5em);
}

.descList-colonOut > dd {
  text-indent: 0;
}

.descList-colonOut > dd::before {
  display: none;
}

/* --------------------------------------------------------------------------
 js google map

 各「 mapstyle_xxx.js 」と併用
---------------------------------------------------------------------------- */
/*
visualSlide
 * 「 jquery.slidebk.js 」と併用

visualSlide

Markup:
<div class="visualSlide">
  <h1 class="visualSlide_imgs">
    <img class="visualSlide_img isSwitch" src="<%= siteRoot %>assets/images/shared/sample/official/title_top_pc.jpg" alt="新卒採用2018 DIPROで未来を創ろう">
  </h1>
  <div class="visualSlide_copys">
    <img class="visualSlide_copy" src="<%= siteRoot %>assets/images/shared/sample/official/year_copy.png" alt="DIPROで未来を創ろう">
  </div>
</div><!-- /.visualSlide -->

Styleguide 32.101.1
============================================================*/
.visualSlide {
  height: 347px;
  background-image: url("../../images/shared/sample/official/title_top_pc.jpg");
  background-repeat: repeat;
}

.visualSlide_imgs {
  display: none;
}

.visualSlide_copys {
  position: relative;
  top: 87px;
  margin: 0 auto;
  width: 704px;
  height: 173px;
}

.visualSlide_copy {
  margin: 0;
}

/* --------------------------------------------------------------------------
 js google map

 各「 mapstyle_xxx.js 」と併用
---------------------------------------------------------------------------- */
/*
.gMapCanvas

gMapCanvas

Markup:
<div class="gMapCanvasWrap">
  <div id="map_sample" class="gMapCanvas"></div>
  <div class="gMapCanvasLink">
    <a href="#" class="gMapCanvasLink_link" target="_blank"><span>Google Map をご覧になる方はこちら</span></a><br>
  </div><!-- /.gMapCanvas -->
</div><!-- /.gMapCanvasWrap -->

Styleguide 32.201.1
============================================================*/
.gMapCanvasWrap {
  position: relative;
}

.gMapCanvas {
  height: 500px;
}

.gMapCanvas img {
  max-width: none;
  max-height: none;
}

.gMapCanvas-line {
  border: 1px solid #c3c3c3;
}

.gMapCanvas-edu {
  height: 340px;
  border: 1px solid #c3c3c3;
}

.gMapCanvas-recruit {
  height: 450px;
  border: 1px solid #c3c3c3;
}

.gMapCanvas-icad {
  height: 450px;
  border: 1px solid #c3c3c3;
}

.gMapCanvasLink {
  margin-top: 10px;
  text-align: right;
}

.gMapCanvasLink_link {
  display: inline-block;
  position: relative;
  padding-left: 1.2em;
  font-size: 12px;
  font-size: 19.2px;
  font-size: 1.2rem;
  text-decoration: none;
}

.gMapCanvasLink_link::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -4px;
  display: inline-block;
  font-size: 16px;
  font-size: 25.6px;
  font-size: 1.6rem;
  content: "";
  font-family: FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}

.gMapCanvasLink_link:hover {
  text-decoration: none !important;
}

.gMapCanvasLink_link:hover > span {
  text-decoration: underline;
}

.gMapCanvasLink a[target="_blank"]::after {
  margin-left: 8px;
  content: '\e808';
  font-weight: normal;
  font-family: 'fontello';
  text-decoration: none !important;
}

/*
印刷エリア

gMapPrintArea

Markup:
<div class="gMapPrintWrap">
  <div class="gMapPrintArea">
    <div class="gMapPrintArea_inner">
    </div>
  </div><!-- /.gMapPrintArea -->
</div><!-- /.gMapPrintWrap -->

Styleguide 32.201.2
============================================================*/
.gMapPrint-off {
  display: none;
}

/*プリント用CSS*/

/* --------------------------------------------------------------------------
 js Plugin style
---------------------------------------------------------------------------- */

/*
popupvideo
============================================================*/
.pv_poster {
  cursor: pointer;
  color: #19547f;
}

.pv_poster:hover > span {
  text-decoration: underline;
}

.pv_poster:hover img {
  outline: none;
  border: none;
}

@media screen and (max-width: 600px){
  .ofHeadLine1{
    line-height: 1.6;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ofHeadLine1::after{
    left: 15px;
    border-width: 6px;
    border-top-width: 12px;
  }
  .ofHeadLine2{
    padding: 8px 6px 5px 11px;
    font-size: 130%;
    /* IE8 */
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 140%;
  }
  .ofBoxLineList_list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofBoxLineList_list > *{
    margin: 20px 0 0;
  }
  .ofBoxLineList_list > *:first-child{
    margin-top: 0;
  }
  .ofBoxLineList_item > a,
  .ofBoxLineList_item > div{
    padding: 10px;
  }
  .ofBoxLineList_item:hover > a{
    background-color: transparent;
  }
  .ofBoxLineList_title{
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ofBoxLineList_body{
    line-height: 1.6;
  }
  .ofBoxLineList_mores{
    position: absolute;
    bottom: 5px;
  }
  .ofBoxLineList-box2 .ofBoxLineList_list > *{
    width: 100%;
    width: 100%\9;
  }
  .ofBoxLineList02_list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofBoxLineList02_list > *{
    margin: 20px 0 0;
  }
  .ofBoxLineList02_list > *:first-child{
    margin-top: 0;
  }
  .ofBoxLineList02_item > a,
  .ofBoxLineList02_item > div{
    padding-bottom: 5px;
  }
  .ofBoxLineList02_item:hover > a{
    background-color: transparent;
  }
  .ofBoxLineList02_heading{
    padding: 8px 5px 5px;
  }
  .ofBoxLineList02_title{
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ofBoxLineList02_body{
    padding: 5px;
  }
  .ofBoxLineList02_subTitle{
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ofBoxLineList02-box3 .ofBoxLineList02_list > *{
    width: 100%;
    width: 100%\9;
  }
  .ofStaffList_list{
    margin: -10px 0 0 -10px;
  }
  .ofStaffList_list > *{
    margin: 10px 0 0 10px;
  }
  .ofStaffList_item:hover > a{
    background-color: transparent;
  }
  .ofStaffList_body{
    padding: 5px 10px 4px;
    line-height: 1.6;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .ofStaffList_name{
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ofStaffList-box4 .ofStaffList_list > *{
    width: calc( ( 100% - 10px * 2 ) / 2);
    width: calc( ( 100% - 4px - 10px * 2 ) / 2) \9;
  }
  .ofBlockLineList_block{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofBlockLineList_block > *{
    margin: 20px 0 0;
  }
  .ofBlockLineList_block > *:first-child{
    margin-top: 0;
  }
  .ofBlockLineList_txt{
    margin-top: 15px;
  }
  .ofBlockLineList-box2 .ofBlockLineList_block > *{
    width: 100%;
    width: 100%\9;
  }
  .ofBlockLineList02_list{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofBlockLineList02_list > *{
    margin: 20px 0 0;
  }
  .ofBlockLineList02_list > *:first-child{
    margin-top: 0;
  }
  .ofBlockLineList02_imgs{
    padding-top: calc( 180 / 280 * 77%);
  }
  .ofBlockLineList02-box3 .ofBlockLineList02_list > *{
    width: 100%;
    width: 100%\9;
  }
  .ofBlockLineList02-box4 .ofBlockLineList02_list{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: -12px 0 0 -12px;
  }
  .ofBlockLineList02-box4 .ofBlockLineList02_list > *{
    margin: 12px 0 0 12px;
    width: calc( ( 100% - 12px * 2 ) / 2);
    width: calc( ( 100% - 4px - 12px * 2 ) / 2) \9;
  }
  .ofColumnBoxList{
    margin: 20px 0 0;
  }
  .ofColumnBoxList:first-child{
    margin-top: 0;
  }
  .ofColumnBoxList_block{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofColumnBoxList_block > *{
    margin: 0;
  }
  .ofColumnBoxList_block > *:first-child{
    margin-top: 0;
  }
  .ofColumnBoxList_list{
    margin: 0 0 0 20px;
  }
  .ofColumnBoxList-column2 .ofColumnBoxList_block > *, .ofColumnBoxList-column3 .ofColumnBoxList_block > *, .ofColumnBoxList-column4 .ofColumnBoxList_block > *{
    width: 100%;
    width: 100%\9;
  }
  .ofSortBlock{
    margin: 20px 0 0;
  }
  .ofSortBlock:first-child{
    margin-top: 0;
  }
  .ofSortBlock_block{
    margin: 0;
  }
  .ofSortBlock_block > *{
    margin: 10px 0 0;
  }
  .ofSortBlock_block > *:first-child{
    margin-top: 0;
  }
  .ofSortBlock_unit.sortUnit-sp01{
    -ms-order: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .ofSortBlock_unit.sortUnit-sp02{
    -ms-order: 2;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ofSortBlock_unit.sortUnit-sp03{
    -ms-order: 3;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .ofSortBlock_unit.sortUnit-sp04{
    -ms-order: 4;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .ofSortBlock_unit.sortUnit-sp05{
    -ms-order: 5;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .ofSortBlock_unit.sortUnit-sp06{
    -ms-order: 6;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .ofRecruitBlock{
    margin: 35px auto 0;
  }
  .ofRecruitBlock_inner{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .ofRecruitBlock_inner > *{
    margin: 25px 0 0;
    width: 100%;
  }
  .ofRecruitBlock_side{
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    max-width: 260px;
  }
  .ofRecruitBlock-sideLeft .ofRecruitBlock_main{
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
  }
  .ofRecruitBlock-sideLeft .ofRecruitBlock_side{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ofRecruitBlock-sideRight{
    margin: 0;
  }
  .recruitSideBnrWrap-pc{
    margin-top: 0;
  }
  .recruitSideBnrWrap-sp{
    margin-top: 25px;
  }
  .recruitSideBnr{
    margin: 15px auto;
    max-width: 260px;
    text-align: center;
  }
  .recruitNewsScroll{
    -ms-overflow-y: visible;
    overflow-y: visible;
    height: auto;
  }
  .recruitNewsList_item > a,
  .recruitNewsList_item > div{
    padding: 10px 5px 9px;
  }
  .recruitNewsList_item:hover > a,
  .recruitNewsList_item:hover > div{
    background-color: transparent;
  }
  .recruitNewsList_body{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitNewsList_body > *{
    margin: 0;
  }
  .recruitNewsList_bars{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .recruitNewsList_tags{
    margin: 0;
    overflow: hidden;
  }
  .recruitNewsList_tag{
    position: relative;
    display: block;
    margin: 5px 0 0;
  }
  .recruitNewsList_tag:first-child{
    margin-top: 0;
  }
  .recruitNewsList_dateTimes > *{
    margin: 0 0 0 5px;
  }
  .recruitNewsList_date, .recruitNewsList_time{
    font-size: 12px;
    font-size: 1.2rem;
  }
  .recruitNewsList_detail{
    margin-top: 10px;
    overflow: hidden;
    /* 改行表示の場合 */
  }
  .recruitNewsList_title{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .recruitNavList{
    margin-top: 20px;
  }
  .recruitNavList_list{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .recruitNavList_list > *{
    margin: 14px 0 0;
    width: 100%;
    width: 100%\9;
  }
  .recruitNavList_list > *:first-child{
    margin-top: 0;
  }
  .recruitNavList_item > a,
  .recruitNavList_item > div{
    padding: 1em 1em .9em;
    min-height: 0;
  }
  .recruitNavList_item > a::after{
    right: 5px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
  }
  .recruitNavList_item:hover > a{
    background-color: #fff;
  }
  .recruitNavList_title{
    font-size: 15px;
    font-size: 1.5rem;
  }
  .recruitNavList-box3 .recruitNavList_item, .recruitNavList-box4 .recruitNavList_item{
    width: 100%;
    width: 100%\9;
  }
  .recruitNavList02{
    margin: 20px auto 0;
  }
  .recruitNavList02_list{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    max-width: 260px;
  }
  .recruitNavList02_list > *{
    margin: 20px 0 0;
    width: 100%;
    width: 100%\9;
  }
  .recruitNavList02_list > *:first-child{
    margin-top: 0;
  }
  .recruitNavList02_imgs{
    height: calc( 130px - 1px);
  }
  .recruitNavList02_body{
    padding: 11px 24px 9px;
  }
  .recruitNavList02_title{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ofDotMarkList > li{
    background-position: 0 3px;
  }
  .descList{
    margin: 12px 0 15px;
  }
  .descList > dt,
  .descList > dd{
    line-height: 1.5;
  }
  .descList > dt{
    margin-right: 1.2em;
  }
  .descList > dd{
    position: relative;
    text-indent: -1em;
  }
  .descList > dd::before{
    content: "：";
    display: inline-block;
    position: relative;
    top: -1px;
    left: 0;
    text-indent: 0;
    min-width: 1em;
    font-weight: inherit;
  }
  .descList-small > dt,
  .descList-small > dd, .descList-middle > dt,
  .descList-middle > dd, .descList-large > dt,
  .descList-large > dd{
    margin: 0 0 5px;
    width: 100%;
    min-width: 0;
    min-height: 0 !important;
  }
  .descList-small > dt, .descList-middle > dt, .descList-large > dt{
    float: none;
    font-weight: bold;
  }
  .descList-small > dd, .descList-middle > dd, .descList-large > dd{
    margin-bottom: 10px;
    padding-left: 1em;
  }
  .descList-colonOut > dd{
    text-indent: 0;
  }
  .descList-colonOut > dd::before{
    display: none;
  }
  .visualSlide{
    height: auto;
    background: none !important;
  }
  .visualSlide_imgs{
    display: block;
  }
  .visualSlide_copys{
    position: relative;
    top: auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: none;
  }
  .visualSlide_copys > *{
    height: 100%;
  }
  .visualSlide_copy{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gMapCanvas{
    height: 400px;
  }
  .gMapCanvas-edu, .gMapCanvas-recruit, .gMapCanvas-icad{
    height: 400px;
  }
  #pv_player{
    width: 300px !important;
  }
}

@media print{
  #gMapPrint .gMapCanvas{
    height: 700px;
  }
  .gMapPrintArea{
    width: 100%;
  }
  .gMapPrintArea_inner{
    padding: 1em;
  }
  [data-print=""]{
    display: none;
  }
}

/*!
============================================================
製品・サービス　受託解析
============================================================ */
@media screen and (min-width: 601px){
.tabMenuJutaku .tabMenu02_navsWrap {
margin-bottom:30px;
}
}
.tabMenuJutaku .tabMenu02_nav > a, tabMenuJutaku .tabMenu02_nav > div {
padding:.5em 0 .8em !important;
}
.tabMenuJutaku .tabMenu02_nav {
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  background-color: #e5e5e5;
}
.tabMenuJutaku .tabMenu02_nav.isCuurent {
background-color: #f3f3f3;
}
.tabMenuJutaku .tabMenu02_nav > a, .tabMenuJutaku .tabMenu02_nav > div {
    padding: .5em 0 .8em !important;
    color: #333333;
}
.tabMenuJutaku .tabMenu02_navs {
  flex-wrap: wrap;
}
.tabMenuJutaku .tabMenu02_nav > a::after,
.tabMenuJutaku .tabMenu02_nav > div::after {
bottom: -2px;
color: #c0c0c0;
}
.tabMenuJutaku .tabMenu02_nav.isCuurent > a::after, .tabMenuJutaku  .tabMenu02_nav.isCuurent > div::after {
color: #c70029;
}
.tabMenu02-6menu .tabMenu02_nav {
width: 16.66%;
}
.tabMenu02-6menu .tabMenu02_nav:nth-child(6n) {
  border-right: 1px solid #ffffff;
}
.tabMenu02-6menu .tabMenu02_nav:nth-child(-n+6) {
  border-top: 1px solid #ffffff;
}
.tabMenu02-4menu .tabMenu02_nav {
width: 25%;
}
.tabMenu02-4menu .tabMenu02_nav:nth-child(4n) {
  border-right: 1px solid #ffffff;
}
.tabMenu02-4menu .tabMenu02_nav:nth-child(-n+4) {
  border-top: 1px solid #ffffff;
}
.tabMenu02-3menu .tabMenu02_nav {
width: 33.33%;
}
.tabMenu02-3menu .tabMenu02_nav:nth-child(3n) {
  border-right: 1px solid #ffffff;
}
.tabMenu02-3menu .tabMenu02_nav:nth-child(-n+3) {
  border-top: 1px solid #ffffff;
}
.arrow_pink{
margin: 0 auto;
margin-top: 10px;
width: 140px;
}
.arrow_pink::before{

  content: "";
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 30px;
  background: #666;
  background: linear-gradient(to bottom, #fff, #e6b9b8 80%);

}
.arrow_pink::after{
  content: "";
  display:block;
  border-top: 50px solid #e6b9b8;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  transform-origin: left top;
  transform: scaleY(.8);

}

