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

  CSS Reset

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

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

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

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

a {
  color: #2166b9;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #0f64cc;
  text-decoration: underline;
}

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

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

ol, ul {
  list-style: none;
}

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

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

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.main-heading,
.news-heading {
  position: relative;
  max-width: 1100px;
  margin: 0 auto .7em;
  padding: 0 0 1em;
  font-size: 1.2em;
  line-height: 1.3;
  border-bottom: 2px solid #2166b9;
}

@media screen and (min-width: 640px), print {
  .main-heading,
  .news-heading {
    padding: 0 0 .5em;
    font-size: 1.4em;
  }
}

@media screen and (min-width: 768px), print {
  .main-heading,
  .news-heading {
    margin-bottom: 1em;
    font-size: 1.7em;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  margin-bottom: 1rem;
  font-size: 1.3em;
  line-height: 1.2;
}

@media screen and (min-width: 640px), print {
  .main-subheading {
    font-size: 1.5em;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8;
  list-style-type: none;
}

.main ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: .9em;
  left: .5em;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #333;
}

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

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

ul.list-style-none > li:before {
  display: none;
}

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

/* 共通リスト（注釈用）*/
ul.list-style-note > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}

ul.list-style-note > li:before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

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

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

.link-button {
  position: relative;
  display: inline-block;
  min-width: 13em;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  padding: 15px 30px 18px;
  border: 1px solid #333;
  border-radius: 6px;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.link-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #333;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s;
  transition: transform ease .5s, -webkit-transform ease .5s;
}

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

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

a.link-button:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

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

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

/* コンテンツ隙間・間隔用 */
.gutter {
  margin-bottom: 5em;
}

.gutter > .inner {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 1.8;
}

@media screen and (max-width: 767.98px) {
  .gutter > .inner {
    padding-right: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}

.gutter > .inner .inner {
  overflow: hidden;
}

.gutter .inner:not(:last-child) {
  margin-bottom: 42px;
  margin-bottom: 3rem;
}

.gutter.dmy {
  max-width: none;
}

.gutter.dmy > .inner {
  max-width: none;
  padding: 0;
  line-height: 1;
  text-align: center;
}

.gutter.dmy.wide {
  margin-right: -22%;
  margin-left: -22%;
}

@media screen and (min-width: 1100px), print {
  .gutter.dmy.wide {
    margin-right: -230px;
    margin-left: -230px;
  }
}

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

.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -80px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0) url(../img/base/blank.gif);
  z-index: -100;
}

@media screen and (min-width: 1100px), print {
  .anchor-point:before {
    margin-top: -60px;
    margin-bottom: 60px;
  }
}

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

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

.css-counter .counter:before {
  counter-increment: section;
  content: counter(section) ". ";
}

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

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

/* クリック範囲を拡大（カード）*/
.card {
  position: relative;
}

.card a:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

/* スクロール固定 */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* 共通お問い合わせ */
.global-contact {
  font-size: .9em;
}

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

.global-contact-item.mail {
  position: absolute;
  top: -22px;
  right: 0;
}

#top .global-contact-item.mail {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .global-contact-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.global-contact .tel-link {
  display: block;
  position: relative;
  height: 100%;
  padding: 0 0 0 45px;
  color: #2166b9;
  line-height: 1.1;
  text-align: left;
}

.global-contact .tel-link:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  height: 45px;
  color: #2166b9;
  text-align: center;
  line-height: 45px;
  font-size: 42px;
  font-size: 3rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

.global-contact .text-item {
  display: block;
  font-size: .8em;
  text-align: left;
}

.global-contact .tel-num span {
  width: 100%;
  font-size: 1.8em;
  line-height: 1;
  font-weight: 700;
}

.global-contact .tel-text {
  display: block;
  font-size: .8em;
  background-color: #2166b9;
  color: #fff;
  padding: 2px 0;
}

.global-contact .mail-link {
  display: block;
  min-width: 140px;
  color: #fff;
  line-height: 1.2;
  border: 2px solid #2166b9;
  background-color: #2166b9;
  text-align: left;
  padding: 3.6em .8em 1.2em;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 1099.98px) {
  .global-contact .mail-link {
    display: none;
  }
}

.global-contact .mail-link:hover {
  background-color: #fff;
  color: #2166b9;
  text-decoration: none;
}

.global-contact .mail-link:hover:before {
  color: #2166b9;
}

.global-contact .mail-link:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e902";
  display: block;
  position: absolute;
  top: 12px;
  left: 50%;
  width: 40px;
  height: 35px;
  color: #fff;
  text-align: center;
  line-height: 35px;
  font-size: 3.5rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

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

  Webフォント

-------------------------------- */
/*
 * https://icomoon.io/
 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?dbkwwe");
  src: url("../fonts/icomoon.eot?dbkwwe#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?dbkwwe") format("truetype"), url("../fonts/icomoon.woff?dbkwwe") format("woff"), url("../fonts/icomoon.svg?dbkwwe#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.icon-arrow:before {
  content: "\e903";
}

/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Sawarabi Mincho" is lisenced under the SIL Open Font License, 1.1
 * SawarabiMincho-Regular.ttf: Copyright 2016 The Sawarabi Mincho Project Authors.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Kosugi Maru" is lisenced under the Apache License, Version 2.0
 * KosugiMaru-Regular.ttf: Copyright(C)2010 MOTOYA CO.,LTD.
 * https://www.google.com/fonts/attribution
 * http://www.apache.org/licenses/LICENSE-2.0.html
 */
/*
 * adobe-fonts/source-han-sans is licensed under the SIL Open Font License 1.1
 * https://github.com/adobe-fonts/source-han-sans
 * http://scripts.sil.org/OFL
 */
