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

  CSS Reset

-------------------------------- */
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: 400;
  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,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #4387c5;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #70a4d3;
  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:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

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

button {
  border: none;
  background: none;
}

button:hover, button:active, button:focus {
  outline: none;
}

button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1rem 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.3em;
  color: #fff;
  border-left: 1rem solid #4387c5;
  background-color: #70a4d3;
}

@media screen and (min-width: 1100px), print {
  .news-heading {
    margin-bottom: 2.5rem;
    font-size: 1.5em;
  }
}

.main-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: .6rem 1rem .75rem;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1.3em;
  color: #333;
  border-left: 1.4rem solid #4387c5;
  background-color: #F1F1F1;
}

@media screen and (min-width: 1100px), print {
  .main-heading {
    margin-bottom: 2.5rem;
    font-size: 1.5em;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 1.25em;
  margin-bottom: .8em;
  color: #4387c5;
}

.main-subheading::before {
  content: "";
  display: block;
  position: absolute;
  top: .15em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../img/pages/special/special-icon1.png") no-repeat center/cover;
}

/* 共通リスト */
.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: .55em;
  left: .25em;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #4387c5;
}

.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: #70a4d3;
}

.main ul.list-style-secondary > li::before {
  background: #70a4d3;
}

.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-width: 9em;
  padding: .6em 2.75em .7em 1em;
  color: #fff;
  line-height: 1.3;
  text-align: left;
  background-color: #4387c5;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.link-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: .75em;
  bottom: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  background: url(../img/base/more_wht.svg) center no-repeat;
  background-size: 95%;
}

.link-button-secondary {
  background-color: #7da71d;
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #70a4d3;
}

a.link-button-secondary:hover {
  background-color: #96c725;
}

/* 電話発信用リンク */
a.tel-link-wht {
  color: #fff;
}

a.tel-link-wht:hover {
  color: #fff;
}

a.tel-link-blk {
  color: #333;
}

a.tel-link-blk:hover {
  color: #333;
}

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

.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  z-index: -100;
}

/* 共通テーブル */
.table-style {
  display: block;
}

.table-style tbody {
  display: block;
  line-height: 1.5;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}

@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 #999;
}

@media screen and (max-width: 639.98px) {
  .table-style tr {
    display: block;
    border: 1px solid #999;
  }
  .table-style tr:not(:last-child) {
    margin-bottom: 5px;
  }
}

.table-style th {
  width: 15em;
  padding: .75em 1em;
  background-color: #999;
  border-right: 1px solid #999;
}

@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 #999;
}

@media screen and (max-width: 639.98px) {
  .table-style td {
    display: block;
    padding: .5em .5em .5em .7em;
    font-size: .95em;
    border-right: none;
  }
}

.table-style .tel-link {
  color: #333;
}

.table-style a.tel-link {
  color: #333;
}

.table-style a.tel-link:hover {
  color: #70a4d3;
}

/* 共通お問い合わせ */
.global-contact .add {
  font-size: .85em;
  text-align: center;
}

.global-contact .tel {
  text-align: center;
}

.global-contact .tel-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1;
  font-weight: 500;
  font-size: 3.5rem;
  color: #333;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.global-contact .tel-link::before {
  content: "";
  display: block;
  width: 1.15em;
  height: 1.15em;
  margin: .25rem .75rem 0 0;
  background: url(../img/base/tel_blu.svg) no-repeat center;
  background-size: contain;
}

.global-contact a.tel-link {
  color: #333;
}

.global-contact a.tel-link:hover {
  color: #4387c5;
  text-decoration: none;
}

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

  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: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

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

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  padding-bottom: 60px;
  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: static;
  max-width: none;
  z-index: auto;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 1em;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1010;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header .inner {
    top: 435px;
    height: 115px;
    background-color: rgba(255, 255, 255, 0.7);
  }
}

.header-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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}

@media screen and (min-width: 1100px), print {
  .header-logo {
    display: block;
    position: relative;
    max-width: 1100px;
    height: auto;
    margin: auto;
    background: none;
    z-index: auto;
  }
}

.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: 200px;
  height: 100%;
  margin-left: 5px;
  font-size: 100%;
}

@media screen and (min-width: 360px), print {
  .header-logo .site-logo {
    width: 224px;
  }
}

@media screen and (min-width: 768px), print {
  .header-logo .site-logo {
    width: 264px;
    margin-left: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-logo {
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    width: 360px;
    height: auto;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header-logo .site-logo {
    top: 19px;
    width: 528px;
  }
}

.header-logo .site-logo a,
.header-logo .site-logo img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .header-content {
    position: relative;
    max-width: 1100px;
    margin: auto;
  }
}

.header-contact {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .header-contact {
    display: block;
    position: absolute;
    top: 10px;
    right: -1em;
    width: 19em;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header-contact {
    top: 28px;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .header.fixed .header-logo {
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .header.fixed .header-logo.hide {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

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

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100%;
  z-index: 1000;
  opacity: 0;
}

@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 200px;
    left: auto;
    width: 100%;
    height: auto;
    margin: 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav {
    -webkit-transition-property: opacity, left;
    transition-property: opacity, left;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
  }
}

@media screen and (min-width: 1100px), print {
  #top .nav {
    top: 550px;
  }
}

.nav-open .nav {
  left: 0;
  opacity: 1;
}

@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: auto;
  }
}

.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  background-color: rgba(67, 134, 197, 0.9);
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav .inner {
    padding: 0 1em;
  }
}

.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    position: static;
    overflow: visible;
  }
}

/* メインナビ */
.main-nav {
  padding: 60px 10px;
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1100px;
    margin: auto;
    padding: 0;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.main-nav .nav-link,
.main-nav .nav-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 50px;
  padding: 0 0 0 .5em;
  color: #fff;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link,
  .main-nav .nav-label {
    height: 90px;
    padding: .25em 0 0;
    color: #fff;
    text-align: center;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link::before,
  .main-nav .nav-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 75%;
    margin: auto;
    border-left: 1px dotted #ccc;
  }
}

.main-nav .nav-link span,
.main-nav .nav-label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span,
  .main-nav .nav-label span {
    display: block;
    font-size: 1.1em;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span::before,
  .main-nav .nav-label span::before {
    content: attr(data-subtitle);
    display: block;
    font-size: 1rem;
    letter-spacing: .15rem;
  }
}

.main-nav .nav-link span::after,
.main-nav .nav-label span::after {
  content: attr(data-subtitle);
  display: block;
  width: 20.5em;
  margin: .15rem 0 0 auto;
  font-size: .95rem;
  color: #fff;
  letter-spacing: .15rem;
  opacity: .75;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link span::after,
  .main-nav .nav-label span::after {
    display: none;
  }
}

.main-nav .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    border-bottom: none;
  }
}

.main-nav .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: .75em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #fff;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link::after {
    display: none;
  }
}

.main-nav .nav-link:hover {
  text-decoration: none;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    color: #fff;
    background-color: #70a4d3;
    z-index: 20;
  }
}

.main-nav .nav-link:hover::before {
  height: 100%;
  border-left: none;
  background-color: #70a4d3;
}

.main-nav .nav-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: .6em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-label::after {
    display: none;
  }
}

.main-nav .nav-home .nav-link::before {
  display: none;
}

.main-nav .nav-clean a::after {
  background-image: url(../img/menu/nav1.jpg);
}

.main-nav .nav-special a::after {
  background-image: url(../img/menu/nav2.jpg);
}

.main-nav .nav-construction a::after {
  background-image: url(../img/menu/nav3.jpg);
}

.main-nav .nav-hotel a::after {
  background-image: url(../img/menu/nav4.jpg);
}

.main-nav .nav-cross a::after {
  background-image: url(../img/menu/nav5.jpg);
}

.main-nav .nav-repair a::after {
  background-image: url(../img/menu/nav6.jpg);
}

.main-nav .nav-izakaya a::after {
  background-image: url(../img/menu/nav7.jpg);
}

.main-nav .nav-company a::after {
  background-image: url(../img/menu/nav8.jpg);
}

.main-nav .nav-access a::after {
  background-image: url(../img/menu/nav9.jpg);
}

/* ドロップダウンナビ */
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 30;
    pointer-events: none;
    opacity: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav {
    top: 100%;
    pointer-events: auto;
    opacity: 1;
  }
}

.sub-nav-inner {
  position: relative;
  margin: -1px 0 0;
  padding: 0 0 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

@media screen and (min-width: 1100px), print {
  .sub-nav-inner {
    margin: 0;
    padding: 1.5em 2em;
    border-bottom: none;
    background-color: #424242;
  }
}

.sub-nav-items {
  max-width: 1100px;
  margin: auto;
}

.sub-nav-items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -.15em -.15em 0;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -1em -1em 0;
  }
}

.sub-nav-items li {
  width: 50%;
  padding: 0 .15em .15em 0;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items li {
    width: 25%;
    padding: 0 1em 1em 0;
  }
}

.sub-nav-items a {
  display: block;
  position: relative;
  font-size: .75em;
  color: #fff;
  text-align: center;
  background-color: #424242;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items a {
    font-size: 1.05em;
    text-align: left;
    background: transparent;
  }
}

.sub-nav-items a::after {
  content: "";
  display: block;
  padding-top: 26.50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items a::after {
    margin-top: .75rem;
    padding-top: 37.735%;
    opacity: .75;
    -webkit-filter: grayscale(85%);
            filter: grayscale(85%);
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
}

.sub-nav-items a:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items a:hover {
    background: transparent;
  }
}

.sub-nav-items a:hover::after {
  opacity: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.sub-nav-items span {
  display: block;
  padding: .75rem 0;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0;
  }
}

.sub-nav-items span::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: .1rem;
  font-weight: 100;
  font-size: .9rem;
  color: #70a4d3;
  letter-spacing: .1rem;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-items span::after {
    margin: 0 0 0 1rem;
    font-size: 1rem;
  }
}

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button {
    display: block;
    position: relative;
    width: 100%;
    height: 90px;
    margin-bottom: -90px;
    background: none;
    z-index: 30;
  }
}

.sub-nav-button::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #ccc transparent transparent transparent;
}

@media screen and (min-width: 1100px), print {
  .sub-nav-button::after {
    display: block;
    top: auto;
    right: 0;
    bottom: 12%;
    left: 0;
    border-top-color: #fff;
  }
}

@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button::after {
    bottom: 10%;
    border-width: 0 6px 6px 6px;
    border-top-color: transparent;
    border-bottom-color: #fff;
  }
}

