@charset "UTF-8";
/* リセットCSS */
* {
  margin-top: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
}
/* CSS Document */
body{
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.question_1{
    display: block;
    margin-top: -18px;
}
.question_2{
    display: block;
    margin-top: -18px;
}
.question_3{
    display: block;
    margin-top: -18px;
}
.max_width{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.head {
  -webkit-border-radius:6px 6px 0px 0px;
  -moz-border-radius:6px 6px 0px 0px;
  border-radius:6px 6px 0px 0px;
  background-color:#2ABCA7;
  color:#FAFAFA;
  max-width: 800px;
  margin: 0 auto;
}
h2 {
  text-align:center;
  padding:18px 0 18px 0;
  font-size: 1.4em;
}
p{
    padding-left: 30px;
}
label{
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0px;
}
.Form-Item-Label {
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  background-color:#EEEEEE;
  padding-top: 10px;
  padding-bottom: 10px;
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: red;
  color: #fff;
  font-size: 14px;
}
.text{
    margin-left: 10px;
}
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
  min-height: 120px; /* 初期の高さ */
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* フォーカス時の見た目を改善 */
textarea:focus {
  border-color: #2ABCA7;
  box-shadow: 0 0 6px rgba(42, 188, 167, 0.5);
  outline: none;
}
#message{
    text-align: left;
}
#message2{
    text-align: left;
}
.btn-area {
  text-align: center;
  margin: 30px;
}

#checkBtn {
  padding: 12px 30px;
  font-size: 18px;
  background: #2ABCA7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#checkBtn:hover {
  background: #239c8b;
}
@media screen and (max-width:767px){
    
    h2{
        font-size: 1.3em;
    }
    label{
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 0px;
}
    textarea {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  border-radius: 6px;
  border: 3px solid #ccc;
  display: block;   /* ブロック要素化で margin:auto を有効化 */
}
    .question_1{
        margin-top: 0px;
    }
    
    
    
    
    
    
}
