/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 10 2025 | 10:12:47 */
/* ─── Q & A スタイル ─── */

/* コンテナ  */
.qa-box {
  margin: 2em 0;                /* ブロック間の余白 */
  padding: 1.2em 1.6em;         /* 内側余白 */
  border: 1px solid #dfeef3;    /* やわらかいグレー枠 */
  border-radius: 8px;
  background: #f5fbfd;          /* ほんのり水色背景 */
}

/* 質問(Q) と回答(A) 共通 */
.qa-box .q,
.qa-box .a {
  position: relative;
  padding-left: 2.4em;          /* アイコン分の左余白 */
  line-height: 1.6;
}

/* Q 行：太字で強調 */
.qa-box .q { font-weight: 700; }

/* アイコン（Q / A 丸囲み） */
.qa-box .q::before,
.qa-box .a::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  text-align: center;
  line-height: 1.6em;
  font-size: 0.85em;
  font-weight: 700;
  color: #fff;
}

/*色違いにするだけ*/
.qa-box .q::before { background: #00a3d4; }
.qa-box .a::before { content: "A"; background: #00c8c0; }

/* 回答にちょっと余白 */
.qa-box .a { margin-top: 0.6em; }

/* SP で少し文字小さめ */
@media (max-width: 599px) {
  .qa-box { padding: 1em 1.2em; }
  .qa-box .q, .qa-box .a { font-size: 0.95rem; }
}
