@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");
@import url("https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Anton&display=swap");
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: #2e3f84;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #425290;
  text-decoration: underline;
}

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 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1em;
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  background: url(../img/base/h2bg.jpg);
}
.main-heading span {
  background-color: #2e3f84;
  padding: 1em 1.2em;
  display: inline-block;
  font-weight: bold;
}

.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1em;
  padding: .5em .7em;
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  background-color: #2e3f84;
}
@media screen and (min-width: 1100px), print {
  .news-heading {
    margin-bottom: 1em;
    padding: .7em 1em;
    font-size: 1.5em;
  }
}
.news-heading:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #8393d3)) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #8393d3 50.5%) no-repeat top left/100% 100%;
}

/* 共通見出し（h3相当）*/
.main-subheading {
  margin-bottom: 1rem;
  font-size: 1.3em;
  line-height: 1.2;
}
@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.5em;
  }
}

/* 共通リスト */
.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: .5em;
  left: .5em;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ccc;
}
.main ul.list-style-none > li {
  padding-left: 0;
}
.main ul.list-style-none > li:before {
  display: none;
}
.main ul.list-style-note > li {
  padding-left: 1em;
}
.main ul.list-style-note > li:before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}
.main ul.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}
.main ul.list-style-secondary > li {
  color: #1a2c78;
}
.main ul.list-style-secondary > li:before {
  background: #1a2c78;
}
.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}
.main ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}
.main ol.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}

/* 注釈（※）用インデント */
.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 1em .5em 2.2em;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  border-radius: .4em;
  background-color: #2e3f84;
  -webkit-transition: .3s;
  transition: .3s;
}
@media screen and (min-width: 1100px), print {
  .link-button {
    padding: .35em 1em .35em 2em;
    font-size: 1.1em;
  }
}
.link-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url(../img/base/more.svg) center no-repeat;
  background-size: cover;
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #425290;
}

/* コンテンツ画面中央寄せ */
.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: 1.5em;
  padding-left: 1.5em;
  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 {
  max-width: none;
}
.gutter.dmy > .inner {
  max-width: none;
  padding: 0;
  line-height: 1;
  text-align: center;
}
.gutter.dmy.wide {
  margin-right: -1em;
  margin-left: -1em;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.gutter.dmy.wide > .inner {
  margin-right: -23%;
  margin-left: -23%;
}
@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide > .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -100px;
  margin-bottom: 100px;
  background: rgba(255, 255, 255, 0) url(../img/base/blank.gif);
  z-index: -100;
}

/* サブセクション */
.subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #eee;
}

/* 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;
}

/* スクロール固定 */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* 字詰め */
.kerning {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

/* ノート罫線 */
.notebook-line {
  position: relative;
  padding-right: .5em;
  padding-left: .5em;
  line-height: 40px;
  border-top: 1px solid #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)), color-stop(97%, #eee), to(#eee));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 97%, #eee 97%, #eee 100%);
  background-size: 100% 40px;
}
.notebook-line-whiteline {
  border-top-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0)), color-stop(97%, #fff), to(#fff));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 97%, #fff 97%, #fff 100%);
}
.notebook-line-dotted {
  padding-top: 1px;
  line-height: 40px;
  border-top: none;
  background: url(../img/base/border.svg) 0 100%;
  background-size: auto;
}
.notebook-line-whitedotted {
  background-image: url(../img/base/border_w.svg);
}

/* 共通テーブル */
.table-style {
  display: block;
}
.table-style tbody {
  display: block;
  line-height: 1.5;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
}
@media screen and (max-width: 639.98px) {
  .table-style tbody {
    border: none;
  }
}
.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 639.98px) {
  .table-style tr {
    display: block;
    border: 1px solid #eee;
  }
  .table-style tr:not(:last-child) {
    margin-bottom: 5px;
  }
}
.table-style th {
  width: 15em;
  padding: .75em 1em;
  background-color: #eee;
  border-right: 1px solid #eee;
}
@media screen and (max-width: 639.98px) {
  .table-style th {
    display: block;
    width: auto;
    padding: .5em;
    font-size: 1.1em;
    border-right: none;
  }
}
.table-style td {
  padding: .75em 1em;
  border-right: 1px solid #eee;
}
@media screen and (max-width: 639.98px) {
  .table-style td {
    display: block;
    padding: .5em .5em .5em .7em;
    font-size: .95em;
    border-right: none;
  }
}

/* 共通画像スタイル */
.img-style {
  border-radius: .5em;
}

/* 共通お問い合わせ */
.global-contact {
  font-size: .9em;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .global-contact {
    font-size: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .global-contact-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.global-contact .tel-link,
.global-contact .fax-item,
.global-contact .mail-link {
  display: block;
  position: relative;
  height: 100%;
  padding: .4em 0 .4em 55px;
  color: #151515;
  line-height: 1.1;
  text-align: left;
}
.global-contact .tel-link:before,
.global-contact .fax-item:before,
.global-contact .mail-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #2e3f84;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.global-contact .tel-link:before {
  background-image: url(../img/base/tel.svg);
}
.global-contact .fax-item:before {
  background-image: url(../img/base/fax.svg);
}
.global-contact .mail-link:before {
  background-image: url(../img/base/mail.svg);
}
.global-contact a.tel-link,
.global-contact .mail-link {
  color: #151515;
}
.global-contact a.tel-link:hover,
.global-contact .mail-link:hover {
  color: #425290;
  text-decoration: none;
}
.global-contact .text-item {
  display: block;
  font-size: .85em;
  text-align: left;
}
.global-contact .tel-num {
  display: block;
  position: relative;
  width: 12em;
  height: 1.5em;
}
.global-contact .tel-num span {
  display: block;
  position: absolute;
  width: 100%;
  font-size: 1.8em;
  line-height: 1;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.global-contact .mail-text {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
}
.global-contact .add-text {
  display: block;
  padding-left: 55px;
  font-size: .85em;
  text-align: left;
}

/* --------------------------------

  Webフォント

-------------------------------- */
/* https://icomoon.io/ */
/*
 * "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
 */
/*
 * "Sawarabi Mincho" is lisenced under the SIL Open Font License, 1.1
 * SawarabiMincho-Regular.ttf: Copyright 2016 The Sawarabi Mincho Project Authors.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Kosugi Maru" is lisenced under the Apache License, Version 2.0
 * KosugiMaru-Regular.ttf: Copyright(C)2010 MOTOYA CO.,LTD.
 * https://www.google.com/fonts/attribution
 * http://www.apache.org/licenses/LICENSE-2.0.html
 */
/*
 * "Anton" is lisenced under the SIL Open Font License, 1.1
 * Anton-Regular.ttf: Copyright 2011 The Anton Project Authors
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
 */
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  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;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #151515;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open,
html.slideout-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  padding-bottom: 3em;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    padding-bottom: 0;
    overflow: visible;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 60px;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 0;
  }
}
.header .inner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 900;
  -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;
    max-width: none;
    height: auto;
    z-index: 1001;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.header-logo {
  display: block;
  position: relative;
  width: 200px;
  height: 100%;
  margin: auto;
}
@media screen and (min-width: 768px), print {
  .header-logo {
    width: 280px;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    margin: 0;
    border-top: 3px solid #1a2c78;
    background-color: #fff;
    z-index: 1001;
  }
}
@media screen and (min-width: 1280px), print {
  .header-logo {
    width: 310px;
  }
}
.header-logo .site-description {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8em;
  margin: -20px 0 0 5px;
  font-size: 100%;
  font-size: .7em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: #2e3f84;
}
@media screen and (min-width: 768px), print {
  .header-logo .site-description {
    width: 10em;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo .site-description {
    position: absolute;
    top: 50%;
    left: 0;
    width: 114px;
    margin: -25px 0 0 154px;
    font-size: .9em;
    line-height: 24px;
  }
}
@media screen and (min-width: 1280px), print {
  .header-logo .site-description {
    margin: -28px 0 0 180px;
  }
}
.header-logo .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 100%;
  text-align: center;
}
.header-logo .site-title {
  display: block;
  margin: 22px 0 0 10px;
  font-size: 100%;
  font-size: .8em;
  font-weight: 700;
  color: #2e3f84;
}
@media screen and (min-width: 768px), print {
  .header-logo .site-title {
    margin: 28px 0 0 10px;
    font-size: 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo .site-title {
    margin: 0 0 0 14px;
  }
}
.header-link {
  display: block;
  width: 91.875px;
}
@media screen and (min-width: 768px), print {
  .header-link {
    width: 113.0769230769px;
  }
}
@media screen and (min-width: 1100px), print {
  .header-link {
    width: 127.8260869565px;
  }
}
@media screen and (min-width: 1280px), print {
  .header-link {
    width: 147px;
  }
}
.header-contact {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0 5px 5px;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-contact {
    right: 10px;
    bottom: 10px;
    width: 35%;
    padding: 0;
    z-index: 1001;
  }
  .header-contact:hover {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  }
}
.header-contact-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: .3em 0;
  background-color: #fa4738;
}
@media screen and (max-width: 1099.98px) {
  .header-contact-head {
    padding: .5em 0;
    cursor: pointer;
  }
}
.header-contact-body {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 1099.98px) {
  .header-contact-body {
    display: none;
  }
  .header-contact-body.contact-open {
    display: block;
  }
}
.header-contact .icon-mail {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: .7em;
  background: url(../img/base/mail.svg) center no-repeat;
  background-size: cover;
}
.header-contact .icon-mail:before {
  content: "1";
  display: block;
  position: absolute;
  right: -7px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  font-size: .75em;
  font-weight: 700;
  line-height: 16px;
  color: #fa4738;
  text-align: center;
  border-radius: 100%;
  border: 2px solid #fa4738;
  background-color: #fff;
}
.header-contact .label {
  color: #fff;
}
@media screen and (min-width: 1100px), print {
  .header-contact .label {
    font-size: 1.1em;
  }
}
.header-contact 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;
  position: relative;
}
.header-contact ul:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 50%;
  margin: auto;
  border-left: 1px dotted #333;
}
@media screen and (min-width: 1100px), print {
  .header-contact ul:before {
    height: 70%;
  }
}
.header-contact li {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.header-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  line-height: 1;
  color: #151515;
  background-color: rgba(232, 232, 232, 0.8);
}
@media screen and (min-width: 1100px), print {
  .header-contact a {
    height: 80px;
  }
}
.header-contact a:hover {
  color: #fff;
  text-decoration: none;
  background-color: rgba(250, 71, 56, 0.85);
}
.header-contact a:hover span:before {
  color: #fff;
}
.header-contact span {
  display: block;
  width: 100%;
  line-height: 1.1;
  font-size: .75em;
  font-weight: 700;
  text-align: center;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 1100px), print {
  .header-contact span {
    font-size: .9em;
  }
}
.header-contact span:before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: .15em;
  font-size: 2.0em;
  font-weight: 700;
  color: #fa4738;
}
@media screen and (min-width: 1100px), print {
  .header-contact span:before {
    margin-bottom: 0;
  }
}

