a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.title-1,
.title-2,
.title-3,
.title-4,
.title-5,
.title-6 {
  font-family: "Montserrat", sans-serif;
}
h1,
.h1,
.title-1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}
h2,
.h2,
.title-2 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 600;
}
h3,
.h3,
.title-3 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}
h4,
.h4,
.title-4 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}
h5,
.h5,
.title-5 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
h6,
.h6,
.title-6 {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (width < 768px) {
  h1,
  .h1,
  .title-1 {
    font-size: 1.5rem;
  }
  h2,
  .h2,
  .title-2 {
    font-size: 1.375rem
  }
  h3,
  .h3,
  .title-3 {
    font-size: 1.25rem;
  }
  h4,
  .h4,
  .title-4 {
    font-size: 1.125rem;
  }
  h5,
  .h5,
  .title-5 {
    font-size: 1rem;
  }
  h6,
  .h6,
  .title-6 {
    font-size: 0.875rem;
  }
}
.text-link {
  color: var(--main);
  &:hover {
    color: var(--main-dark);
  }
}
.text-content {
  font-size: 0.875rem;
  line-height: 1.428571428571;
  color: var(--black-sec);
  .h1,
  .h2,
  .h3,
  h1,
  h2,
  h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
  }
  .h4,
  .h5,
  .h6,
  h4,
  h5,
  h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--black);
  }
  ul {
    margin: 1rem 0;
    padding-left: 1rem;
    list-style-type: disc;
  }
  ol {
    margin: 1rem 0;
    padding-left: 1rem;
    list-style-type: decimal;
  }
  ol li,
  ul li {
    margin-top: 0.5rem;
  }
  p {
    margin-top: 0.5rem;
  }
  a {
    color: var(--blue-dark);
    &:active,
    &:hover {
      text-decoration: underline;
    }
  }
  & > :first-child {
    margin-top: 0;
  }
  & > :last-child {
    margin-bottom: 0;
  }
}
