@charset "UTF-8";
/* Footer */
.site-footer {
  background: var(--blue);
  color: white;
  padding: 40px 0 20px 0;
  position: relative;
  overflow: hidden;
  /* コピーライト */
}
.site-footer .footer-container {
  margin: auto;
  width: 75vw;
  max-width: 1200px;
  min-width: 850px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  /* 左側：会社情報 */
  /* 右側：リンク集 */
}
.site-footer .footer-container .footer-left {
  flex: 5;
}
.site-footer .footer-container .footer-left .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  width: clamp(8.75rem, 5.813rem + 4.9vw, 11.688rem);
  height: auto;
}
.site-footer .footer-container .footer-left .footer-logo img {
  width: 100%;
}
.site-footer .footer-container .footer-left .company-info {
  margin-left: 0;
}
.site-footer .footer-container .footer-left .company-info .company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 7px;
}
.site-footer .footer-container .footer-left .company-info .company-address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.site-footer .footer-container .footer-right {
  flex: 3;
  text-align: left;
  position: relative;
}
.site-footer .footer-container .footer-right .footer-logo-aj {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  width: clamp(6.25rem, 4.5rem + 2.92vw, 8rem);
  height: auto;
  margin-top: 16px;
}
.site-footer .footer-container .footer-right .footer-logo-aj img {
  width: 100%;
}
.site-footer .footer-container .footer-right .links {
  max-width: 300px;
}
.site-footer .footer-container .footer-right .links .menu {
  display: grid;
  grid-template-columns: 1fr 2fr;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.site-footer .footer-container .footer-right .links .menu-item {
  position: relative;
  margin-bottom: 0;
}
.site-footer .footer-container .footer-right .links .menu-item > a {
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
  color: var(--white);
}
.site-footer .footer-container .footer-right .links .menu-item > a::before {
  content: "・";
}
.site-footer .footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.site-footer .copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 20px;
}

/* レスポンシブデザイン */
@media (max-width: 960px) {
  /* Footer */
  .site-footer {
    padding: 40px 20px 0;
    position: relative;
    overflow: hidden;
  }
  .site-footer .footer-container {
    margin: auto;
    width: 100%;
    max-width: auto;
    min-width: auto;
    padding: 0 20px;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 20px 0;
    position: relative;
    overflow: hidden;
    /* コピーライト */
  }
  .site-footer .footer-container {
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* 左側：会社情報 */
    /* 右側：リンク集 */
  }
  .site-footer .footer-container .footer-left {
    margin: auto;
  }
  .site-footer .footer-container .footer-left .footer-logo {
    display: flex;
    align-items: center;
    margin: auto;
    margin-bottom: 16px;
    width: 130px;
    height: auto;
  }
  .site-footer .footer-container .footer-left .footer-logo img {
    width: 100%;
  }
  .site-footer .footer-container .footer-left .company-info {
    margin-left: 0;
  }
  .site-footer .footer-container .footer-left .company-info .company-name {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .site-footer .footer-container .footer-left .company-info .company-address {
    font-size: 16px;
  }
  .site-footer .footer-container .footer-right {
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .site-footer .footer-container .footer-right .footer-logo-aj {
    display: flex;
    align-items: center;
    margin: 20px auto 12px;
    width: 174px;
    height: auto;
  }
  .site-footer .footer-container .footer-right .footer-logo-aj a {
    margin: auto;
    text-align: center;
  }
  .site-footer .footer-container .footer-right .footer-logo-aj img {
    width: 174px;
    height: auto;
  }
  .site-footer .footer-container .footer-right .links {
    max-width: auto;
  }
  .site-footer .footer-container .footer-right .links .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .site-footer .footer-container .footer-right .links .menu-item {
    position: relative;
    margin-bottom: 0;
  }
  .site-footer .footer-container .footer-right .links .menu-item > a {
    text-decoration: underline;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: underline;
  }
  .site-footer .footer-container .footer-right .links .menu-item > a::before {
    content: "・";
  }
  .site-footer .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .site-footer .copyright {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding-bottom: 20px;
  }
}/*# sourceMappingURL=footer.css.map */