@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&subset=japanese");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #0099ff;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #82cdff;
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  padding: 0;
  vertical-align: middle;
  text-align: left;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

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

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  border: 0;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading {
  display: inline-block;
  max-width: 1100px;
  margin: 0 auto 1em;
  padding: .7em 1em;
  line-height: 1.3;
  font-size: 1.1em;
  font-weight: bold;
  background-color: #eee;
  border-left: 20px solid #00a0ea;
}
@media screen and (min-width: 768px), print {
  .main-heading {
    font-size: 1.2em;
    margin: 0 0 1em -1em;
  }
}
.main-heading span {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .main-heading span {
    font-size: 1.5rem;
  }
}
.main-heading strong {
  font-size: 1.3em;
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .main-heading strong {
    font-size: 1.5em;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  display: table;
  background-color: #008395;
  color: #fff;
  margin: 0 0 1rem;
  padding: .5rem 1rem;
  font-size: 1em;
}
@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.2em;
    margin: 0 0 1.5rem;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}
.main ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: .6em;
  left: .6em;
  width: .4em;
  height: .4em;
  border-radius: 100%;
  background: #333;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

/* 共通リスト（リストマーカー非表示用）*/
ul.list-style-none > li {
  padding-left: 0;
  list-style-type: none;
}
ul.list-style-none > li:before {
  display: none;
}

ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  padding-left: 1em;
}
ul.list-style-note > li:before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: .5em 3em .5em 1em;
  color: #fff;
  line-height: 1.5;
  text-align: left;
  background-color: #0099ff;
  border: 1px solid transparent;
  -webkit-transition: .2s;
  transition: .2s;
}
.link-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
}
.link-button.candidate {
  background-color: #d4181d;
}
.link-button.introduction {
  background-color: #347ad0;
}
.link-button.development {
  background-color: #338202;
}
.link-button.contact {
  background-color: #fff;
  color: #333;
}
.link-button.contact:before {
  border-color: transparent transparent transparent #333;
}
.link-button.noicon {
  background-color: #008395;
}
.link-button.noicon:before {
  display: none;
}
.news-back .link-button {
  background-color: #008395;
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #82cdff;
}
a.link-button:hover:before {
  border-color: transparent transparent transparent #82cdff;
}
a.link-button.candidate:hover {
  background-color: #fff;
  color: #d4181d;
  border: 1px solid #d4181d;
}
a.link-button.candidate:hover:before {
  border-color: transparent transparent transparent #d4181d;
}
a.link-button.introduction:hover {
  background-color: #fff;
  color: #347ad0;
  border: 1px solid #347ad0;
}
a.link-button.introduction:hover:before {
  border-color: transparent transparent transparent #347ad0;
}
a.link-button.development:hover {
  background-color: #fff;
  color: #338202;
  border: 1px solid #338202;
}
a.link-button.development:hover:before {
  border-color: transparent transparent transparent #338202;
}
a.link-button.contact:hover {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
}
a.link-button.contact:hover:before {
  border-color: transparent transparent transparent #fff;
}
a.link-button.noicon:hover {
  background-color: #00BAD5;
}
.news-back a.link-button:hover {
  background-color: #00BAD5;
  color: #fff;
}
.news-back a.link-button:hover:before {
  border-color: transparent transparent transparent #fff;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner:after {
  content: "";
  display: table;
  clear: both;
}

/* コンテンツ隙間・間隔用 */
.gutter:not(:last-child) {
  margin-bottom: 5em;
}
.gutter > .inner {
  padding-right: 21px;
  padding-right: 1.5rem;
  padding-left: 21px;
  padding-left: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767.98px) {
  .gutter > .inner {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}
.gutter > .inner .inner {
  overflow: hidden;
}
.gutter .inner:not(:last-child) {
  margin-bottom: 42px;
  margin-bottom: 3rem;
}
.gutter.dmy > .inner {
  padding: 0;
}
.gutter.dmy.wide {
  margin-right: -22%;
  margin-left: -22%;
}
@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -230px;
    margin-left: -230px;
  }
}
.gutter.dmy.wide > .inner {
  max-width: none;
  padding: 0;
  text-align: center;
}
.gutter.dmy.wide > .inner:not(:last-child) {
  margin-bottom: 5em;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  z-index: -1;
}
@media screen and (min-width: 1100px), print {
  .anchor-point:before {
    margin-top: -150px;
    padding-top: 150px;
  }
}

/* サブセクション */
.subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #e3e3e3;
}

/* CSS カウンターの利用 | https://developer.mozilla.org/ja/docs/Web/Guide/CSS/Counters */
.css-counter {
  counter-reset: section;
}
.css-counter .counter:before {
  counter-increment: section;
  content: counter(section) ". ";
}

/* 下線マーカー */
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, rgba(0, 0, 0, 0)), color-stop(0%, black));
  background: linear-gradient(rgba(0, 0, 0, 0) 85%, black 0%);
}

/* クリック範囲を拡大（テキスト）*/
.widelink {
  display: inline-block;
  position: relative;
  margin: -10px;
  padding: 10px;
}

/* クリック範囲を拡大（カード）*/
.card {
  position: relative;
}
.card a:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

/* 共通お問い合わせ */
.global-contact .tel-link {
  display: inline-block;
  vertical-align: top;
  color: #333;
}
.global-contact a.tel-link {
  color: #333;
}
.global-contact a.tel-link:hover {
  color: #82cdff;
  text-decoration: none;
}
.global-contact .tel-text {
  display: block;
  font-size: .9em;
}
.global-contact .tel-num {
  display: block;
  font-size: 1.6em;
  line-height: 1.1;
}
@media screen and (min-width: 1100px), print {
  .global-contact .tel-num {
    font-size: 1.9em;
  }
}
.global-contact .tel-num span {
  font-size: 1.1em;
  font-weight: 700;
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * https://icomoon.io/
 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?fb6jt8");
  src: url("../fonts/icomoon.eot?fb6jt8#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?fb6jt8") format("truetype"), url("../fonts/icomoon.woff?fb6jt8") format("woff"), url("../fonts/icomoon.svg?fb6jt8#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tel:before {
  content: "\e900";
}

.icon-top:before {
  content: "\e901";
}

.icon-home:before {
  content: "\e902";
}

/*
 * GenShinGothic is licensed under the SIL Open Font License 1.1
 * http://jikasei.me/font/genshin/
 * http://scripts.sil.org/OFL
 */
@font-face {
  font-family: "GenShinGothic";
  src: url("../fonts/GenShinGothic-P-Bold.ttf") format("ttf"), url("../fonts/GenShinGothic-P-Bold.woff2") format("woff2"), url("../fonts/GenShinGothic-P-Bold.woff") format("woff");
}
/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  min-height: 480px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

/* --------------------------------

  wrapper

-------------------------------- */
/* スクロール時固定用（トップページのみ）*/
#top .wrapper:before {
  content: "";
  display: block;
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #000 url(../img/base/logo.png) center no-repeat;
  background-size: auto 28px;
  z-index: 990;
  -webkit-transition: margin-top .2s;
  transition: margin-top .2s;
}
@media screen and (min-width: 1100px), print {
  #top .wrapper:before {
    display: none;
  }
}
#top .wrapper.header-fixed:before {
  margin-top: 60px;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

