.style-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.style-card{
  border:1px solid #ddd;
  padding:16px;
  border-radius:10px;
  background:#fff;
}

.style-title{
  font-weight:bold;
  font-size:16px;
  margin-bottom:8px;
}

.style-desc{
  font-size:14px;
  margin-bottom:10px;
}

.style-link{
  display:inline-block;
  color:#007BFF;
  font-weight:bold;
}

.trial-small-note{
  font-size: 12px;
  color: #666;
}


/* 簡易フォーム */
.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;
}

