@charset "UTF-8";
/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans");
/* Mixin */
.font-size-xx-small {
  font-size: xx-small;
}

.font-size-x-small {
  font-size: x-small;
}

.font-size-small {
  font-size: small;
}

.font-size-medium {
  font-size: medium;
}

.font-size-large {
  font-size: large;
}

.font-size-x-large {
  font-size: x-large;
}

.font-size-xx-large {
  font-size: xx-large;
}

@media screen and (min-width: 576px) {
  .font-size-sm-xx-small {
    font-size: xx-small;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-x-small {
    font-size: x-small;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-small {
    font-size: small;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-medium {
    font-size: medium;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-large {
    font-size: large;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-x-large {
    font-size: x-large;
  }
}

@media screen and (min-width: 576px) {
  .font-size-sm-xx-large {
    font-size: xx-large;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-xx-small {
    font-size: xx-small;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-x-small {
    font-size: x-small;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-small {
    font-size: small;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-medium {
    font-size: medium;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-large {
    font-size: large;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-x-large {
    font-size: x-large;
  }
}

@media screen and (min-width: 768px) {
  .font-size-md-xx-large {
    font-size: xx-large;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-xx-small {
    font-size: xx-small;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-x-small {
    font-size: x-small;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-small {
    font-size: small;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-medium {
    font-size: medium;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-large {
    font-size: large;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-x-large {
    font-size: x-large;
  }
}

@media screen and (min-width: 992px) {
  .font-size-lg-xx-large {
    font-size: xx-large;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-xx-small {
    font-size: xx-small;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-x-small {
    font-size: x-small;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-small {
    font-size: small;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-medium {
    font-size: medium;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-large {
    font-size: large;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-x-large {
    font-size: x-large;
  }
}

@media screen and (min-width: 1200px) {
  .font-size-xl-xx-large {
    font-size: xx-large;
  }
}

.bg-gray {
  background-color: #dddddd;
}

.bg-black {
  background-color: #000000;
}

/* Common */
body {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

/* ヘッダー */
.header {
  position: relative;
  z-index: 0;
}
.header .navbar .navbar-nav .nav-item .nav-link {
  line-height: 1;
}
.header .navbar.navbar-wide {
  height: 90px;
}

/* スクロールメニュー・アイコン */
.nav-scrolled {
  position: relative;
  z-index: 100;
  /* ブランドロゴ */
  /* ハンバーガーメニューボタン */
  /* ハーバーガーメニューアニメーション */
  /* メニューリスト */
}
.nav-scrolled .brand {
  position: fixed;
  left: 0px;
  top: 0px;
}
.nav-scrolled .brand .image-logo {
  width: 80px;
  height: auto;
}
.nav-scrolled .menu-trigger,
.nav-scrolled .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.nav-scrolled .menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  color: #000;
}
.nav-scrolled .menu-trigger span {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
}
.nav-scrolled .menu-trigger span:nth-of-type(1) {
  top: 13px;
}
.nav-scrolled .menu-trigger span:nth-of-type(2) {
  top: 23px;
}
.nav-scrolled .menu-trigger span:nth-of-type(3) {
  top: 33px;
}
.nav-scrolled .menu-trigger .label-menu,
.nav-scrolled .menu-trigger .label-close {
  position: absolute;
  display: inline-block;
  top: 42px;
  left: 15px;
  width: 30px;
  height: 8px;
  font-size: 10px;
  line-height: 1;
}
.nav-scrolled .menu-trigger .label-menu {
  display: block;
}
.nav-scrolled .menu-trigger .label-close {
  display: none;
}
.nav-scrolled .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.nav-scrolled .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-scrolled .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
.nav-scrolled .menu-trigger.active .label-menu {
  display: none;
}
.nav-scrolled .menu-trigger.active .label-close {
  display: block;
}
.nav-scrolled .menu-list {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  list-style-type: none;
  padding-left: 0;
  padding-top: 80px;
  padding-bottom: 60px;
  width: 250px;
  background-color: #000;
}
.nav-scrolled .menu-list li {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}
.nav-scrolled .menu-list li a {
  display: block;
  padding: 10px 20px;
}

/* リスト */
.list-style-none {
  list-style: none;
}

.list-style-kome {
  list-style-type: none;
}

.list-style-kome li:before {
  content: "※ ";
  margin-left: -16px;
}

/* テーブル */
@media screen and (min-width: 0px) {
  .table-thin-bordered tr {
    border-top: 1px solid #000;
  }
  .table-thin-bordered tr:last-child {
    border-bottom: 1px solid #000;
  }
  .table-thin-bordered th, .table-thin-bordered td {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}
@media screen and (min-width: 768px) {
  .table-thin-bordered tr {
    border-top: 1px solid #000;
  }
  .table-thin-bordered tr:last-child {
    border-bottom: 1px solid #000;
  }
  .table-thin-bordered th, .table-thin-bordered td {
    border-left: 1px solid #000;
    border-right: none;
  }
  .table-thin-bordered td:last-child {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}

.table-recruit th {
  background-color: #eee;
  font-weight: normal;
}

/* 地図 */
.section-map {
  width: 100%;
  height: auto;
}

/* ソーシャルロゴ */
.social-logo {
  width: 36px;
  height: auto;
}

/* Pages */
.page-top .section-hero-image {
  position: relative;
  z-index: 0;
}
.page-top .section-hero-image .image-background {
  position: relative;
}
.page-top .section-hero-image .image-logo {
  position: absolute;
  width: 40%;
  min-width: 150px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.page-top #concept .text-content {
  line-height: 2;
}

.section-content {
  padding-top: 6rem;
  padding-bottom: 7rem;
}
.section-content h2 {
  font-size: 3.1rem;
}
.section-content h2 .text-catch {
  font-size: 3.5rem;
  letter-spacing: 0.3rem;
}
.section-content h3 {
  font-size: 2rem;
}

.text-lead {
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.text-body {
  font-size: 1.2rem;
}

/* メールフォームプロ */
.btn.btn-mailform-submit {
  color: #000000;
  background: #cccccc;
  text-shadow: none;
}

#mfp_overlay .mfp_buttons #mfp_button_send {
  color: #ffffff;
  background: #000000;
  text-shadow: none;
}
#mfp_overlay .mfp_buttons #mfp_button_cancel {
  color: #ffffff;
  background: #cccccc;
  text-shadow: none;
}

/*# sourceMappingURL=style.css.map */