@font-face {
  font-family: "SourceHanSansEL";
  src: url("../fonts/SourceHanSans-ExtraLight.woff2") format("woff2"), url("../fonts/SourceHanSans-ExtraLight.woff") format("woff"), url("../fonts/SourceHanSans-ExtraLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

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

  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.slideout-open {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
}

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

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1099.98px) {
  .wrapper .header-logo,
  .wrapper .nav-button {
    -webkit-transition: top .3s;
    transition: top .3s;
  }
  .wrapper .tel-button,
  .wrapper .contact-button,
  .wrapper .pagetop {
    -webkit-transition: bottom .3s;
    transition: bottom .3s;
  }
  .wrapper.hide .header-logo,
  .wrapper.hide .nav-button {
    top: -60px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .wrapper.hide .tel-button,
  .wrapper.hide .contact-button {
    bottom: -60px;
  }
  .wrapper.hide .pagetop {
    bottom: 10px;
  }
}

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

  header

-------------------------------- */
.header {
  padding-top: 60px;
}

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

#top .header {
  position: fixed;
  width: 100%;
  top: 15px;
  left: 15px;
  z-index: 1100;
  padding-top: 0;
}

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

@media screen and (min-width: 1100px), print {
  #top .header .inner {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    padding: 0;
    z-index: auto;
  }
}

.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0 1em;
    z-index: 100;
  }
}

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

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

#top .header-logo {
  display: inline-block;
  position: static;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: auto;
  padding: 2em 3em;
  background-color: #fff;
}

@media screen and (max-width: 479.98px) {
  #top .header-logo {
    padding: 1em;
    display: inline-block;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header-logo {
    position: static;
    max-width: inherit;
  }
}

.header-link {
  display: block;
  width: 163.125px;
}

@media screen and (min-width: 1100px), print {
  .header-link {
    position: absolute;
    top: 40px;
    left: 0;
    width: 186.42857px;
  }
}

@media screen and (min-width: 1200px), print {
  .header-link {
    top: 35px;
    width: 261px;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header-link {
    position: static;
    top: auto;
    left: auto;
  }
}

@media screen and (min-width: 1200px), print {
  #top .header-link {
    top: auto;
  }
}

.header-content {
  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 {
  .header-content {
    display: block;
    position: relative;
    max-width: 1600px;
    margin: auto;
  }
}

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

/* スクロール時固定用 */
/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
}

@media screen and (min-width: 1100px), print {
  .nav {
    width: 100%;
    z-index: 1000;
    background-color: #fff;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav {
    display: block;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1001;
    -webkit-transition: left .3s;
    transition: left .3s;
  }
}

.nav-open .nav {
  right: 0;
}

@media screen and (max-width: 1099.98px) {
  .nav .inner {
    position: relative;
    width: 280px;
    height: 100%;
    margin: 0;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (min-width: 1100px), print {
  .nav .inner {
    position: static;
    min-width: 850px;
    padding: 0 160px 0 0;
  }
}

#top .nav {
  display: block;
  position: fixed;
  top: 0;
  left: auto;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1101;
  -webkit-transition: right .3s;
  transition: right .3s;
}

#top .nav .inner {
  position: relative;
  width: 300px;
  height: 100%;
  margin: 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1100px), print {
  #top .nav .inner {
    position: relative;
    min-width: inherit;
    padding: 0;
  }
}

.nav-open #top .nav {
  right: 0;
  left: auto;
}

/* メインナビ */
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav {
    margin-top: 60px;
    padding: 0 10px;
    background-color: #fff;
    opacity: 0;
  }
}

.nav-open .main-nav,
.slideout-open .main-nav {
  opacity: 1;
}

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

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
  .main-nav .nav-item:first-child {
    border-top: 1px solid #eee;
  }
}

@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 60px;
    color: #000;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
    position: relative;
    padding: 1em 1em 1em 0.5em;
    color: #000;
    font-size: .9em;
    border-bottom: 1px solid #eee;
  }
}

.main-nav .nav-link:hover {
  color: #0f64cc;
  text-decoration: none;
}

.main-nav .nav-link span {
  display: block;
  font-size: 1.5rem;
}

@media screen and (min-width: 1100px), print {
  #top .main-nav {
    display: block;
    margin-top: 60px;
    padding: 0 10px;
    background-color: #fff;
    opacity: 0;
  }
}

.nav-open #top .main-nav,
.slideout-open #top .main-nav {
  opacity: 1;
}

#top .main-nav .nav-item {
  position: relative;
}

#top .main-nav .nav-item:first-child {
  border-top: 1px solid #eee;
}

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

@media screen and (max-width: 1099.98px) {
  #top .main-nav .nav-item {
    position: relative;
  }
  #top .main-nav .nav-item:first-child {
    border-top: none;
  }
}

#top .main-nav .nav-link {
  display: block;
  position: relative;
  padding: 1em 1em 1em .5em;
  color: #333;
  border-bottom: 1px solid #eee;
}

@media screen and (min-width: 1100px), print {
  #top .main-nav .nav-link {
    height: auto;
    text-align: left;
    -webkit-transition: 0s;
    transition: 0s;
  }
}

/* ドロップダウンナビ */
.sub-nav {
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.sub-nav-active .sub-nav {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
}

.sub-nav ul {
  margin-top: -1px;
}

.sub-nav li:not(:last-child) {
  margin-bottom: 1px;
}

.sub-nav a {
  display: block;
  position: relative;
  padding: 1em;
  font-size: .9em;
  color: #fff;
  background-color: #2166b9;
  overflow: hidden;
}

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

/* ドロップダウンナビボタン */
.sub-nav-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4em;
  height: 4em;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0) url(../img/base/blank.gif);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