/* スクロール時固定用 */
@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;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
  .header.fixed .header-logo, #top .header.fixed .header-logo {
    height: 80px;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}
@media screen and (max-width: 1099.98px) {
  .nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1001;
    -webkit-transition: margin-left .3s;
    transition: margin-left .3s;
  }
  .nav-open .nav {
    margin-left: 300px;
  }
}
@media screen and (max-width: 767.98px) {
  .nav {
    left: -100%;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
  .nav-open .nav {
    left: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
}
@media screen and (min-width: 1200px), print {
  .nav {
    padding: 0 1em;
  }
}
@media screen and (min-width: 1280px), print {
  .nav {
    padding: 0 1.5em;
  }
}
.nav:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 63, 133, 0.9);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media screen and (min-width: 1100px), print {
  .nav:before {
    height: 100px;
    border-top: 3px solid #1a2c78;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 1100px), print {
  .nav .inner {
    position: static;
    max-width: none;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    display: inline-block;
    vertical-align: top;
    padding: 65px 15px 15px 15px;
    text-align: left;
    opacity: 0;
  }
  .nav-open .main-nav, .slideout-open .main-nav {
    opacity: 1;
  }
}
@media screen and (max-width: 767.98px) {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
}
@media screen and (max-height: 479.98px) {
  .main-nav {
    display: inline-block;
    vertical-align: top;
    height: auto;
    padding: 65px 15px 15px 15px;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100px;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item:not(:last-child) {
    margin-bottom: .5em;
  }
}
@media screen and (max-width: 767.98px) {
  .main-nav .nav-item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
    position: relative;
    padding: .5em;
    color: #fff;
  }
  .main-nav .nav-link:hover {
    text-decoration: none;
  }
  .main-nav .nav-link:hover:before {
    width: 100%;
    opacity: 1;
  }
  .main-nav .nav-link:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #a9deef;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .main-nav .nav-link span {
    display: block;
    position: relative;
    font-weight: 500;
    font-size: .85em;
    line-height: 1.1;
    z-index: 1;
  }
  .main-nav .nav-link span:before {
    content: attr(data-subtitle);
    display: inline-block;
    vertical-align: middle;
    margin-right: .5em;
    font-weight: 700;
    font-size: 1.4em;
  }
}
@media screen and (max-width: 767.98px) {
  .main-nav .nav-link span {
    font-size: .9em;
  }
  .main-nav .nav-link span:before {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    height: 40px;
    padding: 0 1em;
    color: #fff;
    text-align: center;
  }
  .main-nav .nav-link:hover {
    color: #fff;
    text-decoration: none;
  }
  .main-nav .nav-link:hover span:before {
    width: 100%;
    opacity: 1;
  }
  .main-nav .nav-link:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 1px;
    height: 50%;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main-nav #insta_icon .nav-link:before {
    content: none;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 1px;
    height: 50%;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main-nav .nav-link span {
    display: block;
    position: relative;
    font-size: .7em;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: .1em;
  }
  .main-nav .nav-link span:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background-color: #8393d3;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .main-nav .nav-link span:after {
    content: attr(data-subtitle);
    display: block;
    margin-top: .6em;
    font-size: 1.2em;
    font-weight: 500;
  }
	#insta_icon a  {
	  background-color: white;
	  border-radius: 50%;
	  width: 40px;
	  height: 40px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  overflow: hidden;
	}
	#insta_icon a img  {
	  width: 28px;
	  height: auto;
	  max-width: none;
	}
}
@media screen and (min-width: 1200px), print {
  .main-nav .nav-link:before {
    bottom: 0;
  }
  .main-nav .nav-link span:before {
    bottom: -10px;
  }
  .main-nav .nav-link span:after {
    margin-top: .4em;
    font-size: 1.4em;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-home {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-home .nav-link:before {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-news .nav-link:before {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-news .nav-link:before {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-data .nav-link {
    padding: 0;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  z-index: 910;
}
.contact-open .nav-button {
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 33px;
  height: 3px;
  margin: auto;
  background-color: #2e3f84;
}
.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: #2e3f84;
}
.nav-button-icon:before {
  margin-top: -8px;
}
.nav-button-icon:after {
  margin-top: 8px;
}
.nav-button:after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #2e3f84;
  font-size: .7em;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  outline: none;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 33px;
  height: 3px;
  margin: auto;
  background: none;
}
.nav-close-button .nav-button-icon:before, .nav-close-button .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-close-button .nav-button-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-close-button:after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: .7em;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション背景 */
.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: 950;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.nav-open .nav-screen-overlay, .contact-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;
  }
}

/* ナビゲーション背景 */
.nav-close-screen {
  display: inline;
}
.nav-close-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-close-screen-overlay, .slideout-open .nav-close-screen-overlay {
  opacity: .4;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1100px), print {
  .nav-close-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;
  }
  .nav.fixed:before {
    height: 80px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  .nav.fixed .nav-items {
    height: 80px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 5em 1em;
  background: #fff;
  overflow: hidden;
  z-index: 100;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em;
    overflow: visible;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 0 1em;
  background-color: #2e3f84;
  overflow: hidden;
  z-index: 100;
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 2em;
  }
}
.footer .inner {
  max-width: none;
}
.footer-main {
  max-width: 1100px;
  margin: auto;
  padding: 2.5em 0;
}
@media screen and (min-width: 768px), print {
  .footer-main {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-main {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 2.5em 0 3em;
  }
}
.footer-head {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px), print {
  .footer-head {
    margin-right: 2em;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-head {
    width: 380px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.footer-info dl {
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer-info dl {
    text-align: left;
  }
}
.footer-info dt {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.2;
}
@media screen and (min-width: 480px), print {
  .footer-info dt {
    font-size: 1.7em;
  }
}
.footer-info .add {
  margin-top: .5em;
}
.footer-info .add .br {
  display: block;
}
@media screen and (min-width: 480px), print {
  .footer-info .add .br {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .footer-info .add .br {
    display: block;
  }
}
@media screen and (min-width: 480px), print {
  .footer-info .tel {
    display: inline-block;
    vertical-align: top;
    margin-right: .3em;
  }
}
@media screen and (min-width: 768px), print {
  .footer-info .tel {
    display: block;
    margin-right: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-info .tel {
    display: inline-block;
    vertical-align: top;
    margin-right: .3em;
  }
}
@media screen and (min-width: 480px), print {
  .footer-info .fax {
    display: inline-block;
    vertical-align: top;
    margin-left: .3em;
  }
}
@media screen and (min-width: 768px), print {
  .footer-info .fax {
    display: block;
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-info .fax {
    display: inline-block;
    vertical-align: top;
    margin-right: .3em;
  }
}
.footer-info .bnr {
  position: relative;
  max-width: 280px;
  margin: 1em auto 0;
  padding: .75em 0;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .footer-info .bnr {
    max-width: none;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-info .bnr {
    padding: 10px 0 10px 120px;
  }
}
.footer-info .bnr a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  z-index: 1;
}
.footer-info .bnr img {
  display: block;
  width: 113.0769230769px;
  margin: 0 auto .5em;
}
@media screen and (min-width: 1100px), print {
  .footer-info .bnr img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
  }
}
.footer-info .label {
  font-size: 1.1em;
  font-weight: 700;
  color: #2e3f84;
}
.footer-info .url {
  font-size: .85em;
  font-weight: 500;
  color: #151515;
}
.footer-info .tel-link {
  color: #fff;
}
.footer-info a.tel-link {
  color: #fff;
}
.footer-info a.tel-link:hover {
  color: #fff;
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px), print {
  .footer-nav {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav {
    padding-top: .3em;
  }
}
.footer-nav .nav-container {
  margin: 0 -1em;
}
@media screen and (min-width: 640px), print {
  .footer-nav .nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
}
@media screen and (min-width: 768px), print {
  .footer-nav .nav-container {
    display: block;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 640px), print {
  .footer-nav .nav-items {
    margin: 0 1em;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-items {
    margin: 0 0 -1em 2em;
  }
}
.footer-nav .nav-item {
  padding: .25em 0;
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-item {
    margin-bottom: 1em;
    padding: 0;
  }
}
.footer-nav .nav-link {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
.footer-nav .nav-link:hover {
  color: #8393d3;
  text-decoration: none;
}
.footer-nav .nav-link:before {
  content: attr(data-subtitle);
  font-weight: 500;
}
.footer-nav .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  background-color: #8393d3;
}
.footer-nav .nav-link span {
  display: block;
  position: relative;
  margin-left: 1em;
  padding: 0 12px;
  font-size: .8em;
  color: #c3c3c3;
}
.footer-nav .nav-link span:before, .footer-nav .nav-link span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 1px;
  margin: auto;
  background-color: #c3c3c3;
}
.footer-nav .nav-link span:before {
  left: 0;
}
.footer-nav .nav-link span:after {
  right: 0;
}
.footer-nav .subnav-item {
  margin-bottom: .5em;
  margin-left: 1.5em;
  padding: 0;
}
.footer-nav .subnav-link {
  padding-left: 1em;
  font-size: .8em;
}
.footer-nav .subnav-link:after {
  width: 6px;
  height: 6px;
}
.footer-nav .nav-recruit {
  margin-bottom: .5em;
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-recruit {
    margin-bottom: .75em;
  }
}
.footer-map {
  display: block;
  margin: 0 -1em;
  height: 340px;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .footer-map {
    height: 410px;
    margin: 0 -2em;
  }
}
.footer-map .gmap-area {
  height: 100%;
}
.footer-map .gmap-area:before {
  display: none;
}
.footer .pagetop {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: -25px auto -25px;
  text-align: center;
  overflow: hidden;
  z-index: 100;
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #999;
  border-radius: 100%;
  background-color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}
.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #425290;
  -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);
}
.footer .pagetop a:hover:before {
  border-color: #fff;
}
.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  border-top: 2px solid #2e3f84;
  border-right: 2px solid #2e3f84;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.footer .copy {
  display: block;
  margin: 0 -1em;
  padding: 2em 1em;
  color: #2e3f84;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .footer .copy {
    margin: 0 -2em;
    padding: 2.5em 2em;
  }
}
.footer .copy small {
  display: block;
  font-size: .8em;
  font-weight: 700;
}
@media screen and (min-width: 1100px), print {
  .footer .copy small {
    letter-spacing: .05em;
  }
}
.footer .copy span {
  display: none;
}

/* --------------------------------

  スライダー

-------------------------------- */
.slider {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .slider {
    padding: 0 70px;
  }
}
@media screen and (min-width: 1600px), print {
  .slider {
    padding: 0 90px;
  }
}
.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slider-main {
  display: block;
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .slider-main {
    margin: 0 -70px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-main {
    margin: 0 -90px;
    margin-top: 100px;
  }
}
.slider-main:before {
  content: "";
  display: block;
  padding-top: 44.375%;
}
@media screen and (min-width: 1100px), print {
  .slider-main:before {
    padding-top: 710px;
  }
}
.slider-img {
  display: block;
  position: relative;
}
.slider-img:before {
  content: "";
  display: block;
  padding-top: 44.375%;
}
@media screen and (min-width: 1100px), print {
  .slider-img:before {
    padding-top: 710px;
  }
}
.slider-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1100px), print {
  .slider-img img {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1600px), print {
  .slider-img img {
    width: 100%;
    height: auto;
  }
}
.slider-content {
  padding: 0 1em;
}
@media screen and (min-width: 640px), print {
  .slider-content {
    padding: 0 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}
.slider-content-outer {
  display: block;
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
@media screen and (min-width: 1100px), print {
  .slider-content-outer {
    margin-top: 100px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-content-inner {
    position: relative;
    width: 680px;
    height: 240px;
    padding: 2.5em 1em 1.5em 240px;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
}
.slider-content-head {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 222.2222222222px;
  height: 111.1111111111px;
}
@media screen and (min-width: 1100px), print {
  .slider-content-head {
    width: 300px;
    height: 240px;
  }
}
.slider-content-head:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(26, 44, 120, 0.9))) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(26, 44, 120, 0.9) 50.5%) no-repeat top left/100% 100%;
}
.slider-content-body {
  position: relative;
  z-index: 1;
}
.slider-content-more {
  clear: both;
  position: relative;
  padding-top: 1.5em;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .slider-content-more {
    padding-top: .5em;
  }
}
.slider-heading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 100%;
  text-align: center;
  color: #fff;
  -webkit-transform: rotate(-26.5deg) translate(-48px, 4px);
  transform: rotate(-26.5deg) translate(-48px, 4px);
}
@media screen and (min-width: 1100px), print {
  .slider-heading {
    -webkit-transform: rotate(-38.4deg) translate(-68px, 20px);
    transform: rotate(-38.4deg) translate(-68px, 20px);
  }
}
.slider-heading span {
  display: block;
  font-size: .85em;
  line-height: 1.3;
}
@media screen and (min-width: 1100px), print {
  .slider-heading span {
    font-size: 1.2em;
  }
}
.slider-heading span:after {
  content: attr(data-subtitle);
  display: block;
  font-size: 1.6em;
}
@media screen and (min-width: 1100px), print {
  .slider-heading span:after {
    font-size: 1.9em;
  }
}
.slider-subheading {
  margin-bottom: .5em;
  padding: 3em 0 0 5em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.1;
  color: #2e3f84;
  text-align: right;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 640px), print {
  .slider-subheading {
    padding: 2em 0 0;
    font-size: 1.8em;
  }
}
@media screen and (min-width: 768px), print {
  .slider-subheading {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .slider-subheading {
    margin-bottom: .35em;
    padding: 0;
  }
}
.slider-description {
  line-height: 1.6;
  word-break: break-all;
  word-wrap: break-word;
  font-size: .9em;
}
@media screen and (min-width: 1100px), print {
  .slider-description {
    line-height: 1.4;
  }
}
.slider-description p {
  font-weight: 700;
}
.slider-work .slider-content-head:before {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(46, 63, 133, 0.9))) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(46, 63, 133, 0.9) 50.5%) no-repeat top left/100% 100%;
}
.slider-work .slider-subheading {
  color: #2e3f84;
}
.slider-work .link-button {
  background-color: #2e3f84;
}
.slider-work .link-button:hover {
  background-color: rgba(46, 63, 133, 0.9);
}
.slider-interview .slider-content-head:before {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(67, 103, 150, 0.85))) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(67, 103, 150, 0.85) 50.5%) no-repeat top left/100% 100%;
}
.slider-interview .slider-subheading {
  color: #436797;
}
.slider-interview .link-button {
  background-color: #436797;
}
.slider-interview .link-button:hover {
  background-color: rgba(67, 103, 150, 0.85);
}
.slider-data .slider-content-head:before {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(124, 205, 78, 0.9))) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(124, 205, 78, 0.9) 50.5%) no-repeat top left/100% 100%;
}
.slider-data .slider-subheading {
  color: #7ccd4e;
}
.slider-data .link-button {
  background-color: #7ccd4e;
}
.slider-data .link-button:hover {
  background-color: rgba(124, 205, 78, 0.9);
}
.slider-internship .slider-content-head:before {
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, rgba(250, 71, 56, 0.85))) no-repeat top left/100% 100%;
  background: linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, rgba(250, 71, 56, 0.85) 50.5%) no-repeat top left/100% 100%;
}
.slider-internship .slider-subheading {
  color: #fa4738;
}
.slider-internship .link-button {
  background-color: #fa4738;
}
.slider-internship .link-button:hover {
  background-color: rgba(250, 71, 56, 0.85);
}
.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%;
  height: 1px;
  margin: auto;
  z-index: 101;
}
@media screen and (min-width: 1100px), print {
  .slider-arrow {
    top: 100px;
    right: auto;
    /* max-width: 820px; 20200218*/
  }
}
@media screen and (min-width: 1600px), print {
  .slider-arrow {
    right: 0;
    max-width: none;
  }
}
.slider-prev, .slider-next {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24.5px;
  height: 48.5px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  opacity: .84;
}
@media screen and (min-width: 1100px), print {
  .slider-prev, .slider-next {
    width: 49px;
    height: 97px;
  }
}
.slider-prev {
  left: 10px;
  background-image: url(../img/base/left.svg);
}
@media screen and (min-width: 1600px), print {
  .slider-prev {
    left: 20px;
  }
}
.slider-next {
  right: 10px;
  background-image: url(../img/base/right.svg);
}
@media screen and (min-width: 1600px), print {
  .slider-next {
    right: 20px;
  }
}
.slider-dots {
  display: block;
  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: 12px;
  height: 12px;
  margin: auto;
  border-radius: 100%;
  background-color: #fff;
}
.slider-dots li.slick-active:before {
  background-color: #2e3f84;
}
.slider-dots button {
  display: none;
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（TEL・FAX）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #2e3f84;
  text-align: center;
  border: none;
  background: #fff;
  cursor: pointer;
  outline: none;
  z-index: 980;
}
@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}
.nav-open .tel-button, .slideout-open .tel-button {
  z-index: 910;
}
.tel-button:hover, .contact-open .tel-button {
  color: #fff;
  background-color: #2e3f84;
}
.tel-button:hover .icon, .contact-open .tel-button .icon {
  color: #fff;
}
.tel-button:hover .icon:before, .contact-open .tel-button .icon:before {
  background-image: url(../img/base/tel.svg);
}
.tel-button a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #2e3f84;
}
.tel-button a:hover {
  color: #fff;
  text-decoration: none;
}
.tel-button .icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: auto;
  background: url(../img/base/tel2.svg) center no-repeat;
  background-size: cover;
}
.tel-button .icon:after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  font-size: .7em;
  font-weight: 700;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 999;
}
@media screen and (min-width: 1100px), print {
  .contact-button {
    top: 197px;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    border: 3px solid #fff;
    border-right: none;
    z-index: 1001;
    -webkit-transition: top .2s;
    transition: top .2s;
  }
}
@media screen and (min-width: 1280px), print {
  .contact-button {
    top: 20px;
  }
}
.contact-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  line-height: 60px;
  border-top: 3px solid #fff;
  background-color: #425290;
}
@media screen and (min-width: 1100px), print {
  .contact-button a {
    display: block;
    padding: 1em 0;
    line-height: 1.5;
    border-top: 50px solid #2e3f84;
  }
}
.contact-button a:hover {
  text-decoration: none;
  background-color: #2e3f84;
}
@media screen and (min-width: 1100px), print {
  .contact-button a:hover {
    border-top-color: #425290;
  }
}
.contact-button a:before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-right: .5em;
  background: url(../img/base/mail.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .contact-button a:before {
    position: absolute;
    top: -42px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.contact-button span {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 1100px), print {
  .contact-button span {
    vertical-align: inherit;
    width: 2.5em;
    line-height: 2.5em;
    font-size: 1.3em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  padding: 0 1em;
  background: #fff url(../img/base/title.jpg) bottom no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    padding: 100px 2em 0;
  }
}
.page-title-inner {
  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;
  height: 180px;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .page-title-inner {
    height: 280px;
    text-align: left;
  }
}
.page-title-name {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: auto;
  font-size: 100%;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
.page-title-name .title {
  display: block;
  font-weight: 700;
}
@media screen and (min-width: 1100px), print {
  .page-title-name .title {
    font-size: 1.1em;
  }
}
.page-title-name .title:after {
  content: attr(data-subtitle);
  display: block;
  font-size: 2.4em;
  color: #2e3f84;
}
@media screen and (min-width: 1100px), print {
  .page-title-name .title:after {
    font-size: 3em;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
/* フォーム用テーブル */
.form-table {
  display: block;
  line-height: 1.5;
}
.form-table tbody {
  display: block;
  margin: 0;
  padding: 0;
}
.form-table tr {
  display: table;
  border-collapse: collapse;
  width: 100%;
  padding: .2em 0;
  border-bottom: 15px solid #fff;
}
@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
    border: none;
  }
}
@media screen and (max-width: 767.98px) {
  .form-table tr:not(:last-child) {
    margin-bottom: 1em;
  }
}
.form-table th {
  position: relative;
  vertical-align: top;
  width: 20em;
  padding: 1em;
  background: #f0f0f0;
}
@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: 100%;
    margin-bottom: .5em;
    background-color: #eee;
  }
}
.form-table td {
  vertical-align: top;
  padding: 1em 0 1em 1em;
}
@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0;
  }
}

