@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(10px, 0.69vw, 16px);
}

body {
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2B3450;
  background-color: #ffffff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

address {
  font-style: normal;
}

fieldset {
  border: none;
}

input[type=date],
input[type=time],
input[type=month],
input[type=week],
input[type=datetime-local] {
  appearance: auto;
  -webkit-appearance: auto;
  color: inherit;
  line-height: normal;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 1;
  filter: none;
}

input[type=date]::-webkit-datetime-edit {
  color: inherit;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 935px) {
  .container {
    width: 85%;
  }
}

.footer {
  padding: 8rem 0;
  background: #ffffff;
  border-top: 0.1rem solid #000;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.footer__link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  text-decoration: underline;
  transition: 0.3s ease;
}
.footer__link:hover {
  color: #666666;
}
.footer__copyright {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
}
.footer__logo {
  text-align: right;
  width: 20rem;
}
@media (max-width: 768px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__logo svg {
  width: 100%;
}
.footer__tagline {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: #000;
  margin: 0;
}/*# sourceMappingURL=footer-main.css.map */