.sub-nav-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.sub-nav-button:hover:after {
  border-color: #2166b9;
}

.sub-nav-active .sub-nav-button:after {
  bottom: -.5em;
  border-color: #2166b9;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ドロップダウンナビ（ hover + active ）*/
/* ドロップダウンナビ（ hover ）*/
/* ドロップダウンナビ（ active ）*/
/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  z-index: 910;
}

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

#top .nav-button {
  top: 45px;
  left: auto;
  right: 65px;
  width: 68px;
  height: 68px;
  background-color: #2166b9;
  border-radius: 3px;
  -webkit-transform: none;
          transform: none;
  z-index: 1100;
}

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

@media screen and (max-width: 1099.98px) {
  #top .nav-button {
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    -webkit-transition: top .3s;
    transition: top .3s;
  }
}

.nav-button-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background-color: #2166b9;
}

#top .nav-button-icon {
  background-color: #fff;
}

.nav-button-icon:before, .nav-button-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #2166b9;
}

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

.nav-button-icon:before {
  margin-top: -8px;
}

.nav-button-icon:after {
  margin-top: 8px;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: none;
}

@media screen and (max-width: 1099.98px) {
  .nav-close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    z-index: 10;
  }
}

.nav-close-button .nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 33px;
  height: 2px;
  margin: auto;
  background-color: #333;
}

@media screen and (max-width: 1099.98px) {
  .nav-close-button .nav-button-icon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    -webkit-transform: none;
    transform: none;
    background: none;
  }
}

.nav-close-button .nav-button-icon:before, .nav-close-button .nav-button-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #2166b9;
}

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

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

#top .nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  z-index: 10;
}

#top .nav-close-button .nav-button-icon {
  top: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  border-radius: 0;
  background: none;
}

#top .nav-close-button .nav-button-icon:before, #top .nav-close-button .nav-button-icon:after {
  background-color: #2166b9;
}

/* ナビゲーション背景 */
.nav-screen {
  display: inline;
}

.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  z-index: 950;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

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

/* スクロール時固定用 */
/* --------------------------------

  main

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

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

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

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

/* サイドバー付レイアウト用 */
@media screen and (min-width: 1100px), print {
  .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.main-container .main-column {
  margin-bottom: 5em;
}

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

.main-container .main-column:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 1100px), print {
  .main-container .side-column {
    width: 280px;
  }
}

.main-container .side-column .inner {
  padding: 0;
  line-height: 1.5;
}

@media screen and (min-width: 1100px), print {
  .main-container .side-column-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

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

  footer

-------------------------------- */
.footer {
  padding: 0 1em 80px;
}

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

.footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-item a {
  color: #333;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-item a:hover {
  color: #2166b9;
}

.footer .pagetop {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 70px;
  margin: 0;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  border: 1px solid #fff;
}

@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    bottom: 10px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
}

@media screen and (min-width: 1100px) {
  .footer .pagetop.fixed {
    opacity: 1;
    pointer-events: auto;
  }
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  background-color: #2166b9;
  -webkit-transition: .2s;
  transition: .2s;
}

.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0f64cc;
}

.footer .pagetop a:hover:before {
  border-color: #fff;
}

.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.footer .copy small {
  display: block;
  width: 100%;
  font-size: .9em;
}

.footer .copy span {
  display: none;
}

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

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

  メインビジュアル

-------------------------------- */
.mainvisual {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 1em;
  background: url(../img/base/mainvisual-bg.jpg) no-repeat center center;
  background-size: cover;
}

.mainvisual .inner {
  height: 100vh;
}

.mainvisual-catch {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .mainvisual-catch {
    max-width: 431px;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}

.mainvisual-catch .catch1 {
  font-size: 3.6rem;
  color: #fff;
  letter-spacing: .15em;
  line-height: 1.4;
}

@media screen and (max-width: 479.98px) {
  .mainvisual-catch .catch1 {
    font-size: 1.6rem;
  }
}

.mainvisual-catch .catch2 {
  display: block;
  font-style: italic;
  font-size: 2.2rem;
  color: #2166b9;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: .2em;
}

@media screen and (max-width: 479.98px) {
  .mainvisual-catch .catch2 {
    font-size: 1.8rem;
  }
}

.mainvisual-catch .br {
  display: block;
}

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

.mainvisual-catch._anim-point.active .catch1 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mainvisual-catch._anim-point .catch1 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s 1s ease;
  transition: all 0.8s 1s ease;
}

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

  スライダー

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

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

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

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

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

.slider-side {
  padding: 1.5em 1em;
  background-color: #2166b9;
}

@media screen and (min-width: 768px), print {
  .slider-side {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 60px;
    background: none;
    z-index: 100;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

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

.slider-catch {
  max-width: 1100px;
  margin: auto;
  color: #fff;
  text-align: center;
}

.slider-catch .catch {
  font-weight: 700;
}

.slider-catch .catch1 {
  display: block;
  font-size: .9em;
}

@media screen and (min-width: 1100px), print {
  .slider-catch .catch1 {
    font-size: 1.4em;
  }
}

.slider-catch .catch2 {
  display: block;
  font-size: 1.5em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 1100px), print {
  .slider-catch .catch2 {
    font-size: 2.4em;
  }
}

.slider-catch .br {
  display: block;
}

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

.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 .slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

.slider-prev {
  left: 0;
}

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

.slider-next {
  right: 0;
}

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

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

.slider-dots ul {
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.slider-dots li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 30px;
  height: 40px;
  cursor: pointer;
}

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

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

.slider-dots button {
  display: none;
}

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

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

-------------------------------- */
.contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 900;
}

.contact-button-item {
  width: 50%;
  padding: 0 2px;
}

.contact-button-item.mail .contact-button-link:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e902";
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 20px;
  font-size: 2rem;
  margin-right: .5em;
}

