/* You can add global styles to this file, and also import other style files */
html {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 300;
  color: #505050;
}
body {
  margin: 0;
}
h1, h2, h3, h4 {
  color: #AD8CFF;
}
.text-link {
  text-decoration: none;
  color: #AD8CFF;
  font-weight: 600;
  display: inline-block;
  position: relative;
}
.text-link:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: #AD8CFF;
  left: 0;
  bottom: -2px;
  opacity: 0.4;
  transition: all 400ms ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
}
.text-link:hover:after {
  width: 100%;
  transform-origin: right;
  transform: scaleX(1);
}
.container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1140px;
}
.container > * {
  width: 100%;
}
.page {
  margin: 0 24px 48px;
}
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=styles.css.map*/