@charset "UTF-8";

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, address, em, img, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, section, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body{
  font-family: Verdana,arial,helvetica,clean,sans-serif,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro";
  color: #333;
}
header{
  display: flex;
  width: 100%;
  height: 80px;
  background-color: #064D0B;
  align-items: center;
  justify-content: center;
}
h1{
  color: #FFF;
  font-size: 24px;
}

/* フォームの各パーツ */
form{
  padding: 60px 0;
}
.formIndex{
  padding-top: 0;
}
input[type=text]{
  margin-top: 20px;
  border: none;
  border-bottom: 1px solid #333;
  width: 100%;
  height: 40px;
  font-size: 24px;
}
select{
  width: 100%;
  height: 40px;
  font-size: 24px;
}
textarea{
  width: 100%;
  height: 80px;
  margin-top: 20px;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 24px;
}
#mojisu{
  text-align: right;
  color: #EE0000;
  font-size: 14px;
}

/* フォーム内のブロック,文字に関する調整 */
.questionSection{
  width: 800px;
  max-width: 90%;
  display: block;
  margin: 0 auto 40px;
}
.questionSentence{
  font-size: 24px;
  padding: 15px 0;
}
.questionSentence span{
  margin-left: 15px;
  font-size: 14px;
  padding: 4px 8px;
  color: #FFF;
  background-color: #EE0000;
  border-radius: 4px;
  vertical-align: middle;
}

.questionRadio{
  padding: 5px 0;
}
.questionRadio input{
  width: 20px;
  height: 20px;
  vertical-align: top;
}
.questionRadio label{
  font-size: 20px;
}
.questionButton{
  display: block;
  width: 150px;
  margin: 40px auto;
  font-size: 20px;
  letter-spacing: 5px;
  padding: 10px 0;
  color: #FFF;
  background: #99885E;
  border: none;
}
.questionButton_wide{
  display: block;
  width: 250px;
  max-width: 80%;
  margin: 40px auto;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 10px 0;
  color: #FFF;
  background: #99885E;
  border: none;
}
.error-message{
  padding-top: 20px;
  font-size: 18px;
  color: #EE0000;
  font-weight: 600;
}

/* 最初のページ */
.questionWrap{
  width: 800px;
  max-width: 90%;
  display: block;
  margin: 0 auto 40px;
}
.questionHead{
  font-size: 28px;
  lin-height: 52px;
  text-shadow: 2px 2px 4px #BBB;
  padding: 100px 0;
  margin-bottom: 30px;
  text-align: center;
  background: #DDFFDD;
  position: relative;
}
.questionHead:before{
  position: absolute;
  content: "";
  width: 150px;
  height: 45px;
  right: 10px;
  bottom: 10px;
  background-image: url("../img/amazon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 500px) {
  .questionHead{
    font-size: 5.5vw;
    line-height: 10.5vw;
  }
}

/* 完了ページ */
.questionFinish{
  font-size: 28px;
  line-height: 52px;
  text-shadow: 2px 2px 4px #BBB;
  padding: 150px 0 50px;
  text-align: center;
  position: relative;
  background: #DDFFDD;
}
.questionFinish:before{
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: 40px;
  left: calc(50% - 50px);
  background-image: url("../img/check.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 500px) {
  .questionFinish{
    font-size: 5.5vw;
    line-height: 10.5vw;
  }
}

.questionBorder{
  margin: 15px 0;
}
.questionWrap h3{
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  padding: 30px 15px 20px 40px;
  position: relative;
}
.questionWrap h3:before{
  position: absolute;
  content: "";
  width: 23px;
  height: 24px;
  left: 5px;
  background-image: url("../img/triangle.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.questionText{
  font-size: 16px;
  line-height: 28px;
}
.questionLine{
  display: block;
  width: 150px;
  margin: 20px auto 30px;
}
.questionLine img{
  width: 100%;
  height: auto;
}
.questionLink{
  text-align: center;
  padding: 20px 0 10px;
}
.questionLink a{
  color: #99885E;
  font-size: 24px;
  position: relative;
}
.questionLink a:before{
  position: absolute;
  width: 30px;
  height: 24px;
  background-image: url("../img/email.png");
  background-repeat: no-repeat;
  background-size: cover;
}