@media screen and (max-width: 1099.98px) {
  .contact-button-item.tel .contact-button-link:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    content: "\e900";
    display: block;
    width: 20px;
    height: 20px;
    color: #fff;
    line-height: 20px;
    font-size: 2rem;
    margin-right: .5em;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-button-item.tel .tel-side {
    margin-right: 1.5em;
  }
}

.contact-button-item.tel .tel-main {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .contact-button-item.tel .tel-main {
    display: block;
    padding-left: 1.5em;
    border-left: 1px solid #fff;
  }
}

@media screen and (min-width: 1100px), print {
  .contact-button-item.tel .tel-num {
    position: relative;
    padding-left: 1.25em;
    font-size: 2.3rem;
  }
}

.contact-button-item.tel .tel-num:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 0;
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  display: block;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 20px;
  font-size: 2rem;
  margin-right: .5em;
}

.contact-button-item .br {
  display: inline-block;
}

@media screen and (max-width: 1099.98px) {
  .contact-button-item .br {
    display: block;
  }
}

@media screen and (max-width: 479.98px) {
  .contact-button-item span {
    font-size: 1.4rem;
  }
}

.contact-button-link {
  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;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 .5em;
  background-color: #2166b9;
}

.contact-button-link:hover {
  background-color: #0f64cc;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

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

  ページタイトル

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

.page-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  line-height: 1.2;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .page-title-inner {
    height: 400px;
  }
}

.page-title-name {
  display: block;
  width: 100%;
  padding: 0 10px;
  font-size: .7em;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
}

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

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

  パンくずリスト

-------------------------------- */
.topic-path {
  position: relative;
  margin: -5em 0 3em;
  overflow: hidden;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .topic-path {
    margin: -5em 0 5em;
  }
}

.topic-path ul {
  max-width: 1100px;
  margin: auto;
  padding: 1em .5em;
}

@media screen and (min-width: 1100px), print {
  .topic-path ul {
    padding: 1.5em .5em;
  }
}

.topic-path ul:after {
  content: "";
  display: table;
  clear: both;
}

.topic-path li {
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-indent: 0;
  font-size: .85em;
  font-family: "Noto Sans JP", sans-serif;
}

.topic-path li:before, .topic-path li:after {
  display: none;
}

.topic-path li.current {
  color: #333;
}

.topic-path a {
  display: block;
  position: relative;
  margin-right: .7em;
  padding-right: 1em;
}

.topic-path a:hover {
  text-decoration: underline;
}

.topic-path a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: .5em;
  height: .5em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

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

  プリント

-------------------------------- */
@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-header {
  max-width: 1100px;
  margin: 0 auto 4em;
  text-align: center;
}

.section-heading {
  font-size: 1.5em;
  line-height: 1.2;
}

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

.section > .inner {
  line-height: 1.8;
}

@media screen and (max-width: 767.98px) {
  .section > .inner {
    line-height: 1.6;
  }
}

/* 主な取扱業務 */
.business-section .section-inner {
  padding: 3em 0;
}

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

.business-section .inner {
  max-width: inherit;
}

.business-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.business-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 640px), print {
  .business-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.business-button {
  position: relative;
  display: block;
  overflow: hidden;
}

.business-image {
  position: relative;
  overflow: hidden;
  padding-top: 32.03125%;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.business-image:hover {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}

.business-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

.business-foot {
  text-align: center;
}

/* 基礎知識 */
.knowledge-section .section-inner {
  padding: 3em 1em;
  background: url(../img/top/know_bg.jpg) no-repeat center;
  background-size: cover;
}

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

.knowledge-section .inner {
  max-width: 1400px;
}

.knowledge-section .section-heading {
  color: #fff;
}

.knowledge-section .keyword-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1em -.7em 0;
}

.knowledge-section .keyword-list li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1em .7em 0;
}