/* ドロップダウンナビボタン（ hover ）*/
@media screen and (min-width: 1100px), print {
  .sub-nav-button:hover + .nav-link,
  .sub-nav-button:hover + .nav-label,
  .sub-nav-active .sub-nav-button:hover + .nav-link,
  .sub-nav-active .sub-nav-button:hover + .nav-label {
    color: #fff;
    background-color: #70a4d3;
    z-index: 10;
  }
  .sub-nav-button:hover + .nav-link::before,
  .sub-nav-button:hover + .nav-label::before,
  .sub-nav-active .sub-nav-button:hover + .nav-link::before,
  .sub-nav-active .sub-nav-button:hover + .nav-label::before {
    height: 100%;
    border-left: none;
    background-color: #70a4d3;
  }
}

/* ドロップダウンナビボタン（ active ）*/
@media screen and (min-width: 1100px), print {
  .sub-nav-active .sub-nav-button + .nav-link,
  .sub-nav-active .sub-nav-button + .nav-label {
    color: #fff;
    background-color: #70a4d3;
    z-index: 10;
  }
  .sub-nav-active .sub-nav-button + .nav-link::before,
  .sub-nav-active .sub-nav-button + .nav-label::before {
    height: 100%;
    border-left: none;
    background-color: #70a4d3;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  z-index: 910;
}

@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}

.nav-open .nav-button {
  display: none;
}

.nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 18px;
  margin: auto;
  border-top: 2px solid #4387c5;
  border-bottom: 2px solid #4387c5;
}

.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid #4387c5;
}

.nav-button-icon::after {
  display: none;
}

.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #4387c5;
  text-align: center;
  letter-spacing: .1rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}

.nav-close-button .nav-button-icon {
  border: none;
}

.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  border-top-color: #fff;
}

.nav-close-button .nav-button-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-close-button .nav-button-icon::after {
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  letter-spacing: .1rem;
  font-family: "Noto Sans JP", sans-serif;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

.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;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: .4;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    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 .nav.fixed {
    top: -60px;
  }
}

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

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 3.5em 1em 0;
  background: #fff;
  overflow: hidden;
  z-index: 100;
}

#top .main {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em 0;
    overflow: visible;
  }
  #top .main {
    padding: 0 2em;
  }
}

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

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

  footer

-------------------------------- */
.footer {
  display: block;
  position: relative;
  padding: 0 1em;
  background-color: #2c79bf;
  overflow: hidden;
  z-index: 100;
}

@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 2em;
  }
}

.footer .inner {
  max-width: none;
}

.footer-container {
  padding: 2em 0;
}

@media screen and (min-width: 1100px), print {
  .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 2em 0 0;
  }
}

.footer-main {
  position: relative;
  margin-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .footer-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-side {
    width: 650px;
  }
}

.footer-head {
  margin-bottom: 1em;
}

.footer-body {
  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-body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer-logo {
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .footer-logo {
    text-align: left;
  }
}

.footer-logo .site-logo img {
  width: 333.33333px;
}

@media screen and (min-width: 1100px), print {
  .footer-logo .site-logo img {
    width: 400px;
  }
}

.footer-info {
  font-size: .9em;
  color: #fff;
}

@media screen and (min-width: 1100px), print {
  .footer-info {
    font-size: .95em;
  }
}

.footer-info .add {
  margin-bottom: .15em;
}

.footer-info .tel,
.footer-info .fax {
  display: inline-block;
  margin-right: 1em;
}

.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}

@media screen and (min-width: 1100px), print {
  .footer-nav {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0;
  }
}

.footer-nav-item {
  width: 100%;
  padding: 0 1em 1em 0;
}

@media screen and (min-width: 1100px), print {
  .footer-nav-item {
    width: auto;
    padding: 0;
  }
  .footer-nav-item:nth-child(1) {
    width: 7em;
  }
  .footer-nav-item:nth-child(2) {
    width: 13em;
    padding-right: 1em;
  }
  .footer-nav-item:nth-child(3) {
    width: 10em;
    padding-right: 1em;
  }
  .footer-nav-item:nth-child(4) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.footer-nav .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -.25em -.25em 0;
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-items {
    margin: 0;
  }
}

.footer-nav .nav-item {
  width: 50%;
  padding: 0 .25em .25em 0;
}

@media screen and (min-width: 480px), print {
  .footer-nav .nav-item {
    width: 25%;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-item {
    width: 100%;
    padding: 0;
  }
}

.footer-nav .nav-label {
  display: block;
  padding: 0 0 .5em .15em;
  color: #fff;
  border-bottom: 1px solid #70a4d3;
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-label {
    margin-bottom: .5em;
    padding: .5em 0 .5em .15em;
  }
}

.footer-nav .nav-link {
  display: block;
  position: relative;
  padding: .75em 1em;
  line-height: 1;
  font-size: .85em;
  color: #fff;
  text-align: center;
  background-color: #4387c5;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link {
    padding: .25em 0 .25em 1.5em;
    line-height: 1.3;
    font-size: .9em;
    text-align: left;
    background: transparent;
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link::before {
    content: "";
    display: block;
    position: absolute;
    top: .75em;
    left: .5em;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #fff;
  }
}

.footer-nav .nav-link:hover {
  text-decoration: none;
  background-color: #70a4d3;
}

@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link:hover {
    text-decoration: underline;
    background: transparent;
  }
}

.footer-nav-primary {
  padding-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .footer-nav-primary {
    padding-top: .5em;
    padding-bottom: 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav-primary .nav-item:not(:last-child) {
    margin-bottom: .35em;
  }
}

.footer-nav-secondary .nav-item {
  width: 100%;
}

@media screen and (min-width: 480px), print {
  .footer-nav-secondary .nav-item {
    width: 50%;
  }
}

@media screen and (min-width: 768px), print {
  .footer-nav-secondary .nav-item {
    width: 25%;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-nav-secondary .nav-item {
    width: 100%;
  }
}

.footer .pagetop {
  display: block;
  position: fixed;
  right: 5px;
  bottom: 65px;
  width: 45px;
  height: 45px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
  }
}

.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #4387c5;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.footer .pagetop a:hover {
  text-decoration: none;
  background-color: #70a4d3;
}

.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 #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 55px;
  margin: 0 -1em;
  padding: 0 1em;
  background-color: #2c79bf;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .footer .copy {
    height: 70px;
    margin: 0 -2em;
    padding: 0 2em;
  }
}

.footer .copy small {
  display: block;
  width: 100%;
  font-size: .85em;
  color: #fff;
}

@media screen and (min-width: 480px), print {
  .footer .copy small {
    text-align: center;
  }
}

@media screen and (min-width: 1100px), print {
  .footer .copy small {
    letter-spacing: .1rem;
  }
}

.footer .copy span {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .footer .copy span {
    display: inline;
  }
}

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

  スライダー

-------------------------------- */
.slider {
  position: relative;
  margin-bottom: 40px;
  background-color: #fff;
}

@media screen and (min-width: 1100px), print {
  .slider {
    margin-bottom: 0;
  }
}

.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider .loader {
  position: absolute;
  z-index: 10;
}

.slider .loader::before {
  top: 0;
  width: 50px;
  height: 50px;
  border: 4px solid #999;
  border-top: 4px solid #70a4d3;
}

@media screen and (min-width: 1100px), print {
  .slider .loader::before {
    top: -205px;
  }
}

.slider-main {
  display: block;
  position: relative;
}

.slider-main::before {
  content: "";
  display: block;
  padding-top: 40.0%;
}

@media screen and (min-width: 1100px), print {
  .slider-main::before {
    padding-top: 640px;
  }
}

.slider-side {
  padding: 1.5em;
  background-color: #4387c5;
}

@media screen and (min-width: 768px), print {
  .slider-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 70px;
    pointer-events: none;
    background: none;
    z-index: 100;
  }
}

@media screen and (min-width: 1100px), print {
  .slider-side {
    padding: 0 110px;
  }
}

.slider-content {
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .slider-content {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 2em 1em;
    color: #333;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

@media screen and (min-width: 1100px), print {
  .slider-content {
    padding: 3em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .slider-content p {
    font-weight: 500;
    font-size: 1.1em;
  }
}

.slider .slick-slider,
.slider .slick-list,
.slider .slick-track {
  height: 100%;
}

.slider .slick-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.slider .slick-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.slider .slick-slider .slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider .slick-slider .slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 1100px), print {
  .slider .slick-slider .slide img {
    width: auto;
    height: 100%;
  }
}

@media screen and (min-width: 1600px), print {
  .slider .slick-slider .slide img {
    width: 100%;
    height: auto;
  }
}

.slider .slider-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1320px;
  height: 1px;
  margin: auto;
  z-index: 110;
}

.slider .slider-prev,
.slider .slider-next {
  display: block;
  position: absolute;
  top: -20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media screen and (min-width: 768px), print {
  .slider .slider-prev,
  .slider .slider-next {
    top: -35px;
    width: 70px;
    height: 70px;
  }
}

@media screen and (min-width: 1100px), print {
  .slider .slider-prev,
  .slider .slider-next {
    top: -55px;
    width: 110px;
    height: 110px;
  }
}

.slider .slider-prev::before,
.slider .slider-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.slider .slider-prev {
  left: 0;
}

.slider .slider-prev::before {
  left: 30%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.slider .slider-next {
  right: 0;
}

.slider .slider-next::before {
  right: 30%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.slider .slider-dots {
  display: block;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
}

@media screen and (min-width: 1100px), print {
  .slider .slider-dots {
    display: none;
  }
}

.slider .slider-dots ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  overflow: hidden;
}

.slider .slider-dots li {
  position: relative;
  width: 25px;
  height: 40px;
  cursor: pointer;
}

.slider .slider-dots li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
  background-color: #ccc;
}

.slider .slider-dots li.slick-active:before {
  background-color: #70a4d3;
}

.slider .slider-dots button {
  display: none;
}

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

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  color: #4387c5;
  text-align: center;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 990;
}

@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}

.tel-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 26px;
  height: 26px;
  margin: auto;
  background: url(../img/base/tel_blu.svg) center no-repeat;
  background-size: contain;
}

.tel-button::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .2rem;
}

.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 900;
}

@media screen and (min-width: 1100px), print {
  .contact-button {
    display: none;
  }
}

.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;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: #4387c5;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.contact-button a:hover {
  text-decoration: none;
  background-color: #70a4d3;
}

.contact-button a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: .35rem 1rem 0 0;
  background: url(../img/base/mail_wht.svg) center no-repeat;
  background-size: cover;
}

.contact-button span {
  display: block;
  font-size: .95em;
}

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

  ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  padding: 0 1em;
  background: url(../img/base/title.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .page-title {
    padding: 0 1em 90px;
  }
}

.page-title-inner {
  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;
  max-width: 1100px;
  height: 120px;
  margin: auto;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .page-title-inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 200px;
    padding-bottom: 80px;
  }
}

