@charset "utf-8";
/* CSS Document */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}
body {
  background-color: rgba(176,131,35,0.30);
  color: #454545;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0 20px;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #454545;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity:0.7;
}
iframe {
  vertical-align: bottom;
}
main {
  margin-top: 30px;
}

#header {
  width: 100%;
  height: 117px;
  border-top: 10px double #454545;
  border-bottom: 1px solid #454545;
  border-radius: 5px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  background-color: rgba(255,255,255,0.7);
}
#header .navi .navi-menu {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-shadow: 2px 2px 1px #fff;
  position: fixed;
  top: 70px;
  left: 50px;
  z-index: 10;
}
#header .navi .navi-menu > li {
  margin-right: 40px;
}
#header .logo {
  width: 100%;
  max-width: 120px;
  line-height: 0;
  position: fixed;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
#header .logo a {
  display: block;
}

.page-top{
  border-top: solid 1px #454545;
  border-bottom: solid 1px #454545;
  width: 100%;
}
.page-top a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 50px;
}
#footer {
  margin: 100px auto 30px auto;
  border-bottom: solid 1px ##454545;
}
#footer .logo {
  display: block;
  width: clamp(50%, 2vw, 70%);
  margin: 0 auto;
}
#footer .logo img {
  width: 100%;
}
#footer ul {
  display: flex;
  justify-content: center;
  margin: 30px auto;
}
#footer ul li {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  padding: 0px 25px 0 25px;
}
#footer .copyright {
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
}

/* モバイル */
@media screen and (max-width: 1096px) {
  #header {
    height: 97px;
  }
  #header .logo {
    max-width: 100px;
  }
  #header .navi {
    width: 80%;
    height: 100vh;
    background-color: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    left: -120%;
    z-index: 20;
    transition:  all 0.6s;
  }
  #header .navi.active {
    left: 0;
  }
  #header .navi .navi-menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 150px 0 0 0px;
    overflow: auto;
    position: static;
    text-shadow: none;
    display: none;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  #header .navi .navi-menu::-webkit-scrollbar {
  width: 4px;
  }
  #header .navi.active .navi-menu {
    display: flex;
  }
  #header .navi .navi-menu > li {
    width: 70%;
    position: static;
    border-top: solid 1px ##454545;
    margin-left: 0;
  }
  #header .navi .navi-menu > li a {
    width: 85%;
    display: block;
    padding: 20px;
  }
  #header .hamburger {
    width: 50px;
    height: 50px;
    background-color: #B08323;
    border-radius: 10px;
    cursor: pointer;
    position: fixed;
    top: 60px;
    left: 50px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 1px;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 16px;
  } 
  #header .hamburger span:nth-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 34px;
  }  
  #header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }
  #header .hamburger:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  .page-top a {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 30px;
  }
  #footer {
    margin: 30px 0 20px 0;
  }
  #footer .logo {
    width: 70%;
  }
  #footer ul {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  #footer ul li {
    padding: 0 10px 0 10px; 
  }
  #footer .copyright {
    margin: 30px 0 30px 0;
  }
}