@charset "utf-8";

html {
  font-size: 100%;
}

body {
  color: #000000;
  font-family: sans-serif;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}


/*-------------------------------------------
Header
-------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*  */
  background-color: #ffffff;
  /*  */
  height: 128px;
  z-index: 10;
}

/*  */
.header-inner {
  max-width: 1200px;
  height: 128px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}

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

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

/* width: 170px; */

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li a {
  font-family: sans-serif;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: #337ab7;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: 235px;
  margin-top: 90px;
}

.footer-tel {
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}

.footer-time {
  font-size: 13px;
  margin-top: 16px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin: 20px;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    width: 100px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736e62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url("../img/common/icon-menu.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .main {
    padding-top: 50px;
  }

  /*-------------------------------------------
  Footer
  -------------------------------------------*/
  .footer-logo {
    margin-top: 60px;
  }

  .footer-tel {
    font-size: 20px;
  }

  .copyright {
    margin-top: 50px;
  }
}