@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: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1200px;
  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;
  width: 44px;
  height: 34px;
  background-image: url(../images/common/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: 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 {
  width: auto;
  color: #ffffff;
  background-color: #a67051;
  padding-top: 50px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.box {
  width: 280px;
  margin: 20px 30px;
  text-align: left;
}

.box li {
  padding: 5px 0;
}

.footer-logo {
  display: block;
  width: 235px;
  margin-bottom: 40px;
  margin-left: 20px;
}

.footer h3 {
  font-size: 15px;
  padding: 10px 0;
}

.footer-sns {
  display: block;
  width: 40px; 
  margin-bottom: 20px;
  margin-left: 20px;
}

.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;
}

@media (max-width: 800px) {
    .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: #c69579;
    padding-bottom: 30px;
    display: none;
  }

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

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

  .main {
    padding-top: 50px;
  }

  .wrap {
    width: 300px;
    margin: 0 auto;
    padding: 0;
    display: block;
  }

  .wrap .box {
    width: 300px;
    text-align: center;
  }

  .footer {
    width: auto;
    height: auto;
    padding-top: 20px;
    padding-bottom: 40px;
  
  }

  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu ul li {
    margin-top: 15px;
    font-size: 15px;
  }

  .footer h3 {
    width: 300px;
    font-size: 15px;
    padding: 10px 0;
  }

  .box {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-logo {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer-sns  {
    margin: 0 auto 10px;
  display: block;
  width: 15%;
  }
  

  .box ul {
    width: 300px;
  }

  .box li {
    width: 300px;
    line-height: 1.2em;
    font-size: 14px;
  }

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

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