.page-title-name {
  display: block;
  position: relative;
  font-size: 100%;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 0 5px #fff, 0 0 5px #fff;
  z-index: 10;
}

.page-title-name .title {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 1.7em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .page-title-name .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

@media screen and (min-width: 1100px), print {
  .page-title-name .title {
    font-size: 2.3em;
  }
}

.page-title-name .title::after {
  content: attr(data-subtitle);
  display: block;
  margin: .75rem 0 -.75rem;
  font-size: 1.1rem;
  color: #7da71d;
  letter-spacing: .15rem;
}

@media screen and (min-width: 768px), print {
  .page-title-name .title::after {
    margin: .6rem 0 0 1.5rem;
  }
}

@media screen and (min-width: 1100px), print {
  .page-title-name .title::after {
    font-size: 1.4rem;
  }
}

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

  フォーム部品

-------------------------------- */
/* フォーム用テーブル */
.form-table {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  padding-bottom: .5em;
}

@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 2em;
  }
}

.form-table th {
  position: relative;
  vertical-align: top;
  width: 13.3em;
  padding: 1em .8em 1em 1.3em;
  background-color: #F0F0F0;
}

@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: auto;
    margin-bottom: 1em;
    padding: 0 0 .5em;
    border-bottom: 2px solid #4387c5;
    background: none;
  }
}

.form-table td {
  vertical-align: middle;
  font-weight: 500;
  padding: 1em;
}

@media screen and (max-width: 1099.98px) {
  .form-table td {
    padding-right: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0 .5em;
  }
}

.form-table td div {
  font-weight: 500;
}

/* レイアウト用 */
@media screen and (min-width: 768px), print {
  .form-wrap {
    margin-top: -.5em;
    margin-bottom: -.5em;
  }
}

@media screen and (min-width: 768px), print {
  .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1.5em;
  }
  .form-row .form-label {
    max-width: 100%;
    min-width: 6em;
  }
  .form-row .form-group {
    display: block;
    padding-right: 1.5em;
  }
  .form-row .form-group-fluid {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form-row .form-check {
    width: 14em;
  }
}

.form-row + .form-row {
  margin-top: 1em;
}

/* 画像添付 */
.form-area-picture .form-caution {
  margin-top: .5em;
  margin-bottom: .5em;
}

.form-area-picture .form-caution strong {
  display: block;
  position: relative;
  padding-left: 30px;
}

.form-area-picture .form-caution strong::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 2px;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/base/exclamation.svg) center no-repeat;
  background-size: cover;
}

.form-area-picture .form-note-list {
  font-size: .85em;
}

.form-area-picture .form-note-list span {
  color: #96c725;
  font-weight: bold;
}

/* テキスト用 */
.form-text {
  display: inline-block;
  vertical-align: middle;
}

.form-text-top {
  margin-top: .5em;
}

.form-text-right {
  margin-left: .5em;
}

.form-text-bottom {
  margin-bottom: .5em;
}

.form-text-left {
  margin-right: .5em;
}

.form-text-both {
  margin-right: .5em;
  margin-left: .5em;
}

.form-text-small {
  font-size: .9em;
}

.form-text-large {
  font-size: 1.05em;
}

/* 文中注釈用 */
@media screen and (max-width: 767.98px) {
  .form-note {
    margin-top: .5em;
    margin-left: 0;
    font-size: .9em;
  }
}

/* フォーム部品：入力欄 */
.form-control {
  width: 100%;
  height: 2.5em;
  margin-top: -.5em;
  margin-bottom: -.5em;
  padding: 0 .5em;
  color: #333;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #A5A5A5;
  background-color: #fff;
}

.form-control:focus {
  border-color: #999;
  background-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .form-control {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.form-short {
  max-width: 120px;
  text-align: center;
}

.form-middle {
  max-width: 19.5em;
}

@media screen and (max-width: 1099.98px) {
  .form-middle {
    max-width: 100%;
  }
}

.form-low {
  height: 1.6em;
}

@media screen and (max-width: 767.98px) {
  .form-low {
    height: 2.0em;
  }
}

.form-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
}

.form-inline-right {
  margin-left: .5em;
}

.form-inline-left {
  margin-right: .5em;
}

.form-inline-both {
  margin-right: .5em;
  margin-left: .5em;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 8em;
  min-height: 2.5em;
  max-height: 16em;
  padding: .5em .5em 0;
}

.form-textarea-low {
  height: 2.5em;
}

.form-textarea-high {
  height: 10em;
}

/* フォーム部品：入力必須マーク */
.form-title {
  font-weight: 700;
  padding-top: .3em;
  line-height: 31px;
}

.form-title span {
  display: block;
}

@media screen and (max-width: 767.98px) {
  .form-title span {
    display: inline-block;
    vertical-align: middle;
    margin-right: -1em;
    font-size: .8em;
  }
}

.form-icon {
  float: right;
}

.form-icon::before {
  content: "";
  display: block;
  width: 54px;
  margin: auto;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 2em;
  letter-spacing: .02em;
  text-align: center;
  border-radius: 0;
}

@media screen and (max-width: 767.98px) {
  .form-icon::before {
    font-size: .75em;
    line-height: 2.2em;
  }
}

.form-icon-required::before {
  content: "必須";
  color: #fff;
  background-color: #e50a06;
}

@media screen and (max-width: 767.98px) {
  .form-icon-free::before {
    content: "任意";
    color: #fff;
    background-color: #ccc;
  }
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  color: #333;
  background-color: #fff;
}

.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::-ms-expand {
  display: none;
}

.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: 3px;
  right: 15px;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  pointer-events: none;
  background: url(../img/base/select.svg) center no-repeat;
  background-size: cover;
  z-index: 1;
  top: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #464646 transparent transparent transparent;
  background: none;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.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: #70a4d3;
}

.form-box:checked + label::before {
  border-color: #70a4d3;
}

/* フォーム部品：ラジオボタン */
.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: #70a4d3;
  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 #70a4d3;
  border-bottom: 3px solid #70a4d3;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form-box-check:checked + label::after {
  opacity: 1;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block;
  font-size: .85em;
  font-weight: 500;
  color: #c00;
}

.error-message {
  margin-top: .5em;
  margin-bottom: -.7em;
}

@media screen and (min-width: 768px), print {
  .error-message {
    margin-top: 1.2em;
  }
}

.error-message:empty {
  margin-top: 0;
  margin-bottom: 0;
}

.error-message-check {
  margin-top: .5em;
}

.error-message-check span.validate-error:not(:first-child) {
  display: none !important;
}

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

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 78px;
  border: 0;
  border-radius: 0;
  background: none;
  font-weight: normal;
  font-size: 100%;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 10px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  margin: .5em;
  letter-spacing: .013em;
  padding: .63em 3.3em .7em 2em;
  color: #fff;
  line-height: 1.1;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}

.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 12px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-button-send {
  border-color: #00A0EA;
  background: #00A0EA;
}

.form-button-send:hover {
  border-color: #96c725;
  background: #96c725;
}

.form-button-back {
  border-color: #999;
  background: #999;
}

.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}

.form-button-inline {
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: .7em 1em;
  font-size: .9em;
}

.form-button-inline::after {
  display: none;
}

.form-button-search {
  border-color: #ccc;
  background: #ccc;
}

.form-button-search:hover {
  border-color: #999;
  background: #999;
}

.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;
}

.form-long-md {
  height: 5.3em;
}

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

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

.loader.loading {
  opacity: 1;
  pointer-events: auto;
}

.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -140px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #999;
  border-top: 4px solid #70a4d3;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

  アコーディオン・タブ切り替え

-------------------------------- */
.accordion-button {
  display: block;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 1100px), print {
  .accordion-button {
    cursor: default;
  }
}

.accordion-button::after {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: .75em;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (min-width: 1100px), print {
  .accordion-button::after {
    display: none;
  }
}

.accordion-button.active::after {
  top: .7em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .3s;
  transition: max-height .3s;
}

@media screen and (min-width: 1100px), print {
  .accordion-panel {
    max-height: none !important;
  }
}

.accordion-panel.active {
  max-height: none;
  padding-top: .5em;
}

@media screen and (min-width: 1100px), print {
  .accordion-panel.active {
    padding-top: 0;
  }
}

.tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 -.5em 0 0;
}

.tab-label {
  width: 33.33333%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  cursor: pointer;
  margin-bottom: .5em;
  padding: 0 .5em 0 0;
}

.tab-label .label {
  padding-bottom: .5em;
  border-bottom: 1px solid #999;
}

.tab-input {
  display: none;
}

.tab-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.tab-input:checked + .tab-label {
  color: #70a4d3;
}

.tab-input:checked + .tab-label + .tab-content {
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: visible;
}

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

  プリント

-------------------------------- */
@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: 2rem;
    padding-left: 2rem;
  }
}

.section-dummy {
  padding-right: 1em;
  padding-left: 1em;
}

@media screen and (min-width: 1100px), print {
  .section-dummy {
    padding-right: 2em;
    padding-left: 2em;
  }
}

.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}

.section-dummy .inner {
  max-width: none;
  text-align: center;
}

.section-dummy_wide {
  padding-right: 0;
  padding-left: 0;
}

.section-header {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2em;
  line-height: 1.1;
  color: #4387c5;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .section-header {
    margin-bottom: 3em;
  }
}

.section-header::before {
  content: attr(data-subtitle);
  display: block;
  font-weight: 700;
  font-size: 2.8rem;
}