@media screen and (min-width: 480px), print {
  .knowledge-section .keyword-list li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 768px), print {
  .knowledge-section .keyword-list li {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

@media screen and (min-width: 1100px), print {
  .knowledge-section .keyword-list li {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}

.knowledge-section .keyword-list li a {
  display: block;
  color: #fff;
  font-size: .8em;
  line-height: 1.1;
  text-align: center;
  padding: .5em 0;
  border-radius: 5em;
  border: 2px solid #5ab4bd;
  background-color: #5ab4bd;
}

.knowledge-section .keyword-list li a:hover {
  color: #5ab4bd;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #fff;
}

.knowledge-tab {
  background-color: #fff;
}

.knowledge-item {
  width: calc(100%/4);
  height: 60px;
  background-color: #eee;
  font-size: .9em;
  line-height: 60px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (min-width: 768px), print {
  .knowledge-item {
    font-size: 1.1em;
  }
}

.knowledge-item:hover {
  opacity: 0.75;
}

.knowledge-content {
  display: none;
  padding: 2em 1.5em;
  clear: both;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .knowledge-content {
    padding: 2.5em;
  }
}

@media screen and (min-width: 992px), print {
  .knowledge-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.knowledge-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.knowledge-list a {
  color: #333;
}

.knowledge-list a:hover {
  color: #0f64cc;
  opacity: 0.75;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.knowledge-topics:not(:last-child) {
  margin-bottom: 1em;
}

.knowledge-time {
  color: #555;
}

.knowledge-heading {
  margin-bottom: 1em;
}

.knowledge-side {
  margin: 2em 0 0 0;
}

@media screen and (min-width: 992px), print {
  .knowledge-side {
    margin: 0 0 0 2em;
    width: 60%;
  }
}

.knowledge input[name="knowledge-item"] {
  display: none;
}

.knowledge #knowledge_primary:checked ~ #primary_content,
.knowledge #knowledge_secondary:checked ~ #secondary_content,
.knowledge #knowledge_tertiary:checked ~ #tertiary_content,
.knowledge #knowledge_quaternary:checked ~ #quaternary_content {
  display: block;
  -webkit-animation: appear .8s ease;
          animation: appear .8s ease;
}

.knowledge input:checked + .knowledge-item {
  background-color: #5ab4bd;
  color: #fff;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* よく読まれている記事 */
.news-section .section-inner {
  padding: 3em 1em;
}

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

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1.5em 0;
}

@media screen and (min-width: 768px), print {
  .news-list {
    margin: 0 -1em -1.5em 0;
  }
}

.news-topics {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 .5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .news-topics {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 1.5em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .news-topics {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

.news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center !important;
  color: #333;
  -webkit-transition: .3s;
  transition: .3s;
}

.news-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-time {
  color: #555;
  margin-bottom: .3em;
}

.news-title {
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
}

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

.news-img {
  padding-right: 1em;
}

/* 資格者紹介 */
.staff-section .section-inner {
  padding: 3em 1em;
  background-color: #f5f5f5;
}

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

.staff-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 991.98px) {
  .staff-container {
    -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;
  }
}

.staff-image {
  margin: 0 0 3em 0;
}

@media screen and (min-width: 992px), print {
  .staff-image {
    margin: 0 4em 0 0;
  }
}

.staff-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 991.98px) {
  .staff-main {
    max-width: 500px;
  }
}

.staff-name {
  font-size: 1.2em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 2.5em;
}

@media screen and (max-width: 767.98px) {
  .staff-name {
    font-size: 1.1em;
  }
}

.staff-name .name {
  font-size: 1.6em;
  padding-left: .5em;
}

@media screen and (max-width: 767.98px) {
  .staff-name .name {
    font-size: 1.3em;
  }
}

.staff-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -2em -1em 0;
}

.staff-items > li {
  padding: 0 2em 1em 0;
}

.staff-items.single > li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.staff-items.double > li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 640px), print {
  .staff-items.double > li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.staff dl dt {
  position: relative;
  padding: 0 0 8px 0;
  font-size: 1.1em;
  font-family: "Noto Serif JP", serif;
  color: #333;
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 640px), print {
  .staff dl dt {
    font-size: 1.3em;
  }
}

.staff dl dd {
  padding: 1em;
}

/* 事務所概要 */
.office-section .section-inner {
  padding: 3em 1em;
  background: url(../img/top/office_bg.jpg) no-repeat center;
  background-size: cover;
}

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

.office-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 3em 2em;
}

@media screen and (max-width: 991.98px) {
  .office-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.office-map {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 3em 0 0 0;
}

@media screen and (min-width: 992px), print {
  .office-map {
    margin: 0 0 0 3em;
  }
}

.office-map:before {
  content: "";
  display: block;
  padding-top: 300px;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .office-map:before {
    padding-top: 350px;
  }
}

.office-map iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.office-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 991.98px) {
  .office-main {
    max-width: 500px;
  }
}

.office table th, .office table td {
  display: block;
}

@media screen and (min-width: 640px), print {
  .office table th, .office table td {
    display: table-cell;
  }
}

.office table th {
  vertical-align: top;
}

@media screen and (min-width: 640px), print {
  .office table th {
    width: 10em;
    padding: .8em 0;
  }
}

.office table td {
  padding: 0 0 1em 1em;
}

@media screen and (min-width: 640px), print {
  .office table td {
    padding: .8em 0;
  }
}

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

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

.office table a.tel-link:hover {
  color: #0f64cc;
}

/* スライド画像 */
.slide-section .section-inner {
  padding: 3em 1em;
}

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

.slide-section .inner {
  max-width: inherit;
}

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

  idxx　お知らせ

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

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

.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}

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

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

.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}

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

.news-link {
  display: block;
  padding: 1em 0;
  border-bottom: 1px dotted #ccc;
}

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

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

.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}

.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}

.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #eee;
}

/* お知らせ一覧（テキストのみ）*/
.news-list .news-link {
  position: relative;
  padding: .8em 1em;
}

@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

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

.news-list .news-link:hover .news-date {
  color: #0f64cc;
}

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

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

/* お知らせ一覧（サムネイル縦並び）*/
.news-thumb-list .news-link {
  display: block;
  position: relative;
  padding-left: 95px;
}

.news-thumb-list .news-link:hover {
  text-decoration: none;
}

.news-thumb-list .news-link:hover .news-date {
  color: #0f64cc;
}

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

.news-thumb-list .news-date {
  font-size: .9em;
  color: #333;
}

.news-thumb-list .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-thumb-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 60px;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}

.news-thumb-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（大きいサムネイル）*/
.news-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1em 0;
}

@media screen and (min-width: 640px), print {
  .news-img-list {
    margin: 0 -1em -1.5em 0;
  }
}

.news-img-list .news-topics {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  padding: 0 .5em 1em 0;
}

@media screen and (min-width: 640px), print {
  .news-img-list .news-topics {
    padding: 0 1em 1.5em 0;
  }
}