/* --------------------------------

  header

-------------------------------- */
.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  z-index: 999;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    right: 0;
    height: auto;
    background: none;
    z-index: 1001;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 1100px;
  }
}
#top .header .inner {
  position: relative;
  height: auto;
  padding: 0 1em 1em;
  background: #000;
  z-index: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (min-width: 768px), print {
  #top .header .inner {
    padding: 2.5em 1em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  #top .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    z-index: 1001;
    max-width: none;
  }
}
.header-logo {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    text-align: left;
  }
}
.header-link {
  display: inline-block;
  width: 200px;
  padding-top: 15px;
}
@media screen and (min-width: 640px), print {
  .header-link {
    width: 350px;
    padding-top: 5px;
  }
}
@media screen and (min-width: 1100px), print {
  .header-link {
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 425px;
    padding-top: 0;
  }
}
#top .header-link {
  width: 200px;
  padding-top: 15px;
}
@media screen and (min-width: 640px), print {
  #top .header-link {
    width: 350px;
    padding-top: 5px;
  }
}
@media screen and (min-width: 1100px), print {
  #top .header-link {
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 527px;
    padding-top: 0;
  }
}
.header-text {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-text {
    display: block;
  }
}
#top .header-text {
  display: block;
}
.header-info {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-info {
    display: block;
  }
}
#top .header-info {
  display: block;
}
.header-contact {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-contact {
    position: absolute;
    display: block;
    top: 211px;
    right: 10px;
  }
}
#top .header-contact {
  display: none;
  color: #fff;
}
.header-corporate {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-corporate {
    position: absolute;
    display: block;
    top: 120px;
    right: 0;
    left: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.header-corporate .link-button {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem calc(1rem + 45px);
}
.header-corporate .link-button:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/logo2.png) center no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-corporate .link-button:hover {
  text-decoration: none;
}
.header-corporate .link-button span {
  font-size: .9em;
  display: block;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    max-width: 1100px;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
    max-width: 1100px;
  }
  .header.fixed .inner .header-logo {
    display: none;
  }
  .header.fixed .inner .header-corporate {
    display: none;
  }
}
.header.fixed .header-contact {
  top: 10px;
  right: 10px;
}
#top .header.fixed .header-contact {
  position: absolute;
  display: block;
  top: 10px;
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 290px;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    will-change: transform;
    z-index: 1001;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 201px;
    width: 100%;
    z-index: 1000;
    background: url(../img/base/bg.png) center left no-repeat;
    background-size: cover;
    height: 75px;
  }
  #top .nav {
    top: -75px;
  }
}
@media screen and (min-width: 1100px), print {
  .nav:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 75px;
    background-color: rgba(13, 157, 197, 0.9);
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 280px;
    height: 100%;
    margin: 0;
    background-color: rgba(13, 157, 197, 0.9);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 1100px), print {
  .nav .inner {
    padding: 12.5px 260px 12.5px 0;
  }
}
.nav-corporate {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px), print {
  .nav-corporate {
    display: none;
  }
}
.nav-corporate .link-button {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem calc(1rem + 45px);
}
.nav-corporate .link-button:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/logo2.png) center no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-corporate .link-button:hover {
  text-decoration: none;
}
.nav-corporate .link-button span {
  font-size: .9em;
  display: block;
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 70px 10px 10px;
    opacity: 0;
  }
  .nav-open .main-nav, .slideout-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
  }
  .main-nav .nav-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
    position: relative;
    padding: 1em 0;
    color: #fff;
    border-bottom: 1px solid #e3e3e3;
  }
  .main-nav .nav-link:hover {
    color: #82cdff;
    text-decoration: none;
  }
  .main-nav .nav-link span {
    display: block;
    position: relative;
    font-size: .9em;
  }
  .main-nav .nav-link span:after {
    display: block;
    font-size: .6em;
    margin-right: -1em;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 50px;
    text-align: center;
    color: #fff;
  }
  .main-nav .nav-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: #82cdff;
  }
  .main-nav .nav-link span {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
  }
  .main-nav .nav-link span:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    content: "";
    display: block;
    font-size: 30.8px;
    font-size: 2.2rem;
    line-height: 40px;
  }
  .main-nav .nav-link span:after {
    content: "";
    display: block;
    font-size: .6em;
    color: #075266;
  }
}
.main-nav .nav-home .nav-link {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position: absolute;
    display: block;
    content: "\e902";
    font-size: 56px;
    font-size: 4rem;
    line-height: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link span {
    visibility: hidden;
  }
}
.main-nav .nav-home .nav-link span:after {
  content: "Home";
}
.main-nav .nav-news .nav-link span:after {
  content: "News & topics";
}
.main-nav .nav-candidate .nav-link span:after {
  content: "Ideal candidate";
}
.main-nav .nav-introduction .nav-link span:after {
  content: "Employee Introduction";
}
.main-nav .nav-development .nav-link span:after {
  content: "Human Resources Development / Career Support";
}
.main-nav .nav-contact .nav-link span:after {
  content: "Requirements";
}

/* ドロップダウンナビ */
.sub-nav {
  height: 0;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1099.98px) {
  .sub-nav {
    overflow: hidden;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 50%;
    left: -30%;
    width: 160%;
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-transition: .2s;
    transition: .2s;
  }
}
.sub-nav-active .sub-nav {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav {
    height: auto;
    overflow: visible;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
  }
}
.sub-nav ul {
  margin-top: -1px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav ul {
    margin-top: 10px;
  }
  .sub-nav ul:after {
    content: "";
    display: table;
    clear: both;
  }
}
.sub-nav li:not(:last-child) {
  margin-bottom: 1px;
}
@media screen and (min-width: 1100px), print {
  .sub-nav li:not(:last-child) {
    margin-bottom: 0;
  }
}
.sub-nav a {
  display: block;
  position: relative;
  padding: 1em;
  font-size: .9em;
  color: #fff;
  background-color: #0099ff;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sub-nav a {
    padding: 1.5em 1em;
  }
}
.sub-nav a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #82cdff;
}

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4em;
  height: 4em;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  cursor: pointer;
  outline: none;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    width: 100%;
    height: 100%;
    background: none;
  }
}
.sub-nav-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:after {
    top: auto;
    bottom: 8px;
  }
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover:after {
    border-color: #0099ff;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover:after {
    border-color: #0099ff;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button {
    top: auto;
    bottom: 0;
    height: 2em;
  }
}
.sub-nav-active .sub-nav-button:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1099.98px) {
  .sub-nav-active .sub-nav-button:after {
    bottom: -.5em;
    border-color: #0099ff;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button:after {
    bottom: 3px;
    border-color: #0099ff;
  }
}

/* ドロップダウンナビ（ hover + active ）*/
@media screen and (max-width: 1099.98px) {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #82cdff;
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link, .sub-nav-active .nav-link, .sub-nav-active .sub-nav-button:hover + .nav-link {
    color: #fff;
    background-color: #82cdff;
  }
}

/* 横スクロールナビ */
.horizontal-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  background-color: #000;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.horizontal-nav a {
  display: block;
  padding: 1em 2em;
  color: #fff;
  line-height: 1.1;
}
.horizontal-nav a:hover {
  text-decoration: none;
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .nav-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #000;
    cursor: pointer;
    outline: none;
    z-index: 1002;
  }
  .nav-open .nav-button, .slideout-open .nav-button {
    background-color: #82cdff;
  }
  .nav-button-icon {
    display: block;
    position: absolute;
    top: -14px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background-color: #fff;
  }
  .nav-open .nav-button-icon, .slideout-open .nav-button-icon {
    background: none;
  }
  .nav-button-icon:before, .nav-button-icon:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: #fff;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before, .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    margin-top: 0;
    background-color: #fff;
  }
  .nav-button-icon:before {
    margin-top: -8px;
  }
  .nav-open .nav-button-icon:before, .slideout-open .nav-button-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-button-icon:after {
    margin-top: 8px;
  }
  .nav-open .nav-button-icon:after, .slideout-open .nav-button-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav-button:after {
    content: "MENU";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: .7em;
    font-weight: 800;
    text-align: center;
  }
  .nav-open .nav-button:after, .slideout-open .nav-button:after {
    content: "CLOSE";
    color: #fff;
  }
}

/* ナビゲーション背景 */
.nav-screen {
  display: inline;
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.nav-open .nav-screen-overlay, .slideout-open .nav-screen-overlay {
  opacity: .4;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 5em 1em;
  z-index: 100;
}
#top .main {
  background: #000;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em;
  }
  #top .main {
    padding: 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* サイドバー付レイアウト用 */
