@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: "Yu Mincho";
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1300px;
  height: 120px;
  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: 200px;
}


.header ul {
  display: flex;
}

.header ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.footer {
  color: #ffffff;
  background-color: #90abc4;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-logo {
  display: block;
  width: 235px;
  margin-top: 90px;
  text-align: 50px;
}

.footer ul {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-align: 50px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.footer ul li {
  text-align: 50px;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-tel {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-text {

  margin-bottom: 10px;
}

.Note-text {
  margin-top: 10px;
}

.copyright {
  font-size: 20px;
  font-weight: bold;
  margin-top: 90px;
}

@media (max-width: 800px) {

  .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: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/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 {
    margin-top: 60px;
  }

  .footer-tel {
    margin-top: 60px;
  }

  .Note-text {
    margin-top: 60px;
  }

  .copyright {
    margin-top: 50px;
  }

}