@media screen and (min-width: 768px), print {
  .section-header::before {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 1100px), print {
  .section-header::before {
    font-size: 4.2rem;
  }
}

.section-heading {
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 100%;
  border-top: 1px solid #4387c5;
}

@media screen and (min-width: 1100px), print {
  .section-heading {
    font-size: 1.1em;
  }
}

/* 導入部 */
.crs-intro-section {
  padding: 1em 1em 3em;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-section {
    padding: 3.5em 2em;
  }
}

.crs-intro-section .inner {
  max-width: none;
}

.crs-intro-container {
  max-width: 1600px;
  margin: auto;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1440px), print {
  .crs-intro-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-intro-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

@media screen and (min-width: 1440px), print {
  .crs-intro-main {
    padding-right: 2em;
  }
}

.crs-intro-side {
  max-width: 640px;
  margin: 0 auto 2em;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-side {
    width: 50%;
    max-width: none;
    margin: 0;
    padding: 6.7em 0 0 1.25em;
  }
}

@media screen and (min-width: 1440px), print {
  .crs-intro-side {
    width: 730px;
    padding: 0;
  }
}

.crs-intro-head {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #4387c5;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-head {
    margin-right: -100%;
  }
}

@media screen and (min-width: 1440px), print {
  .crs-intro-head {
    margin-right: 0;
  }
}

.crs-intro-heading {
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.5em;
  color: #4387c5;
}

@media screen and (min-width: 768px), print {
  .crs-intro-heading {
    text-align: center;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-intro-heading {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 1440px), print {
  .crs-intro-heading {
    text-align: left;
  }
}

@media screen and (min-width: 768px), print {
  .crs-intro-heading .br {
    display: block;
  }
}

.crs-intro-img {
  margin: 0 -5px -5px 0;
  overflow: hidden;
}

@media screen and (min-width: 1440px), print {
  .crs-intro-img {
    margin: 0 -10px -10px 0;
  }
}

.crs-intro-img .img {
  float: right;
  padding: 0 5px 5px 0;
}

@media screen and (min-width: 1440px), print {
  .crs-intro-img .img {
    padding: 0 10px 10px 0;
  }
}

.crs-intro-img .img-lg {
  width: 67.2%;
}

.crs-intro-img .img-sm {
  width: 32.8%;
}

.crs-intro-img .img-inner {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.crs-intro-img .img-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  opacity: 1;
  -webkit-transition-property: left, background-color, opacity;
  transition-property: left, background-color, opacity;
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
}

.crs-intro-img::after {
  content: "";
  display: table;
  clear: both;
}

.crs-intro-img img {
  width: 100%;
}

.crs-intro-img.active .img-cover {
  left: 100%;
  opacity: 0;
  background-color: #fff;
}

.crs-intro-description {
  line-height: 1.6;
  font-size: .95em;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-description {
    font-size: 1em;
  }
}

.crs-intro-more {
  padding-top: 1.25em;
}

.crs-intro-more .more {
  margin-top: 0;
}

@media screen and (min-width: 1100px), print {
  .crs-intro-more .more {
    text-align: left;
  }
}

/* お知らせ */
.crs-news-section {
  padding: 3em 1em;
  background: url(../img/top/bg1.jpg) no-repeat center;
  background-size: cover;
}

@media screen and (min-width: 1100px), print {
  .crs-news-section {
    padding: 3em 2em 16em;
  }
}

.crs-news-section .section-header {
  color: #5f7d15;
}

.crs-news-section .section-heading {
  padding-top: 0;
  border-top: none;
}

.crs-news-section .news-date {
  color: #5f7d15;
}

.crs-news-section .news-topics:last-of-type {
  border-bottom: none;
}

.crs-news-container {
  padding: 1rem 0;
  border-radius: .75rem;
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 1100px), print {
  .crs-news-container {
    padding: 2rem 0;
  }
}

.crs-news-more {
  padding: 1rem 1rem 0;
}

@media screen and (min-width: 640px), print {
  .crs-news-more {
    padding: 1rem 2rem 0;
  }
}

/* 採用情報特設ページはこちら */
.crs-recruit-section {
  padding: 3em 1em 0;
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-section {
    margin-top: -13em;
    padding: 0 2em 3em;
  }
}

.crs-recruit-container {
  position: relative;
  max-width: 538px;
  margin: auto;
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 146px;
    max-width: 1600px;
  }
}

.crs-recruit-main {
  padding: 1em;
  color: #fff;
  background-color: #42b1d0;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding: 1.25em 1.25em 0;
    background-color: rgba(66, 177, 208, 0.9);
  }
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-side {
    width: 538px;
  }
}

.crs-recruit-heading {
  display: block;
  position: relative;
  height: 100%;
  font-size: 100%;
  background-color: #fff;
  overflow: hidden;
}

.crs-recruit-heading::before {
  content: "";
  display: block;
  padding-top: 27.1375%;
}

.crs-recruit-heading img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.crs-recruit-heading a {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.crs-recruit-heading a:hover {
  opacity: .75;
}

.crs-recruit-description {
  line-height: 1.5;
  font-size: .85em;
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-description {
    font-size: .95em;
  }
}

.crs-recruit-description p:first-of-type {
  margin-bottom: .5em;
}

.crs-recruit-description a {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2em;
  color: #fff;
}

@media screen and (min-width: 1100px), print {
  .crs-recruit-description a {
    font-size: 1.5em;
  }
}

/* 業務案内 */
.crs-service-section .inner {
  max-width: none;
}

.crs-service-container {
  position: relative;
  padding: 3em 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .crs-service-container {
    padding: 3em 2em;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-service-content {
    max-width: 1100px;
    margin: auto;
  }
}

.crs-service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 -1em -2em 0;
}

.crs-service-item {
  width: 100%;
  padding: 0 1em 2em 0;
}

@media screen and (min-width: 576px), print {
  .crs-service-item {
    width: 50%;
  }
}

.crs-service-inner {
  display: block;
  position: relative;
  height: 100%;
}

.crs-service-inner::before {
  content: "";
  display: block;
  padding-top: 26.25%;
}

.crs-service-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: .5em;
  padding: .35em 0;
  border-bottom: 1px solid #ddd;
}

.crs-service-heading {
  line-height: 1;
  font-weight: 400;
  font-size: 100%;
}

@media screen and (min-width: 360px), print {
  .crs-service-heading {
    font-size: 1.1em;
  }
}

@media screen and (min-width: 576px), print {
  .crs-service-heading {
    font-size: .9em;
  }
}

@media screen and (min-width: 768px), print {
  .crs-service-heading {
    font-size: 100%;
  }
}

@media screen and (min-width: 992px), print {
  .crs-service-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-service-heading {
    font-size: 1.3em;
  }
}

.crs-service-heading::after {
  content: attr(data-subtitle);
  display: block;
  margin: .5rem 0 0 .25rem;
  font-size: 1rem;
  color: #4387c5;
  letter-spacing: .1rem;
}

@media screen and (min-width: 992px), print {
  .crs-service-heading::after {
    margin: .25rem 0 0 1rem;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-service-heading::after {
    font-size: 1.15rem;
  }
}

.crs-service-lead {
  margin-bottom: .5em;
  line-height: 1.3;
}

.crs-service-lead p {
  font-weight: 700;
  font-size: 1.05em;
  color: #7da71d;
}

@media screen and (min-width: 1100px), print {
  .crs-service-lead p {
    font-size: 1.15em;
  }
}

.crs-service-description {
  line-height: 1.5;
  font-size: .95em;
}

.crs-service-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
  overflow: hidden;
}

.crs-service-img::before {
  content: "";
  display: block;
  padding-top: 26.415%;
}

.crs-service-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.crs-service-more {
  margin-left: auto;
}

.crs-service-more .link-button {
  position: static;
  font-size: .9em;
  padding-right: .75em;
}

@media screen and (max-width: 1099.98px) {
  .crs-service-more .link-button {
    min-width: 6.5em;
    font-size: 100%;
  }
}

.crs-service-more .link-button::after {
  position: static;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 768px), print {
  .crs-service-more .link-button:hover img {
    opacity: .75;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.crs-service-primary {
  background-image: url(../img/top/bg2.jpg);
}

.crs-service-secondary {
  padding-bottom: 11em;
  background-color: #e1f2fa;
}

@media screen and (min-width: 1100px), print {
  .crs-service-secondary {
    padding-bottom: 5em;
  }
}

.crs-service-secondary::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 325px;
  background: url(../img/top/bg3.jpg) center no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .crs-service-secondary::before {
    width: 514.28571px;
    height: 371.42857px;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-service-secondary::before {
    width: 720px;
    height: 520px;
  }
}

.crs-service-secondary .crs-service-heading::after {
  color: #7da71d;
}

.crs-service-izakaya {
  width: 100%;
}

.crs-service-izakaya .crs-service-inner {
  max-width: 480px;
  margin: auto;
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: none;
    margin: 0 -1em -1em 0;
  }
}

.crs-service-izakaya .crs-service-inner::before {
  padding-top: 28.50%;
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-inner::before {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-main {
    width: 50%;
    padding: 0 1em 1em 0;
  }
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-side {
    width: 50%;
    padding: 0 1em 1em 0;
  }
}

.crs-service-izakaya .crs-service-head {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-head::before {
    content: "";
    display: block;
    padding-top: 28.50%;
  }
}

.crs-service-izakaya .crs-service-heading {
  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: 2rem 0;
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-heading {
    padding: .75rem 0 0;
  }
}

.crs-service-izakaya .crs-service-heading::after {
  margin: .25rem 0 0 1rem;
}

.crs-service-izakaya .crs-service-more {
  margin-top: 1em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-more {
    text-align: left;
  }
}

@media screen and (min-width: 768px), print {
  .crs-service-izakaya .crs-service-img {
    width: calc( 50% - 1em);
  }
}

.crs-service-izakaya .crs-service-img::before {
  padding-top: 28.50%;
}

/* コンテンツ一覧 */
.crs-menu-section {
  padding: 1em;
  background-color: #d4e8fa;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .crs-menu-section {
    padding: 2em;
  }
}

.crs-menu-section .inner {
  max-width: none;
}

.crs-menu-container {
  max-width: 1100px;
  margin: auto;
}

.crs-menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 -.5em -1.25em 0;
}

.crs-menu-item {
  width: 50%;
  padding: 0 .5em 1.25em 0;
}

@media screen and (min-width: 768px), print {
  .crs-menu-item {
    width: 33.33333%;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-menu-item {
    width: 25%;
  }
}

.crs-menu-inner {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.crs-menu-inner:hover .crs-menu-img img {
  opacity: .75;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.crs-menu-img {
  display: block;
  position: relative;
  margin-bottom: .75rem;
  background-color: #fff;
  overflow: hidden;
}

.crs-menu-img::before {
  content: "";
  display: block;
  padding-top: 26.25%;
}

.crs-menu-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.crs-menu-more a {
  color: #333;
}

.crs-menu-more a:hover {
  color: #4387c5;
  text-decoration: none;
}

.crs-menu-more a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 20;
}

.crs-menu-more span {
  display: block;
  line-height: 1.1;
  font-size: .75em;
  text-align: center;
  z-index: 10;
}

@media screen and (min-width: 480px), print {
  .crs-menu-more span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 640px), print {
  .crs-menu-more span {
    font-size: .9em;
  }
}

.crs-menu-more span::after {
  content: attr(data-subtitle);
  display: block;
  margin: .25rem 0 0;
  font-weight: 100;
  font-size: .9rem;
  color: #4387c5;
  letter-spacing: .1rem;
}

@media screen and (min-width: 480px), print {
  .crs-menu-more span::after {
    margin: .25rem 0 0 1rem;
  }
}

@media screen and (min-width: 1100px), print {
  .crs-menu-more span::after {
    font-size: 1rem;
  }
}

.crs-menu-izakaya .crs-menu-img img {
  top: -4%;
}

/* アニメーション */
.anim-item {
  opacity: 0;
}

.anim-item.active {
  opacity: 1;
}

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

  idxx　お知らせ

-------------------------------- */
.news-area {
  position: relative;
}

.news-area .inner {
  padding: 0;
  line-height: 1.5;
}

.news-area .news-heading {
  margin-bottom: 0;
}

.news-area .news-list {
  padding-bottom: 2em;
}

.news-detail .inner {
  line-height: 1.5;
}

.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}

.news-text {
  margin-top: .5em;
  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;
  text-align: center;
  border-top: 1px dotted #999;
}

/* お知らせ一覧 */
.news-list .news-topics {
  border-bottom: 1px dotted #999;
}

.news-list .news-link {
  display: block;
  position: relative;
  padding: 1rem;
  line-height: 1.4;
  color: #333;
}

@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 2rem;
  }
}