.main-container {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 992px), print {
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    word-wrap: break-word;
  }
}
.main-container .main-column {
  margin-bottom: 5em;
}
@media screen and (min-width: 992px), print {
  .main-container .main-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 2em;
  }
}
@media screen and (min-width: 992px), print {
  .main-container .side-column {
    width: 280px;
  }
}
.main-container .side-column .inner {
  padding: 0;
  line-height: 1.5;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 0 1em;
  background-color: #000;
  z-index: 100;
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 2em;
  }
}
.footer .inner {
  padding: 2em 0;
}

/* フッターナビ */
.footer-nav_ {
  margin: 0 -5px -5px 0;
  text-align: center;
  overflow: hidden;
}
.footer-nav_:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 1100px), print {
  .footer-nav_ {
    display: none;
  }
}
.footer-nav_ li {
  float: left;
  width: 100%;
  padding: 0 5px 5px 0;
}
@media screen and (min-width: 480px), print {
  .footer-nav_ li {
    width: 50%;
  }
}
@media screen and (min-width: 768px), print {
  .footer-nav_ li {
    width: 25%;
  }
}
.footer-nav_ a {
  display: block;
  position: relative;
  padding: .5em;
  color: #fff;
  background: #0099ff;
  -webkit-transition: .2s;
  transition: .2s;
}
.footer-nav_ a:hover {
  text-decoration: none;
  background-color: #82cdff;
}

/* フッターナビ（アコーディオン付）*/
.footer-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}
.footer-nav .nav-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 480px), print {
  .footer-nav .nav-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .footer-nav .nav-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
.footer-nav .nav-label {
  border-bottom: 1px solid #000;
}
.footer-nav .nav-link {
  display: inline-block;
  padding: .7em 0 .7em .5em;
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link {
    display: block;
    padding: 0 0 .7em .3em;
    border-bottom: 1px solid #000;
  }
}
@media screen and (min-width: 1280px), print {
  .footer-nav .nav-link {
    font-size: 1.1em;
  }
}
.footer-nav .nav-link:hover {
  text-decoration: none;
}

/* フッターナビ（ドロップダウン用）*/
.footer-subnav {
  padding: 1em 0 0 1em;
}
@media screen and (min-width: 1100px), print {
  .footer-subnav {
    padding: 1em 0 0 .5em;
  }
}
.footer-subnav li:not(:last-child) {
  margin-bottom: .5em;
}
.footer-subnav a {
  display: inline-block;
  position: relative;
  margin: -10px 0;
  padding: 10px 1em 10px 1.4em;
  font-size: .9em;
  text-align: left;
  line-height: 1.3;
  color: #0099ff;
}
@media screen and (min-width: 1280px), print {
  .footer-subnav a {
    font-size: 1em;
  }
}
.footer-subnav a:hover {
  color: #82cdff;
  text-decoration: none;
}
.footer-subnav a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: 1px;
  margin: auto;
  background-color: #333;
}