@media screen and (min-width: 768px), print {
  .news-img-list .news-topics {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}

.news-img-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #333;
  text-align: center;
  line-height: 1.5;
  font-size: .9em;
  border: none;
}

@media screen and (min-width: 1100px), print {
  .news-img-list .news-link {
    font-size: 1em;
  }
}

.news-img-list .news-link:hover {
  color: #0f64cc;
  text-decoration: none;
}

.news-img-list .news-link:hover .news-date {
  color: #0f64cc;
}

.news-img-list .news-date {
  margin: .5em 0 .2em;
  font-size: .9em;
  color: #333;
}

.news-img-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}

.news-img-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.news-img-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせ一覧（横スクロールスライダー）*/
.news-slider-list {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

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

.news-slider-list .news-topics {
  width: 240px;
  padding: 0 10px;
}

@media screen and (min-width: 1100px), print {
  .news-slider-list .news-topics {
    width: 260px;
    padding: 0 15px;
  }
}

.news-slider-list .news-link {
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  color: #333;
  text-align: center;
  line-height: 1.5;
  font-size: .9em;
  border: none;
}

@media screen and (min-width: 1100px), print {
  .news-slider-list .news-link {
    font-size: 1em;
  }
}

.news-slider-list .news-link:hover {
  color: #0f64cc;
  text-decoration: none;
}

.news-slider-list .news-link:hover .news-date {
  color: #0f64cc;
}

.news-slider-list .news-date {
  margin: .5em 0 .2em;
  font-size: .9em;
  color: #333;
}

.news-slider-list .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-slider-list .news-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #fff url(../img/base/logo.png) center no-repeat;
  background-size: 80% auto;
  overflow: hidden;
}

.news-slider-list .news-img:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.news-slider-list .news-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 150%;
  max-height: 150%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お知らせスライダー用前後ボタン */
.news-arrow {
  display: block;
  clear: both;
  margin-top: 1em;
  text-align: center;
}

@media screen and (min-width: 640px), print {
  .news-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 1280px;
    margin: -1.5em auto 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 1100px), print {
  .news-arrow {
    margin-top: -2em;
  }
}

.news-arrow-prev, .news-arrow-next {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 15px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: pointer;
}