.news-list .news-link:hover {
  text-decoration: none;
  color: #4387c5;
}

.news-list .news-link:hover .news-date {
  color: #4387c5;
}

.news-list .news-link:hover .news-title {
  text-decoration: underline;
}

.news-list .news-date {
  font-size: .9em;
}

@media screen and (min-width: 640px), print {
  .news-list .news-date {
    width: 8em;
    font-size: 1em;
  }
}

.news-list .news-date span {
  font-weight: 500;
}

.news-list .news-title {
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (min-width: 640px), print {
  .news-list .news-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.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: 60% auto;
  overflow: hidden;
}

.news-list .news-img span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.news-list .news-img span:empty {
  display: none;
}

.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%);
}

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

  id02　会社概要

-------------------------------- */
/* 社訓 */
@media screen and (min-width: 992px), print {
  .company-motto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.company-motto-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 992px), print {
  .company-motto-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    display: block;
    padding-right: 2em;
  }
}

.company-motto-side {
  margin-bottom: 1em;
}

@media screen and (min-width: 992px), print {
  .company-motto-side {
    width: 50%;
  }
}

@media screen and (min-width: 1100px), print {
  .company-motto-side {
    width: 514px;
  }
}

.company-motto-list li:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 1100px), print {
  .company-motto-list li:not(:last-child) {
    margin-bottom: 1.5em;
  }
}

.company-motto-list .motto {
  display: block;
  margin-left: 2em;
  text-indent: -2em;
}

.company-motto-img {
  text-align: center;
}

/* 会社概要 */
.company-overview-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.company-overview-table-heading {
  font-size: 1.8rem;
  text-align: center;
  color: #09f;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  line-height: 1.2;
  margin-bottom: 1em;
}

.company-overview-table tr {
  display: table;
  width: 100%;
}

.company-overview-table tr:not(:last-child) {
  margin-bottom: 1px;
}

.company-overview-table th {
  width: 8em;
  background-color: #B4D8F8;
}

@media screen and (max-width: 639.98px) {
  .company-overview-table th {
    width: 100%;
  }
}

.company-overview-table td {
  margin-left: 1px;
  display: inline-block;
  width: 100%;
  border: 1px solid #B4D8F8;
}

@media screen and (max-width: 639.98px) {
  .company-overview-table td {
    margin-left: 0;
    margin-top: 1px;
  }
}

.company-overview-table th, .company-overview-table td {
  vertical-align: middle;
  color: #000;
  padding: 1em;
}

@media screen and (max-width: 639.98px) {
  .company-overview-table th, .company-overview-table td {
    display: block;
    padding: .5em;
  }
}

.company-overview ul.company-overview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company-overview ul.company-overview-list li {
  line-height: 1.8;
  margin-right: 1em;
}

.company-overview ul.company-overview-list li::before {
  background-color: #B4D8F8;
  top: .79em;
}

.company-overview ul.company-overview-list.__height1 {
  max-height: 70px;
  max-width: 550px;
}

@media screen and (max-width: 639.98px) {
  .company-overview ul.company-overview-list.__height1 {
    max-height: none;
  }
}

.company-overview ul.company-overview-list.__height3 {
  max-height: 45em;
  max-width: 900px;
}

@media screen and (max-width: 1099.98px) {
  .company-overview ul.company-overview-list.__height3 {
    max-height: none;
  }
}

.company-overview ul.company-overview-list.__height4 {
  max-height: 11em;
  max-width: 900px;
  margin-bottom: .7em;
}

@media screen and (max-width: 1099.98px) {
  .company-overview ul.company-overview-list.__height4 {
    max-height: none;
  }
}

.company-overview ul.company-overview-list.__height5 {
  max-height: 160px;
}

@media screen and (max-width: 1099.98px) {
  .company-overview ul.company-overview-list.__height5 {
    max-height: none;
  }
}

.company-overview ul.company-overview-second-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: number 0;
}

.company-overview ul.company-overview-second-list li {
  position: relative;
  line-height: 1.6;
  margin-right: 1em;
  padding-left: 1.5em;
}

.company-overview ul.company-overview-second-list li::before {
  content: counter(number) ".";
  counter-increment: number 1;
  display: block;
  background: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.company-overview ul.company-overview-second-list.__height2 {
  max-height: 160px;
  max-width: 850px;
}

@media screen and (max-width: 1099.98px) {
  .company-overview ul.company-overview-second-list.__height2 {
    max-height: none;
  }
}

.company-archive-txt {
  line-height: 1.6;
}

.company-archive-more {
  margin-top: 1.5em;
}

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

  id03　日常清掃・定期清掃

-------------------------------- */
/* 日常清掃や定期清掃を入れるメリット */
.clean-merit dl {
  margin-top: 1em;
}

.clean-merit dt {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.3;
  font-size: 1.25em;
  color: #4387c5;
}

@media screen and (min-width: 1100px), print {
  .clean-merit dt {
    font-size: 1.5em;
  }
}

.clean-merit dt::before {
  content: "";
  display: block;
  position: absolute;
  top: .1em;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/pages/clean/check.svg) center no-repeat;
  background-size: cover;
}

.clean-merit dd {
  margin-top: .5em;
  line-height: 1.5;
}

.clean-merit dd:not(:last-child) {
  margin-bottom: 1.5em;
}

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

  id04　特殊清掃

-------------------------------- */
/* 日常清掃や定期清掃とは異なり、部分的な集中清掃・洗浄が必要な場所があります。 */
.special-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .special-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.special-intro-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-bottom: 1em;
  line-height: 1.55;
}

@media screen and (min-width: 992px), print {
  .special-intro-main {
    margin-right: 1em;
    margin-bottom: 0;
  }
}

.special-intro .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .special-intro .br {
    display: block;
  }
}

/* 各種清掃業務 */
.special-service-wrap:not(:last-child) {
  margin-bottom: 4em;
}

.special-service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
}

@media screen and (max-width: 991.98px) {
  .special-service-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.special-service-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 1em;
}

@media screen and (max-width: 991.98px) {
  .special-service-main {
    margin-left: 0;
    margin-bottom: 1.5em;
  }
}

.special-service-heading {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  -webkit-font-kerning: 500;
          font-kerning: 500;
  padding-left: 1.1em;
  margin-bottom: .8em;
}

.special-service-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/pages/special/special-icon1.png") no-repeat center/cover;
}

.special-service-txt {
  line-height: 1.55;
}

.special-service-catch {
  text-align: center;
}

.special-service-catch-wrap {
  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;
}

@media screen and (max-width: 479.98px) {
  .special-service-catch-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -.5em -.5em 0;
  }
}

.special-service-catch-item {
  max-width: 120px;
  width: 100%;
  padding: .55em .5em .85em .5em;
  background-color: #4388C5;
  border-radius: 15px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 767.98px) {
  .special-service-catch-item {
    font-size: 1.4rem;
    max-width: 90px;
  }
}

@media screen and (max-width: 479.98px) {
  .special-service-catch-item {
    max-width: none;
    width: calc(50% - 7px);
    margin-bottom: .5em;
  }
}

.special-service-catch-item:not(:last-child) {
  margin-right: 2em;
}

@media screen and (max-width: 767.98px) {
  .special-service-catch-item:not(:last-child) {
    margin-right: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .special-service-catch-item:not(:last-child) {
    margin-right: .5em;
  }
}

@media screen and (max-width: 479.98px) {
  .special-service-catch-item:last-child {
    margin-right: .5em;
  }
}

.special-service-catch-item span {
  display: block;
  font-size: 3rem;
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  .special-service-catch-item span {
    font-size: 2rem;
  }
}

.special-service-subheading {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1em;
}

@media screen and (max-width: 767.98px) {
  .special-service-subheading {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 639.98px) {
  .special-service-subheading {
    font-size: 1.6rem;
  }
}

.special-service-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 2em;
  margin: 0 -.5em -.5em 0;
}

@media screen and (max-width: 1099.98px) {
  .special-service-photo {
    padding: 0;
  }
}

@media screen and (max-width: 479.98px) {
  .special-service-photo {
    margin: 0 0 -.5em 0;
  }
}

.special-service-photo-heading {
  margin-bottom: .5em;
  line-height: 1.2;
  font-size: 100%;
}

@media screen and (min-width: 1100px), print {
  .special-service-photo-heading {
    padding: 0 1.5em;
    font-size: 1.2em;
  }
}

.special-service-img {
  width: calc(33.33333% - 8px);
  margin: 0 .5em .5em 0;
}

@media screen and (max-width: 767.98px) {
  .special-service-img {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 479.98px) {
  .special-service-img {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}

.special-service-img img {
  width: 100%;
  height: auto;
}

.special-service .special-service-list {
  margin-bottom: 1em;
}

.special-service .special-service-list li::before {
  background: #74B6F2;
  top: .62em;
}

.special-service .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .special-service .br {
    display: block;
  }
}

/* 作業風景 */
.special-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}

@media screen and (max-width: 479.98px) {
  .special-photo {
    margin: 0 0 -.5em 0;
  }
}

.special-photo-item {
  margin: 0 1em 1em 0;
  width: calc(25% - 16px);
}

@media screen and (max-width: 767.98px) {
  .special-photo-item {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 479.98px) {
  .special-photo-item {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}

.special-photo-item img {
  width: 100%;
  height: auto;
}

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

  id05　建築美装・その他軽作業

-------------------------------- */
/* 建築現場内での仕上げ材の養生、片付・清掃、物件引き渡し前のクリーニングを行います。 */
.construction-intro {
  line-height: 1.55;
}

/* 建築美装とは */
.construction-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .construction-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.construction-about-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-bottom: 1em;
  line-height: 1.55;
}

@media screen and (min-width: 992px), print {
  .construction-about-main {
    margin-right: 1em;
    margin-bottom: 0;
  }
}

.construction-about .construction-about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1em 0 .5em 0;
}

.construction-about .construction-about-list li {
  margin-right: .5em;
  margin-bottom: .5em;
}

.construction-about .construction-about-list li::before {
  background-color: #74B6F2;
  top: .63em;
}

.construction-about .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .construction-about .br {
    display: block;
  }
}

