*{
  box-sizing: border-box;
  color: #fff;
  margin: 0;
}
.sp{
  display: none;
}
body{
  background: #000;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
}
h1{
  position: fixed;
  margin-left: 64px;
  margin-top: 22px;
}
.bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .6;
}
.box{
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 60rem;
  max-width: 90%;
}
.box > *{
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  font-size: 1.1rem;
  padding: 3rem 0;
  line-height: 1.6;
}
.box p{
  width: 100%;
  font-weight: bold;
}
.box a{
  width: 50%;
  text-decoration: none;
}
.box a span{
  display: inline-block;
  position: relative;
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: .9rem;
  padding-right: 1.4rem;
}
.box a span::before{
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
}
.box a span::after{
  content: '';
  background: url(img/ico.svg) no-repeat center / cover;
  position: absolute;
  bottom: .3rem;
  right: 0;
  width: 1rem;
  height: .64rem;
}
@media screen and (max-width: 600px) {
  .sp{
    display: block;
  }
  h1{
    margin-top: 0;
  }
  .box > *{
    padding: 2rem 0;
  }
  .box a{
    width: 100%;
  }
  .box a span{
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}