/* 下層共通　フッターメニュー */
.footer-menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}
.footer-menu-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 640px), print {
  .footer-menu-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.footer-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 200px;
}
@media screen and (min-width: 768px), print {
  .footer-menu-link {
    height: 250px;
  }
}
.footer-menu-link:hover {
  text-decoration: none;
}
.footer-menu-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.candidate .footer-menu-img {
  background-image: url(../img/base/menu1.jpg);
}
.introduction .footer-menu-img {
  background-image: url(../img/base/menu2.jpg);
}
.development .footer-menu-img {
  background-image: url(../img/base/menu3.jpg);
}
.contact .footer-menu-img {
  background-image: url(../img/base/menu4.jpg);
}
.footer-menu-name {
  display: block;
  position: absolute;
  margin: auto;
  text-align: left;
  color: #fff;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer-menu-name .subtitle {
  display: block;
  font-size: 1.4rem;
  padding: .8rem 2rem;
  line-height: 1.4;
}
.footer-menu-name .subtitle .br {
  display: block;
}
@media screen and (min-width: 480px), print {
  .footer-menu-name .subtitle .br {
    display: inline;
  }
}
.candidate .footer-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 30, 31, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(228, 30, 31, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.introduction .footer-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 112, 207, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(35, 112, 207, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.development .footer-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(51, 130, 2, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(51, 130, 2, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.contact .footer-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  color: #5270ab;
}
.footer-menu-name .heading {
  display: block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.1;
  padding: 2rem 2rem;
}
@media screen and (min-width: 480px), print {
  .footer-menu-name .heading {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 768px), print {
  .footer-menu-name .heading {
    font-size: 1.5em;
  }
}
.candidate .footer-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 30, 31, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(228, 30, 31, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.introduction .footer-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 112, 207, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(35, 112, 207, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.development .footer-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(51, 130, 2, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(51, 130, 2, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.contact .footer-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  color: #5270ab;
}

/* ページトップ */
.pagetop {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  overflow: hidden;
  background-color: #008395;
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
  }
}
@media screen and (min-width: 1100px) {
  .pagetop.fixed {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .pagetop:hover {
    color: #fff;
    background-color: #82cdff;
  }
}
.pagetop:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e901";
  display: block;
  color: #fff;
  font-size: 25.2px;
  font-size: 1.8rem;
  line-height: 60px;
}

/* コピーライト */
.copy {
  display: block;
  margin: 0 -1em;
  padding: 2em 0;
  text-align: center;
  background-color: #000;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .copy {
    margin: 0 -2em;
  }
}
.copy small {
  display: block;
  color: #fff;
  letter-spacing: .1em;
}
.copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .copy span {
    display: inline;
  }
}

/* --------------------------------

  スライダー

-------------------------------- */
.slider {
  position: relative;
  margin-top: 0;
  background-color: #000;
}
.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slider-main {
  display: block;
  position: relative;
}
.slider-main:before {
  content: "";
  display: block;
  padding-top: 60%;
}
@media screen and (min-width: 1100px), print {
  .slider-main:before {
    padding-top: 650px;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-main:before {
    padding-top: 810px;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-side {
    position: absolute;
    display: block;
    height: 350px;
    width: 100%;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    top: 30%;
    background: url(../img/base/bg.png) center repeat;
    background-size: cover;
    color: #fff;
    opacity: .9;
    padding: 0 5em;
    -webkit-transform: skew(0, -15deg);
    transform: skew(0, -15deg);
  }
}
@media screen and (min-width: 1600px), print {
  .slider-side {
    height: 440px;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-side:before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 157, 197, 0.8);
  }
}
.slider-img {
  display: block;
  position: relative;
}
.slider-img:before {
  content: "";
  display: block;
  padding-top: 60%;
}
@media screen and (min-width: 1100px), print {
  .slider-img:before {
    padding-top: 650px;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-img:before {
    padding-top: 810px;
  }
}
.slider-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1100px), print {
  .slider-img img {
    width: 100%;
    height: auto;
  }
}
.slider-img.primary img {
  top: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.slider-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}
.slider-content-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1100px), print {
  .slider-content-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-transform: skew(15deg, 0);
    transform: skew(15deg, 0);
  }
}
.slider-content-item.head {
  position: absolute;
  display: block;
  width: 100%;
  height: 130px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  top: 10%;
  -webkit-transform: skew(0, -15deg);
  transform: skew(0, -15deg);
  background: url(../img/base/bg.png) center repeat;
  background-size: cover;
  color: #fff;
  opacity: .9;
}
@media screen and (min-width: 480px), print {
  .slider-content-item.head {
    height: 180px;
  }
}
@media screen and (min-width: 640px), print {
  .slider-content-item.head {
    top: 15%;
  }
}
@media screen and (min-width: 768px), print {
  .slider-content-item.head {
    height: 300px;
  }
}
.slider-content-item.head:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(13, 157, 197, 0.8);
}
@media screen and (min-width: 1100px), print {
  .slider-content-item.head:before {
    background-color: transparent;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-content-item.head {
    position: relative;
    height: auto;
    top: 0;
    background: none;
    opacity: 1;
    -webkit-transform: skew(15deg, 0);
    transform: skew(15deg, 0);
  }
}
.slider-content-head {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 2em;
  font-family: GenShinGothic, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .slider-content-head {
    font-size: 3em;
  }
}
@media screen and (min-width: 768px), print {
  .slider-content-head {
    font-size: 4.5em;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-content-head {
    font-size: 5.5em;
  }
}
.slider-content-head span {
  display: block;
  font-weight: bold;
  line-height: 1.2;
}
.slider-content-body {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 2em;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 1100px), print {
  .slider-content-body {
    background-color: transparent;
    font-size: 1.1em;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-content-body {
    font-size: 1.2em;
    line-height: 2.2;
  }
}
.slider-content-body-lead {
  font-size: 1.6em;
  font-family: GenShinGothic, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 1.1;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1100px), print {
  .slider-content-body-lead {
    font-size: 2em;
  }
}
.slider-corporate {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .slider-corporate {
    position: absolute;
    display: block;
    bottom: 15px;
    right: 15px;
    left: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slider-corporate .link-button {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem calc(1rem + 45px);
}
.slider-corporate .link-button:after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/logo2.png) center no-repeat;
  background-size: contain;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider-corporate .link-button:hover {
  text-decoration: none;
}
.slider-corporate .link-button span {
  font-size: .9em;
  display: block;
}
.slider .slick-slider {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.slider .slick-slider.slick-slider1 {
  position: absolute;
  top: 0;
  left: 0;
}
.slider .slick-slider.slick-slider1 .slick-list,
.slider .slick-slider.slick-slider1 .slick-track {
  height: 100%;
}
@media screen and (min-width: 1100px), print {
  .slider .slick-slider.slick-slider2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .slider .slick-slider.slick-slider2 .slick-list,
  .slider .slick-slider.slick-slider2 .slick-track {
    height: 100%;
  }
}
.slider .slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1600px;
  height: 1px;
  margin: auto;
  z-index: 101;
}
.slider-prev, .slider-next {
  display: block;
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (min-width: 1100px), print {
  .slider-prev, .slider-next {
    top: -30px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px), print {
  .slider-prev, .slider-next {
    top: -55px;
    width: 110px;
    height: 110px;
  }
}
.slider-prev:before, .slider-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.slider-prev {
  left: 0;
}
.slider-prev:before {
  left: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.slider-next {
  right: 0;
}
.slider-next:before {
  right: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.slider-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
}
.slider-dots ul {
  height: 100%;
  text-align: center;
  overflow: hidden;
}
.slider-dots li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
}
.slider-dots li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  background-color: #ccc;
}
.slider-dots li.slick-active:before {
  background-color: #0099ff;
}
.slider-dots button {
  display: none;
}

/* --------------------------------

  上部固定用電話番号ボタン

-------------------------------- */
.tel-button {
  display: none;
}
@media screen and (max-width: 1099.98px) {
  .tel-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    outline: none;
    text-align: center;
    color: #fff;
    background-color: #000;
    z-index: 999;
  }
  .tel-button:hover {
    color: #fff;
    text-decoration: none;
    background-color: #82cdff;
  }
  .tel-button .icon-tel {
    display: block;
    padding-top: 8px;
  }
  .tel-button .icon-tel:before {
    font-size: 39.2px;
    font-size: 2.8rem;
  }
  .tel-button:after {
    content: "TEL";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    font-size: .7em;
    font-weight: 800;
    color: #fff;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    height: 500px;
    margin-top: 0;
  }
}
.page-title:before {
  content: "";
  display: block;
  background-image: url(../img/base/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 20%;
  margin-bottom: 20px;
}
@media screen and (min-width: 640px), print {
  .page-title:before {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title:before {
    padding-top: 276px;
    margin-bottom: 60px;
  }
}
.page-title-inner {
  position: static;
  -webkit-transform: none;
  transform: none;
}
.page-title-name {
  position: relative;
  display: table;
  margin: 0 auto;
  color: #000;
  font-size: 1.2em;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 5px solid #0d9dc5;
}
@media screen and (min-width: 640px), print {
  .page-title-name {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-name {
    font-size: 2.2em;
  }
}
.page-title-name:after {
  position: absolute;
  display: block;
  content: attr(data-subtitle);
  font-size: 16.8px;
  font-size: 1.2rem;
  color: #075266;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 640px), print {
  .page-title-name:after {
    font-size: 22.4px;
    font-size: 1.6rem;
    bottom: -3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-name:after {
    font-size: 25.2px;
    font-size: 1.8rem;
    bottom: -4rem;
  }
}

/* --------------------------------

  アコーディオン

-------------------------------- */
.accordion {
  position: relative;
}
@media screen and (max-width: 1099.98px) {
  .accordion-label {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
.accordion-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (min-width: 1100px), print {
  .accordion-label:after {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .4s ease-out;
    transition: max-height .4s ease-out;
  }
}
.accordion-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.accordion-input:checked + .accordion-label:after {
  bottom: -.5em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1099.98px) {
  .accordion-input:checked ~ .accordion-content {
    max-height: 10em;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
/* 送信完了画面見出し */
.form-heading {
  margin-bottom: 2rem;
  font-size: 1.3em;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .form-heading {
    font-size: 1.5em;
  }
}

/* フォーム用説明文 */
.form-description {
  margin-bottom: 2em;
}
.form-description .required {
  color: #c00;
}

/* フォーム用テーブル */
.form-table {
  display: block;
  line-height: 1.5;
  overflow: hidden;
}
.form-table tbody {
  display: block;
  margin: 0;
  padding: 0;
}
.form-table tr {
  display: table;
  width: 100%;
  padding-bottom: .5em;
}
@media screen and (max-width: 639.98px) {
  .form-table tr {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 1.5em;
  }
}
.form-table th {
  vertical-align: middle;
  width: 210px;
  background-color: #eee;
  padding: .5em 1em;
}
@media screen and (max-width: 639.98px) {
  .form-table th {
    display: block;
    width: 100%;
    background: none;
    margin-bottom: .5em;
    padding: 0;
  }
}
.form-table td {
  vertical-align: middle;
  padding: .5em 1em;
}
@media screen and (max-width: 639.98px) {
  .form-table td {
    display: block;
    padding: 0;
  }
}

/* 性別 */
.form-area-gender .form-item {
  display: inline-block;
  vertical-align: middle;
  padding: .3em;
}
@media screen and (max-width: 639.98px) {
  .form-area-gender .form-item {
    display: block;
  }
}

/* 年齢 */
.form-area-age .age {
  display: inline-block;
  vertical-align: middle;
  margin-left: .5em;
  font-size: 1.1em;
}

/* 郵便番号 */
.form-area-post .form-short,
.form-post .form-short {
  width: 140px;
}

/* ご住所 */
.form-area-add .form-textarea {
  height: 2.6em;
  min-height: 2.6em;
  padding: .5em .5em 0;
}
.form-area-add .form-item {
  display: table;
  width: 100%;
}
.form-area-add .form-item:not(:last-child) {
  margin-bottom: .5em;
}
.form-area-add .form-item dt,
.form-area-add .form-item dd {
  display: table-cell;
  vertical-align: middle;
}
.form-area-add .form-item dt {
  width: 50px;
}

/* お問い合わせの内容 */
.form-area-message .form-textarea {
  resize: vertical;
  vertical-align: bottom;
  height: 15em;
  min-height: 5em;
  padding: .5em .5em 0;
}

/* フォーム部品：入力欄 */
.form-short,
.form-middle,
.form-long {
  height: 2.6em;
  padding: 0 .5em;
  color: #333;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  border: 1px solid #ccc;
  background-color: #fff;
}
.form-short:focus,
.form-middle:focus,
.form-long:focus {
  border-color: #e3e3e3;
  background-color: #fff;
}

.form-short {
  width: 140px;
}

.form-middle {
  width: 65%;
}

.form-long {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .form-middle,
  .form-long {
    width: 100%;
  }
}
/* フォーム部品：入力必須マーク */
.form-title {
  display: inline-block;
  vertical-align: middle;
  padding-right: .5em;
  line-height: 1.2;
}

.form-icon {
  float: right;
}
@media screen and (max-width: 639.98px) {
  .form-icon {
    float: none;
    display: inline-block;
    vertical-align: middle;
  }
}
.form-icon:before {
  content: "";
  display: block;
  width: 50px;
  margin: auto;
  font-size: .9em;
  font-weight: 800;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  line-height: 1.8em;
  text-align: center;
}
.form-icon-required:before {
  content: "必須";
  color: #fff;
  background-color: #c00;
}
.form-icon-free:before {
  content: "";
  background: none;
}
@media screen and (max-width: 767.98px) {
  .form-icon-free:before {
    content: "任意";
    color: #fff;
    background-color: #ccc;
  }
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  max-width: 100%;
  height: auto;
  white-space: nowrap;
  border-radius: 0;
  overflow: hidden;
}
.select-wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: .3em;
  right: .3em;
  width: 2em;
  height: 2em;
  background: #fff url(../img/base/select.png) center no-repeat;
  background-size: 40px auto;
  z-index: 1;
}
.select-wrap.form-short, .select-wrap.form-middle, .select-wrap.form-long {
  padding: 0;
  border: none;
}
.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 40px;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrap select:focus {
  background: none;
}
.select-wrap select:-ms-expand {
  display: none;
  visibility: hidden;
}
.select-wrap select:-moz-focusring {
  background: none transparent;
}
.select-wrap option {
  background: none transparent;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}
.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  cursor: pointer;
}
.form-box + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #fff;
}
.form-box + label:after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
.form-box:checked + label {
  color: #82cdff;
}
.form-box:checked + label:before {
  border-color: #82cdff;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label:before {
  border-radius: 100%;
}
.form-box-radio + label:after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}
.form-box-radio:checked + label:after {
  background-color: #82cdff;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label:before {
  border-radius: 0;
}
.form-box-check + label:after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #82cdff;
  border-bottom: 3px solid #82cdff;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.form-box-check:checked + label:after {
  opacity: 1;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  vertical-align: top;
  height: 10em;
  min-height: 4em;
  resize: vertical;
}

/* フォーム部品：エラーメッセージ */
.checkbox-error-message .validate-error:not(:first-child) {
  display: none !important;
}

input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block;
  padding-top: .3em;
  font-size: .85em;
  color: #c00;
  background-color: #fff;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 1em;
  text-align: center;
}

.form-button {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin: 1em .5em 0;
  padding: .5em 1em .3em;
  color: #fff;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.1em;
  line-height: 1.1;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
}
.form-button-send {
  position: relative;
  padding: .5em 3em .5em 1.5em;
  border-radius: .3em;
  border-color: #0099ff;
  background: #0099ff;
}
.form-button-send:after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.form-button-send:hover {
  border-color: #82cdff;
  background: #82cdff;
}
.form-button-back {
  position: relative;
  padding: .5em 3em .5em 1.5em;
  border-radius: .3em;
  border-color: #999;
  background: #999;
}
.form-button-back:after {
  position: absolute;
  display: block;
  content: "";
  border-style: solid;
  border-width: 6px 0 6px 10.4px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}
.form-button-add {
  vertical-align: middle;
  max-width: 70px;
  margin: 0 0 0 .5em;
  font-size: 1em;
  background: #ccc;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.section-anim-item {
  display: block !important;
  opacity: 0;
}
@media print {
  .section-anim-item {
    opacity: 1;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  position: relative;
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}

/* メニュー */
.crs-menu-section {
  margin-bottom: 3em;
}
.crs-menu-section .inner {
  max-width: none;
}
.crs-menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 -2em 0;
}
.crs-menu-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0 2em 0;
}
@media screen and (min-width: 992px), print {
  .crs-menu-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.crs-menu-item p {
  font-size: .9em;
  padding: 5px;
}
.crs-menu-item dl dd {
  color: #fff;
  padding: .5rem;
}
@media screen and (min-width: 992px), print {
  .crs-menu-item dl dd {
    min-height: 120px;
  }
}
.crs-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 200px;
}
@media screen and (min-width: 768px), print {
  .crs-menu-link {
    height: 350px;
  }
}
.crs-menu-link:hover {
  text-decoration: none;
}
.crs-menu-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.candidate .crs-menu-img {
  color: #eee;
  background-image: url(../img/menu/menu1.jpg);
}
.introduction .crs-menu-img {
  color: #ddd;
  background-image: url(../img/menu/menu2.jpg);
}
.development .crs-menu-img {
  color: #999;
  background-image: url(../img/menu/menu3.jpg);
}
.crs-menu-name {
  display: block;
  position: absolute;
  margin: auto;
  text-align: left;
  color: #fff;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
}
.crs-menu-name .subtitle {
  display: block;
  font-size: 1.4rem;
  padding: .8rem 2rem;
  line-height: 1.4;
}
.crs-menu-name .subtitle .br {
  display: block;
}
@media screen and (min-width: 480px), print {
  .crs-menu-name .subtitle .br {
    display: inline;
  }
}
.candidate .crs-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 30, 31, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(228, 30, 31, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.introduction .crs-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 112, 207, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(35, 112, 207, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.development .crs-menu-name .subtitle {
  background: -webkit-gradient(linear, left top, right top, from(rgba(51, 130, 2, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(51, 130, 2, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}
.crs-menu-name .heading {
  display: block;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.1;
  padding: 2rem 2rem;
}
@media screen and (min-width: 480px), print {
  .crs-menu-name .heading {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 768px), print {
  .crs-menu-name .heading {
    font-size: 1.5em;
  }
}
.candidate .crs-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(228, 30, 31, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(228, 30, 31, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.introduction .crs-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(35, 112, 207, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(35, 112, 207, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.development .crs-menu-name .heading {
  background: -webkit-gradient(linear, left top, right top, from(rgba(51, 130, 2, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(51, 130, 2, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.crs-menu-more {
  margin: 1em 0;
  text-align: center;
}

/* 新着情報、お問い合わせ */
.crs-info-section .inner {
  max-width: none;
}
.crs-info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.crs-info-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 992px), print {
  .crs-info-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.crs-info-item.news {
  background: url(../img/menu/menu4.jpg) center no-repeat;
  background-size: cover;
}
.crs-info-item.contact {
  background: url(../img/menu/menu5.jpg) center no-repeat;
  background-size: cover;
}
.crs-info-inner {
  padding: 3em 2em 2em 2em;
}

/* 新着情報 */
.crs-news-section {
  position: relative;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .crs-news-section {
    padding: 0 2em;
  }
}
.crs-news-section .inner {
  max-width: none;
}
.crs-news-head {
  margin-bottom: 1.5em;
}
.crs-news-body {
  margin-bottom: 1.5em;
}
.crs-news-foot {
  clear: both;
  padding-top: .5em;
  text-align: center;
}
.crs-news-heading {
  color: #027ae8;
  padding: 0 0 .5rem 1rem;
  border-left: 5px solid #027ae8;
  border-bottom: 1px solid #ccc;
}

/* お問い合わせ */
.crs-contact-contents {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .crs-contact-contents {
    float: left;
    width: 75%;
    padding: 2em;
  }
}
.crs-contact-head {
  text-align: center;
  margin-bottom: 2em;
}
.crs-contact-heading {
  display: table;
  margin: 0 auto;
  font-size: 1.2em;
}
@media screen and (min-width: 768px), print {
  .crs-contact-heading {
    font-size: 1.5em;
  }
}
.crs-contact-heading:before {
  display: block;
  content: attr(data-subtitle);
  font-size: .6em;
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px), print {
  .crs-contact-heading:before {
    font-size: .7em;
  }
}
.crs-contact-body {
  text-align: center;
  margin-bottom: 2em;
}
.crs-contact-foot {
  text-align: center;
}

/* --------------------------------

  idxx　最新情報

-------------------------------- */
.news-area {
  position: relative;
}
.news-area .inner {
  padding: 0;
  line-height: 1.5;
}
.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-area .news-heading {
  margin-bottom: 0;
}
.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 1em;
}
.news-detail .inner {
  line-height: 1.5;
}
.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-detail .news-date {
  font-size: .9em;
}
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0 0 .5rem 55px;
  font-size: 1.4em;
  color: #008395;
}
@media screen and (min-width: 768px), print {
  .news-heading {
    margin-bottom: 1.5rem;
    font-size: 2em;
  }
}
.news-heading:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/base/logo3.png) center no-repeat;
  background-size: contain;
  width: 44px;
  height: 45px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.news-link {
  display: block;
  padding: 1em 0;
  border-bottom: 1px dashed #e3e3e3;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #e3e3e3;
}

/* お知らせ一覧（テキストのみ）*/
.news-list .news-link {
  position: relative;
  padding: 1em;
}
.news-list .news-link:hover .news-date {
  color: #0099ff;
}
.news-list .news-date {
  float: left;
  margin: 0;
  color: #333;
}
.news-list .news-title,
.news-list .news-body {
  clear: both;
  margin: 0;
}
@media screen and (min-width: 640px), print {
  .news-list .news-title,
  .news-list .news-body {
    clear: none;
    margin: 0 0 0 7em;
  }
}

/* お知らせ一覧（サムネイル縦並び）*/
.news-thumb-list .news-topics {
  position: relative;
  display: table;
  width: 100%;
  height: 80px;
}
.news-thumb-list .news-link {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 7em;
}
.news-thumb-list .news-link:hover .news-date {
  color: #0099ff;
}
.news-thumb-list .news-date {
  float: left;
  width: 100%;
  font-size: .9em;
  color: #333;
}
.news-thumb-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}
.news-thumb-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 144px;
  max-height: 144px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（サムネイル・スライダー）*/
.news-img-list:not(.news-slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -10px -10px 0;
}
.news-img-list:not(.news-slider) .news-topics {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0 10px 10px 0;
}
@media screen and (min-width: 480px), print {
  .news-img-list:not(.news-slider) .news-topics {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (min-width: 1100px), print {
  .news-img-list:not(.news-slider) .news-topics {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
.news-img-list.news-slider .news-topics {
  width: 240px;
  padding: 10px 10px 0;
}
@media screen and (min-width: 640px), print {
  .news-img-list.news-slider .news-topics {
    width: 260px;
    padding: 10px 10px 0;
  }
}
.news-img-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #333;
  text-align: center;
  line-height: 1.5;
  border: none;
}
.news-img-list .news-link:hover {
  color: #82cdff;
  text-decoration: none;
}
.news-img-list .news-date {
  color: #333;
}
.news-img-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background-color: #fff;
  overflow: hidden;
}
.news-img-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.news-img-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .news-arrow {
    position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }
}
.news-arrow-prev, .news-arrow-next {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 15px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: pointer;
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev, .news-arrow-next {
    display: block;
    position: absolute;
    top: -24px;
    width: 48px;
    height: 48px;
    margin: 0;
  }
}
.news-arrow-prev:before, .news-arrow-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  margin: auto;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev:before, .news-arrow-next:before {
    border-width: 2px;
  }
}
@media screen and (min-width: 640px), print {
  .news-arrow-prev {
    left: 0;
  }
}
.news-arrow-prev:before {
  left: 20%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 640px), print {
  .news-arrow-next {
    right: 0;
  }
}
.news-arrow-next:before {
  right: 20%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* WordPress お知らせ詳細用 */
.news-pagers {
  position: relative;
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px dotted #e3e3e3;
  overflow: hidden;
}

.news-pager {
  width: 70px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}
@media screen and (min-width: 480px), print {
  .news-pager {
    width: 80px;
  }
}
.news-pager a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
  background-color: #0099ff;
  -webkit-transition: .2s;
  transition: .2s;
}
.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #82cdff;
}
.news-pager a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.news-pager-prev {
  position: absolute;
  top: 2em;
  right: 0;
  left: -190px;
}
@media screen and (min-width: 480px), print {
  .news-pager-prev {
    left: -240px;
  }
}
.news-pager-prev a {
  padding-left: 10px;
}
.news-pager-prev a:before {
  display: none;
}
.news-pager-prev a:after {
  left: -40px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.news-pager-next {
  position: absolute;
  top: 2em;
  right: -190px;
  left: 0;
}
@media screen and (min-width: 480px), print {
  .news-pager-next {
    right: -240px;
  }
}
.news-pager-next a {
  padding-right: 10px;
}
.news-pager-next a:before {
  display: none;
}
.news-pager-next a:after {
  right: -40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news-pager-back {
  width: 90px;
  font-size: 13px;
}
@media screen and (min-width: 480px), print {
  .news-pager-back {
    width: 120px;
  }
}
.news-pager-back a:before, .news-pager-back a:after {
  display: none;
}

/* --------------------------------

  id02 求める人材

-------------------------------- */
/* イントロ */
.candidate-intro {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .candidate-intro {
    padding: 0;
  }
}
.candidate-intro-section {
  margin-bottom: 5em;
}
.candidate-intro-head {
  position: relative;
  margin-bottom: 2em;
}
.candidate-intro-head .bg {
  width: 100%;
  height: auto;
}
.candidate-intro-head .keyword {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 1em auto;
}
@media screen and (min-width: 640px), print {
  .candidate-intro-head .keyword {
    position: absolute;
    display: block;
    top: 50%;
    left: 75px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 100%;
    width: auto;
    height: 180px;
    margin: 0;
  }
}
@media screen and (min-width: 768px), print {
  .candidate-intro-head .keyword {
    left: 100px;
    height: 210px;
  }
}
@media screen and (min-width: 992px), print {
  .candidate-intro-head .keyword {
    left: 125px;
    height: 280px;
  }
}
@media screen and (min-width: 1100px), print {
  .candidate-intro-head .keyword {
    left: 150px;
    height: 300px;
  }
}
@media screen and (min-width: 1280px), print {
  .candidate-intro-head .keyword {
    left: 200px;
    height: 350px;
  }
}
@media screen and (min-width: 1600px), print {
  .candidate-intro-head .keyword {
    left: 250px;
    height: auto;
  }
}
.candidate-intro-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
}
.candidate-intro-table th {
  width: 6em;
  margin: 0 auto 1em;
  padding: .5em;
  line-height: 1.3;
  font-size: 1em;
  font-weight: bold;
  background-color: #eee;
  border: 1px solid transparent;
  border-left: 20px solid #00a0ea;
}
@media screen and (min-width: 480px), print {
  .candidate-intro-table th {
    width: 9em;
  }
}
@media screen and (min-width: 768px), print {
  .candidate-intro-table th {
    font-size: 1.1em;
    padding: .7em 1em;
  }
}
.candidate-intro-table td {
  padding: .5em;
  border: 1px solid #eee;
  font-size: 1em;
  line-height: 1.3;
}
@media screen and (min-width: 768px), print {
  .candidate-intro-table td {
    font-size: 1.1em;
    padding: .7em 1em;
  }
}

/* 様々な現場でのクリーンスタッフ・軽作業スタッフを募集しております */
.candidate-main-heading {
  display: table;
  margin: 0 auto 1.5em;
  padding: 0 .5em;
  font-size: 1.2em;
  font-family: GenShinGothic, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: center;
  border-bottom: 7px solid #00a0ea;
}
@media screen and (min-width: 640px), print {
  .candidate-main-heading {
    font-size: 1.6em;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 992px), print {
  .candidate-main-heading {
    font-size: 2em;
  }
}
.candidate-main-subsection {
  overflow: hidden;
}
.candidate-main-subsection:not(:last-child) {
  margin-bottom: 2em;
}
.candidate-main-image {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .candidate-main-image.first {
    float: right;
    margin: 0 0 1em 1em;
  }
}
@media screen and (min-width: 768px), print {
  .candidate-main-image.second {
    float: left;
    margin: 0 1em 1em 0;
  }
}

/* テーブル */
.common-table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.common-table th, .common-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.common-table th {
  display: block;
  background: #F0F0F0;
}
@media screen and (min-width: 640px), print {
  .common-table th {
    display: table-cell;
    width: 180px;
  }
}
.common-table td {
  display: block;
  text-align: left;
  padding-left: 20px;
}
@media screen and (min-width: 640px), print {
  .common-table td {
    display: table-cell;
  }
}
.common-table td dl {
  margin: 0 auto;
  padding: 0;
}
.common-table td dt, .common-table td dd {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
.common-table td dd ul {
  margin-top: 0;
  margin-bottom: 5px;
}
.common-table .tab {
  display: inline-block;
  width: auto;
}
@media screen and (min-width: 640px), print {
  .common-table .tab {
    width: 180px;
  }
}

/* --------------------------------

  id03 社員紹介

-------------------------------- */
/* イントロ */
.introduction-intro {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .introduction-intro {
    padding: 0;
  }
}
.introduction-intro-section {
  margin-bottom: 5em;
}
.introduction-intro-head {
  margin-bottom: 2em;
}
.introduction-intro-head img {
  width: 100%;
  height: auto;
}

/* 社員紹介 */
.introduction-main-subsection:not(:last-child) {
  margin-bottom: 2em;
}
.introduction-main-subsection:after {
  display: table;
  content: "";
  clear: both;
}
@media screen and (min-width: 992px), print {
  .introduction-main-left {
    float: left;
    width: 330px;
  }
}
@media screen and (min-width: 992px), print {
  .introduction-main-right {
    float: right;
    width: 100%;
    margin-left: -330px;
    padding-left: 360px;
  }
}
.introduction-main-image {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 992px), print {
  .introduction-main-image {
    margin-bottom: 0;
  }
}
.introduction-main-interview {
  border: 1px solid #F0F0F0;
  padding: 1em;
}
.introduction-main-interview dl {
  margin-bottom: 1em;
}
.introduction-main-interview dl:not(:last-child) {
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
.introduction-main-interview dt {
  font-size: 1.1em;
  color: #2eabcc;
  margin-bottom: .5em;
}
.introduction-main-interview dd {
  padding-left: 1em;
}
.introduction-main-message {
  color: #fff;
}
.introduction-main-message dt {
  background-color: #2eabcc;
  font-size: 1.2em;
  padding: 1.5rem;
}
@media screen and (min-width: 640px), print {
  .introduction-main-message dt {
    font-size: 1.4em;
    padding: 1.5rem 2rem;
  }
}
.introduction-main-message dd {
  background-color: #65C5DC;
  padding: 1rem 1.5rem;
}
@media screen and (min-width: 640px), print {
  .introduction-main-message dd {
    padding: 1.5rem 2rem;
  }
}
.introduction-main-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 -1em 0;
}
@media screen and (min-width: 768px), print {
  .introduction-main-items {
    margin: 0 -2em -1em 0;
  }
}
.introduction-main-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0 1em 0;
}
@media screen and (min-width: 768px), print {
  .introduction-main-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 2em 1em 0;
  }
}
.introduction-main-item dl {
  margin-bottom: 1em;
  padding-left: .5em;
  padding-right: .5em;
}
.introduction-main-item dl:not(:last-child) {
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
.introduction-main-item dt {
  font-size: 1.1em;
  color: #2eabcc;
  margin-bottom: .5em;
}
.introduction-main-item dd {
  padding-left: 1em;
}

/* --------------------------------

  id04 人材育成 / キャリアサポート

-------------------------------- */
/* イントロ */
.development-intro {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .development-intro {
    padding: 0;
  }
}
.development-intro-section {
  margin-bottom: 5em;
}
.development-intro-head img {
  width: 100%;
  height: auto;
}

/* 人材育成・キャリアサポート */
.development-support:after {
  display: table;
  content: "";
  clear: both;
}
.development-support-main {
  margin-bottom: 1em;
}
@media screen and (min-width: 992px), print {
  .development-support-main {
    float: left;
    width: 100%;
    margin: 0 -500px 0 0;
    padding-right: 550px;
  }
}
@media screen and (min-width: 992px), print {
  .development-support-side {
    float: right;
    width: 500px;
  }
}
.development-support-side ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 0 -1em 0;
}
@media screen and (min-width: 768px), print {
  .development-support-side ul {
    margin: 0 -1em 0 0;
  }
}
@media screen and (min-width: 992px), print {
  .development-support-side ul {
    margin: 0 0 -1em 0;
  }
}
.development-support-side li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0 1em 0;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .development-support-side li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 0 0;
  }
}
@media screen and (min-width: 992px), print {
  .development-support-side li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 0 1em 0;
  }
}
.development-support-text:first-of-type {
  margin-bottom: 1em;
}
.development-support-text dt {
  position: relative;
  font-size: 1.1em;
  color: #008395;
  padding-left: 25px;
}
.development-support-text dt:before {
  position: absolute;
  display: block;
  content: "";
  background: #008395;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.development-support-text dd {
  margin-bottom: 1.5em;
}
.development-support-text ul {
  padding: .5em;
}

/* 職長・安全衛生責任者能力向上教育の実施 */
/* 外国人技能実習制度 */
.development-subsection:not(:last-child) {
  margin-bottom: 2em;
}
.development-head {
  margin-bottom: 2em;
}
.development-body:after {
  display: table;
  content: "";
  clear: both;
}
.development-main {
  margin-bottom: 2em;
}
@media screen and (min-width: 992px), print {
  .development-main {
    float: left;
    width: 100%;
    margin: 0 -500px 0 0;
    padding-right: 550px;
  }
}
.development-side {
  text-align: center;
}
@media screen and (min-width: 992px), print {
  .development-side {
    float: right;
    width: 500px;
  }
}
.development-text {
  padding-left: 1em;
}

/* --------------------------------

  id05 お問合せ

-------------------------------- */
/* お問い合わせはこちら */
.contact-us .tel-link {
  display: inline-block;
  color: #333;
  line-height: 1.2;
}
.contact-us .tel-link:hover {
  text-decoration: none;
}
.contact-us .tel-text {
  display: block;
  font-size: .85em;
  text-align: center;
  background-color: #fff;
  border-radius: 30px;
  padding: .2rem 1rem;
  margin-left: 30px;
}
.contact-us .tel-num {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 2em;
  font-weight: 800;
  font-family: GenJyuuGothicXP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #fff;
}
.contact-us .tel-num:before {
  position: absolute;
  display: block;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  font-size: 33.6px;
  font-size: 2.4rem;
  line-height: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* お問い合わせは、電話・メールにて受け付けております。 */
.contact-tel-item {
  margin-bottom: 1em;
}
@media screen and (min-width: 640px), print {
  .contact-tel-icon {
    position: relative;
    float: left;
    background-color: #2467A4;
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel-icon {
    width: 170px;
    height: 135px;
  }
}
.contact-tel-icon:before {
  display: none;
}
@media screen and (min-width: 640px), print {
  .contact-tel-icon:before {
    position: absolute;
    display: block;
    content: "";
    background: url(../img/pages/contact/icon-tel.png) center no-repeat;
    background-size: contain;
    width: 60px;
    height: 64px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel-icon:before {
    width: 91px;
    height: 97px;
  }
}
.contact-tel-main {
  display: table;
  margin: 0 auto;
  background-color: #408DD5;
  color: #fff;
  padding: .5em;
  height: auto;
}
@media screen and (min-width: 640px), print {
  .contact-tel-main {
    display: block;
    padding: 0.5em 0 0.5em calc(90px + 1em);
    height: 90px;
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel-main {
    padding: 1.5em 1em 1.5em calc(170px + 1em);
    height: 135px;
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel dl dt {
    line-height: 1.2;
  }
}
.contact-tel dl dd.tel {
  position: relative;
  font-size: 1.8em;
  font-weight: bold;
  font-family: GenShinGothic, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding-left: 40px;
}
@media screen and (min-width: 640px), print {
  .contact-tel dl dd.tel {
    float: left;
    font-size: 2.2em;
    padding-left: 0;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px), print {
  .contact-tel dl dd.tel {
    font-size: 2.6em;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel dl dd.tel {
    font-size: 4em;
  }
}
.contact-tel dl dd.tel:before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/pages/contact/icon-tel.png) center no-repeat;
  background-size: contain;
  width: 30px;
  height: 32px;
  top: 4px;
  left: 0;
}
@media screen and (min-width: 640px), print {
  .contact-tel dl dd.tel:before {
    display: none;
  }
}
.contact-tel dl dd.tel .tel-link {
  color: #fff;
}
.contact-tel dl dd.eigyo {
  font-size: .9em;
  line-height: 1.4;
}
@media screen and (min-width: 640px), print {
  .contact-tel dl dd.eigyo {
    text-align: center;
  }
}
@media screen and (min-width: 992px), print {
  .contact-tel dl dd.eigyo {
    font-size: 1em;
    padding-top: 1em;
  }
}

/* メールフォームでのお問い合わせ */
/* 個人情報及び特定個人情報保護方針 */
.contact-privacy {
  font-size: .9em;
  height: 300px;
  overflow-y: scroll;
}

/* --------------------------------

  修正・追加用

-------------------------------- */
.tag {
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: inline-block;
  padding: 0.8rem 2rem;
  margin: 5px 10px 5px 0;
}
.tag.employment {
  background-color: #b73732;
}
.tag.area {
  background-color: #2a4e93;
}

.recruit-search {
  font-size: 18px;
  padding: 20px 10px;
  border-top: 1px solid #bbbbbb;
  border-bottom: 1px solid #bbbbbb;
  display: block;
  align-items: baseline;
  margin-bottom: 40px;
  background-color: #f9f9f9;
}
.recruit-search li {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  padding: 5px 0;
}
.recruit-search p {
  font-size: 18px;
  line-height: 1;
  padding: 10px;
  display: inline-block;
}
.recruit-search p:first-child {
  font-weight: 700;
}
.recruit-search input,
.recruit-search select {
  font-size: 1.5625rem;
  border: 1px solid #bbbbbb;
  border-radius: 5px;
  padding: 0 10px;
  height: 30px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  margin: 0 10px;
}
.recruit-search input[type=text] {
  width: 300px;
}

.entry {
  border: 1px solid #bbb;
  padding: 20px;
  margin-bottom: 40px;
}
.entry .main-heading {
  margin: 0 0 1em 1em;
}


.recruit-list .ttl {
  font-size: 1.5625rem;
  font-weight: 800;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 4px solid #ccd8f0;
}
.recruit-list .ttl:before {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #2a4e93;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.recruit-list .imgTxt {
  align-items: flex-start;
}
.recruit-list .img {
  width: 350px;
}
.recruit-list li {
  width: 100%;
  margin-top: 60px;
  border-radius: 10px;
  border: 1px solid #bbbbbb;
  padding: 30px;
}
.recruit-list li:first-child {
  margin-top: 0;
}
.recruit-list li .btn {
  margin-top: 10px;
}
.recruit-detail {
  border: 1px solid #bbbbbb;
  padding: 30px;
  background: #fff;
}
.recruit-detail-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 4px solid #004098;
  margin-bottom: 20px;
}
.recruit-detail-txt {
  margin-top: 20px;
}
.recruit-table {
  box-sizing: border-box;
  font-size: 0.875rem;
  width: 100%;
  margin: 40px auto 0;
  line-height: 27px;
}
.recruit-table tr {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.recruit-table tr th {
  padding: 15px;
  border-top: 1px solid #e0e7f6;
  border-bottom: 1px solid #e0e7f6;
  background: #e0e7f6;
  box-sizing: border-box;
  width: 300px !important;
}
.recruit-table tr td {
  padding: 15px;
  width: 85% !important;
  border-top: 1px solid #e0e7f6;
  border-bottom: 1px solid #e0e7f6;
  margin-bottom: 10px;
  background-color: #fff;
  box-sizing: border-box;
}



.privacy-box {
  width: 100%;
  height: 300px;
  margin-top: 0 !important;
  background-color: #fff;
  border: 1px solid #bbb;
}
.privacy-box-txt {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  padding: 10px;
}
.privacy-box-txt > p {
  font-size: 16px;
  margin-bottom: 20px;
}
.privacy-box-txt dl {
  width: 100%;
}
.privacy-box-txt dl dt {
  font-size: 20px;
  font-weight: bold;
  color: #064a80;
  margin: 30px 0 5px;
}
.privacy-box-txt dl dd {
  font-size: 16px;
  line-height: 1.6;
}
.privacy-box-txt dl dd:nth-child(2) {
  margin-bottom: 10px;
}
.privacy-box-txt dl dd a {
  text-decoration: underline;
}
.privacy-box-txt ul {
  margin: 0 0 20px 2em;
}
.privacy-box-txt ul.parenthesized {
  margin: 0 0 20px 1em;
}
.privacy-box-txt ul.parenthesized li {
  list-style-type: none;
}


.privacy-box-txt ul li {
  font-size: 16px;
  margin: 5px 0;
}
.privacy table tr th, .privacy table tr td {
  border: 1px solid #b5b3aa;
  padding: 10px;
}
.privacy table tr th {
  width: 170px;
}


@media screen and (max-width: 768px) {
  .entry p {
    font-size: 14px;
  }
  .entry .main-heading {
    font-size: 16px;
    margin: 0 0 1em 0;
  }
  .tag {
    padding: 0.5rem 1rem;
  }
  .recruit-search {
    font-size: 1rem;
    display: block;
    margin-bottom: 40px;
  }
  .recruit-search select {
    width: 100%;
    margin: 5px 0;
  }
  .recruit-search input[type=text] {
    width: 300px;
  }
  .recruit-search p {
    margin-top: 10px;
  }
  .recruit-list .ttl {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .recruit-list .img {
    width: 100%;
  }
  .recruit-list li {
    margin-top: 60px;
    padding: 18px;
  }
  .recruit-list .btn {
    margin-top: 20px !important;
  }
  .recruit-table {
    font-size: 0.75rem;
    margin: 20px auto 0;
    line-height: 27px;
  }
  .recruit-table tr th, .recruit-table tr td {
    padding: 5px;
    border: 1px solid #ccd8f0;
  }
  .recruit-table tr th {
    width: 100px !important;
    line-height: 1.2;
  }
  .recruit-table tr td {
    width: 83% !important;
    line-height: 1.6;
  }
  
  
  .privacy-box {
    padding: 0;
  }
  .privacy-box-txt p {
    font-size: 16px;
  }
  .privacy-box-txt dl dt {
    font-size: 16px;
  }
  .privacy-box-txt dl dd {
    font-size: 16px;
  }
  .privacy-box-txt ul li {
    font-size: 16px;
  }
  .privacy .basic th {
    width: 100px !important;
  }
}



