@charset "utf-8";

*,
::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: 14px;
  color: black;
  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: 80px;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li a {
  // <uniquifier>: Use a unique and descriptive class name
  // <weight>: Use a value from 100 to 900
  
  .montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
}

main {
  margin-top: 130px; /* 上の空白を130pxに指定 */
}

.footer {
  color: #ffffff;
  background-color: #24211b;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
    display: block;
    width: 150px;
    margin-top: 30px;
  }


  .footer-tel {
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}
  .footer-time {
    font-size: 13px;
    margin-top: 25px;
  }

  @media (max-width: 800px) {
    .site-menu ul {
      display: block;
      text-align: center;
    }
  }
    .site-menu li {
      margin-top: 5px;
    }
  
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      z-index: 10;;    
    }
  
    .header-inner {
      padding-left: 20px;
      padding-right: 20px;
      height: 100%;
    }
  
    .header-logo {
      width: 130px;
    }
  
  .main {
    padding: top 50px;
  }
  
  .footer-logo {
    margin-top: 30px;
  }
  
  .footer-tel {
    font-size: 20px;
  }