@media screen and (max-width: 460px) {

  .newme {
    margin: 0;
    width: 100%;
  }
  .newme-bg { 
    width: 100vw;
    height: 100vh;
    background-image: url(../image/form_kv.jpg);
        background-size: 100%;
        background-position: top;
        background-repeat: no-repeat;
        position: relative;
  }

  .newme-btn {
        width: 76vw;
        margin: auto;
        position: absolute;
        top: 90vw;
        left: 0;
        right: 0;
  }
  .newme-btn img{
    width: 100%;
    margin: 68vw auto 0;
  }

}

@media screen and (min-width: 461px) {

  .newme {
    margin: 0;
    width: 100vw;

    background-image: url(../image/form_bg_pc.png);
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
                position: relative;
  }
  .newme-bg { 
width: 100%;
        height: 820px;
        background-image: url(../image/form_kv.jpg);
        background-size: 460px;
        background-position: top center;
        background-repeat: no-repeat;
                position: relative;
  }

  .newme-btn{
        width: 350px;
        margin: auto;
        position: absolute;
        top: 720px;
        left: 0;
        right: 0;
        transition: transform .3s ease;
  }
  .newme-btn:hover{
        transform: scale(0.95)
  }
  .newme-btn img{
    width: 100%;
  }

}

@media screen and (min-width: 1346px) {

  .newme {
    background-size: contain;

  }
}