@charset "UTF-8";
body {
  font-family: sans-serif;
  font-size: 16px;
  color: rgb(37, 37, 37);
  line-height: 1;
  background-color: #eeeeee;
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: inherit;
}

:hover {
  /* color: #0056b3; */
  /* text-decoration: underline; */
  text-decoration: none;
}

.header {
  background-color: #6c9fad;
  z-index: 10;
}

.main {
  padding-top: 70px;
  padding-bottom: 150px;
}

.header-inner {
  max-width: 1200px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-logo {
  display: block;
  width: 120px;
}

.site-menu ul {
  display: flex;
  margin-bottom: 0;
}
.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}
.site-menu ul li a {
  font-family: "Montserrat", sans-serif;
}

.header a:hover {
  color: rgb(226, 226, 226);
}

.footer {
  color: rgb(156, 156, 156);
  background-color: #1f5361;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  height: 150px;
  position: fixed;
  top: calc(100% - 150px);
  right: 0;
  left: 0;
}

.footer-logo {
  display: block;
  width: 100px;
  margin-top: 10px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  color: rgb(156, 156, 156);
}

.footer a:hover {
  color: rgb(37, 37, 37);
}

@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }
  .site-menu li {
    margin-top: 15px;
  }
  .header {
    height: 50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }
  .header-logo {
    width: 100px;
  }
  .toggle-menu-button {
    display: flex;
    height: 30px;
    width: 30px;
    background-color: transparent;
    border: none;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
  }
  .toggle-menu-button span,
  .toggle-menu-button span:before,
  .toggle-menu-button span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  /* 三本線の一番上の棒の位置調整 */
  .toggle-menu-button span:before {
    bottom: 8px;
  }
  /* 三本線の一番下の棒の位置調整 */
  .toggle-menu-button span:after {
    top: 8px;
  }
  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: rgb(226, 226, 226);
    background-color: #3c5961;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }
  .header-site-menu.is-show {
    display: block;
  }
  .main {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .footer {
    position: static;
    height: auto;
  }
  .footer-logo {
    margin-top: 20px;
    width: 80px;
  }
  .footer-tel {
    font-size: 13px;
    margin-top: 15px;
  }
  .footer-time {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 25px;
}
.site-menu ul li a {
  font-family: "Montserrat", sans-serif;
}/*# sourceMappingURL=common.css.map */