@charset "UTF-8";
/*------------------------------------------------------------
  ** Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: top;
}

img[usemap] {
  border-width: 0;
}

a img {
  border-width: 0;
  text-decoration: none;
}

ul, li {
  list-style: none;
}

/*------------------------------------------------------------
  ** Base
------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  font-family: "Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Meiryo UI", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #333;
  -webkit-text-size-adjust: none;
  /*-- 市松模様 --*/
  background-color: #fff;
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
  background-image: linear-gradient(45deg, #eee 25%, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 75%), linear-gradient(-135deg, #eee 25%, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 75%);
}

/*-- IE11のみメイリオ --*/
@media screen\0 {
  body {
    font-family: 'Segoe UI', Meiryo, sans-serif;
  }
}

/*------------------------------------------------------------
  ** レイアウト
------------------------------------------------------------*/
/*------------------------------
  ** ヘッダー
------------------------------*/
.header {
  min-width: 980px;
  background: #0066ae;
}

.header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 90px;
}

.header-layout {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
}

.header-layout__logo {
  width: 50%;
}

.header-layout__link {
  width: 50%;
}

.header-link-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.header-link-list-item {
  margin-left: 10px;
  line-height: 1.0;
}

.header-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 20px 15px 36px;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid #1e8bd5;
  background-image: url("../img/icon/header-arrow-icon.gif");
  background-position: 20px center;
  background-repeat: no-repeat;
  transition-duration: .3s;
}

.header-link:hover {
  border-color: #81c1ed;
}

/*------------------------------
 ** メイン
------------------------------*/
.main {
  padding-bottom: 40px;
}

/*------------------------------
 ** フッター
------------------------------*/
.footer {
  min-width: 980px;
  border-top: 3px solid #0066ae;
  background: #fff;
}

.footer small {
  font-size: 1.1rem;
  color: #666;
}

.footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 80px;
}

.footer-layout {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

/*------------------------------
  ** カラムレイアウト
------------------------------*/
.columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column {
  width: 25%;
  min-height: 200px;
}

.column:nth-child(odd) {
  background: #f2f2f2;
}

.column:nth-child(even) {
  background: #fff;
}

.column__head {
  position: relative;
}

.column__head::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 70px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.column__head::after {
  position: absolute;
  left: 15px;
  bottom: -14px;
  content: '';
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #333;
}

.column-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 70px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.3;
  background-color: #333;
}

.column__body {
  padding: 26px 15px;
}

.detail-trigger {
  display: block;
  padding-left: 16px;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  border: none;
  background-color: transparent;
  background-position: 0 2px;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
}

.detail-trigger:hover {
  text-decoration: underline;
}

/*------------------------------------------------------------
  ** コンポーネント
------------------------------------------------------------*/
/*------------------------------
  ** インナー
------------------------------*/
.site-inner {
  width: 980px;
  margin: 0 auto;
}

/*------------------------------
  ** 画像＋テキスト
------------------------------*/
.image-and-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 20px;
}

.image-and-text__image {
  width: 140px;
}

.image-and-text__image img {
  max-width: 100%;
}

.image-and-text__text {
  -ms-flex: 1;
      flex: 1;
  padding-left: 20px;
}

/*------------------------------
  ** テキスト
------------------------------*/
.text-box {
  font-size: 1.4rem;
  line-height: 1.6;
}

/*------------------------------
  ** ボタン
------------------------------*/
.button-wrap {
  margin-top: 20px;
}

.button {
  display: block;
  width: 280px;
  padding: 12px;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  background: #333;
  transition-duration: .3s;
}

.button:hover {
  opacity: .8;
}

/*------------------------------
  ** その他
------------------------------*/
.blank-icon {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

/*------------------------------
  ** リンク一覧
------------------------------*/
.link-list-item {
  margin-top: 5px;
}

/*------------------------------
  ** モーダル
------------------------------*/
.modal-wrap {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}

.modal-wrap.is-active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 480px;
  background: #fff;
}

.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 46px;
  height: 46px;
  border: none;
  background-color: #000;
  cursor: pointer;
  transition-duration: .3s;
}

.modal-close:hover {
  background-color: #333;
}

.modal__head {
  position: relative;
}

.modal__head::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 70px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.modal-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 70px;
  font-size: 1.8rem;
  font-weight: normal;
  color: #fff;
  line-height: 1.3;
  background-color: #333;
}

/*------------------------------------------------------------
  ** バリエーション
------------------------------------------------------------*/
/*-- 鉄道 --*/
.is-railway .column__head::before,
.is-railway .modal__head::before {
  background-image: url("../img/icon/railway-icon.png");
}

.is-railway .column__head::after {
  border-top-color: #005ead;
}

.is-railway .column-heading,
.is-railway .modal-heading,
.is-railway .button {
  background-color: #005ead;
}

.is-railway .detail-trigger {
  background-image: url("../img/icon/blue-1-arrow-icon.png");
}

