@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 150%;
}

.faq {
  width: 1200px;
  margin: 150px auto;
  max-width: 90%;
  margin-bottom: 200px;
}

h2 {
  font-size: 30px;
  color: #003f75;
  font-weight: 600;
  text-align: center;
  margin: 100px 0 50px 0;
}

details {
  margin-bottom: 50px;
  background: white;
}
details ul {
  padding: 30px 60px 30px 60px;
  line-height: 200%;
  list-style: "A　";
}

/* summary 全体をクリック可能にする */
details summary {
  list-style: none; /* デフォルトの三角アイコンを消す */
  cursor: pointer;
  position: relative;
  padding: 25px 50px 25px 30px;
  padding-right: 60px; /* +/− 用の余白 */
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: #003f75;
  background: #c9e8eb;
}

/* 疑似要素で右側に + を表示 */
details summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
}

/* open 時は − に切り替える */
details[open] summary::after {
  content: "−";
}

.q-box {
  padding-right: 20px;
}

@media screen and (max-width: 700px) {
  h2 {
    margin-top: 50px;
    font-size: 25px;
    margin-bottom: 30px;
  }
  .faq {
    margin-top: 50px;
    margin-bottom: 100px;
  }
  details summary::after {
    font-size: 30px;
  }
  details summary {
    font-size: 18px;
  }
}/*# sourceMappingURL=faq.css.map */