body {
  background: #79c5fa;
}

input::placeholder {
  color: #333;
  font-size: 32rem;
}

/* IE */
input:-ms-input-placeholder {
  color: #333;
  font-size: 32rem;
}

/* Edge */
input::-ms-input-placeholder {
  color: #333;
  font-size: 32rem;
}

html,
body {
  height: 100%;
}

main {
  position: relative;
  height: 100%;
}

.main_wrap {
  padding: 0 70rem;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.main_wrap .logo {
  width: 210rem;
  margin: 0 auto;
}

.main_wrap .demo {
    margin-top:40px;
    color:white;
}
.main_wrap .demo a {
    color:white;
    text-decoration: underline;
    font-weight:bold
}
.main_wrap .demo .demolink {
    margin-top:20px;
}

.detail {
    margin-top: 30px;
}
.detail p {
    color: white;
    text-align:center;
    line-height: 1.3;
}
.detail .size1 {
    font-size:20rem;
    font-weight:bold;
}
.detail .size2 {
    font-size: 40rem;
    font-weight: bold;
}

.company {
    text-align: center;
    color: white;
    margin-top: 35px;
}

.company p.size1 {
    text-align: center;
    color: white;
}
.company a {
    color: white;
}

/**********************************************************************

 * Media Query For PC

 ***********************************************************************/
@media print, screen and (min-width: 767px) {
    input, select, input::placeholder {
    font-size: 22px;
  }

  /* IE */
  input:-ms-input-placeholder {
    font-size: 22px;
  }

  /* Edge */
  input::-ms-input-placeholder {
    font-size: 22px;
  }

  .main_wrap {
    padding: 0;
    width: 470px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
  }
  .main_wrap .logo {
    width: 160px;
  }
  
  .detail .size1 {
      font-size: 16px;
  }

  .detail .size2 {
      font-size: 32px;
  }  

}
@media screen and (min-width: 767px) and (max-width: 1025px) {
  html,
body {
    height: 100%;
  }
}