/********************
 general
********************/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width: 991px) {
  .main {
    width: 100%;
  }
}
/********************
 header
********************/
header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  background: rgb(255, 255, 255, 1);
  transition: 0.1s all;
  border-left: 1px solid #eee;
  height: 100px;
  align-content: center;
}
header.active {
  transition: 0.1s all;
}
header h1 {
  margin-bottom: 0;
}
header h1 p {
  margin-bottom: 0;
}
header h1 img {
  width: 350px;
}
header .flex {
  display: flex;
  justify-content: space-between;
}
header .flex .side-menu {
  align-content: center;
  margin-right: 300px;
}
header .flex .side-menu ul {
  display: flex;
  margin-bottom: 0;
}
header .flex .side-menu ul li {
  list-style: none;
}
header .flex .side-menu ul li:not(:last-child) {
  margin-right: 30px;
}
header .flex .side-menu ul li a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 1199px) {
  header .flex .side-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  header h1 img {
    width: 200px;
  }
}
/******************
 fix btn
  bugger-btn
  contact-icon
*******************/
.bugger-btn {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  background: #234371;
  z-index: 101;
}
.contact-icon {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 100px;
  background: #4b51ca;
  z-index: 99;
  text-align: center;
  align-content: center;
}
.contact-icon img {
  width: 70px;
}
.recruit-icon {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 200px;
  background: #fac011;
  z-index: 99;
  text-align: center;
  align-content: center;
}
.recruit-icon img {
  width: 70px;
}
.bugger-btn span {
  display: block;
  transition: 0.1s all;
}
.bugger-btn.active span {
  transition: 0.1s all;
}
.bugger-btn span:nth-of-type(1) {
  transform: translate(25px, 42px);
  width: 50px;
  height: 1px;
  background: #fff;
}
.bugger-btn span:nth-of-type(2) {
  transform: translate(25px, 46px);
  width: 50px;
  height: 1px;
  background: #fff;
}
.bugger-btn span:nth-of-type(3) {
  color: #fff;
  width: 50px;
  font-size: 12px;
  transform: translate(28px, 50px);
  letter-spacing: 0.2em;
}
.bugger-btn.active span:nth-of-type(1) {
  transform: rotate(45deg) translate(52px, 18px);
}
.bugger-btn.active span:nth-of-type(2) {
  transform: rotate(-45deg) translate(-18px, 52px);
}
.bugger-btn.active span:nth-of-type(3) {
  transform: translate(28px, 70px);
}
@media (max-width: 991px) {
  .bugger-btn {
    bottom: initial;
    top: 0;
    right: 0;
  }
  .contact-icon {
    bottom: initial;
    top: 0;
    right: 100px;
  }
}
@media (max-width: 767px) {
  .recruit-icon {
    display: none;
  }
  .contact-icon {
    display: none;
  }
}
@media (max-width: 600px) {
  .contact-icon {
    display: none;
  }
}
/**************************
 nav-menu
**************************/
.nav-menu {
  width: 100%;
  position: fixed;
  top: 0;
  right: -9999px;
  height: 100vh;
  transition: 0.2s all 0.2s;
  z-index: 100;
  background: #fff;
  overflow: auto;
}
.nav-menu.active {
  right: 0;
  transition: 0.1s all 0.2s;
}
.nav-menu h2 {
  margin-bottom: 50px;
  text-align: center;
}
.nav-menu h2 img {
  max-width: 500px;
  width: 100%;
}
.nav-menu .address {
  text-align: center;
}
.nav-menu .address p {
  margin-bottom: 5px;
  font-size: 20px;
}
.nav-menu .main-nav {
  position: relative;
  height: 100vh;
  width: 100%;
}
.nav-menu ul {
  padding-left: 0;
  padding-top: 0px;
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: 300px;
}
.nav-menu ul li:first-child {
  border-top: 1px solid #000;
}
.nav-menu ul li {
  border-bottom: 1px solid #000;
  padding-top: 15px;
  padding-bottom: 15px;
}
.nav-menu ul li a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}
@media (max-width: 991px) {
  .nav-menu {
    width: 100%;
  }
  .nav-menu .nav-title {
    padding-top: 67px;
  }
  .nav-menu ul {
    margin-right: 200px;
  }
  .nav-menu h2 {
    margin-top: 200px;
  }
  .nav-menu .address p {
    font-size: 14px;
  }
  .nav-menu h2 img {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .nav-menu ul {
    margin-right: 100px;
  }
}
/****************************
 footer
*****************************/
footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #12233c;
}
footer h2 img {
  max-width: 500px;
  width: 100%;
}
footer h2 {
  margin-bottom: 50px;
}
footer .address {
  margin-bottom: 50px;
}
footer .address p {
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}
footer .gmap_link a {
  color: #fff;
  text-decoration: none;
  display: block;
  max-width: 300px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  width: 100%;
}
footer .gmap_link a span:nth-of-type(1) {
  margin-right: 15px;
  vertical-align: 3px;
}
footer .gmap_link a img {
  width: 20px;
}
footer .menu-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
footer .menu-list li:not(:last-child):after {
  content: "/";
  margin-left: 5px;
  margin-right: 5px;
  font-size: 14px;
  color: #fff;
}
footer .menu-list li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
footer .footer_contact {
  text-align: center;
  margin-bottom: 50px;
}
footer .contact-title {
  color: #fff;
  font-size: 42px;
  font-weight: bold;
}
footer .contact-tel a {
  color: #fff;
  text-decoration: none;
}
footer .contact-tel a p:nth-of-type(1) {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
}
footer .contact-tel a p:nth-of-type(1) span:nth-of-type(1) {
  margin-right: 15px;
  vertical-align: 3px;
}
footer .contact-tel a p:nth-of-type(1) span img {
  width: 20px;
}
footer .contact-link a {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  border-radius: 50px;
  display: block;
  text-decoration: none;
}
footer .line_white {
  background: #fff;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}
footer .border-right-1 {
  border-right: 1px solid #fff;
}
footer .copyright {
  margin-top: 100px;
  color: #fff;
  font-size: 14px;
  text-align: right;
}
footer .banner {
  text-align: center;
}
footer .banner img {
  max-width: 300px;
}
@media (max-width: 991px) {
  footer .border-right-1 {
    border: none;
  }
  footer .contact-title {
    margin-bottom: 30px;
  }
  footer .contact-link a {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  footer h2 img {
    width: 250px;
  }
  footer .gmap_link {
    margin-bottom: 50px;
  }
  footer .copyright {
    font-size: 12px;
    text-align: center;
  }
}
/****************************
 breadcrumb
*****************************/
.breadcrumb {
  margin-bottom: 0;
  font-size: 14px;
}
.breadcrumb-bg {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #eee;
}
.breadcrumb a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}
