@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}
.wrap {
  display: flex;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 100px);
  padding: 100px 30px 30px;
  box-sizing: border-box;
}
.inner {
  width: 100%;
}
header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 15px 0; */
  /* padding-top: 30px; */
  text-align: center;
  border-bottom: 1px solid #ececec;
}
header img {
  width: 300px;
}
h1 {
  /* margin-top: 100px; */
  text-align: center;
  font-size: 1.4em;
}
.content {
  max-width: 400px;
  margin: 30px auto 0;
}
.btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0.8em 1.5em;
  border: 1px solid #000;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
}
.btn::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.6em;
  height: 0.6em;
  border: 1px solid #000;
  border-left: none;
  border-bottom: none;
}
.btn + .btn {
  margin-top: 20px;
}
.card {
  margin-right: 1em;
}
.card img {
  max-height: 60px;
}
.card__name {
  font-size: 0.8rem;
}
.card__name span{
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
}