@charset "utf-8";
/* CSS Document */

/* スマホ対応 */

.form-group{
  margin-bottom:15px;
}

label{
  display:inline-block;
  color: #0D0293;
  font-weight: bold;
}

.required{
  color:red;
  font-size:12px;
}

input[type="text"], input[type="email"], textarea{
  height:30px; /* 高さ40px */
  padding:10px; /* 上下の余白 */
}

input, textarea{
  margin: 10px 0 15px 0;
}

textarea {
  width:500px;   /* 横幅 */
  height:100px;  /* 縦幅 */
  padding:10px;
  resize: vertical; /* 高さだけ変更可能 */
}

input[type="radio"]{
  width:auto;
}

.radio-group{
  display:flex;
  gap:20px;
}

button{
  width:30%;
  padding:14px;
  background:#666;
  color:#fff;
  border:none;
  border-radius:5px;
  font-size:16px;
}

/* PC用 */
@media(min-width:768px){
  .form-wrap{
    padding:30px;
  }

  h1{
    font-size:26px;
  }
}


