@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: #000;
  border: none;
  text-decoration: none;
}

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

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

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

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

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

.list-unstyled,
.list-style-none {
  list-style: none;
}

.text-left,
.text-start {
  text-align: left;
}

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

.text-right,
.text-end {
  text-align: right;
}

.text-white {
  color: #fff;
}

.text-danger {
  color: #b22d00 !important;
}

.text-indent {
  text-indent: 1em;
}

.fs-sm {
  font-size: 1.4rem;
}
.fs-lg {
  font-size: 1.8rem;
}
.fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .fs-xl {
    font-size: 2rem;
  }
}

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

.font-feature-settings {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

* {
  scroll-behavior: auto !important;
}

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

  共通スタイル

-------------------------------- */
/* 共通見出し */
.heading {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
.heading.h2 {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  line-height: 1.2;
  font-size: 1.4rem;
  text-align: center;
  border-bottom: 1px dotted #000;
}
@media screen and (min-width: 1100px), print {
  .heading.h2 {
    font-size: 1.6rem;
  }
}
.heading.h2 .ft-lg {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1em;
  font-weight: 900;
  font-size: 2.6rem;
}
@media screen and (min-width: 1100px), print {
  .heading.h2 .ft-lg {
    font-size: 3rem;
  }
}
.heading.h3 {
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  font-weight: 900;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  background-color: #000;
}
@media screen and (min-width: 1100px), print {
  .heading.h3 {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
}
.heading.h4 {
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  font-weight: 900;
  font-size: 2.4rem;
  text-align: center;
  border: 1px solid #000;
}
@media screen and (min-width: 1100px), print {
  .heading.h4 {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
}
/* 共通リスト */
.list {
  list-style-type: none;
  line-height: 1.5;
}
.list li {
  position: relative;
  padding-left: 1.15em;
}
.list li:not(:last-child) {
  margin-bottom: 0.35em;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 100%;
  background-color: #000;
}

/* インデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* リード文 */
.lede {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #000;
}
@media screen and (min-width: 1100px), print {
  .lede {
    font-size: 2rem;
  }
}

/* リンクボタン */
.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.25rem 2rem 1.5rem 3.75rem;
  color: #000;
  line-height: 1em;
  font-size: 1.4rem;
  text-align: left;
  border-radius: 10em;
  border: 1px solid currentColor;
  -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.link-button-lg {
  font-size: 1.1em;
}
.link-button-light {
  color: #fff;
}
/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  text-decoration: none;
  color: #000;
}
@media (hover: hover) and (pointer: fine) {
  a.link-button:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
  }
}
a.link-button-light:hover {
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  a.link-button-light:hover {
    color: #000;
    border-color: #fff;
    background-color: #fff;
  }
}

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

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

/* 字詰め */
.kerning {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

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

/* 画像を角丸にする */
.img-radius {
  border-radius: 1.5rem;
}

/* 画像を囲う要素 */
.img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.img-wrap::before {
  content: "";
  display: block;
  padding-top: 75%;
}

/* 画像をトリミング */
.img-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Google Maps */
.gmap-area {
  position: relative;
}
.gmap-area::before {
  content: "";
  display: block;
  padding-top: 400px;
}
.gmap-area iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.table-style {
  display: block;
  line-height: 1.5;
  border-top: 1px dotted #000;
}
@media screen and (max-width: 767.98px) {
  .table-style {
    padding-top: 0;
    border-top: none;
  }
}
.table-style tbody {
  display: block;
}
.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dotted #000;
}
@media screen and (max-width: 767.98px) {
  .table-style tr {
    display: block;
    padding-top: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .table-style tr:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.table-style th {
  padding-left: 1rem;
}
@media screen and (max-width: 767.98px) {
  .table-style th {
    display: block;
    width: auto !important;
    padding: 0.5rem 1rem 0.5rem 1rem;
    color: #fff;
    background-color: #000;
  }
}
@media screen and (max-width: 767.98px) {
  .table-style td {
    display: block;
    padding-top: 0.5rem;
    padding-left: 1rem;
  }
}
.table-style .tel-link {
  color: #000;
}
.table-style a.tel-link {
  color: #000;
}
.table-style a.tel-link:hover {
  color: #111;
}

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

  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: 32rem;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

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

  wrapper

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

  header

-------------------------------- */
.header {
  padding-top: 6rem;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 10rem;
  }
}
.header-container {
  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: 6rem;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
}
@media screen and (max-width: 1099.98px) {
  .header-logo .site-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;
    height: 100%;
    font-size: 100%;
  }
}
@media screen and (min-width: 1100px), print {
  .header-logo .site-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .header-logo .site-logo {
    left: 4rem;
  }
}
.header-logo .site-logo img {
  display: block;
  width: 15rem;
}
@media screen and (min-width: 1100px), print {
  .header-logo .site-logo img {
    width: 21.5rem;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .header .header-container {
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1100px) {
  .is-fixed .header .header-container,
  .is-fixed .header .contact-button {
    position: fixed;
    top: -60px;
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}

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

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  height: 100%;
  z-index: 1000;
}
@media screen and (max-width: 1099.98px) {
  .nav {
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-open .nav {
    left: 0;
  }
}
.nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
    overflow: visible;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 6.5rem 1.5rem 1.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    padding-right: 14rem;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav {
    padding-right: 15rem;
  }
}
.main-nav .nav-item {
  position: relative;
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    border-top: 1px dotted #ddd;
  }
  .main-nav .nav-item:last-child {
    border-bottom: 1px dotted #ddd;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item {
    margin-left: 2.5rem;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-item {
    margin-left: 4rem;
  }
}
.main-nav .nav-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;
  height: 5rem;
  font-weight: 900;
  color: #fff;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 10rem;
    padding: 0;
    color: #000;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 2rem;
    left: 0;
    width: 0;
    height: 0.1rem;
    margin: auto;
    background-color: #000;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
}
.main-nav .nav-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .main-nav .nav-link:hover::before {
    width: 100%;
  }
}
.main-nav .nav-contact {
  display: none !important;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-contact {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav-active .nav-link::before {
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
}

/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: #fff;
  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: -1.4rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.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 #000;
}
.nav-button-icon::after {
  display: none;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}
/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: 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-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: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
}

/* ナビゲーション背景 */
.nav-screen {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-open .nav-screen {
  pointer-events: auto;
  opacity: 0.5;
  cursor: pointer;
}
/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .is-fixed .nav {
    position: fixed;
    top: -60px;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}

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

  main

-------------------------------- */
.main {
  padding: 5rem 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 7.5rem 3rem 10rem;
  }
}

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

  footer

-------------------------------- */
.footer {
  padding: 0 1.5rem;
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 3rem;
  }
}
.footer-container {
  margin: 0 -1.5rem;
  padding: 5rem 1.5rem;
  background-color: #000;
}
@media screen and (min-width: 1100px), print {
  .footer-container {
    margin: 0 -3rem;
    padding: 10rem 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-head {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .footer-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}
.footer-body {
  max-width: 40rem;
  margin: auto;
}
@media screen and (min-width: 768px), print {
  .footer-body {
    max-width: 60rem;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: none;
    margin: 0 0 0 auto;
  }
}
.footer-logo {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .footer-logo {
    margin: 0 5rem 0 0;
  }
}
.footer-info {
  line-height: 1.8;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .footer-info-wrap {
    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-info-wrap {
    display: block;
  }
}
.footer-info-row {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
}
.footer-info-row:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .footer-info-row:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}
@media screen and (min-width: 480px), print {
  .footer-info-add br {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .footer-info dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
    width: 10rem;
  }
  .footer-info dt::after {
    content: "／";
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px), print {
  .footer-info dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 1.5rem;
  }
}
.footer-info .tel-link {
  color: #fff;
}
.footer-info a.tel-link {
  color: #fff;
}
.footer-nav {
  display: inline;
}
@media screen and (min-width: 1100px), print {
  .footer-nav {
    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;
    margin-right: 3rem;
    padding-left: 2.5rem;
    border-left: 1px dotted #fff;
  }
}
@media screen and (min-width: 1200px), print {
  .footer-nav {
    margin-right: 4rem;
  }
}
.footer-nav-wrap {
  margin: 0 -1rem -1rem 0;
}
@media screen and (min-width: 1100px), print {
  .footer-nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
}
.footer-nav-wrap::after {
  content: "";
  display: table;
  clear: both;
}
.footer-nav .nav-item {
  float: left;
  width: 50%;
  padding: 0 1rem 1rem 0;
}
@media screen and (min-width: 768px), print {
  .footer-nav .nav-item {
    width: 25%;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-item {
    float: none;
    width: auto;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.footer-nav .nav-link {
  display: block;
  padding: 1rem 0;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-radius: 0.8rem;
  border: 1px solid #fff;
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    font-size: 1.8rem;
    border-radius: 0;
    border: none;
  }
}
.footer-nav .nav-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px), print {
  .footer-nav .nav-link:hover {
    text-decoration: underline;
  }
}
.footer-nav-contact {
  display: none !important;
  margin-top: 5rem;
}
@media screen and (min-width: 1100px), print {
  .footer-nav-contact {
    height: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px), print {
  .footer-nav-contact {
    margin-left: 2rem;
  }
}
.footer-nav-contact a {
  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;
  height: 100%;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 0.8rem;
  border: 1px solid #fff;
  -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
@media screen and (min-width: 768px), print {
  .footer-nav-contact a {
    width: 30rem;
    margin: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .footer-nav-contact a {
    width: 11rem;
    margin: 0;
    padding: 0;
  }
}
.footer-nav-contact a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-contact a:hover {
    color: #000;
    background-color: #fff;
  }
  .footer-nav-contact a:hover::before {
    background-image: url(../img/base/mail_blk.svg);
  }
}
.footer-nav-contact a::before {
  content: "";
  display: block;
  width: 100%;
  height: 3rem;
  margin: 1rem auto 1rem;
  background: url(../img/base/mail_wht.svg) center no-repeat;
  background-size: contain;
}
.footer-copy {
  padding: 4rem 0 9rem;
}
@media screen and (min-width: 768px), print {
  .footer-copy {
    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 {
  .footer-copy {
    padding: 3rem 0;
  }
}
.footer-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .footer-policy {
    margin-bottom: 0;
  }
}
.footer-policy li {
  margin: 0 1rem;
}
@media screen and (min-width: 768px), print {
  .footer-policy li {
    margin: 0 4rem 0 0;
  }
}
.footer-policy li:last-child {
  display: none !important;
}
.footer-policy a {
  display: block;
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .footer-policy a {
    font-size: 1.4rem;
  }
}

/* ページの先頭へ */
.pagetop {
  display: block;
  position: fixed;
  right: 0.5rem;
  bottom: 5.5rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .pagetop {
    right: 1rem;
    bottom: 7rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}
.is-fixed .pagetop {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover {
    background-color: #111;
  }
}
.pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* コピーライト */
.copy {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .copy {
    -ms-flex-item-align: center;
        align-self: center;
    margin-left: auto;
    text-align: right;
  }
}
.copy small {
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .copy span {
    display: inline;
    font-weight: 900;
  }
}

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

  ページタイトル

-------------------------------- */
.page-title {
  line-height: 1em;
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .page-title {
    font-size: 5.6rem;
  }
}
.page-title::after {
  content: attr(data-subtitle);
  display: block;
  margin: 2rem 0 0;
  padding: 0.5rem 0;
  line-height: 1em;
  font-size: 2rem;
  color: #000;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .page-title::after {
    margin: 2.5rem 0 0;
    padding: 1rem 0;
    font-size: 2.6rem;
  }
}
.page-title-container {
  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;
  height: 18rem;
  padding: 0 1.5rem;
  background-color: #aaa;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .page-title-container {
    height: 30rem;
    padding: 0 0 0 12.5rem;
  }
}
.page-title-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7rem;
  height: 100%;
  background: url(../img/base/title-bg.svg) right no-repeat;
  background-size: auto 100%;
  pointer-events: none;
}
@media screen and (min-width: 768px), print {
  .page-title-container::before {
    width: 15rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title-container::before {
    width: 100%;
    background-position: left;
    background-size: contain;
  }
}

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

  お問い合わせボタン

-------------------------------- */
/* お問い合わせ（電話）*/
.tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}
.tel-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.tel-button a:hover {
  text-decoration: none;
}
.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto;
  background: url(../img/base/tel_wht.svg) center no-repeat;
  background-size: cover;
}
.tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .contact-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    z-index: 1010;
  }
}
.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;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1100px), print {
  .contact-button a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 11rem;
    height: 10rem;
    color: #000;
    border-left: 1px solid #000;
    background-color: #fff;
    -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s;
    transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  }
}
.contact-button a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .contact-button a:hover {
    color: #fff;
    background-color: #000;
  }
  .contact-button a:hover::before {
    background-image: url(../img/base/mail_wht.svg);
  }
}
.contact-button a::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 1.5rem;
  background: url(../img/base/mail_wht.svg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .contact-button a::before {
    width: 100%;
    height: 3rem;
    margin: 1rem auto 1rem;
    background-image: url(../img/base/mail_blk.svg);
  }
}

