@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
.box {
border: #4e7bcc 1px solid; /*境界線の指定*/
padding:5px;
width: 100px;
}
.box p {
margin:0;
padding:0;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #a9ebac18;
}

img {
  max-width: 100%;
}
.header{
  display: none;
}

.header-inner {
  max-width: 1200px;
  height: 50px;
  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 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #170303;
  background-color:whitesmoke;
  padding-top: 5px;
  padding-bottom: 5px;

}
.footer-text {
  font-size: 15px;
  margin-top: 0px;
  line-height: 1.5;
  text-align: center;
}

.footer-text {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.5;
  text-align: center;
}

.copyright {
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
    line-height: 1.5;
  }

  .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);
    display: block;
  }
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-logo {
    width: 150px;
  }

  .header-site-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

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


  .main {
    padding-top: 50px;
  }
  .footer{
    position: fixed;
    bottom: 0;
    width: 100%;
  }



  .copyright {
    margin-top: 10px;
  }
  .footer{
    position: fixed;
    display: flex;
    justify-content: center;

    bottom: 0;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    align-items: center;
    background-color: aquamarine;
  }
}