/*-- 駅業務・清掃整備 --*/
.is-station .column__head::before,
.is-station .modal__head::before {
  background-image: url("../img/icon/station-icon.png");
}

.is-station .column__head::after {
  border-top-color: #526b9a;
}

.is-station .column-heading,
.is-station .modal-heading,
.is-station .button {
  background-color: #526b9a;
}

.is-station .detail-trigger {
  background-image: url("../img/icon/blue-2-arrow-icon.png");
}

/*-- 旅客自動車運送 --*/
.is-bus .column__head::before,
.is-bus .modal__head::before {
  background-image: url("../img/icon/bus-icon.png");
}

.is-bus .column__head::after {
  border-top-color: #3b5e66;
}

.is-bus .column-heading,
.is-bus .modal-heading,
.is-bus .button {
  background-color: #3b5e66;
}

.is-bus .detail-trigger {
  background-image: url("../img/icon/blue-3-arrow-icon.png");
}

/*-- 船舶 --*/
.is-ship .column__head::before,
.is-ship .modal__head::before {
  background-image: url("../img/icon/ship-icon.png");
}

.is-ship .column__head::after {
  border-top-color: #66a39a;
}

.is-ship .column-heading,
.is-ship .modal-heading,
.is-ship .button {
  background-color: #66a39a;
}

.is-ship .detail-trigger {
  background-image: url("../img/icon/green-1-arrow-icon.png");
}

/*-- 物販・飲食 --*/
.is-food .column__head::before,
.is-food .modal__head::before {
  background-image: url("../img/icon/food-icon.png");
}

.is-food .column__head::after {
  border-top-color: #984d4a;
}

.is-food .column-heading,
.is-food .modal-heading,
.is-food .button {
  background-color: #984d4a;
}

.is-food .detail-trigger {
  background-image: url("../img/icon/red-1-arrow-icon.png");
}

/*-- 各種物品等卸売 --*/
.is-wholesale .column__head::before,
.is-wholesale .modal__head::before {
  background-image: url("../img/icon/wholesale-icon.png");
}

.is-wholesale .column__head::after {
  border-top-color: #762100;
}

.is-wholesale .column-heading,
.is-wholesale .modal-heading,
.is-wholesale .button {
  background-color: #762100;
}

.is-wholesale .detail-trigger {
  background-image: url("../img/icon/red-2-arrow-icon.png");
}

/*-- 百貨店 --*/
.is-department .column__head::before,
.is-department .modal__head::before {
  background-image: url("../img/icon/department-icon.png");
}

.is-department .column__head::after {
  border-top-color: #a35843;
}

.is-department .column-heading,
.is-department .modal-heading,
.is-department .button {
  background-color: #a35843;
}

.is-department .detail-trigger {
  background-image: url("../img/icon/red-3-arrow-icon.png");
}

/*-- その他流通 --*/
.is-distribution .column__head::before,
.is-distribution .modal__head::before {
  background-image: url("../img/icon/distribution-icon.png");
}

.is-distribution .column__head::after {
  border-top-color: #7b783e;
}

.is-distribution .column-heading,
.is-distribution .modal-heading,
.is-distribution .button {
  background-color: #7b783e;
}

.is-distribution .detail-trigger {
  background-image: url("../img/icon/yellow-1-arrow-icon.png");
}

/*-- 不動産販売・賃貸 --*/
.is-building .column__head::before,
.is-building .modal__head::before {
  background-image: url("../img/icon/building-icon.png");
}

.is-building .column__head::after {
  border-top-color: #918203;
}

.is-building .column-heading,
.is-building .modal-heading,
.is-building .button {
  background-color: #918203;
}

.is-building .detail-trigger {
  background-image: url("../img/icon/yellow-2-arrow-icon.png");
}

/*-- ショッピングセンター運営 --*/
.is-shop .column__head::before,
.is-shop .modal__head::before {
  background-image: url("../img/icon/shop-icon.png");
}

.is-shop .column__head::after {
  border-top-color: #00913a;
}

.is-shop .column-heading,
.is-shop .modal-heading,
.is-shop .button {
  background-color: #00913a;
}

.is-shop .detail-trigger {
  background-image: url("../img/icon/green-2-arrow-icon.png");
}

/*-- ホテル --*/
.is-hotel .column__head::before,
.is-hotel .modal__head::before {
  background-image: url("../img/icon/hotel-icon.png");
}

.is-hotel .column__head::after {
  border-top-color: #006934;
}

.is-hotel .column-heading,
.is-hotel .modal-heading,
.is-hotel .button {
  background-color: #006934;
}

.is-hotel .detail-trigger {
  background-image: url("../img/icon/green-3-arrow-icon.png");
}

/*-- 貸自動車 --*/
.is-car-rental .column__head::before,
.is-car-rental .modal__head::before {
  background-image: url("../img/icon/car-rental-icon.png");
}

