@charset "utf-8";

#vdbanner{
width:0;
height:0;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: sans-serif;
  font-size: 1rem;
  color: #000;
  line-height: 1;
  background-color: #fff;
}
img {
  max-width: 100%;
}
.header-inner {
  max-width: 1200px;
  height: 110px;
  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-logo {
  display: block;
  width: 170px;
}
.site-menu ul {
  display: flex;
}
.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}
.site-menu ul li a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.footer {
  color: #fff;
  background-color: #24211b;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.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: 520px) {
  body {
    width: 100%;
  }
  .header-inner {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    padding: 10px;
  }
  .toggle-menu-button {
    display: none;
  }
  .header-logo {
    width: 120px;
  }
  .site-menu ul {
    display: none;
  }
  .footer-logo {
    display: block;
    width: 120px;
    margin-top: 30px;
  }
  .footer-tel {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .footer-time {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  .copyright {
    font-size: 1rem;
    font-weight: bold;
    margin: 20px 0 60px;
  }
}