/* 共通 */
.construction-wrap:not(:last-child) {
  margin-bottom: 4em;
}

.construction-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2em;
}

@media screen and (max-width: 991.98px) {
  .construction-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.construction-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 1em;
}

@media screen and (max-width: 991.98px) {
  .construction-main {
    margin-left: 0;
    margin-bottom: 1.5em;
  }
}

.construction-heading {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  -webkit-font-kerning: 500;
          font-kerning: 500;
  padding-left: 1.1em;
  margin-bottom: .8em;
}

.construction-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/pages/special/special-icon1.png") no-repeat center/cover;
}

.construction-txt {
  line-height: 1.55;
}

.construction-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 2em;
  margin: 0 -.5em -.5em 0;
}

@media screen and (max-width: 1099.98px) {
  .construction-photo {
    padding: 0;
  }
}

@media screen and (max-width: 479.98px) {
  .construction-photo {
    margin: 0 0 -.5em 0;
  }
}

.construction-img {
  width: calc(33.33333% - 8px);
  margin: 0 .5em .5em 0;
}

@media screen and (max-width: 767.98px) {
  .construction-img {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 479.98px) {
  .construction-img {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}

.construction-img img {
  width: 100%;
  height: auto;
}

.construction .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .construction .br {
    display: block;
  }
}

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

  id06　ホテル客室清掃

-------------------------------- */
/* ルームクリーニングからセッティングまできれいに客室を仕上げます。 */
.hotel-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .hotel-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hotel-intro-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-bottom: 1em;
  line-height: 1.55;
}

@media screen and (min-width: 992px), print {
  .hotel-intro-main {
    margin-right: 1em;
    margin-bottom: 0;
  }
}

.hotel-intro-main p:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 992px), print {
  .hotel-intro-main p:not(:last-child) {
    margin-bottom: 1.5em;
  }
}

.hotel-intro .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .hotel-intro .br {
    display: block;
  }
}

/* 各種清掃業務 */
.hotel-service-wrap {
  margin: 0 -1em -2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 639.98px) {
  .hotel-service-wrap {
    margin: 0 0 -2em 0;
  }
}

.hotel-service-item {
  width: calc(50% - 16px);
  margin: 0 1em 2em 0;
}

@media screen and (max-width: 639.98px) {
  .hotel-service-item {
    width: 100%;
    margin: 0 0 2em 0;
  }
}

.hotel-service-item img {
  width: 100%;
  height: auto;
}

.hotel-service-description {
  line-height: 1.55;
  margin-top: 1em;
}

/* 当社は外国人技能実習制度を応援しています */
.hotel-foreigner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .hotel-foreigner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hotel-foreigner-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: 1em;
}

@media screen and (max-width: 991.98px) {
  .hotel-foreigner-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}

.hotel-foreigner-txt {
  line-height: 1.55;
  margin-bottom: 2em;
}

.hotel-foreigner-txt p:not(:last-child) {
  margin-bottom: 1em;
}

.hotel-foreigner-img:first-child {
  margin-bottom: 1em;
}

.hotel-foreigner-define dt {
  color: #fff;
  background-color: #4388C5;
  font-weight: 500;
  text-align: center;
  max-width: 107px;
  width: 100%;
  padding: .45em;
  margin-bottom: 1em;
}

.hotel-foreigner-define dd {
  padding-left: 1em;
}

@media screen and (max-width: 479.98px) {
  .hotel-foreigner-define dd {
    padding-left: 0;
  }
}

.hotel-foreigner-define dd .hotel-foreigner-list li::before {
  top: .63em;
  background-color: #4388C5;
}

.hotel-foreigner-define:not(:last-child) {
  margin-bottom: 2em;
}

/* たくさんの外国人技能実習生が現場で活躍しています */
.hotel-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2em -2em 0;
}

@media screen and (max-width: 479.98px) {
  .hotel-photo {
    margin: 0 0 -1em 0;
  }
}

.hotel-photo-item {
  margin: 0 2em 2em 0;
  width: calc(25% - 32px);
}

@media screen and (max-width: 767.98px) {
  .hotel-photo-item {
    width: calc(50% - 32px);
  }
}

@media screen and (max-width: 479.98px) {
  .hotel-photo-item {
    width: 100%;
    margin: 0 0 1em 0;
  }
}

.hotel-photo-item img {
  width: 100%;
  height: auto;
}

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

  id07　クロス再生事業

-------------------------------- */
/* クロス再生とは何か */
.cross-about-txt {
  line-height: 1.55;
  margin-bottom: 1.5em;
}

.cross-about-item:not(:last-child) {
  margin-bottom: 2em;
}

.cross-about-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  border: 1px solid #4388C5;
}

.cross-about-table thead th {
  background-color: #88B4DB;
}

@media screen and (max-width: 767.98px) {
  .cross-about-table thead th {
    font-size: 1.3rem;
  }
}

.cross-about-table thead .table-accent {
  font-weight: 500;
}

.cross-about-table tbody th {
  background-color: #eee;
}

@media screen and (max-width: 767.98px) {
  .cross-about-table tbody th {
    font-size: 1.3rem;
  }
}

.cross-about-table tbody .table-accent {
  background-color: #FFDBDB;
  font-weight: 700;
}

.cross-about-table th, .cross-about-table td {
  border: 1px solid #4388C5;
  vertical-align: middle;
  padding: .35em;
  font-size: 1.8rem;
}

@media screen and (max-width: 767.98px) {
  .cross-about-table th, .cross-about-table td {
    font-size: 1.4rem;
    padding: .35em .1em;
  }
}

.cross-about .accent1 {
  font-size: 1.8rem;
  color: #4388C5;
  font-weight: 500;
  margin: 1em 0;
}

.cross-about .accent2 {
  color: #E40113;
}

.cross-about .accent3 {
  color: #E40113;
  font-weight: 500;
}

.cross-about .accent4 {
  color: #FF7F00;
  font-weight: 500;
}

.cross-about .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .cross-about .br {
    display: block;
  }
}

.cross-heading {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 1.1em;
  margin-bottom: .8em;
  color: #4388C5;
}

.cross-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/pages/special/special-icon1.png") no-repeat center/cover;
}

.cross-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991.98px) {
  .cross-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cross-img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

@media screen and (max-width: 991.98px) {
  .cross-img {
    text-align: center;
  }
}

.cross-img:not(:last-child) {
  padding-right: 3.5em;
}

@media screen and (max-width: 991.98px) {
  .cross-img:not(:last-child) {
    padding-right: 0;
    padding-bottom: 3.5em;
  }
}

.cross-img:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 32%;
  right: 16px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #4388C5;
}

@media screen and (max-width: 991.98px) {
  .cross-img:not(:last-child)::before {
    border-top: 20px solid #4388C5;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    right: auto;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
}

.cross-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 991.98px) {
  .cross-img img {
    width: auto;
  }
}

.cross-img-txt {
  line-height: 1.5;
  text-align: center;
  padding: .5em 0 0 0;
}

/* クロス再生の施工事例 */
.cross-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2em -2em 0;
}

@media screen and (max-width: 639.98px) {
  .cross-example {
    margin: 0 0 -2em 0;
  }
}

.cross-example-item {
  width: calc(50% - 32px);
  margin: 0 2em 2em 0;
}

@media screen and (max-width: 639.98px) {
  .cross-example-item {
    margin: 0 0 2em 0;
    width: 100%;
  }
}

.cross-example-heading {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 1.1em;
  margin-bottom: .8em;
}

.cross-example-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/pages/special/special-icon1.png") no-repeat center/cover;
}

.cross-trouble-movie {
  text-align: center;
  margin: 2em 0;
}

.cross-trouble-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-wrap:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cross-trouble-wrap:first-child .cross-trouble-main {
  margin-right: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-wrap:first-child .cross-trouble-main {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-wrap:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cross-trouble-wrap:nth-child(2) .cross-trouble-main {
  margin-left: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-wrap:nth-child(2) .cross-trouble-main {
    margin-left: 0;
    margin-bottom: 1.5em;
  }
}

.cross-trouble-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.cross-trouble-txt {
  margin-bottom: 1em;
}

.cross-trouble-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  margin: auto;
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-foot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cross-trouble-foot-side {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 230px;
  height: 230px;
  border-radius: 100%;
  background-color: #4388C5;
  color: #fff;
  margin-right: -3.7em;
  z-index: 1;
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-side {
    width: 165px;
    height: 165px;
  }
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-foot-side {
    margin-right: 0;
    margin-bottom: -4.5em;
  }
}

.cross-trouble-foot-side span {
  font-size: 2.2rem;
  font-weight: 500;
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-side span {
    font-size: 1.6rem;
  }
}

.cross-trouble-foot-header {
  margin-bottom: .5em;
  line-height: 1.5;
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-foot-header {
    text-align: center;
  }
}

.cross-trouble-foot-header p {
  font-size: 2rem;
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-header p {
    font-size: 1.6rem;
  }
}

.cross-trouble-foot-heading {
  display: inline-block;
  font-size: 2.4rem;
  padding-bottom: .3em;
  border-bottom: 4px dotted #4388C5;
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-heading {
    font-size: 1.8rem;
    border-bottom: 2px dotted #4388C5;
  }
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-foot-txt {
    text-align: center;
  }
}

.cross-trouble-foot-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background-color: #F1F1F1;
  padding: 1em 1em 1em 5em;
}

@media screen and (max-width: 991.98px) {
  .cross-trouble-foot-main {
    padding: .5em 1em .5em 5em;
  }
}

@media screen and (max-width: 767.98px) {
  .cross-trouble-foot-main {
    padding: 5em .5em 1em .5em;
  }
}

.cross-trouble .accent1 {
  display: inline-block;
  font-weight: 500;
  border-bottom: 1px solid #FF0000;
  color: #FF0000;
}

.cross-trouble .accent2 {
  font-weight: 500;
  color: #0079E6;
}

.cross-trouble .accent3 {
  font-weight: 500;
}

.cross-trouble .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .cross-trouble .br {
    display: block;
  }
}

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

  id08　リペア事業

-------------------------------- */
/* リペア事業 */
.repair-intro-img {
  margin-top: 1em;
}

@media screen and (min-width: 1100px), print {
  .repair-intro-img {
    margin-right: -2rem;
    margin-left: -2rem;
  }
}

.repair-intro-img img {
  height: auto;
}

/* リペア事業一覧 */
.repair-service {
  margin-bottom: 3em;
}

@media screen and (min-width: 1100px), print {
  .repair-service {
    margin-right: -2rem;
    margin-left: -2rem;
  }
}

.repair-service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 576px), print {
  .repair-service-container {
    margin: 0 -2px 0 0;
  }
}