/* 共通お問い合わせ */
@media screen and (min-width: 768px), print {
  .global-contact {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.global-contact-tel {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .global-contact-tel {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .global-contact-mail {
    margin-left: 1rem;
  }
}
.global-contact .tel-link,
.global-contact .mail-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.1;
  text-align: left;
  color: #000;
}
.global-contact .tel-link::before,
.global-contact .mail-link::before {
  content: "";
  display: block;
  margin: 0 1rem 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.global-contact .tel-link::before {
  width: 22px;
  height: 22px;
  background-image: url(../img/base/tel_gry.svg);
}
.global-contact .mail-link::before {
  width: 25px;
  height: 25px;
  background-image: url(../img/base/mail_gry.svg);
}
.global-contact a.tel-link,
.global-contact .mail-link {
  color: #000;
}
.global-contact a.tel-link:hover,
.global-contact .mail-link:hover {
  color: #111;
  text-decoration: none;
}
.global-contact .tel-num {
  display: block;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.5rem;
}
.global-contact .mail-text {
  display: block;
  line-height: 1em;
  font-weight: 700;
  font-size: 2.5rem;
}
/* --------------------------------

  フォーム部品

-------------------------------- */
.form-table {
  display: block;
  position: relative;
  padding-top: 2rem;
  line-height: 1.5;
  border-top: 1px dotted #000;
}
@media screen and (min-width: 1100px), print {
  .form-table {
    padding-top: 3rem;
  }
}
.form-table tbody {
  display: block;
}
.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  width: 100%;
  padding: 0 3rem 3rem;
  border-bottom: 1px dotted #000;
}
@media screen and (max-width: 1099.98px) {
  .form-table tr {
    display: block;
    padding: 0 0 3rem;
  }
}
.form-table tr:not(:last-child) {
  margin-bottom: 3rem;
}
.form-table th {
  vertical-align: middle;
  width: 28rem;
  padding: 1.5rem 0;
  font-size: 2rem;
}
@media screen and (max-width: 1099.98px) {
  .form-table th {
    display: block;
    width: auto;
    padding: 0 0 3rem;
    line-height: 1.2;
    font-size: 1.8rem;
  }
}
.form-table td {
  vertical-align: top;
  background-color: #fff;
}
@media screen and (max-width: 1099.98px) {
  .form-table td {
    display: block;
  }
}

.form-control, .form-select {
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  font-size: 100%;
  border-radius: 0;
  border-width: 5px;
  border-color: #eee;
  background-color: #fff;
}
@media screen and (min-width: 1100px), print {
  .form-control, .form-select {
    padding: 1.35rem 1.5rem 1.35rem 1.5rem;
  }
}
.form-control:hover, .form-control:active, .form-control:focus, .form-select:hover, .form-select:active, .form-select:focus {
  outline: none;
  text-decoration: none;
}
.form-control:active, .form-control:focus, .form-select:active, .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #111;
  background-color: #fff;
}
.form-control-sm {
  width: 12rem;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 768px), print {
  .form-control-sm {
    width: 18rem;
  }
}
@media screen and (min-width: 1100px), print {
  .form-control-sm {
    width: 24rem;
  }
}
.form-control:-moz-read-only {
  background-color: #fff;
}
.form-control:disabled, .form-control:read-only {
  background-color: #fff;
}
.form-control::-webkit-input-placeholder {
  color: #000;
}
.form-control::-moz-placeholder {
  color: #000;
}
.form-control:-ms-input-placeholder {
  color: #000;
}
.form-control::-ms-input-placeholder {
  color: #000;
}
.form-control::placeholder {
  color: #000;
}
.form-select {
  position: relative;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 4rem;
}
.form-select::-ms-expand {
  display: none;
}
.form-select-wrap {
  position: relative;
  background-color: #fff;
}
.form-select-arrow {
  display: block;
  position: absolute;
  top: 3px;
  right: 15px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  pointer-events: none;
  z-index: 1;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #333 transparent transparent transparent;
  background: none;
}
.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 15em;
  max-height: 15em;
  padding: 0.5rem 1rem 0;
}
.form-textarea-sm {
  height: 7em;
}
.form-textarea.form-control {
  min-height: 2.65em;
}
.form-icon {
  float: left;
  display: block;
  width: 6rem;
  margin-right: 1.5rem;
  padding: 0.5rem 0;
  line-height: 1;
  font-weight: 400;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .form-icon {
    width: 8rem;
    margin-right: 3rem;
    padding: 0.75rem 0;
    font-size: 1.8rem;
  }
}
.form-icon::before {
  content: attr(data-label);
}
.form-icon-required {
  color: #fff;
  background-color: #000;
}
.form-icon-free {
  color: #fff;
  background-color: #999;
}
@media screen and (min-width: 1100px), print {
  .form-icon-free {
    color: transparent;
    background-color: transparent;
  }
}
.form-check-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  position: relative;
  margin: 0.75rem 2rem 0.75rem 0.75rem;
  cursor: pointer;
}
.form-check-icon {
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  background-color: #fff;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
.form-check-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 12px;
  margin: auto;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.form-check-radio {
  border-radius: 100%;
}
.form-check-radio::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  border-radius: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check-input[type=checkbox]:checked + .form-check-icon {
  border-color: #111;
  background-color: #111;
}
.form-check-input[type=checkbox]:checked + .form-check-icon::before {
  border-color: #fff;
}
.form-check-input[type=radio]:checked + .form-check-icon {
  border-color: #111;
}
.form-check-input[type=radio]:checked + .form-check-icon::before {
  background-color: #111;
}
.form-check-input[type=checkbox].validate-error + .form-check-icon, .form-check-input[type=radio].validate-error + .form-check-icon {
  border-color: #c00;
}

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

span.validate-error {
  display: block !important;
  line-height: 1.5;
  font-size: 1.3rem;
  color: #c00;
}
@media screen and (min-width: 1100px), print {
  span.validate-error {
    font-size: 1.45rem;
  }
}
span.validate-error + .validate-error {
  margin-top: 0.25rem;
}
span.validate-error:last-of-type {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1100px), print {
  span.validate-error:last-of-type {
    margin-bottom: 0.25rem;
  }
}

.error-message {
  margin-top: 1rem;
  margin-bottom: -1rem;
}

.error-message-check span.validate-error:not(:first-of-type),
.error-message-multi span.validate-error:not(:first-of-type) {
  display: none !important;
}

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

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
  position: relative;
  margin: 0.5rem 1rem;
  padding: 1.25rem 4rem 1.5rem 4rem;
  line-height: 1em;
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  border-radius: 10em;
  border: 1px solid currentColor;
  background: transparent;
  -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
@media screen and (min-width: 768px), print {
  .form-button {
    padding: 1.5rem 4rem 1.75rem 4rem;
    font-size: 2rem;
  }
}
.form-button:hover {
  text-decoration: none;
}
.form-button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 2rem;
  margin-left: -1.5rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form-button-send {
  border-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .form-button-send:not(:disabled):hover {
    color: #fff;
    background-color: #000;
  }
}
.form-button-back {
  color: #fff;
  border-color: #999;
  background-color: #999;
}
@media (hover: hover) and (pointer: fine) {
  .form-button-back:hover {
    border-color: #aaa;
    background-color: #aaa;
  }
}
.form-button-search {
  margin: 0;
  padding: 1.05rem 2rem 1.25rem;
  font-size: 1.4rem;
  border-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  .form-button-search:hover {
    color: #fff;
    background-color: #000;
  }
}
.form-button-search::before {
  width: 6px;
  height: 6px;
  margin-right: 1rem;
  margin-left: -0.5rem;
}
/* --------------------------------

  トップページ

-------------------------------- */
/* ページ内共通 */
.section-secondary {
  line-height: 1.5;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .section-secondary:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.section-dummy:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .section-dummy:not(:last-child) {
    margin-bottom: 7.5rem;
  }
}
.section-dummy-fluid {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .section-dummy-fluid {
    margin-right: -3rem;
    margin-left: -3rem;
  }
}
.section-dummy-fluid-inner {
  margin-right: -19%;
  margin-left: -19%;
}
.section-heading {
  line-height: 1.2;
  font-size: 100%;
}
.section-heading::before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1em;
  font-weight: 900;
  font-size: 3rem;
}
.section-light {
  background-color: #fff;
}
.section-dark {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1100px), print {
  .section-dark {
    margin-right: -3rem;
    margin-left: -3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

/* スライダー */
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/mv-bg.svg) left no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.slider .swiper-wrapper {
  height: 100%;
}
.slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider .swiper-pagination {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  left: auto;
  width: auto;
  z-index: 10;
}
@media screen and (min-width: 480px), print {
  .slider .swiper-pagination {
    right: 1.5rem;
    bottom: 1rem;
  }
}
@media screen and (min-width: 768px), print {
  .slider .swiper-pagination {
    bottom: 2rem;
    right: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .slider .swiper-pagination {
    bottom: 3.5rem;
    right: 5rem;
  }
}
.slider .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0 0 0.5rem !important;
  background-color: #fff;
  opacity: 1;
}
@media screen and (min-width: 480px), print {
  .slider .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 0 0 1rem !important;
  }
}
@media screen and (min-width: 768px), print {
  .slider .swiper-pagination-bullet {
    width: 1.1rem;
    height: 1.1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .slider .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.slider .swiper-pagination-bullet-active {
  background-color: #aaa;
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.7rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
@media screen and (min-width: 768px), print {
  .slider .swiper-button-prev,
  .slider .swiper-button-next {
    width: 2.8rem;
    height: 2.8rem;
    margin-top: -1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .slider .swiper-button-prev,
  .slider .swiper-button-next {
    width: 4.4rem;
    height: 4.4rem;
    margin-top: -2.2rem;
  }
}
.slider .swiper-button-prev::after,
.slider .swiper-button-next::after {
  display: none;
}
.slider .swiper-button-prev {
  left: 1.5rem;
  border-color: #000;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (min-width: 768px), print {
  .slider .swiper-button-prev {
    left: 2.5rem;
  }
}
.slider .swiper-button-next {
  right: 1.5rem;
  border-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px), print {
  .slider .swiper-button-next {
    right: 2.5rem;
  }
}
.slider-section {
  position: relative;
  margin: -5rem -1.5rem 0;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .slider-section {
    margin: -7.5rem -3rem 0;
  }
}
.slider-container {
  position: relative;
  overflow: hidden;
}
.slider-container::before {
  content: "";
  display: block;
  padding-top: 60.75%;
}
@media screen and (min-width: 1440px), print {
  .slider-container::before {
    padding-top: 972px;
  }
}
.slider-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider-img::before {
  content: "";
  display: block;
  padding-top: 60.75%;
}
@media screen and (min-width: 1440px), print {
  .slider-img::before {
    padding-top: 972px;
  }
}
.slider-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-logo {
  position: absolute;
  top: 25%;
  left: 2.2%;
  width: 47.875%;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 1440px), print {
  .slider-logo {
    left: 3.4rem;
    width: 76.6rem;
  }
}
.slider-logo img {
  width: 100%;
}
.slider-catch {
  position: absolute;
  top: 56%;
  left: 23%;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 480px), print {
  .slider-catch {
    top: 58%;
    left: 29%;
  }
}
@media screen and (min-width: 1440px), print {
  .slider-catch {
    top: 63%;
    left: 45.5rem;
  }
}
.slider-catch .catch {
  font-weight: 900;
}
.slider-catch .catch-lg {
  margin-bottom: 1.5vw;
  line-height: 1.1;
  font-size: calc(1.2rem + 2vw);
  color: #fff;
}
@media screen and (min-width: 480px), print {
  .slider-catch .catch-lg {
    margin-bottom: 2vw;
    font-size: calc(1.6rem + 2vw);
  }
}
@media screen and (min-width: 1100px), print {
  .slider-catch .catch-lg {
    margin-bottom: 2rem;
    font-size: 5.4rem;
  }
}
.slider-catch .catch-sm {
  padding: 1vw;
  line-height: 1em;
  font-size: calc(0.5rem + 0.9vw);
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 480px), print {
  .slider-catch .catch-sm {
    font-size: calc(0.7rem + 0.9vw);
  }
}
@media screen and (min-width: 1100px), print {
  .slider-catch .catch-sm {
    padding: 0.75rem 0;
    font-size: 2.4rem;
  }
}
.slider-control {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  z-index: 100;
  background-color: transparent;
}
@media screen and (min-width: 1100px), print {
  .slider-control {
    max-width: 1100px;
  }
}
/* お知らせ一覧・採用情報一覧 */
.oguma-news-container {
  padding: 5rem 0;
}
@media screen and (min-width: 1100px), print {
  .oguma-news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7.5rem 0;
  }
}
.oguma-news-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .oguma-news-header {
    width: 20rem;
    margin-bottom: 0;
    text-align: left;
  }
}
.oguma-news-more {
  margin-top: 2rem;
}
@media screen and (min-width: 1100px), print {
  .oguma-news-more {
    margin-top: 4rem;
  }
}
/* サービス紹介 */
.oguma-service-section {
  margin: 0 -1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-section {
    margin: 0 -3rem;
  }
}
.oguma-service-section-primary {
  color: #fff;
  background-color: #111;
}
.oguma-service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.oguma-service-main {
  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;
  position: relative;
  margin: -10% 1.5rem 0;
  padding: 3.5rem 1.5rem 5rem;
  z-index: 1;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-main {
    margin: 0;
    padding: 5rem 7.5rem;
  }
  .oguma-service-main::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 101%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: auto 110%;
    pointer-events: none;
  }
}
.oguma-service-heading {
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-heading {
    font-size: 3rem;
    text-align: left;
  }
}
@media screen and (min-width: 1280px), print {
  .oguma-service-heading {
    font-size: 4rem;
  }
}
.oguma-service-heading::before {
  font-size: 4rem;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-heading::before {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1280px), print {
  .oguma-service-heading::before {
    font-size: 9rem;
  }
}
.oguma-service-text {
  margin: 2.5rem 0;
  line-height: 1.8;
  font-size: 1.4rem;
}
@media screen and (min-width: 480px), print {
  .oguma-service-text {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-service-text {
    margin: 3rem 0;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media screen and (min-width: 1280px), print {
  .oguma-service-text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-service-text .br {
    display: block;
  }
}
.oguma-service-more {
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-more {
    text-align: left;
  }
}
.oguma-service-img .img-wrap::before {
  padding-top: 54.025%;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-primary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1099.98px) {
  .oguma-service-primary .oguma-service-main {
    background-color: #111;
  }
}
.oguma-service-primary .oguma-service-main::before {
  left: -100%;
  margin-right: -1%;
  background-image: url(../img/top/img1-bg.svg);
  background-position: right;
}
@media screen and (min-width: 1100px), print {
  .oguma-service-secondary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 1099.98px) {
  .oguma-service-secondary .oguma-service-main {
    background-color: #fff;
  }
}
.oguma-service-secondary .oguma-service-main::before {
  right: -100%;
  margin-left: -1%;
  background-image: url(../img/top/img2-bg.svg);
  background-position: left;
}

/* 設備紹介 */
.oguma-facility-section {
  position: relative;
  margin: 0 -1.5rem;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .oguma-facility-section {
    margin: 0 -3rem;
    padding: 10rem;
  }
}
.oguma-facility-container {
  position: relative;
  z-index: 1;
}
.oguma-facility-main {
  padding: 5rem 1.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px), print {
  .oguma-facility-main {
    width: 50rem;
    margin: auto;
    padding: 5rem 3rem;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-facility-main {
    margin: 0 0 0 auto;
    padding: 7rem;
  }
}
.oguma-facility-heading {
  font-size: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .oguma-facility-heading {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-facility-heading {
    font-size: 5rem;
  }
}
.oguma-facility-heading::before {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .oguma-facility-heading::before {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-facility-heading::before {
    font-size: 2.4rem;
  }
}
.oguma-facility-text {
  margin: 3rem 0 4rem;
  line-height: 2;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .oguma-facility-text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-facility-text {
    margin: 3.5rem 0 5rem;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.oguma-facility-more {
  text-align: center;
}
.oguma-facility-img .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.oguma-facility-img .img-wrap::before {
  display: none;
}

/* お問い合わせ */
.oguma-contact-section {
  margin: 0 -1.5rem -5rem;
  padding: 0 1.5rem 3rem;
  background-color: #eee;
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-section {
    margin: 0 -3rem -10rem;
    padding: 0 3rem 4rem;
  }
}
.oguma-contact-header {
  padding: 3rem 0;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-header {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-header {
    padding: 6rem 0;
  }
}
.oguma-contact-heading {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-heading {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-heading {
    font-size: 2.6rem;
  }
}
.oguma-contact-heading .br {
  display: block;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-heading .br {
    display: inline;
  }
}
.oguma-contact-list {
  max-width: 40rem;
  margin: auto;
  border: 5px solid #000;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 80rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-list {
    max-width: none;
    margin: 0;
    border-width: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .oguma-contact-list li {
    width: 50%;
  }
}
.oguma-contact-list .fax {
  border-top: 1px solid #000;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-list .fax {
    border-top: none;
    border-left: 1px solid #000;
  }
}
.oguma-contact-list .tel-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;
  padding: 1rem 0;
  color: #000;
  letter-spacing: normal;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-list .tel-link {
    height: 9rem;
    padding: 0;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-list .tel-link {
    height: 13rem;
    font-size: 2.6rem;
  }
}
.oguma-contact-list a.tel-link:hover {
  text-decoration: none;
  color: #000;
}
.oguma-contact-list .tel-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.oguma-contact-list .tel-num {
  font-size: 1.8em;
}
@media screen and (min-width: 1100px), print {
  .oguma-contact-list .tel-num {
    font-size: 2em;
  }
}
.oguma-contact-info {
  padding: 2rem 0;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-info {
    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 {
  .oguma-contact-info {
    padding: 2.5rem 0;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.oguma-contact-info dl {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-info dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 3rem;
  }
}
.oguma-contact-info dl:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px), print {
  .oguma-contact-info dl:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .oguma-contact-info dt::after {
    content: "／";
  }
}
@media screen and (min-width: 768px), print {
  .oguma-contact-info-add {
    margin-left: -3em;
  }
}
@media screen and (min-width: 480px), print {
  .oguma-contact-info-add br {
    display: none;
  }
}
.oguma-contact-more {
  text-align: center;
}

/* ローディング */
.loader {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}
.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 3px solid #ddd;
  border-top: 2px solid #000;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}
@media screen and (min-width: 1100px), print {
  .loader::before {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }
}

@-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);
  }
}
/* アニメーション */
.anim-item {
  pointer-events: none;
  -webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, transform 0.75s;
  transition: opacity 0.75s, transform 0.75s, -webkit-transform 0.75s;
}
.anim-item.is-active {
  pointer-events: auto;
}
.anim-item.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(75px);
          transform: translateY(75px);
}
.anim-item.fadeInUp.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.anim-item.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(-115px);
          transform: translateX(-115px);
}
.anim-item.fadeInRight.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.anim-item.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(115px);
          transform: translateX(115px);
}
.anim-item.fadeInLeft.is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.anim-item.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.anim-item.fadeIn.is-active {
  opacity: 1;
}
.anim-item.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.anim-item.fadeInZoomIn.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

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

  お知らせ

-------------------------------- */
.news-heading {
  margin-bottom: 3rem;
  padding-bottom: 5rem;
  line-height: 1.4;
  font-weight: 900;
  font-size: 2rem;
  border-bottom: 1px dotted #000;
}
@media screen and (min-width: 1100px), print {
  .news-heading {
    padding-bottom: 7.5rem;
    font-size: 3rem;
  }
}
.news-list {
  border-top: 1px dotted currentColor;
}
.news-list-dark .news-link {
  color: #000;
}
.news-list-light .news-link {
  color: #fff;
}
.news-list-secondary {
  border-top: none;
}
@media screen and (min-width: 1100px), print {
  .news-list-secondary .news-link {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3rem;
  text-align: center;
}
.news-back {
  margin-top: 3rem;
  padding-top: 3rem;
  text-align: center;
  border-top: 1px dotted #000;
}
.news-link {
  display: block;
  position: relative;
  padding: 1.25rem 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
  border-bottom: 1px dotted currentColor;
}
@media screen and (min-width: 640px), print {
  .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem 1.75rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-link {
    padding: 3rem;
    font-size: 1.6rem;
  }
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-title {
  text-decoration: underline;
}
.news-date {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 640px), print {
  .news-date {
    width: 9em;
    margin-bottom: 0;
  }
}
.news-date span {
  font-weight: 900;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 640px), print {
  .news-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.news-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem -3rem 0;
}
@media screen and (min-width: 1100px), print {
  .news-list-img {
    margin: 0 -3rem -5rem 0;
  }
}
.news-list-img .news-topics {
  width: 50%;
  padding: 0 1rem 3rem 0;
}
@media screen and (min-width: 768px), print {
  .news-list-img .news-topics {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img .news-topics {
    padding: 0 3rem 5rem 0;
  }
}
.news-list-img .news-topics-inner {
  display: block;
  position: relative;
  height: 100%;
  padding: 75% 0 0;
  text-align: center;
  border-bottom: none;
}
.news-list-img .news-title {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .news-list-img .news-title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img .news-title {
    margin-top: 1.75rem;
    font-size: 1.8rem;
  }
}
.news-list-img .news-img {
  display: block;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
}
.news-list-img .news-img::before {
  content: "";
  display: block;
  padding-top: 75%;
}
/* topics_paging */
#topics_paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1.5rem;
}
#topics_paging_all {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: center;
}
#topics_paging li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.3rem;
  padding: 0.7rem 1.5rem;
  line-height: 1.2;
  color: #000;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 10em;
  border: 1px solid #ddd;
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
@media screen and (max-width: 767.98px) {
  #topics_paging li {
    font-size: 1.2rem;
  }
}
#topics_paging a {
  display: block;
  margin: -0.7rem -1.5rem;
  padding: 0.7rem 1.5rem;
  color: #000;
}
#topics_paging a:hover {
  text-decoration: none;
  color: #000;
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

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

  下層ページ

-------------------------------- */
/* サービス紹介 */
.service-img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.service-img .img-wrap::before {
  padding-top: 60%;
}
@media screen and (min-width: 768px), print {
  .service-img .img-wrap::before {
    padding-top: 40.6875%;
  }
}
@media screen and (min-width: 1600px), print {
  .service-img .img-wrap::before {
    padding-top: 65rem;
  }
}
.service-container {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .service-container {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}
.service-heading.heading {
  margin-bottom: 4rem;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 1100px), print {
  .service-heading.heading {
    margin-bottom: 7rem;
  }
}
.service-heading.heading .ft-lg {
  line-height: 1.4;
  margin-bottom: 0;
}
.service-content {
  height: 100%;
  padding: 2rem;
  border: 5px solid transparent;
}
@media screen and (min-width: 1100px), print {
  .service-content {
    padding: 4rem;
    border-width: 10px;
  }
}
.service-content-light {
  border-color: #fff;
}
.service-content-dark {
  border-color: #000;
}
.service-title {
  margin-bottom: 2rem;
  line-height: 1;
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
}
@media screen and (min-width: 1100px), print {
  .service-title {
    margin-bottom: 4rem;
    font-size: 6rem;
  }
}
.service-feature {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1100px), print {
  .service-feature {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.service-feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2rem -2rem 0;
}
@media screen and (min-width: 1100px), print {
  .service-feature-list {
    margin: 0 -7rem -7rem 0;
  }
}
.service-feature-item {
  width: 100%;
  padding: 0 2rem 2rem 0;
}
@media screen and (min-width: 768px), print {
  .service-feature-item {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .service-feature-item {
    padding: 0 7rem 7rem 0;
  }
}
.service-feature-item.__full {
  width: 100%;
}
.service-case {
  padding-bottom: 0;
}
.service-case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.service-case-list li {
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .service-case-list li {
    width: 50%;
  }
}
@media screen and (min-width: 1100px), print {
  .service-case-list li {
    width: 33.3333%;
    font-size: 2.2rem;
  }
  .service-case-list li::before {
    top: 0.65em;
  }
}

/* ご依頼の流れ */
.flow-list {
  counter-reset: flow_list;
}
@media screen and (max-width: 767.98px) {
  .flow-list {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.flow-item:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1100px), print {
  .flow-item:not(:last-child) {
    margin-bottom: 8rem;
  }
}
.flow-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 768px), print {
  .flow-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.flow-main {
  position: relative;
  padding: 4rem 2rem 2rem;
}
@media screen and (min-width: 768px), print {
  .flow-main {
    min-height: 30rem;
  }
}
@media screen and (min-width: 1100px), print {
  .flow-main {
    padding: 4rem;
    min-height: 44rem;
  }
}
.flow-counter {
  margin-top: -2rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .flow-counter {
    text-align: left;
  }
}
@media screen and (min-width: 1100px), print {
  .flow-counter {
    margin-top: -2rem;
    margin-bottom: 2.5rem;
  }
}
.flow-counter::before {
  counter-increment: flow_list;
  content: counter(flow_list);
  display: block;
  line-height: 1em;
  font-size: 4rem;
}
@media screen and (min-width: 1100px), print {
  .flow-counter::before {
    font-size: 6rem;
  }
}
.flow-title {
  margin-bottom: 2rem;
  padding: 1.5rem 0 2rem;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
}
@media screen and (min-width: 768px), print {
  .flow-title {
    text-align: left;
  }
}
@media screen and (min-width: 1100px), print {
  .flow-title {
    font-size: 3rem;
  }
}
.flow-arrow {
  display: block;
  position: absolute;
  right: 0;
  bottom: -2rem;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 21px 21px 0 21px;
  border-color: #000 transparent transparent transparent;
}
@media screen and (min-width: 1100px), print {
  .flow-arrow {
    bottom: -3rem;
    border-width: 31px 31px 0 31px;
  }
}
.flow-img {
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .flow-img {
    width: 50%;
  }
}
.flow-img .img-wrap {
  height: 100%;
}
.flow-img .img-wrap::before {
  padding-top: 60%;
}
@media screen and (min-width: 768px), print {
  .flow-img .img-wrap::before {
    display: none;
  }
}
.flow-img .img-cover {
  -o-object-position: bottom;
     object-position: bottom;
}

/* 会社概要 */
.company-img {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .company-img {
    width: 40%;
    margin-bottom: 0;
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .company-img {
    width: calc(50% - 1.5rem);
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1600px), print {
  .company-img {
    width: 80rem;
    margin-right: calc(50% - 50vw);
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .company-img .img-wrap {
    height: 100%;
  }
}
.company-img .img-wrap::before {
  padding-top: 46%;
}
@media screen and (min-width: 768px), print {
  .company-img .img-wrap::before {
    padding-top: 81.375%;
  }
}
@media screen and (min-width: 1100px), print {
  .company-img .img-wrap::before {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .company-img .img-cover {
    -o-object-position: 8%;
       object-position: 8%;
  }
}
.company-outline {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .company-outline th {
    width: 15rem;
  }
}
@media screen and (min-width: 1100px), print {
  .company-outline th {
    width: 18rem;
  }
}
@media screen and (min-width: 1100px), print {
  .company-map::before {
    padding-top: 600px;
  }
}

/* 仕事紹介 */
.job-info-heading {
  margin-top: 3rem;
}
@media screen and (min-width: 1100px), print {
  .job-info-heading {
    margin-top: 5rem;
  }
}
.job-info-heading:last-of-type {
  margin-top: 5rem;
}
@media screen and (min-width: 1100px), print {
  .job-info-heading:last-of-type {
    margin-top: 8rem;
  }
}
.job-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3rem -1.5rem -3rem 0;
}
@media screen and (min-width: 1100px), print {
  .job-info-list {
    margin: 5rem -3rem -3rem 0;
  }
}
.job-info-item {
  width: 100%;
  padding: 0 1.5rem 3rem 0;
}
@media screen and (min-width: 768px), print {
  .job-info-item {
    width: 33.3333%;
  }
}
@media screen and (min-width: 1100px), print {
  .job-info-item {
    padding: 0 3rem 3rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .job-info-text {
    font-size: 1.6rem;
  }
}

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

  プリント

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

  修正・追加用

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