/* ご住所 */
.form-area-add .form-textarea {
  height: 2.6em;
  min-height: 2.6em;
  padding: .5em .5em 0;
}

/* ご住所（検索ボタン付1）*/
.form-area-add1 .form-post {
  margin-bottom: .5em;
}
.form-area-add1 .form-post input {
  width: 130px;
  margin-bottom: 0;
}
@media screen and (max-width: 639.98px) {
  .form-area-add1 .form-post input {
    margin-top: 0;
  }
}
.form-area-add1 .form-add input {
  margin-top: 0;
}
.form-area-add1 .form-item {
  display: table;
  width: 100%;
}
@media screen and (max-width: 639.98px) {
  .form-area-add1 .form-item {
    display: block;
  }
}
.form-area-add1 .form-item dt,
.form-area-add1 .form-item dd {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 639.98px) {
  .form-area-add1 .form-item dt,
  .form-area-add1 .form-item dd {
    display: block;
  }
}
.form-area-add1 .form-item dt {
  width: 80px;
}
@media screen and (max-width: 639.98px) {
  .form-area-add1 .form-item dt {
    margin-bottom: .2em;
  }
}

/* ご住所（検索ボタン付2）*/
.form-area-add2 .form-post {
  margin-bottom: .5em;
}
.form-area-add2 .form-post input {
  width: 130px;
  margin-bottom: 0;
}
@media screen and (max-width: 639.98px) {
  .form-area-add2 .form-post input {
    margin-top: 0;
  }
}
.form-area-add2 .form-post .post {
  margin: 0 .5em;
}
.form-area-add2 .form-add input {
  margin-top: 0;
}

