*, ::after, ::before {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: 'DotGothic16', sans-serif;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
body {
  background-color: #333;
  color: #fff;
}
h1 {
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
	line-height: 1.3;
}
h1 span{
	font-size: 0.8rem;
}
.title-box {
  background: #333;
  display: inline-block;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.5rem;
	min-width: 280px;
}
.inner {
  max-width: 900px;
  width: 90%;
  border: 3px solid #fff;
  border-radius: 5px;
  padding: 4.5rem 3rem 1.5rem 2rem;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  z-index: 0;
  margin: 3.5rem auto 0;
}
.flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.link {
  margin-bottom: 2.5rem;
}
.link a {
  display: block;
  position: relative;
  transition: .3s;
  padding-left: 1rem;
}
.link a:hover::before,.link a:active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0;
  height: 0;
  border: solid 7px transparent;
  border-left-color: #fff;
}