* {
  box-sizing: border-box;
}
:root {
  --subaru-blue: #071391;
  --ease: cubic-bezier(0.4, 0.4, 0, 1);
  --duration: 0.3s;
  --vw-safe: min(100vw, calc(100vh * 16 / 9));
}

html,
body {
  margin: 0;
  font-size: clamp(0.938rem, 0.694rem + 0.46vw, 1.25rem);
  font-family: "Outfit", "Noto Sans JP", sans-serif;
}

h1,
h2,
h3,
p {
  margin: 0;
  line-height: 1.8em;
  word-break: keep-all;
  hyphens: auto;
  overflow-wrap: anywhere;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  font-weight: 500;
}

.bold{
  font-weight: 700;
}

main {
  margin: 0 auto;
}

.width-limit {
  margin: 0 auto;
  max-width: 90vw;
  width: 1920px;
}

div,
section,
article {
  position: relative;
}

.section-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4rem;
}

.section-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--subaru-blue);
}

.padding-tb {
  padding: 10vh 0;
}

/* Responsive: laptop (max-width: 1120px) */
@media (max-width: 1120px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Responsive: tablet (max-width: 840px) */
@media (max-width: 840px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Responsive: sp (max-width: 540px) */
@media (max-width: 540px) {
  .section-title {
    font-size: 2rem;
  }
}

/*
  Animation on scroll
*/
.js-show-on-scroll {
  opacity: 0;
  filter: blur(2rem);
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.4, 0.4, 0, 1),
    transform 600ms cubic-bezier(0.4, 0.4, 0, 1),
    filter 600ms cubic-bezier(0.4, 0.4, 0, 1);
  transition-delay: 100ms;
}

.js-show-on-scroll.is-shown {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* 
  common styles
*/

.footer.footer-simple {
  margin-top: 0;
}

.footer-info-list > li a {
  font-size: 14px !important;
}

.footer .copyright {
  font-size: 12px !important;
}

@media screen and (max-width: 768px) {
  .footer .copyright {
    padding: 14px;
    font-size: 11px;
  }
}