.repair-service-item {
  width: 100%;
  margin-top: 1em;
}

@media screen and (min-width: 576px), print {
  .repair-service-item {
    width: 33.33333%;
    margin: 0 -1px 0 0;
    padding: 0;
  }
}

.repair-service-inner {
  height: 100%;
  border: 1px solid #ededed;
}

.repair-service-img {
  position: relative;
  margin: -1px -1px 0;
  overflow: hidden;
}

.repair-service-img::before {
  content: "";
  display: block;
  padding-top: 34%;
}

@media screen and (min-width: 576px), print {
  .repair-service-img::before {
    display: none;
  }
}

.repair-service-img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 576px), print {
  .repair-service-img img {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.repair-service-head {
  text-align: center;
  background-color: #efefef;
}

.repair-service-heading {
  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: .75em 0;
  line-height: 1.2;
  font-size: 100%;
}

@media screen and (min-width: 768px), print {
  .repair-service-heading {
    font-size: 1.15em;
  }
}

.repair-service-heading::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: .05em .35em 0 0;
  background: url(../img/pages/special/special-icon1.png) no-repeat center/cover;
}

.repair-service-body {
  padding: 1em .75em;
  line-height: 1.5;
  font-size: .9em;
}

@media screen and (min-width: 768px), print {
  .repair-service-body {
    font-size: 1em;
  }
}

/* 補修工事までの流れ */
@media screen and (min-width: 1100px), print {
  .repair-flow {
    margin-right: -2rem;
    margin-left: -2rem;
  }
}

@media screen and (min-width: 768px), print {
  .repair-flow-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px), print {
  .repair-flow-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

@media screen and (min-width: 768px), print {
  .repair-flow-side {
    width: 25%;
  }
}

@media screen and (min-width: 1100px), print {
  .repair-flow-side {
    width: 300px;
  }
}

.repair-flow-heading {
  width: 240px;
  margin: 0 auto 1.5em;
  padding: .75em 1.25em;
  line-height: 1.2;
  font-size: 100%;
  background-color: #efefef;
}

@media screen and (min-width: 768px), print {
  .repair-flow-heading {
    display: inline-block;
    width: auto;
    margin: 0 0 1.5em;
  }
}

.repair-flow-heading span {
  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;
  font-size: 100%;
}

@media screen and (min-width: 768px), print {
  .repair-flow-heading span {
    font-size: 1.15em;
  }
}

.repair-flow-heading span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: .05em .35em 0 0;
  background: url(../img/pages/special/special-icon1.png) no-repeat center/cover;
}

.repair-flow-list {
  counter-reset: repair_flow;
}

@media screen and (min-width: 1100px), print {
  .repair-flow-list {
    padding-left: 2em;
  }
}

.repair-flow-list li {
  position: relative;
  padding: .6em 0 0 3.3em;
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .repair-flow-list li {
    min-height: 2.6em;
  }
}

@media screen and (min-width: 1100px), print {
  .repair-flow-list li {
    min-height: 3em;
    padding: .7em 0 0 4em;
  }
}

.repair-flow-list li:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px), print {
  .repair-flow-list li:not(:last-child) {
    margin-bottom: 25px;
  }
}

.repair-flow-list li:last-child .list-line {
  display: none;
}

.repair-flow-list .list-number {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6em;
  height: 2.6em;
  border-radius: 100%;
  background-color: #65b6fe;
}

@media screen and (min-width: 1100px), print {
  .repair-flow-list .list-number {
    width: 3em;
    height: 3em;
  }
}

.repair-flow-list .list-number::before {
  counter-increment: repair_flow;
  content: counter(repair_flow);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 1100px), print {
  .repair-flow-list .list-number::before {
    font-size: 1.8em;
  }
}

.repair-flow-list .list-line {
  display: none;
}

@media screen and (min-width: 768px), print {
  .repair-flow-list .list-line {
    display: block;
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 2.6em;
    height: 25px;
  }
}

@media screen and (min-width: 1100px), print {
  .repair-flow-list .list-line {
    width: 3em;
  }
}

.repair-flow-list .list-line::before, .repair-flow-list .list-line::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 100%;
  background-color: #d6d6d6;
}

.repair-flow-list .list-line::before {
  top: -8px;
}

.repair-flow-list .list-line::after {
  bottom: -8px;
}

.repair-flow-img {
  max-width: 240px;
  margin: auto;
}

@media screen and (min-width: 768px), print {
  .repair-flow-img {
    max-width: none;
    margin: 0;
  }
}

.repair-flow-img img {
  width: 100%;
  height: auto;
}

/* 施工事例 */
.repair-case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1em -1em 0;
}

@media screen and (min-width: 480px), print {
  .repair-case-list {
    margin: 0 -.5em -.5em 0;
  }
}

@media screen and (min-width: 768px), print {
  .repair-case-list {
    margin: 0 -1em -1em 0;
  }
}

.repair-case-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0 1em 1em 0;
}

@media screen and (min-width: 480px), print {
  .repair-case-item {
    padding: 0 .5em .5em 0;
  }
}

@media screen and (min-width: 768px), print {
  .repair-case-item {
    padding: 0 1em 1em 0;
  }
}

.repair-case-img {
  position: relative;
  width: 50%;
}

.repair-case-img img {
  width: 100%;
  height: auto;
}

.repair-case-caption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: .35em 1em;
  font-size: .95em;
  color: #fff;
  letter-spacing: .05em;
  background-color: #000;
}

@media screen and (min-width: 1100px), print {
  .repair-case-caption {
    font-size: 1.05em;
  }
}

.repair-case-caption.before {
  background-color: rgba(51, 51, 51, 0.77);
}

.repair-case-caption.after {
  background-color: rgba(101, 183, 254, 0.77);
}

.repair-case-primary {
  width: 100%;
}

.repair-case-primary .repair-case-img {
  width: 100%;
}

@media screen and (min-width: 480px), print {
  .repair-case-primary .repair-case-img {
    width: 50%;
  }
}

@media screen and (min-width: 480px), print {
  .repair-case-primary .repair-case-before {
    border-right: 0.25em solid #fff;
  }
}

@media screen and (min-width: 768px), print {
  .repair-case-primary .repair-case-before {
    border-width: .5em;
  }
}

@media screen and (min-width: 480px), print {
  .repair-case-primary .repair-case-after {
    border-left: 0.25em solid #fff;
  }
}

@media screen and (min-width: 768px), print {
  .repair-case-primary .repair-case-after {
    border-width: .5em;
  }
}

@media screen and (min-width: 480px), print {
  .repair-case-secondary {
    width: 50%;
  }
}

/* 検査業務 */
@media screen and (min-width: 768px), print {
  .repair-scan-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.repair-scan-container:not(:last-child) {
  margin-bottom: 2em;
}

.repair-scan-main {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 768px), print {
  .repair-scan-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-bottom: 0;
    padding-right: 1.5em;
  }
}

@media screen and (min-width: 768px), print {
  .repair-scan-side {
    width: 30%;
  }
}

@media screen and (min-width: 1100px), print {
  .repair-scan-side {
    width: 415px;
  }
}

.repair-scan-heading:not(:first-child) {
  margin-top: 1.25em;
}

@media screen and (min-width: 1100px), print {
  .repair-scan-list {
    padding-left: 1.5em;
  }
}

.repair-scan-list.checklist li::before {
  top: .3em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 0;
  background: url(../img/pages/repair/check.svg) no-repeat center;
  background-size: cover;
}

.repair-scan-img {
  text-align: center;
}

/* 一人親方の方、下請け業者様 募集中！ */
.repair-recruit {
  max-width: 960px;
  margin: auto;
}

.repair-recruit-heading {
  padding: .75em .5em;
  line-height: 1.3;
  font-size: 1.3em;
  text-align: center;
  color: #fff;
  background-color: #4387c5;
}

@media screen and (min-width: 768px), print {
  .repair-recruit-heading {
    font-size: 1.8em;
  }
}

.repair-recruit-body {
  padding: 1em;
  line-height: 1.5;
  border: 1px solid #4387c5;
  border-top: none;
}

@media screen and (min-width: 480px), print {
  .repair-recruit-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.repair-recruit-body img {
  display: block;
  width: 75%;
  height: auto;
  margin: auto;
}

@media screen and (min-width: 480px), print {
  .repair-recruit-body img {
    width: 100%;
  }
}

.repair-recruit-side {
  margin-bottom: .5em;
}

@media screen and (min-width: 480px), print {
  .repair-recruit-side {
    width: 30%;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .repair-recruit-side {
    width: 280px;
  }
}

@media screen and (min-width: 480px), print {
  .repair-recruit-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding-left: 1em;
  }
}

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

  id09　居酒屋 よろずや

-------------------------------- */
/* テイクアウトも承り中 */
.izakaya-takeout-logo {
  margin-bottom: 1em;
  text-align: center;
}

.izakaya-takeout-logo img {
  width: 250px;
}

@media screen and (min-width: 768px), print {
  .izakaya-takeout-logo img {
    width: auto;
  }
}

.izakaya-takeout-heading {
  margin-bottom: .5em;
  font-size: 1.5em;
  color: #d90000;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .izakaya-takeout-heading {
    font-size: 1.8em;
  }
}

@media screen and (min-width: 1100px), print {
  .izakaya-takeout-heading {
    font-size: 2.0em;
  }
}

.izakaya-takeout-body {
  margin-bottom: 1em;
}

@media screen and (min-width: 768px), print {
  .izakaya-takeout-body {
    text-align: center;
  }
}

@media screen and (min-width: 768px), print {
  .izakaya-takeout-body .br {
    display: block;
  }
}

@media screen and (min-width: 1100px), print {
  .izakaya-takeout-body p {
    font-size: 1.15em;
  }
}

@media screen and (max-width: 1099.98px) {
  .izakaya-takeout-body .note {
    margin-top: .5em;
    font-size: .95em;
  }
}

.izakaya-takeout-order {
  font-size: 1.5em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .izakaya-takeout-order {
    font-size: 1.8em;
  }
}

.izakaya-takeout-order dt,
.izakaya-takeout-order dd {
  display: inline-block;
  vertical-align: top;
  margin: .25em .25em 0;
}

.izakaya-takeout-order .tel-link {
  color: #333;
}

.izakaya-takeout-order a.tel-link {
  color: #333;
}

.izakaya-takeout-order a.tel-link:hover {
  color: #70a4d3;
}

/* よろずやメニュー */
.izakaya-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px -5px 0;
}

.izakaya-menu-item {
  width: 100%;
  padding: 0 5px 5px 0;
}

@media screen and (min-width: 480px), print {
  .izakaya-menu-item {
    width: 50%;
  }
}

.izakaya-menu-item a {
  display: block;
}

