@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: 'Yuji Syuku', serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #e4d4b4;
}

img {
  max-width: 100%;
}

.header-inner{
  max-width: 100%;
  height: 110px;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}

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

.header-logo {
  display: block;
  width: 330px;
  filter: drop-shadow(1px 1px 10px rgba(77, 72, 72, 0.24));
}

.site-menu ul {
  display: flex;
}

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

.site-menu ul li a {
  font-family: 'Yuji Syuku', serif;
  font-weight: bold;
}

.footer {
  color: white;
  background-color: #24211b;
  padding-top: 30px;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.footer-logo{
  display: block;
  width: 120px;
  margin-top: 50px;
}

.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-top: 20px;
  }

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

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

  .header-logo {
    width: 170px;
    margin-left: 0;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color:white;
    background-color: #736E62;
    background: rgba(29, 28, 28, 0.95);    
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
    font-size: 18px;
    line-height: 2;
  }

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

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    margin-right: 10px;
    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;
  }

  .main {
    padding-top: 50px;
  }

  .footer-logo {
    width: 70px;
    margin-top: 30px;
  }

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

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