@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: 18px;
  color:black;
  line-height: 1;
  background-color: white;
}

img {
  max-width: 100%;
}

.footer {
  color: rgb(0, 0, 0);
  background-color: rgb(230, 230, 230);
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  margin-bottom: 15px;
}

.footer .site-menu {
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
}

.footer-inner-img {
  display: flex;
  flex-direction: column;
  margin-right: 200px;
}

.footer-logo {
  display: block;
  max-width: 180px;
  margin-bottom: 30px;
  border-radius: 5px;
}
@media (max-width: 800px) {
  /* フッター全体を縦並びに */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer-inner-img {
    margin-right: 0;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    max-width: 120px;
    margin-bottom: 18px;
  }
  .footer-inner-img p {
    margin-bottom: 16px;
    font-size: 13px;
    text-align: center;
  }
  .footer .site-menu ul {
    display: block;
    padding: 0;
  }
  .footer .site-menu li {
    display: block;
    margin: 9px 0;
    text-align: center;
  }
  .footer .site-menu a {
    font-size: 15px;
    text-decoration: underline;
  }
  .copyright {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
  }
}