/* お問い合わせ内容 */
.form-area-type .form-item,
.form-area-type1 .form-item,
.form-area-type2 .form-item {
  display: inline-block;
  vertical-align: middle;
  padding: .3em;
}
@media screen and (max-width: 767.98px) {
  .form-area-type .form-item,
  .form-area-type1 .form-item,
  .form-area-type2 .form-item {
    display: block;
  }
}

/* お問い合わせの内容 */
.form-area-message .form-textarea {
  resize: vertical;
  vertical-align: bottom;
  height: 10em;
  min-height: 5em;
  padding: .5em .5em 0;
}

/* 画像添付 */
.form-area-picture .form-caution {
  margin-bottom: .5em;
}
.form-area-picture .form-caution strong {
  display: block;
  position: relative;
  padding-left: 30px;
}
.form-area-picture .form-caution strong:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e903";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 30.8px;
  font-size: 2.2rem;
  color: #ffbf00;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.form-area-picture .form-note-list {
  font-size: .85em;
}
.form-area-picture .form-note-list span {
  color: #9a9836;
  font-weight: bold;
}

/* 文中注釈用 */
.form-note {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 .5em;
  font-size: .9em;
}

/* フォーム部品：入力欄 */
.form-short,
.form-common,
.form-middle,
.form-long {
  height: 2.6em;
  margin: -.5em 0;
  padding: 0 .5em;
  color: #151515;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  border: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .form-short,
  .form-common,
  .form-middle,
  .form-long {
    margin: 0;
  }
}
.form-short:focus,
.form-common:focus,
.form-middle:focus,
.form-long:focus {
  border-color: #eee;
  background-color: #fff;
}

.form-short {
  width: 140px;
}

.form-middle {
  width: 65%;
}

.form-long {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .form-short,
  .form-middle,
  .form-long {
    width: 100%;
  }
}
/* フォーム部品：入力必須マーク */
.form-title {
  display: block;
  padding-left: 65px;
  font-weight: bold;
}

.form-icon {
  display: block;
  position: absolute;
}
.form-icon:before {
  content: "";
  display: block;
  width: 50px;
  margin: auto;
  font-size: .9em;
  font-family: "Noto Sans JP", 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: "任意";
  color: #fff;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .form-icon-free:before {
    color: #fff;
    background-color: #ccc;
  }
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  max-width: 24em;
  color: #151515;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .select-wrap {
    max-width: none;
  }
}
.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 1.5em;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrap select optgroup {
  display: none;
}
.select-wrap select::-ms-expand {
  display: none;
}
.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 1em;
  height: 1em;
  pointer-events: none;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.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: #425290;
}
.form-box:checked + label:before {
  border-color: #425290;
}

/* フォーム部品：ラジオボタン */
.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: #425290;
  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 #425290;
  border-bottom: 3px solid #425290;
  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;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block;
  padding-top: 1em;
  font-size: .85em;
  color: #c00;
}
@media screen and (max-width: 767.98px) {
  span.validate-error {
    padding-top: .5em;
  }
}

/* フォーム部品：エラーメッセージ（郵便番号・住所用）*/
.add-error-message .validate-error {
  display: inline-block;
  vertical-align: top;
  margin-right: 1em;
}

/* フォーム部品：エラーメッセージ（チェックボックス用）*/
.checkbox-error-message .validate-error {
  padding-top: .5em;
}
.checkbox-error-message .validate-error:not(:first-child) {
  display: none !important;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 0;
  text-align: center;
}

.form-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  margin: .5em;
  padding: .7em 3em .7em 1.5em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  line-height: 1.1;
  border: none;
  border-radius: .35em;
  background: none;
  overflow: hidden;
  cursor: pointer;
}
.form-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.form-button-send {
  border-color: #2e3f84;
  background: #2e3f84;
}
.form-button-send:hover {
  border-color: #425290;
  background: #425290;
}
.form-button-back {
  border-color: #999;
  background: #999;
}
.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}
.form-button-add {
  vertical-align: middle;
  margin: 0 0 0 .5em;
  padding: .7em 1em;
  font-size: .9em;
  border-color: #2e3f84;
  background: #2e3f84;
}
.form-button-add:hover {
  border-color: #425290;
  background: #425290;
}
.form-button-add:after {
  display: none;
}
.form-button-upload {
  margin: 0;
  padding: .8em 1em;
  font-size: 1.1em;
  color: #fff;
  background: #e21664;
}
.form-button-upload:hover {
  color: #fff;
  text-decoration: none;
  background: #e94709;
}
.form-button-upload:after {
  display: none;
}