.is-car-rental .column__head::after {
  border-top-color: #00a29a;
}

.is-car-rental .column-heading,
.is-car-rental .modal-heading,
.is-car-rental .button {
  background-color: #00a29a;
}

.is-car-rental .detail-trigger {
  background-image: url("../img/icon/green-4-arrow-icon.png");
}

/*-- 旅行 --*/
.is-travel .column__head::before,
.is-travel .modal__head::before {
  background-image: url("../img/icon/travel-icon.png");
}

.is-travel .column__head::after {
  border-top-color: #8fc31f;
}

.is-travel .column-heading,
.is-travel .modal-heading,
.is-travel .button {
  background-color: #8fc31f;
}

.is-travel .detail-trigger {
  background-image: url("../img/icon/green-5-arrow-icon.png");
}

/*-- 機械等設備工事 --*/
.is-machine .column__head::before,
.is-machine .modal__head::before {
  background-image: url("../img/icon/machine-icon.png");
}

.is-machine .column__head::after {
  border-top-color: #13ae67;
}

.is-machine .column-heading,
.is-machine .modal-heading,
.is-machine .button {
  background-color: #13ae67;
}

.is-machine .detail-trigger {
  background-image: url("../img/icon/green-6-arrow-icon.png");
}

/*-- 車両等設備工事 --*/
.is-train .column__head::before,
.is-train .modal__head::before {
  background-image: url("../img/icon/train-icon.png");
}

.is-train .column__head::after {
  border-top-color: #00a29a;
}

.is-train .column-heading,
.is-train .modal-heading,
.is-train .button {
  background-color: #00a29a;
}

.is-train .detail-trigger {
  background-image: url("../img/icon/green-7-arrow-icon.png");
}

/*-- 電気工事 --*/
.is-electric .column__head::before,
.is-electric .modal__head::before {
  background-image: url("../img/icon/electric-icon.png");
}

.is-electric .column__head::after {
  border-top-color: #c0752c;
}

.is-electric .column-heading,
.is-electric .modal-heading,
.is-electric .button {
  background-color: #c0752c;
}

.is-electric .detail-trigger {
  background-image: url("../img/icon/brown-1-arrow-icon.png");
}

/*-- 電気製造 --*/
.is-factory .column__head::before,
.is-factory .modal__head::before {
  background-image: url("../img/icon/factory-icon.png");
}

.is-factory .column__head::after {
  border-top-color: #be9e4a;
}

.is-factory .column-heading,
.is-factory .modal-heading,
.is-factory .button {
  background-color: #be9e4a;
}

.is-factory .detail-trigger {
  background-image: url("../img/icon/yellow-3-arrow-icon.png");
}

/*-- 土木・建築等コンサルタント --*/
.is-earth .column__head::before,
.is-earth .modal__head::before {
  background-image: url("../img/icon/earth-icon.png");
}

.is-earth .column__head::after {
  border-top-color: #949494;
}

.is-earth .column-heading,
.is-earth .modal-heading,
.is-earth .button {
  background-color: #949494;
}

.is-earth .detail-trigger {
  background-image: url("../img/icon/gray-1-arrow-icon.png");
}

/*-- 建設 --*/
.is-construction .column__head::before,
.is-construction .modal__head::before {
  background-image: url("../img/icon/construction-icon.png");
}

.is-construction .column__head::after {
  border-top-color: #a48b78;
}

.is-construction .column-heading,
.is-construction .modal-heading,
.is-construction .button {
  background-color: #a48b78;
}

.is-construction .detail-trigger {
  background-image: url("../img/icon/brown-2-arrow-icon.png");
}

/*-- 情報サービス --*/
.is-information .column__head::before,
.is-information .modal__head::before {
  background-image: url("../img/icon/information-icon.png");
}

.is-information .column__head::after {
  border-top-color: #916200;
}

.is-information .column-heading,
.is-information .modal-heading,
.is-information .button {
  background-color: #916200;
}

.is-information .detail-trigger {
  background-image: url("../img/icon/brown-3-arrow-icon.png");
}

/*-- 広告 --*/
.is-paper .column__head::before,
.is-paper .modal__head::before {
  background-image: url("../img/icon/paper-icon.png");
}

.is-paper .column__head::after {
  border-top-color: #89608a;
}

.is-paper .column-heading,
.is-paper .modal-heading,
.is-paper .button {
  background-color: #89608a;
}

.is-paper .detail-trigger {
  background-image: url("../img/icon/purple-1-arrow-icon.png");
}

/*-- その他 --*/
.is-etc .column__head::before,
.is-etc .modal__head::before {
  background-image: url("../img/icon/etc-icon.png");
}

.is-etc .column__head::after {
  border-top-color: #838370;
}

.is-etc .column-heading,
.is-etc .modal-heading,
.is-etc .button {
  background-color: #838370;
}

.is-etc .detail-trigger {
  background-image: url("../img/icon/yellow-4-arrow-icon.png");
}