@media screen and (min-width: 640px), print {
  .news-arrow-prev, .news-arrow-next {
    display: block;
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}

@media screen and (min-width: 1100px), print {
  .news-arrow-prev, .news-arrow-next {
    top: -24px;
    width: 48px;
    height: 48px;
  }
}

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

@media screen and (min-width: 640px), print {
  .news-arrow-prev:before, .news-arrow-next:before {
    border-width: 2px;
  }
}

@media screen and (min-width: 640px), print {
  .news-arrow-prev {
    left: 10px;
  }
}

.news-arrow-prev:before {
  left: 20%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 640px), print {
  .news-arrow-next {
    right: 10px;
  }
}

.news-arrow-next:before {
  right: 20%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

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

.news-pager {
  width: 70px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}

@media screen and (min-width: 480px), print {
  .news-pager {
    width: 80px;
  }
}

.news-pager a {
  display: block;
  position: relative;
  color: #fff;
  line-height: 40px;
  text-align: center;
  border-radius: 0;
  background-color: #2166b9;
  -webkit-transition: .2s;
  transition: .2s;
}

.news-pager a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0f64cc;
}

.news-pager a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.news-pager-prev {
  position: absolute;
  top: 2em;
  right: 0;
  left: -190px;
}

@media screen and (min-width: 480px), print {
  .news-pager-prev {
    left: -240px;
  }
}

.news-pager-prev a {
  padding-left: 10px;
}

.news-pager-prev a:before {
  display: none;
}

.news-pager-prev a:after {
  left: -40px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.news-pager-next {
  position: absolute;
  top: 2em;
  right: -190px;
  left: 0;
}

@media screen and (min-width: 480px), print {
  .news-pager-next {
    right: -240px;
  }
}

.news-pager-next a {
  padding-right: 10px;
}

.news-pager-next a:before {
  display: none;
}

.news-pager-next a:after {
  right: -40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.news-pager-back {
  width: 90px;
  font-size: 13px;
}

@media screen and (min-width: 480px), print {
  .news-pager-back {
    width: 120px;
  }
}

.news-pager-back a:before, .news-pager-back a:after {
  display: none;
}

/* お知らせ（サイドバー有レイアウト） */
.news-column-wrapper {
  margin-bottom: 3em;
  line-height: 1.8;
}

@media screen and (min-width: 1100px), print {
  .news-column-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-column-main {
  margin-bottom: 3em;
}

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

.news-column-side {
  width: 250px;
}

.news-column-side section:not(:last-child) {
  margin-bottom: 2em;
}

.news-column-side h3 {
  position: relative;
  background-color: #2166b9;
  color: #fff;
  font-size: 1em;
  margin-bottom: .8rem;
  padding: 3px 0 3px 30px;
}

.news-column-side h3::before {
  position: absolute;
  display: block;
  content: "";
  background: #fff;
  width: 5px;
  height: 60%;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news-column-side .calendar_wrap a {
  color: #2166b9;
}

.news-column-side .searchform {
  position: relative;
}

.news-column-side .screen-reader-text {
  display: none;
}

.news-column-side input#s {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0.5em calc(60px + 1em) 0.5em 1em;
  color: #999;
  line-height: 1.8;
  border: 1px solid #eee;
  background: #f8f8f8;
  outline: none;
}

.news-column-side input#searchsubmit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  margin: auto;
  text-align: center;
  padding: .5rem;
  font-size: .9em;
  color: #fff;
  line-height: 1.85;
  border: none;
  background: #2166b9;
  cursor: pointer;
  overflow: hidden;
}

.news-column-side input#searchsubmit:hover {
  background: #0f64cc;
}

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

  下層ページ用

-------------------------------- */
/* パンくずリスト */
.pankz {
  max-width: 1100px;
  margin: 0 auto 2.5em;
}

/* 基礎知識や事例 */
.category-text {
  line-height: 1.8;
  margin-bottom: 3em;
}

.category-text h2 {
  font-weight: bold;
  margin: 1.25em 0 .5em;
}

.category-text h3 {
  font-weight: bold;
  margin: 1.25em 0 .5em;
}

.category-text p:not(:last-child) {
  margin-bottom: 1em;
}

.category-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.category-list ul li {
  overflow: hidden;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .category-list ul li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.category-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center !important;
  color: #333;
  -webkit-transition: .3s;
  transition: .3s;
}

.category-link:hover {
  text-decoration: none;
}

.category-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.category-time {
  color: #555;
  margin-bottom: .3em;
}

.category-title {
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
}

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

.category-img {
  padding-right: 1em;
}

/* 投稿ページ */
.detail {
  /* 目次 */
  /*全体*/
  /*タイトル*/
  /*表示・非表示ボタン*/
  /*見出しリスト*/
}

.detail-text {
  line-height: 1.8;
  margin-bottom: 3em;
}

.detail-text-time {
  margin-bottom: 2em;
}

.detail-contact {
  margin-bottom: 3em;
}

.detail-contact-wrap {
  border: 8px solid #f7f7f7;
}

.detail-contact-inner {
  padding: 2.5em;
}

@media screen and (max-width: 767.98px) {
  .detail-contact-inner {
    padding: 1.8em 1.2em;
  }
}

.detail-contact-main {
  margin-bottom: 1.7em;
}

.detail-contact-title {
  color: #555;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .detail-contact-title {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-contact-title {
    font-size: 2.8rem;
  }
}

.detail-contact-text {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px), print {
  .detail-contact-text {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-contact-text {
    font-size: 1.8rem;
  }
}

.detail-contact-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 639.98px) {
  .detail-contact-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 640px), print {
  .detail-contact-tel {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.3;
    padding: 1em 0;
    border-top: 1px solid #2166b9;
    border-bottom: 1px solid #2166b9;
  }
}

@media screen and (min-width: 768px), print {
  .detail-contact-tel {
    padding: 1em 0.7em;
  }
}

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

@media screen and (max-width: 639.98px) {
  .detail-contact-tel.pc {
    display: none;
  }
}

@media screen and (min-width: 640px), print {
  .detail-contact-tel.sp {
    display: none;
  }
}

.detail-contact-tel .text {
  color: #fff;
  font-size: 1.5rem;
}

@media screen and (min-width: 640px), print {
  .detail-contact-tel .text {
    color: #2166b9;
    font-weight: 700;
  }
}

@media screen and (min-width: 992px), print {
  .detail-contact-tel .text {
    text-align: center;
    margin: 0 1.5em 0 0;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-contact-tel .text {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px), print {
  .detail-contact-tel .text .br {
    display: block;
  }
}

.detail-contact-tel .tel {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  font-size: 2.6rem;
  padding-left: 35px;
}

@media screen and (min-width: 640px), print {
  .detail-contact-tel .tel {
    color: #2166b9;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px), print {
  .detail-contact-tel .tel {
    font-size: 3.6rem;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-contact-tel .tel {
    font-size: 4.6rem;
    padding-left: 45px;
  }
}

.detail-contact-tel .tel:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e900";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  color: #fff;
  text-align: center;
  line-height: 25px;
  font-size: 2.5rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 640px), print {
  .detail-contact-tel .tel:before {
    color: #2166b9;
  }
}

@media screen and (min-width: 768px), print {
  .detail-contact-tel .tel:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 3rem;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-contact-tel .tel:before {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 3.5rem;
  }
}

.detail-contact-telbtn {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  padding: .5em 1em .8em;
  margin-bottom: 1em;
  border-radius: 1em;
  -webkit-box-shadow: 0 6px 0 0 rgba(33, 102, 185, 0.88);
  box-shadow: 0 6px 0 0 rgba(33, 102, 185, 0.88);
  background-color: #2166b9;
}

.detail-contact-mail {
  width: 100%;
  margin: 1.5em 0 0 0;
}

@media screen and (min-width: 640px), print {
  .detail-contact-mail {
    width: 40%;
    margin: 0 0 0 1.5em;
  }
}

.detail-contact-link {
  display: block;
  color: #5ab4bd;
  text-align: center;
  padding: .4em 1.5em .6em 1.7em;
  border-radius: 5em;
  border: 3px solid #5ab4bd;
  background-color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (min-width: 640px), print {
  .detail-contact-link {
    padding: 1em 1.5em 1em 1.7em;
  }
}

@media screen and (min-width: 768px), print {
  .detail-contact-link {
    padding: 1.2em 2em 1.2em 2.2em;
  }
}

.detail-contact-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #5ab4bd;
}

.detail-contact-link:hover span:before {
  color: #fff;
}

.detail-contact-link span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 25px;
}

@media screen and (min-width: 768px), print {
  .detail-contact-link span {
    font-size: 1.8rem;
  }
}

.detail-contact-link span:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e902";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  color: #5ab4bd;
  text-align: center;
  line-height: 20px;
  font-size: 2rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.detail-related {
  margin-bottom: 3em;
}

.detail-related-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -.5em -1.5em 0;
}

@media screen and (min-width: 768px), print {
  .detail-related-lists {
    margin: 0 -1em -1.5em 0;
  }
}

.detail-related-list {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 .5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .detail-related-list {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 1.5em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .detail-related-list {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}

.detail-related-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  height: 100%;
  padding: .8em 1em;
  border: 2px solid #eee;
  -webkit-transition: .3s;
  transition: .3s;
}

.detail-related-link:hover {
  text-decoration: none;
}

.detail-related-img {
  padding-right: 1em;
}

.detail-related-main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.detail-related-time {
  color: #555;
  margin-bottom: 0.3em;
}

.detail-related-title {
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
}

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

.detail-paging-subsection:first-child {
  overflow: hidden;
  margin-bottom: 1.5em;
}

.detail-paging-subsection a {
  font-weight: bold;
  text-decoration: underline;
}

.detail-paging-subsection .prev {
  float: left;
}

.detail-paging-subsection .next {
  float: right;
}

.detail-paging-subsection .back {
  text-align: center;
}

.detail .post-list li {
  padding-left: 0 !important;
}

.detail .post-list li:before {
  display: none;
}

.detail .post-list li a {
  display: inline-block;
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  margin-bottom: .5rem;
}

.detail .post-list li p {
  font-size: .9em;
}

.detail .post-list li:not(:last-child) {
  margin-bottom: 2em;
}

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

.detail h2 {
  position: relative;
  color: #333;
  font-size: 1.1em;
  text-align: left;
  line-height: 1.4;
  padding-top: 0;
  padding: .6em 0 .7em 17px;
  margin-top: 0;
  margin: 3em 0 1.5em;
  background-color: #fafafa;
  border-left: 5px solid #2166b9;
}

@media screen and (min-width: 768px), print {
  .detail h2 {
    font-size: 1.2em;
  }
}

.detail h2:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eee;
}

.detail h3 {
  position: relative;
  color: #333;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0 0 0.3em 1.5em;
  margin: 3em 0 1.5em;
  border-bottom: 2px solid #2166b9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.detail h3::before {
  position: absolute;
  display: block;
  content: "■";
  color: #2166b9;
  font-size: 14px;
  top: 4px;
  left: 5px;
}

.detail #ez-toc-container {
  margin: 2em 0;
  padding: 20px;
}

@media screen and (max-width: 639.98px) {
  .detail #ez-toc-container {
    width: 100%;
  }
}