/* --------------------------------

  パンくずリスト

-------------------------------- */
.topic-path {
  position: relative;
  margin: -5em -1em 3em;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width: 640px), print {
  .topic-path {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .topic-path {
    margin: -5em 0 4em;
  }
}
.topic-path ul {
  max-width: 1100px;
  margin: auto;
  padding: 1em 0 1em 1em;
  border-bottom: 1px dotted #ccc;
}
.topic-path ul:after {
  content: "";
  display: table;
  clear: both;
}
.topic-path li {
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-indent: 0;
  font-size: .85em;
  font-family: "Noto Sans JP", sans-serif;
}
.topic-path li:before, .topic-path li:after {
  display: none;
}
.topic-path li.current {
  color: #151515;
}
.topic-path li.home a {
  padding-left: 25px;
}
.topic-path li.home a:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../img/base/home.svg) center no-repeat;
  background-size: cover;
}
.topic-path li a {
  display: block;
  position: relative;
  margin-right: .7em;
  padding-right: 1em;
}
.topic-path li a:hover {
  text-decoration: underline;
}
.topic-path li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: .5em;
  height: .5em;
  border-top: 1px solid #151515;
  border-right: 1px solid #151515;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.topic-path li span {
  position: relative;
  margin-left: 5px;
  padding: 0 8px;
  font-size: .8em;
  color: #545454;
}
.topic-path li span:before, .topic-path li span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  height: 1px;
  margin: auto;
  background-color: #545454;
}
.topic-path li span:before {
  left: 0;
}
.topic-path li span:after {
  right: 0;
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 5em;
}
.section-secondary .inner {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
@media screen and (min-width: 1100px), print {
  .section-secondary .inner {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1em;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .section-header {
    max-width: 1460px;
    margin: 0 auto 2em;
  }
}
.section-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #cdcdcd;
}
.section-header:after {
  content: attr(data-subtitle);
  display: block;
  position: relative;
  padding: 0 .5em;
  font-size: 2.0em;
  font-weight: 700;
  color: #2e3f84;
  background-color: #fff;
}
@media screen and (min-width: 640px), print {
  .section-header:after {
    font-size: 2.5em;
  }
}
.section-heading {
  position: absolute;
  top: -1.1em;
  left: 50%;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 640px), print {
  .section-heading {
    font-size: 1.1em;
  }
}

/* PRODUCT */
.sanjokikai-product-section {
  margin-bottom: 5em;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-section {
    padding: 0 2em;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-section {
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-section.anchor-point:before {
    margin-top: -50px;
    margin-bottom: 50px;
  }
}
.sanjokikai-product-section .inner {
  max-width: none;
}
.sanjokikai-product-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-container {
    display: block;
    margin: 0 -2em;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-container {
    width: 100%;
    max-width: 1600px;
    margin: auto;
  }
}
.sanjokikai-product-main {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-main {
    height: 518px;
    padding-right: 50px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product-main {
    padding-right: 70px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-main {
    height: 610px;
    padding: 0 90px;
  }
}
.sanjokikai-product-side {
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-side {
    margin-bottom: 0;
    padding: 0 50px;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product-side {
    padding: 0 70px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-side {
    max-width: 1460px;
    margin: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-inner {
    position: relative;
    width: 100%;
    min-height: 458px;
    padding-right: 530px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-inner {
    min-height: 550px;
    padding-right: 630px;
  }
}
.sanjokikai-product-head {
  position: relative;
  margin-bottom: 1em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-head {
    position: static;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-head {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-body {
    padding: 0 1.5em;
  }
}
.sanjokikai-product-heading {
  display: block;
  padding: .75em 0;
  line-height: 1.2;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #333;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px), print {
  .sanjokikai-product-heading {
    padding: .5em 1em;
    font-size: 1.7em;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-heading {
    text-align: left;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product-heading {
    font-size: 2.0em;
  }
}
.sanjokikai-product-tab {
  display: block;
  position: relative;
  margin-top: 5px;
  padding-top: 66.66%;
}
@media screen and (min-width: 640px), print {
  .sanjokikai-product-tab {
    padding-top: 54%;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-tab {
    position: static;
    margin: 1em 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product-tab {
    margin: 1.5em 0;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-tab {
    margin: 1.5em;
  }
}
.sanjokikai-product-description {
  line-height: 1.3;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 768px), print {
  .sanjokikai-product-description {
    font-size: 1.05em;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product-description {
    /* font-size: 1em; 20200218*/
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-description p {
    font-weight: 700;
    text-shadow: 0px 0px 7px #fff;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product-more .more {
    margin-top: 1em;
    text-align: left;
  }
}
.sanjokikai-product .slide {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .slide {
    padding: 30px 30px 30px 50px;
  }
  .sanjokikai-product .slide.slide1 {
    background-image: url(../img/top/img-product1.jpg);
  }
  .sanjokikai-product .slide.slide2 {
    background-image: url(../img/top/img-product2.jpg);
  }
  .sanjokikai-product .slide.slide3 {
    background-image: url(../img/top/img-product3.jpg);
  }
  .sanjokikai-product .slide.slide4 {
    background-image: url(../img/top/img-product4.jpg);
  }
  .sanjokikai-product .slide.slide5 {
    background-image: url(../img/top/img-product5.jpg);
  }
  .sanjokikai-product .slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product .slide {
    padding-left: 70px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .slide {
    padding-left: 2em;
  }
}
.sanjokikai-product .slider-arrow {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .slider-arrow {
    display: block;
    top: 0;
    max-width: none;
  }
}
.sanjokikai-product .slider-prev,
.sanjokikai-product .slider-next {
  width: 28.8235294118px;
  height: 57.0588235294px;
  opacity: 1;
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-product .slider-prev,
  .sanjokikai-product .slider-next {
    width: 49px;
    height: 97px;
  }
}
.sanjokikai-product .slider-prev {
  left: 10px;
  background-image: url(../img/base/left2.svg);
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .slider-prev {
    left: 20px;
  }
}
.sanjokikai-product .slider-next {
  right: 10px;
  background-image: url(../img/base/right2.svg);
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .slider-next {
    right: 20px;
  }
}
.sanjokikai-product .slider-dots {
  display: block;
  position: static;
  background: none;
}
.sanjokikai-product .slider-dots 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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: auto;
  margin: 0 -5px 0 0;
  overflow: visible;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .slider-dots ul {
    margin: 7px -7px 0 0;
  }
}
.sanjokikai-product .slider-dots li {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
  padding: 0 5px 0 0;
  width: auto;
  height: auto;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .slider-dots li {
    padding: 0 7px 0 0;
  }
}
.sanjokikai-product .slider-dots li:before {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: auto;
  padding-top: 50%;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .sanjokikai-product .slider-dots li:before {
    padding-top: 30%;
  }
}
.sanjokikai-product .slider-dots li:nth-child(1):before {
  background-image: url(../img/top/thumb1.jpg);
}
.sanjokikai-product .slider-dots li:nth-child(2):before {
  background-image: url(../img/top/thumb2.jpg);
}
.sanjokikai-product .slider-dots li:nth-child(3):before {
  background-image: url(../img/top/thumb3.jpg);
}
.sanjokikai-product .slider-dots li:nth-child(4):before {
  background-image: url(../img/top/thumb4.jpg);
}
.sanjokikai-product .slider-dots li:nth-child(5):before {
  background-image: url(../img/top/thumb5.jpg);
}
.sanjokikai-product .slider-dots button {
  display: none;
}
.sanjokikai-product .tab-container {
  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: 5px -5px 0 0;
}
@media screen and (min-width: 480px), print {
  .sanjokikai-product .tab-container {
    max-width: 480px;
    margin: 1em auto 0;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .tab-container {
    max-width: none;
    margin: 0 -7px 0 0;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .tab-container {
    margin: 0 -1em 0 0;
  }
}
.sanjokikai-product .tab-label {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
  padding-right: 5px;
}
@media screen and (min-width: 640px), print {
  .sanjokikai-product .tab-label {
    padding: 0 3px;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .tab-label {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding: 0 7px 0 0;
    cursor: pointer;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .tab-label {
    padding: 0 1em 0 0;
  }
}
.sanjokikai-product .tab-label img {
  width: 100%;
}
.sanjokikai-product .tab-input {
  display: none;
}
.sanjokikai-product .tab-content {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .tab-content {
    width: 500px;
  }
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-product .tab-content {
    width: 600px;
  }
}
.sanjokikai-product .tab-content:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
@media screen and (min-width: 640px), print {
  .sanjokikai-product .tab-content:before {
    padding-top: 54%;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-product .tab-content:before {
    display: none;
  }
}
.sanjokikai-product .tab-content img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1099.98px) {
  .sanjokikai-product .tab-content img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.sanjokikai-product .tab-input:checked + .tab-label + .tab-content {
  display: block;
  opacity: 1;
  pointer-events: visible;
}

/* NEWS */
.sanjokikai-news-section {
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-news-section {
    padding: 0 2em;
  }
}
.sanjokikai-news-section .inner {
  max-width: 1460px;
}
@media screen and (min-width: 1600px), print {
  .sanjokikai-news .news-list-img {
    padding: 0 2em;
  }
}

/* ABOUT */
.sanjokikai-about-section .section-header:after {
  color: #9a9836;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-about-section .sanjokikai-menu-items {
    display: block;
    position: relative;
    height: 100%;
    padding-right: 50%;
  }
}

/* INTERVIEW */
.sanjokikai-interview-section .section-header:after {
  color: #436797;
}

/* RECRUIT */
.sanjokikai-recruit-section .section-header:after {
  color: #fa4738;
}
@media screen and (min-width: 480px), print {
  .sanjokikai-recruit-section .sanjokikai-menu-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 768px), print {
  .sanjokikai-recruit-section .sanjokikai-menu-item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 640px), print {
  .sanjokikai-recruit-section .sanjokikai-menu-main {
    width: 60%;
  }
}
@media screen and (min-width: 768px), print {
  .sanjokikai-recruit-section .sanjokikai-menu-main {
    width: 100%;
  }
}
.sanjokikai-recruit-section .sanjokikai-menu-main:hover .link-button {
  background-color: #fa4738;
}
.sanjokikai-recruit-section .sanjokikai-menu-more .link-button {
  background-color: rgba(250, 71, 56, 0.85);
}

/* メニュー共通 */
.sanjokikai-menu-section {
  margin-bottom: 5em;
  padding: 0 1em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-section {
    padding: 0 2em;
  }
}
.sanjokikai-menu-section .inner {
  max-width: 1600px;
}
.sanjokikai-menu-container {
  margin: 0 -1em;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-container {
    margin: 0 -2em;
  }
}
.sanjokikai-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;
}
.sanjokikai-menu-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.sanjokikai-menu-inner {
  display: block;
  position: relative;
  height: 240px;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-inner {
    height: 330px;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-menu-inner {
    height: 370px;
  }
}
.sanjokikai-menu-inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.sanjokikai-menu-main {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media screen and (min-width: 640px), print {
  .sanjokikai-menu-main {
    width: 40%;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-main {
    width: 320px;
  }
}
.sanjokikai-menu-title {
  display: block;
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 5;
}
.sanjokikai-menu-title span {
  display: block;
  line-height: 1.3;
  font-weight: 500;
  font-size: .75em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-title span {
    font-size: .85em;
  }
}
.sanjokikai-menu-title:after {
  content: attr(data-subtitle);
  display: block;
  margin-top: .2em;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.4em;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-title:after {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 1280px), print {
  .sanjokikai-menu-title:after {
    font-size: 2.2em;
  }
}
.sanjokikai-menu-more .menu-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  z-index: 10;
}
.sanjokikai-menu-more .menu-more {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: 1em;
  text-align: center;
  z-index: 5;
}
.sanjokikai-menu-work .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-about1.jpg);
}
.sanjokikai-menu-work .sanjokikai-menu-more .link-button {
  background-color: rgba(46, 63, 133, 0.9);
}
.sanjokikai-menu-work .sanjokikai-menu-main:hover .link-button {
  background-color: #8393d3;
}
.sanjokikai-menu-profile .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-about2.jpg);
}
.sanjokikai-menu-profile .sanjokikai-menu-more .link-button {
  background-color: rgba(154, 152, 54, 0.85);
}
.sanjokikai-menu-profile .sanjokikai-menu-main:hover .link-button {
  background-color: #9a9836;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-data {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-data .sanjokikai-menu-inner {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }
}
.sanjokikai-menu-data .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-about3.jpg);
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-data .sanjokikai-menu-inner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-menu-data .sanjokikai-menu-main {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.75);
  }
}
.sanjokikai-menu-data .sanjokikai-menu-main:hover .link-button {
  background-color: #7ccd4e;
}
.sanjokikai-menu-data .sanjokikai-menu-more .link-button {
  background-color: rgba(124, 205, 78, 0.9);
}
.sanjokikai-menu-interview .sanjokikai-menu-inner:before {
  left: -5%;
  width: 135%;
  background-image: url(../img/top/img-interview.jpg);
}
@media screen and (min-width: 768px), print {
  .sanjokikai-menu-interview .sanjokikai-menu-inner:before {
    left: 0;
    width: 100%;
  }
}
.sanjokikai-menu-interview .sanjokikai-menu-more .link-button {
  background-color: rgba(67, 103, 150, 0.85);
}
.sanjokikai-menu-interview .sanjokikai-menu-main:hover .link-button {
  background-color: #436797;
}
.sanjokikai-menu-recruit .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-recruit1.jpg);
}
.sanjokikai-menu-internship .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-recruit2.jpg);
}
.sanjokikai-menu-entry .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-recruit3.jpg);
}
.sanjokikai-menu-career .sanjokikai-menu-inner:before {
  background-image: url(../img/top/img-recruit4.jpg);
}
.sanjokikai-menu-inner:hover:before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/* 世界に評価される技術力 */
.sanjokikai-feature-section {
  position: relative;
  margin-bottom: 5em;
  padding: 0 1em 150px;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-section {
    padding: 0 2em 5em;
  }
}
.sanjokikai-feature-section:before, .sanjokikai-feature-section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-section:before, .sanjokikai-feature-section:after {
    height: 100%;
  }
}
.sanjokikai-feature-section:before {
  background: url(../img/top/bg.jpg) bottom no-repeat;
  background-size: cover;
}
.sanjokikai-feature-section:after {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
}
.sanjokikai-feature-section .inner {
  z-index: 1;
}
.sanjokikai-feature-head {
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sanjokikai-feature-head {
    text-align: left;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-head {
    margin-bottom: 0;
    padding: 2em 0 1.5em;
  }
}
.sanjokikai-feature-body {
  max-width: 640px;
}
@media screen and (min-width: 768px), print {
  .sanjokikai-feature-foot .more {
    text-align: left;
  }
}
.sanjokikai-feature-heading {
  color: #2e3f84;
  line-height: 1.1;
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (min-width: 640px), print {
  .sanjokikai-feature-heading {
    font-size: 1.9em;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-heading {
    font-size: 2.5em;
    text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  }
}
.sanjokikai-feature-description {
  line-height: 1.8;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.5), 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-description {
    font-size: 1.05em;
  }
}
@media screen and (min-width: 1100px), print {
  .sanjokikai-feature-description p {
    font-weight: 700;
  }
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}
.news-area .inner {
  line-height: 1.5;
}
.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 2em;
}
.news-detail .inner {
  line-height: 1.5;
}
.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}
.news-detail .news-date {
  font-size: .9em;
}
.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 #ccc;
}

/* お知らせ一覧 */
.news-list .news-link {
  display: block;
  position: relative;
  padding: .8em 1em;
  line-height: 1.5;
  border-bottom: 1px dotted #eee;
}
@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.news-list .news-link:hover {
  text-decoration: none;
}
.news-list .news-link:hover .news-date {
  color: #425290;
}
.news-list .news-link:hover .news-title {
  text-decoration: underline;
}
.news-list .news-date {
  font-size: .9em;
  color: #151515;
}
@media screen and (min-width: 640px), print {
  .news-list .news-date {
    width: 7em;
    font-size: 1em;
  }
}
.news-list .news-title {
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 1100px), print {
  .news-list .news-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.news-list .news-img {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 60px;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}
.news-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news-list-thumb .news-link {
  display: block;
  padding-left: 95px;
}
.news-list-thumb .news-date {
  width: auto;
  font-size: .9em;
}
.news-list-thumb .news-title {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list-thumb .news-img {
  display: block;
}
.news-list-img {
  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 -.5em -1em 0;
}
@media screen and (min-width: 640px), print {
  .news-list-img {
    margin: 0 -1em -1.5em 0;
  }
}
@media screen and (min-width: 1600px), print {
  .news-list-img {
    margin: 0 -2em 0 0;
  }
}
.news-list-img .news-topics {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0 .5em 1em 0;
}
@media screen and (min-width: 640px), print {
  .news-list-img .news-topics {
    padding: 0 1em 1.5em 0;
  }
}
@media screen and (min-width: 768px), print {
  .news-list-img .news-topics {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1600px), print {
  .news-list-img .news-topics {
    padding: 0 2em 0 0;
  }
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 66.66% 0 0;
  text-align: left;
  border: none;
}
.news-list-img .news-date {
  display: block;
  width: auto;
  margin: .5em 0 0;
}
.news-list-img .news-title {
  line-height: 1.4;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.news-list-img .news-img {
  display: block;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
}
.news-list-img .news-img:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}
.news-list-img .news-img img {
  max-width: 150%;
  max-height: 150%;
}
.news-list-slider {
  display: block;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.news-list-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.news-list-slider .news-topics {
  width: 240px;
  max-width: none;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  padding: 0 10px;
}
@media screen and (min-width: 1100px), print {
  .news-list-slider .news-topics {
    width: 260px;
    padding: 0 15px;
  }
}
.news-list-slider .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  clear: both;
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 640px), print {
  .news-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 1460px;
    margin: -1.5em auto 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1100px), print {
  .news-arrow {
    margin-top: -2em;
  }
}
.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: -20px;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .news-arrow-prev, .news-arrow-next {
    top: -24px;
    width: 48px;
    height: 48px;
  }
}
.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: 10px;
  }
}
.news-arrow-prev:before {
  left: 20%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 640px), print {
  .news-arrow-next {
    right: 10px;
  }
}
.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 #eee;
  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: #2e3f84;
  -webkit-transition: .2s;
  transition: .2s;
}
.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #425290;
}
.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　仕事を知る

-------------------------------- */
/* 仕事を知る */
.work-intro-section .inner {
  max-width: none;
  padding: 0;
}
.work-intro-subsection {
  padding: 2em 0;
}
.work-intro-subsection:nth-child(even) {
  background: url(../img/base/bg.png) center repeat;
  background-size: 5px 5px;
}
@media screen and (min-width: 992px), print {
  .work-intro-subsection:nth-child(even) .work-intro-items {
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}
@media screen and (min-width: 992px), print {
  .work-intro-subsection:nth-child(even) .work-intro-item.img {
    margin: 0 0 0 1.5em;
  }
}
.work-intro-subsection a {
  color: #151515;
  text-decoration: none;
}
.work-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5em;
}
@media screen and (min-width: 992px), print {
  .work-intro-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.work-intro-item.img {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 992px), print {
  .work-intro-item.img {
    width: 550px;
    margin: 0 1.5em 0 0;
  }
}
.work-intro-item.text {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}
@media screen and (min-width: 992px), print {
  .work-intro-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.work-intro-head {
  margin-bottom: 1em;
}
.work-intro-heading {
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2e3f84;
}
.work-intro-heading .mainheading {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  color: #2e3f84;
}
@media screen and (min-width: 768px), print {
  .work-intro-heading .mainheading {
    font-size: 2em;
  }
}
.work-intro-heading .subheading {
  display: block;
  font-size: .6em;
  color: #b3b3b3;
}
@media screen and (min-width: 768px), print {
  .work-intro-heading .subheading {
    font-size: .7em;
  }
}
.work-intro-body {
  text-align: center;
  margin-bottom: 1em;
}
.work-intro-foot {
  position: absolute;
  display: block;
  bottom: 2em;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.work-intro-foot .link-button {
  color: #fff;
}
.work-intro-foot .link-button:hover {
  background-color: #425290;
}

/* --------------------------------

  id03　先輩社員紹介

-------------------------------- */
/* 社員一覧 */
.interview-list {
  font-family: "Noto Sans JP", sans-serif;
}
.interview-list-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 -2em 0;
}
.interview-list-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 2em 0;
}
@media screen and (min-width: 640px), print {
  .interview-list-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .interview-list-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.interview-list-item a {
  color: #151515;
  text-decoration: none;
}
.interview-list-figure {
  max-width: 344px;
  margin: 0 auto;
}
.interview-list-figure img {
  margin-bottom: 10px;
}
.interview-list-figure figcaption {
  text-align: center;
  line-height: 1.4;
}
.interview-list-figure figcaption strong {
  color: #2e3f84;
}
.interview-list-figure figcaption .name {
  font-size: 1.5em;
  font-weight: bold;
}

/* --------------------------------

  id04　データで見る三條機械

-------------------------------- */
/* データで見る三條機械 */
.data-detail-subsection:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (min-width: 992px), print {
  .data-detail-subsection:not(:last-child) {
    margin-bottom: 1em;
  }
}
.data-detail-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 -2em 0;
}
@media screen and (min-width: 992px), print {
  .data-detail-items {
    margin: 0 -1em -1em 0;
  }
}
.data-detail-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 2em 0;
}
@media screen and (min-width: 992px), print {
  .data-detail-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 1em 0;
  }
}
.double .data-detail-container {
  min-height: 100%;
  border: 1px solid #d6d6d6;
}
.data-detail-head {
  position: relative;
}
.data-detail-heading {
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  background: url(../img/base/h2bg.jpg);
}
.data-detail-heading span {
  background-color: #2e3f84;
  padding: 1em 1.2em;
  display: inline-block;
  font-weight: bold;
}
.data-detail-caption {
  display: block;
  color: #151515;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: right;
  padding: .5em;
}
@media screen and (min-width: 480px), print {
  .data-detail-caption {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 1.6rem;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.data-detail-body {
  font-family: "Noto Sans JP", sans-serif;
  padding: .5em 1em;
}
.double .data-detail-body {
  padding: 1.5em;
}
.data-detail .base .data-detail-text {
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (min-width: 640px), print {
  .data-detail .base .data-detail-text {
    text-align: left;
  }
}
.data-detail .base .data-detail-text p {
  display: block;
  font-weight: 900;
}
@media screen and (min-width: 480px), print {
  .data-detail .base .data-detail-text p {
    display: inline-block;
  }
}
.data-detail .base .data-detail-text p.number {
  font-size: 4.5em;
}
.data-detail .base .data-detail-text p strong {
  font-size: 1.3em;
  font-weight: 900;
}
.data-detail .base .data-detail-images {
  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;
}
.data-detail .base .data-detail-image {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 640px), print {
  .data-detail .base .data-detail-image {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.data-detail .base .data-detail-image figure {
  text-align: center;
}
.data-detail .base .data-detail-image figure img {
  margin-bottom: 10px;
}
.data-detail .base .data-detail-image figure figcaption {
  font-weight: bold;
}
@media screen and (min-width: 480px), print {
  .data-detail .employee .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .employee .data-detail-body-item.text {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .data-detail .employee .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .employee .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .employee .data-detail-body-item.img {
    width: 153px;
    margin: 0 0 0 1em;
  }
}
.data-detail .employee .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .employee .data-detail-text p {
  font-weight: 900;
}
.data-detail .employee .data-detail-text p.number {
  font-size: 4.5em;
}
.data-detail .employee .data-detail-text p strong {
  font-size: 1.3em;
  font-weight: 900;
}
.data-detail .employee .data-detail-text p.note .man {
  color: #2e3f84;
}
.data-detail .employee .data-detail-text p.note .woman {
  color: #D24CFF;
}
@media screen and (min-width: 480px), print {
  .data-detail .paid .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .paid .data-detail-body-item.text {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .data-detail .paid .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .paid .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .paid .data-detail-body-item.img {
    width: 146px;
    margin: 0 0 0 1em;
  }
}
.data-detail .paid .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .paid .data-detail-text p {
  font-weight: 900;
}
.data-detail .paid .data-detail-text p.number {
  font-size: 4.5em;
}
.data-detail .paid .data-detail-text p strong {
  font-size: 1.3em;
  font-weight: 900;
}
.data-detail .number .data-detail-img {
  text-align: center;
}
.data-detail .holiday .data-detail-body-item.img {
  text-align: center;
  margin-bottom: 1em;
}
.data-detail .holiday .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .holiday .data-detail-text p {
  font-weight: 900;
  color: #A70D0F;
}
.data-detail .holiday .data-detail-text p.number {
  font-size: 4.5em;
}
.data-detail .holiday .data-detail-text p strong {
  font-size: 1.3em;
  font-weight: 900;
}
@media screen and (min-width: 480px), print {
  .data-detail .overtime .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .overtime .data-detail-body-item.text {
  margin-bottom: 2em;
}
@media screen and (min-width: 480px), print {
  .data-detail .overtime .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .overtime .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .overtime .data-detail-body-item.img {
    width: 124px;
    margin: 0 0 0 1em;
  }
}
.data-detail .overtime .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .overtime .data-detail-text p {
  font-weight: 900;
}
.data-detail .overtime .data-detail-text p.number {
  font-size: 2em;
}
.data-detail .overtime .data-detail-text p strong {
  display: block;
  font-size: 3em;
  font-weight: 900;
  color: #FF9226;
}
@media screen and (min-width: 480px), print {
  .data-detail .turnover .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .turnover .data-detail-body-item.text {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .data-detail .turnover .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .turnover .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .turnover .data-detail-body-item.img {
    width: 226px;
    margin: 0 0 0 1em;
  }
}
.data-detail .turnover .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .turnover .data-detail-text p {
  font-size: 5.5em;
  font-weight: 900;
  color: #008C00;
}
@media screen and (min-width: 480px), print {
  .data-detail .childcare .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .childcare .data-detail-body-item.text {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .data-detail .childcare .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .childcare .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .childcare .data-detail-body-item.img {
    width: 108px;
    margin: 0 0 0 1em;
  }
}
.data-detail .childcare .data-detail-text {
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 992px), print {
  .data-detail .childcare .data-detail-text {
    text-align: left;
  }
}
.data-detail .childcare .data-detail-text p {
  font-size: 2em;
}
.data-detail .childcare .data-detail-text p.man .number {
  font-size: 1.4em;
  font-weight: 900;
}
.data-detail .childcare .data-detail-text p.man strong {
  font-weight: 900;
}
.data-detail .childcare .data-detail-text p.woman .number {
  font-size: 1.8em;
  font-weight: 900;
}
@media screen and (min-width: 480px), print {
  .data-detail .childcare .data-detail-text p.woman .number {
    font-size: 2.4em;
  }
}
.data-detail .childcare .data-detail-text p.woman strong {
  color: #FF0000;
  font-weight: 900;
}
@media screen and (min-width: 480px), print {
  .data-detail .service .data-detail-body-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.data-detail .service .data-detail-body-item.text {
  margin-bottom: 1em;
}
@media screen and (min-width: 480px), print {
  .data-detail .service .data-detail-body-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}
.data-detail .service .data-detail-body-item.img {
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .data-detail .service .data-detail-body-item.img {
    width: 91px;
    margin: 0 0 0 1em;
  }
}
.data-detail .service .data-detail-text {
  text-align: center;
  line-height: 1.2;
}
.data-detail .service .data-detail-text p {
  font-size: 5.5em;
  font-weight: 900;
  color: #FFBF00;
}

/* --------------------------------

  id05　企業情報

-------------------------------- */
/* 会社概要 */
.profile-about {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px), print {
  .profile-about-table {
    display: table;
    width: 100%;
  }
}
.profile-about-table tr:last-child th {
  border-bottom: none;
}
.profile-about-table tr:last-child td {
  border-bottom: none;
}
.profile-about-table th, .profile-about-table td {
  display: block;
}
@media screen and (min-width: 768px), print {
  .profile-about-table th, .profile-about-table td {
    display: table-cell;
    vertical-align: top;
  }
}
.profile-about-table th {
  color: #2e3f84;
  font-weight: bold;
  text-align: left;
  padding: 0 0 .5em 0;
}
@media screen and (min-width: 768px), print {
  .profile-about-table th {
    width: 8em;
    padding: 1em 0;
    border-bottom: 2px solid #2e3f84;
  }
}
.profile-about-table td {
  padding: 0 0 2em 1em;
}
@media screen and (min-width: 768px), print {
  .profile-about-table td {
    padding: 1em;
    border-bottom: 2px dotted #d6d6d6;
  }
}

/* ごあいさつ */
.profile-greeting {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px), print {
  .profile-greeting-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}
.profile-greeting-item.img {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .profile-greeting-item.img {
    width: 214px;
    margin: 0 0 0 2em;
  }
}
@media screen and (min-width: 768px), print {
  .profile-greeting-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.profile-greeting-name {
  display: table;
  margin: 0 0 0 auto;
}

/* ごあいさつ */
.profile-vision {
  font-family: "Noto Sans JP", sans-serif;
}
.profile-vision-text {
  font-size: 1.2em;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (min-width: 768px), print {
  .profile-vision-text {
    font-size: 1.5em;
  }
}

/* 社是　健康と信用 */
.profile-motto {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px), print {
  .profile-motto-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.profile-motto-item.img {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .profile-motto-item.img {
    width: 214px;
    margin: 0 2em 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .profile-motto-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* 本社・支店・工場 */
.profile-base {
  font-family: "Noto Sans JP", sans-serif;
}
.profile-base-subsection {
  padding-bottom: 1.5em;
  border-bottom: 1px dotted #ddd;
}
.profile-base-subsection:not(:last-child) {
  margin-bottom: 1.5em;
}
.profile-base-container {
  overflow: hidden;
}
.profile-base-main {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 992px), print {
  .profile-base-main {
    float: left;
    width: 100%;
    margin: 0 -430px 0 0;
    padding-right: 450px;
  }
}
@media screen and (min-width: 992px), print {
  .profile-base-side {
    float: right;
    width: 430px;
  }
}
.profile-base-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;
}
.profile-base-item {
  padding: 0 1em 1em 0;
}
.profile-base-item.text {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media screen and (min-width: 480px), print {
  .profile-base-item.text {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }
}
@media screen and (min-width: 992px), print {
  .profile-base-item.text {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .tokyo .profile-base-item.text {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    max-width: 55%;
  }
}
@media screen and (min-width: 992px), print {
  .osaka .profile-base-item.text {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
  }
}
@media screen and (min-width: 480px), print {
  .utsunomiya .profile-base-item.text {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.profile-base-item.img {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  text-align: center;
}
@media screen and (min-width: 480px), print {
  .profile-base-item.img {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    text-align: right;
  }
}
@media screen and (min-width: 992px), print {
  .profile-base-item.img {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .tokyo .profile-base-item.img {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
  }
}
@media screen and (min-width: 992px), print {
  .osaka .profile-base-item.img {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
  }
}
.profile-base-heading {
  font-weight: bold;
  color: #2e3f84;
  margin-bottom: 1rem;
}
.profile-base-text {
  padding-left: 1em;
}

/* --------------------------------

  id06　インターンシップ

-------------------------------- */
/* 導入部 */
.internship-intro {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

/* 過去のインターンシップの様子 */
.internship-gallery {
  font-family: "Noto Sans JP", sans-serif;
}
.internship-gallery-head {
  margin-bottom: 2em;
}
.internship-gallery-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;
}
.internship-gallery-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 640px), print {
  .internship-gallery-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px), print {
  .internship-gallery-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.internship-gallery-figure {
  text-align: center;
}
.internship-gallery-figure img {
  margin-bottom: .5em;
}
.internship-gallery-figure figcaption {
  font-size: .9em;
  line-height: 1.4;
}

/* 参加者の声 */
.internship-voice {
  font-family: "Noto Sans JP", sans-serif;
}
.internship-voice-subsection:not(:last-child) {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 2px dotted #cdcdcd;
}
@media screen and (min-width: 640px), print {
  .internship-voice-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.internship-voice-item.img {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 640px), print {
  .internship-voice-item.img {
    width: 120px;
    margin: 0 2em 0 0;
  }
}
@media screen and (min-width: 640px), print {
  .internship-voice-item.text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.internship-voice-heading {
  color: #2e3f84;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 640px), print {
  .internship-voice-heading {
    text-align: left;
  }
}
.internship-voice-heading span {
  display: block;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 480px), print {
  .internship-voice-heading span {
    display: inline-block;
  }
}
@media screen and (min-width: 480px), print {
  .internship-voice-heading span:first-child {
    margin-right: 1em;
  }
}

/* --------------------------------

  id07　募集要項

-------------------------------- */
/* 導入部 */
.requirements-intro {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 640px), print {
  .requirements-intro {
    max-width: 1200px;
  }
}
.requirements-intro-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;
}
@media screen and (min-width: 768px), print {
  .requirements-intro-items {
    margin: 0 -2em -1em 0;
  }
}
.requirements-intro-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em 1em 0;
}
@media screen and (min-width: 640px), print {
  .requirements-intro-item {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 25%;
  }
}
@media screen and (min-width: 768px), print {
  .requirements-intro-item {
    padding: 0 2em 1em 0;
  }
}
.requirements-intro-inner {
  text-align: center;
}
.requirements-intro-link {
  display: block;
  background-color: #2e3f84;
  color: #fff;
  padding: 1em;
}
.requirements-intro-link:hover {
  background-color: #425290;
  color: #fff;
  text-decoration: none;
}
.requirements-intro span {
  position: relative;
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  padding-right: 30px;
}
@media screen and (min-width: 768px), print {
  .requirements-intro span {
    font-size: 1em;
  }
}
.requirements-intro span:after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* 新卒採用 */
/* 中途採用 */
/* 障がい者採用 */
.requirements-detail {
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 768px), print {
  .requirements-detail-table {
    display: table;
    width: 100%;
  }
}
.requirements-detail-table th, .requirements-detail-table td {
  display: block;
}
@media screen and (min-width: 768px), print {
  .requirements-detail-table th, .requirements-detail-table td {
    display: table-cell;
    vertical-align: top;
  }
}
.requirements-detail-table th {
  color: #2e3f84;
  font-weight: bold;
  text-align: left;
  padding: 0 0 .5em 0;
}
@media screen and (min-width: 768px), print {
  .requirements-detail-table th {
    width: 8em;
    padding: 1em 0;
    border-bottom: 2px solid #2e3f84;
  }
}
.requirements-detail-table td {
  padding: 0 0 2em 1em;
}
@media screen and (min-width: 768px), print {
  .requirements-detail-table td {
    padding: 1em;
    border-bottom: 2px dotted #d6d6d6;
  }
}
.requirements-detail-table a {
  text-decoration: underline;
}
.requirements-detail-table span.circle {
  color: #2e3f84;
}
.requirements-detail-table dl {
  overflow: hidden;
}
.requirements-detail-table dl dt {
  float: left;
  clear: left;
}
.requirements-detail-table dl dd {
  float: left;
}
.requirements-detail-table dl.hours dt {
  position: relative;
  float: none;
  width: 8em;
}
@media screen and (min-width: 480px), print {
  .requirements-detail-table dl.hours dt {
    float: left;
    clear: left;
  }
}
@media screen and (min-width: 480px), print {
  .requirements-detail-table dl.hours dt:after {
    position: absolute;
    display: block;
    content: "：";
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.requirements-detail-table dl.hours dd {
  float: none;
  padding-left: 1em;
}
@media screen and (min-width: 480px), print {
  .requirements-detail-table dl.hours dd {
    float: left;
    padding: 0;
  }
}
.requirements-detail-table dl.salary dt {
  width: 10em;
}

/* --------------------------------

  id08　新卒・インターン申込

-------------------------------- */
/* 注釈 */
/* --------------------------------

  id09　キャリア採用

-------------------------------- */
/* 注釈 */
/* --------------------------------

  idxx　お問い合わせ

-------------------------------- */
/* お問い合わせ */
.contact-us-main {
  position: relative;
  margin-bottom: .5em;
  padding: 1em;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: #2e3f84;
}
@media screen and (min-width: 768px), print {
  .contact-us-main {
    padding: 1.5em;
    text-align: left;
    border-left: 125px solid #1a2c78;
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main {
    max-width: 800px;
    border-left-width: 150px;
  }
}
.contact-us-main:before {
  content: "";
  display: block;
  height: 80.8333333333px;
  margin: -1em -1em 1em;
  background: #1a2c78 url(../img/base/tel.png) center no-repeat;
  background-size: auto 70%;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .contact-us-main:before {
    position: absolute;
    top: 50%;
    left: -125px;
    width: 125px;
    margin: 0;
    background: url(../img/base/tel.png) center no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main:before {
    left: -150px;
    width: 150px;
  }
}
.contact-us-tel {
  margin-bottom: .5em;
}
@media screen and (min-width: 768px), print {
  .contact-us-tel {
    margin-bottom: 0;
  }
}
.contact-us-tel .tel-link {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 2.1em;
  line-height: 1.1;
}
@media screen and (min-width: 1100px), print {
  .contact-us-tel .tel-link {
    font-size: 2.5em;
  }
}
.contact-us-tel a.tel-link {
  color: #fff;
}
.contact-us-tel a.tel-link:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  .contact-us-time {
    position: absolute;
    top: 50%;
    right: 1.5em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.contact-us-time dl {
  font-size: .9em;
}
@media screen and (min-width: 1100px), print {
  .contact-us-time dl {
    font-size: 1em;
  }
}
.contact-us-time dl:not(:last-child) {
  margin-bottom: .3em;
}
@media screen and (min-width: 480px), print {
  .contact-us-time dt {
    display: inline-block;
  }
  .contact-us-time dt:after {
    content: "／";
  }
}
@media screen and (min-width: 480px), print {
  .contact-us-time dd {
    display: inline-block;
  }
}

/* メールフォームでのお問い合わせ */
.contact-form-description {
  margin-bottom: 1.5em;
}
.contact-form .content p {
  margin-bottom: 1.5em;
}
.contact-form .content dl {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .contact-form .content dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.contact-form .content dl:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .contact-form .content dl:not(:last-child) {
    margin-bottom: 0;
    border-bottom: 1px dotted #eee;
  }
}
.contact-form .content dt {
  position: relative;
  margin-bottom: .5em;
  padding: 1em 1em 1em 5em;
  background-color: #eee;
}
@media screen and (min-width: 768px), print {
  .contact-form .content dt {
    width: 15em;
    margin-bottom: 0;
    background: none;
  }
}
.contact-form .content dd {
  padding: .5em 1em;
}
@media screen and (min-width: 768px), print {
  .contact-form .content dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1em;
  }
}
.contact-form .content .required dt:before {
  content: "必須";
  display: block;
  position: absolute;
  left: 1.2em;
  width: 4em;
  padding: .5em 0;
  line-height: 1;
  font-size: .8em;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #c00;
}

/* 個人情報及び特定個人情報保護方針 */
.contact-privacy {
  height: 30em;
  padding: 1em;
  font-size: .9em;
  border: 1px solid #eee;
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (min-width: 640px), print {
  .contact-privacy {
    height: 20em;
  }
}
@media screen and (min-width: 768px), print {
  .contact-privacy {
    font-size: 1em;
  }
}
.contact-privacy-section .inner {
  line-height: 1.5;
}
.contact-privacy h3 {
  margin: 1em 0 .3em;
  line-height: 1.3;
  font-size: 1.3em;
}
.contact-privacy ol {
  margin-bottom: .85em;
}
.contact-privacy ol > ol {
  margin-top: .5em;
}
.contact-privacy dl {
  float: right;
  padding-top: 1.2em;
}
.contact-privacy .tel-link {
  color: #151515;
}
.contact-privacy a.tel-link {
  color: #151515;
}
.contact-privacy a.tel-link:hover {
  color: #425290;
}

/* --------------------------------

  修正・追加用

-------------------------------- */
.header-logo .site-description {
  display: none;
}

.form-textarea-auto {
  min-height: auto !important;
  height: auto !important;
}

.privacy {
  height: 350px;
  overflow: auto;
  padding: 20px;
  background: #efefef;
}
.privacy h3 {
  margin-bottom: .5em;
  font-weight: bold;
  color: #425290;
}
.privacy p, .privacy dd {
  margin-bottom: 1em;
}
.privacy dt {
  font-weight: bold;
}

.form-area-name dl{
  margin-bottom: 1em;
  padding: 0;
}
.form-area-name dt{
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color:#2e3f84;
}

.form-area-name dd{
  display: block;
  padding: 0 1em;
  margin:0;
}
.form-area-name dd label{
  padding:0 1em 0 0.3em;
}


.work-intro-txt {
  padding: 0 1em;
  margin-bottom: 2em;
}
.work-intro-txt h3{
  font-weight: bold;
}
.work-intro-txt h3:before{
  content:"■";
  color:#1a2c78;
  padding-right:3px;
}
.work-intro-txt h3:not(:first-child){
  margin-top: 1em;
}
.work-intro-txt p{
  padding-left: 1.3em;
}

.work-tables{
  width: 100%;
  border-top: 1px solid #1a2c78;
  border-right: 1px solid #1a2c78;
  margin-top: 5px;
  margin-bottom: 2em;
  overflow-x: scroll;
}
.work-tables th,
.work-tables td{
  padding:7px 10px;
  border-bottom: 1px solid #1a2c78;
  border-left: 1px solid #1a2c78;
}

.work-tables thead th{
  background: #1a2c78;
  color:#fff;
  text-align: center;
}
.work-tables thead th:not(:last-child){
  border-right:1px solid #fff;
}
.work-tables tbody th{
  color: #1a2c78;
}

.wth1{ width: 400px;}
.wth2{ width: auto;}
.wth3{ width: 180px;}
.wth4{ width: 150px;}
.wth5{ width: 260px;}

.wtd1{ width: 30px;}

.wth th{
  background-color: #1a2c78;
  color:#fff !important;
  text-align: center;
  border-bottom: 1px solid #fff;
  width: 180px;
}

.work-intro-txt dl{
  margin: 0.5em;
}
.work-intro-txt dt{
  font-weight: bold;
}
.work-intro-txt dt:not(:first-child){
  margin-top: 1em;
}
.work-intro-txt dt::before{
  content:"●";
  font-size: 0.8em;
  margin-right: 4px;
  color:#1a2c78;
}
.work-intro-txt dd{
  padding: 0 1em;
}

@media screen and (max-width: 768px) {

  .over-table{
    overflow-x: scroll;
    margin-bottom: 2em;
  }
  .over-table table{
    width: 1000px;
    margin: 0 0 1em 0 ;
  }
}

/* ▼▼▼20220722追加▼▼▼ */
.top-img-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}
.top-img-content2 a {
  width: 15%;
  margin: 0 auto;
}
.top-img-content a:hover {
  opacity: 0.6;
}
.top-img-content img {
  max-width: 160px;
  width: 90%;
}
.top-img-happy_partner,
.top-auxiliary_img {
  margin-left: 15px;
}
.top-img-happy_partner,
.top-img-approach_kurumin {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .top-img-content,
  .top-img-content2 {
    padding-top: 20px;
  }
  .main {
    padding: 3em 1em;
  }
  .top-img-content img {
    max-width: 90px;
    width: 90%;
  }
}
/* ▼▼▼202201011追加▼▼▼ */
.proportion {
  font-size: 15px;
}
.proportion_data_box {
  margin-top: 20px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #B4B4B4;
}
.proportion_data_box tbody {
  box-sizing: border-box;
}
.proportion_data_box th {
  text-align: center;
  border: 1px solid #B4B4B4;
  background-color:#31c88d;
  padding: 10px;
  color: #fff;
}
.proportion_data_box td {
  text-align: center;
  padding: 10px;
  border: 1px solid #B4B4B4;
}
.data-detail .service .proportion_data-detail-body-item.img {
    width: 30%;
    margin: 20px 0 0 1em;
}

@media screen and (max-width: 768px) {
  .data-detail .service .proportion_data-detail-body-item.img {
      width: 50%;
      margin: 20px auto 0 auto;
      text-align: center;
  }
}


.job_type {
  position: relative;
}
.job_type span {
  position: absolute;
  bottom: 0;
  top: -100px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .job_type span {
    top: -54px;
  }
}
.error {
  padding-top: 10px;
  color: #dc143c;
  font-weight: bold;
}
.ne_p {
  padding: 0 0em!important;
}
.nw_s {
  padding-left: 50px;
}
.nw_b {
  background-color: #eaf4fc;
  padding: 10px 15px;
}
.w-1500 {
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  .nw_s {
    padding-left: 0px;
    display: block;
  }
}