.izakaya-menu-item img {
  width: 100%;
}

/* ドリンクメニュー */
.izakaya-drink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.izakaya-drink-item {
  width: 100%;
}

@media screen and (min-width: 480px), print {
  .izakaya-drink-item {
    width: 50%;
  }
}

.izakaya-drink-item a {
  display: block;
}

.izakaya-drink-item img {
  width: 100%;
}

/* 飲み放題・各種プラン */
.izakaya-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.izakaya-plan-item {
  width: 100%;
}

@media screen and (min-width: 480px), print {
  .izakaya-plan-item {
    width: 50%;
  }
}

.izakaya-plan-item a {
  display: block;
}

.izakaya-plan-item img {
  width: 100%;
}

/* PDFを開きます */
.pdf-note {
  margin-top: .5em;
  font-size: .85em;
}

@media screen and (min-width: 768px), print {
  .pdf-note {
    position: absolute;
    top: -3.5em;
    right: 1em;
    margin: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .pdf-note {
    top: -4.35em;
  }
}

/* アクセス */
@media screen and (min-width: 768px), print {
  .izakaya-access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px), print {
  .izakaya-access-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding-right: 1.5em;
  }
}

.izakaya-access-info table {
  display: block;
  line-height: 1.5;
}

.izakaya-access-info tbody {
  display: block;
}

.izakaya-access-info tr {
  display: table;
  width: 100%;
  border-bottom: 1px dotted #ddd;
}

.izakaya-access-info th,
.izakaya-access-info td {
  padding: .5em;
}

.izakaya-access-info th {
  width: 6em;
}

.izakaya-access-info .tel-link {
  color: #333;
}

.izakaya-access-info a.tel-link {
  color: #333;
}

.izakaya-access-info a.tel-link:hover {
  color: #70a4d3;
}

.izakaya-access-map {
  position: relative;
}

@media screen and (min-width: 768px), print {
  .izakaya-access-map {
    width: 50%;
  }
}

@media screen and (min-width: 1100px), print {
  .izakaya-access-map {
    width: 55%;
  }
}

.izakaya-access-map::before {
  content: "";
  display: block;
  padding-top: 50.00%;
}

@media screen and (min-width: 768px), print {
  .izakaya-access-map::before {
    padding-top: 65.00%;
  }
}

.izakaya-access-map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

  id10　拠点情報・アクセス

-------------------------------- */
.access-main {
  background-color: #EAF2F9;
  width: 100%;
  padding: 1em;
}

@media screen and (min-width: 1100px), print {
  .access-main {
    padding: 1em 1.5em;
  }
}

.access-main dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #508DBE;
  margin-bottom: .2em;
}

@media screen and (max-width: 479.98px) {
  .access-main dt {
    font-size: 1.6rem;
  }
}

.access-main dd {
  line-height: 1.55;
}

@media screen and (max-width: 479.98px) {
  .access-main dd {
    font-size: 1.4rem;
  }
}

/* 本社 */
.access-headoffice-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 639.98px) {
  .access-headoffice-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.access-headoffice-map {
  position: relative;
  width: 50%;
  padding-top: 37%;
}

@media screen and (max-width: 639.98px) {
  .access-headoffice-map {
    width: 100%;
    padding-top: 75%;
  }
}

.access-headoffice-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-headoffice-img {
  width: 50%;
}

@media screen and (max-width: 639.98px) {
  .access-headoffice-img {
    width: 100%;
  }
}

@media screen and (max-width: 639.98px) {
  .access-headoffice-img img {
    width: 100%;
  }
}

.search-btn-link {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #4387C5;
  padding: .55em 3em .75em 1.3em;
  font-size: 1.7rem;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
}

.search-btn-link:hover {
  background-color: #7da71d;
}

@media screen and (max-width: 1099.98px) {
  .search-btn-link {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 639.98px) {
  .search-btn-link {
    width: 100%;
  }
}

.search-btn-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
  width: 17px;
  height: 17px;
  background-color: #fff;
}

.search-btn-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #506024;
  border-right: 2px solid #506024;
}

a.search-btn-link {
  text-decoration: none;
}

a.search-btn-link:hover {
  color: #fff;
  background-color: #7da71d;
}

/* 支社・営業所 */
.access-branchoffice-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: .5em;
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-search {
    margin: 0 -1em 0 0;
  }
}

@media screen and (max-width: 479.98px) {
  .access-branchoffice-search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 1em 0;
  }
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-search .search-btn {
    width: calc(50% - 16px);
    margin: 0 1em 1em 0;
  }
}

@media screen and (max-width: 479.98px) {
  .access-branchoffice-search .search-btn {
    width: 100%;
    margin: 0 0 1em 0;
  }
}

.access-branchoffice-search .search-btn:not(:last-child) {
  margin-right: 1em;
  margin-bottom: 1em;
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-search .search-btn:not(:last-child) {
    margin-right: auto;
  }
}

.access-branchoffice-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.5em -1em 0;
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-wrap {
    margin: 0 0 -1em 0;
  }
}

.access-branchoffice-item {
  width: calc(33.33333% - 24px);
  margin: 0 1.5em 1em 0;
}

@media screen and (max-width: 991.98px) {
  .access-branchoffice-item {
    width: calc(50% - 24px);
  }
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-item {
    width: 100%;
    margin: 0 0 1em 0;
  }
}

.access-branchoffice-map {
  position: relative;
  width: 100%;
  padding-top: 66.5%;
}

@media screen and (max-width: 639.98px) {
  .access-branchoffice-map {
    padding-top: 72%;
  }
}

.access-branchoffice-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

  idxx　お問い合わせ

-------------------------------- */
/* お問い合わせ */
.contact-more {
  margin-top: 1em;
}

.contact-intro-section {
  font-size: 1.7rem;
  margin-bottom: 3em;
}

@media screen and (max-width: 767.98px) {
  .contact-intro-section {
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
}

.contact-intro-section .contact-us-main {
  margin: 3.5em 0 1em 0;
}

.contact-form-section {
  margin-bottom: 2em;
  line-height: 1.6;
}

@media screen and (max-width: 767.98px) {
  .contact-form-section {
    margin-bottom: 1em;
    line-height: 1.4;
  }
}

.contact-us-main {
  position: relative;
  margin-bottom: .5em;
  padding: 1em;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  background-color: #408DD5;
  margin: 1em auto;
}

@media screen and (min-width: 768px), print {
  .contact-us-main {
    padding: 1.5em;
    text-align: left;
    border-left: 125px solid #2467A4;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-us-main {
    max-width: 969px;
    margin: 1.5em auto;
    border-left-width: 167px;
  }
}

.contact-us-main::before {
  content: "";
  display: block;
  height: 92.38095px;
  margin: -1em -1em 1em;
  background: #5f7d15 url(../img/base/tel.png) center no-repeat;
  background-size: auto 70%;
  z-index: 1;
  background-color: #4387c5;
}

@media screen and (max-width: 1099.98px) {
  .contact-us-main::before {
    height: 74.61538px;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-main::before {
    display: none;
  }
}

@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: -167px;
    width: 167px;
  }
}

.contact-us-tel {
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .contact-us-tel {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-tel dl {
    position: relative;
    display: inline-block;
    padding-left: 90px;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-us-tel dl {
    padding-left: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-tel dl::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background: #2467A4 url("../img/base/tel.png") center no-repeat;
    background-size: 54%;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-us-tel dl::before {
    position: static;
    margin: 0 auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.contact-us-tel dl dt {
  font-size: 2.1rem;
}

@media screen and (max-width: 1099.98px) {
  .contact-us-tel dl dt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-tel dl dt {
    text-align: left;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-us-tel dl dt {
    text-align: center;
    font-size: 1.4rem;
    margin-top: .3em;
  }
}

.contact-us-tel .tel-link {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
}

@media screen and (min-width: 1100px), print {
  .contact-us-tel .tel-link {
    font-size: 6rem;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-us-tel .tel-link {
    font-size: 3.5rem;
  }
}

.contact-us-tel a.tel-link {
  color: #4387c5;
}

.contact-us-tel a.tel-link:hover {
  color: #4387c5;
  text-decoration: none;
}

.contact-us-time {
  position: absolute;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-top: 2em;
}

@media screen and (max-width: 1099.98px) {
  .contact-us-time {
    right: 2em;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-time {
    position: static;
    padding-top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.contact-us-time dl {
  font-size: .9em;
  text-align: center;
  line-height: 1.35;
}

@media screen and (max-width: 767.98px) {
  .contact-us-time dl {
    display: inline-block;
  }
  .contact-us-time dl:first-child {
    padding-right: 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-us-time dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact-us-time dl:first-child {
    padding-right: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-us-time dl {
    font-size: 1.8rem;
  }
}

.contact-us-time dl:not(:last-child) {
  margin-bottom: .3em;
}

@media screen and (min-width: 480px), print {
  .contact-us-time dt {
    display: inline-block;
  }
}

@media screen and (max-width: 767.98px) {
  .contact-us-time dt {
    padding-right: .5em;
  }
}

@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 #999;
  }
}

.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 {
  color: #333;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  line-height: 1.6;
  border: 1px solid #a3a3a3;
  background-color: #fafafa;
  overflow-y: scroll;
  height: 16.7em;
  padding: 1.3em 1em;
}

@media screen and (max-width: 767.98px) {
  .contact-privacy {
    height: 25.5em;
  }
}

.contact-privacy-section .inner {
  line-height: 1.6;
}

.contact-privacy h3 {
  font-size: 1.7rem;
  margin: 1.8em 0 .3em;
  line-height: 1.3;
  color: #70a4d3;
  font-weight: 700;
}

@media screen and (max-width: 767.98px) {
  .contact-privacy h3 {
    margin: 1.3em 0 .3em;
  }
}

.contact-privacy p {
  font-size: 1.2rem;
  margin-bottom: 2em;
  line-height: 1.6;
}

.contact-privacy ol {
  margin-top: 3em;
  font-size: 1.2rem;
  counter-reset: number 0;
}

.contact-privacy ol li {
  line-height: 1.8;
  list-style: none;
  position: relative;
  margin: 0;
  padding-left: 1.6em;
}

.contact-privacy ol li::before {
  content: counter(number) "";
  counter-increment: number 1;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-privacy ol > ol {
  margin-top: .5em;
}

.contact-privacy dl {
  float: right;
  padding-top: 1.2em;
}

.contact-privacy .tel-link {
  color: #333;
}

.contact-privacy a.tel-link {
  color: #333;
}

.contact-privacy a.tel-link:hover {
  color: #70a4d3;
}

.contact-page .main {
  overflow: hidden;
}

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

  id12　採用情報

-------------------------------- */
/* 注釈 */
/* --------------------------------

  修正・追加用

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