.detail div#ez-toc-container p.ez-toc-title {
  font-weight: 900;
}

.detail a.ez-toc-pull-right.ez-toc-btn.ez-toc-btn-xs.ez-toc-btn-default.ez-toc-toggle {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
  padding: 1em;
  margin-left: 50px;
}

.detail #ez-toc-container ul.ez-toc-list {
  margin-left: 1em;
}

.detail #ez-toc-container ul.ez-toc-list li {
  line-height: 2;
}

.detail #ez-toc-container ul.ez-toc-list li:before {
  display: none;
}

.detail #ez-toc-container a:hover {
  text-decoration: none;
}

/* ページネーション */
.pagination {
  padding-top: 2em;
  text-align: center;
  overflow: hidden;
}

.pagination a,
.pagination span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  padding: .6em 1.2em;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  background-color: #ccc;
}

.pagination a:hover,
.pagination span.current {
  background-color: #2166b9;
  color: #fff;
}

.pagination a:hover {
  text-decoration: none;
}

/* お問い合わせ */
.contact-description {
  border: 2px solid #C1272D;
  border-radius: 5px;
  padding: 10px;
}

.contact-form table tr {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr {
    display: table;
    width: 100%;
  }
}

.contact-form table tr:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr:not(:last-child) {
    margin-bottom: 0;
  }
}

.contact-form table th {
  position: relative;
  display: block;
  margin-bottom: .5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table th {
    display: table-cell;
    vertical-align: middle;
    width: 15em;
    margin-bottom: 0;
    padding: .8em 1em;
  }
}

.contact-form table th .title {
  font-weight: bold;
}

.contact-form table th .require,
.contact-form table th .option {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: .9em;
  color: #fff;
  width: 3em;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact-form table th .require {
  background-color: #2166b9;
}

.contact-form table th .option {
  background-color: #999;
}

.contact-form table td {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table td {
    display: table-cell;
    vertical-align: middle;
    padding: .8em 0 .8em 1em;
  }
}

.contact-form table td input[type="text"],
.contact-form table td input[type="email"],
.contact-form table td input[type="tel"] {
  padding: 8px;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1em;
}

.contact-form table td input::-webkit-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input:-ms-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input::-ms-input-placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td input::placeholder {
  font-size: .9em;
  color: #ccc;
}

.contact-form table td .full {
  width: 100%;
}

.contact-form table td .per60 {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .contact-form table td .per60 {
    width: 60%;
  }
}

.contact-form table td select {
  padding: 8px 4px;
  border-radius: 3px;
}

.contact-submit {
  margin-top: 1em;
  text-align: center;
}

.contact-submit .btn {
  display: block;
  border: 1px solid #2166b9;
  background-color: #fff;
  color: #2166b9;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
}

.contact-submit .btn:hover {
  color: #fff;
  background-color: #2166b9;
}

/* プライバシーポリシー */
.privacy {
  line-height: 1.6;
}

.privacy strong {
  font-weight: bold;
}

/* 画像回り込み */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  margin: 0 auto 1em;
}

@media screen and (min-width: 480px), print {
  .alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
}

.alignleft {
  display: block;
  margin: 0 auto 1em;
}

@media screen and (min-width: 480px), print {
  .alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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

  修正・追加用

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