* {
  margin: 0;
  padding: 0;
}
body{
  letter-spacing: 0;
}

/* よくあるご質問トップ */
.menu-firstview {
  background-image: url("../images/notebook_h1.jpg");
}

#gositumon {
  margin: 0 auto;
  max-width: 768px;

}

.gositumon-title {
  text-align: center;
  font-size: 15px;
  color: #46200e;
  margin-bottom: 40px;
}

/* 各 Q&A ブロック */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.situmon {
  color: #46200e;
  border-top: 1px solid #46200e;
  padding: 10px 0;
}

.q-style {
  display: inline;
  color: #da3517;
  font-size: 27px;
  padding: 30px;
}

/* 質問ボタン */
.faq-question {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #47210d;
  font-size: 18px;
  padding: 30px 12px 30px 20px;
  /* 左にアイコン用スペース */
  cursor: pointer;
  outline: none;
}

/* +／− アイコン（疑似要素） */
.faq-question::before {
  content: "+";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: bold;
  color: #46200e;
  transition: transform .3s;
}

.faq-question.active::before {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

/* 回答エリア（スライド） */
.answer {
  max-height: 0;
  /* ここをアニメーション */
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #46200e;
  transition: max-height .35s ease;
}

.answerlast-sen {
  border-top: 1px solid #46200e;
}

.answer p {
  margin: 15px 0;
}

/* 開いたときの余白を自然に見せるため */
.faq-question.active+.answer {
  padding-top: 0;
  /* JS で高さ制御するのでここは保持 */
}

/* レスポンシブ対応 */
@media (min-width: 667px) and (max-width: 1080px) {
  .menu-firstview {
    margin-top: 60px;
  }
}

@media screen and (max-width: 667px) {

  html,
  body {
    font-size: 14px;
  }

  .q-style {
    font-size: 20px;
    padding: 17px;
  }

  .faq-question {
    font-size: 14px;
    padding: 8px 0px 8px 13px;
  }

  .faq-question::before {
    font-size: 1.4rem;
  }

  .answer {
    font-size: 0.94rem;
  }

  section#gositumon {
    max-width: 90%;
  }

  .menu-firstview {
    margin-top: 60px;
  }

  header {
    position: relative;
    height: 150px;
  }

  .with-icon {
    font-size: 20px;
  }

  .with-icon+p {
    margin: 0;
  }

  .gositumon-title {
    font-size: 13px;
    margin: 10px;
  }
}