/* 簡易フォーム */
.contact-form{
  width:100%;
  max-width:700px;
}

.form-group{
  display:block;
  margin-bottom:24px;
}

.form-group label{
  display:block;
  width:100%;
  font-weight:bold;
  margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
  display:block;
  width:100%;
  max-width:100%;
  min-width:0;
  padding:12px;
  font-size:16px;
  box-sizing:border-box;
}

.textarea-input{
  min-height:180px;
  resize:vertical;
}

/* チェックボタン */
.form-note{
  margin-top:16px;
  margin-bottom:24px;
}

.confirm-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.8;
}

.confirm-check input{
  flex:0 0 auto;
  width:auto;
  min-width:0;
  margin-top:4px;
}