/*ベース*/
p, li, a, dt, dd, address, th, td, label, input, textarea{
  font-size: 1rem;
  line-height: 2;
  color: var(--txt_color);
}
body{
    background: url(../../assets/img/bg.svg) no-repeat top left 60% / cover;
}
.inner{
  max-width: 1200px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 98vh;
  justify-content: center;
  align-items: center;
}
.inner > img{
  text-align: center;
  width: 70%;
}
.inner > p{
    color:#333;
    text-align: center;
    font-size: clamp(1.3rem, 0.864rem + 2.18vw, 2.5rem);
    margin-top: 5%;
}
@media screen and (max-width: 640px){
  .inner{
    width: 92%;
  }
  .inner > img{
        width: 90%;
    }
}