/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* GTM Container ID ボタンの調整 */
.gtm-reset-btn {
  display: inline-block;
  background: #0073aa;
  color: white;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}
.gtm-reset-btn:hover {
  background-color: rgba(0, 115, 170, 0.7);
  color: white;
}
#block-7, #block-7 > ul {
	margin-bottom: 0;
}
#gtmResetLink {
	margin-top: 0;
}

/* アコーディオン - ヘッダー*/
.accordion-header {
  cursor: pointer;
  background-color: #d8ecf3;
  padding: 0.8em 2.5em 0.8em 1.2em;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
  border: none;
  display: flex;
  align-items: center;
  color: #333;
}
.accordion-header:hover {
  background-color: #cbe4ef;
}
.accordion-header.active {
  background-color: #b9deea;
  color: #005072;
}

/* アコーディオン - ヘッダー - ?アイコン */
.accordion-header::before {
  content: "\f059"; /* fa-circle-question */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.1em;
  margin-left: 0;           /* 左余白ほぼゼロ */
  margin-right: 0.3em;      /* テキストとの間は最小限 */
  color: inherit;
}

/* アコーディオン - ヘッダー - ＋／ーの切り替え（右側） */
.accordion-header::after {
  content: "＋";
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
}
.accordion-header.active::after {
  content: "ー";
}

/* アコーディオン - 回答文 */
.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  background-color: transparent;
  padding: 0 2em;
  box-sizing: border-box;
  margin-bottom: 0;
}

/* アコーディオン - 回答文 - オープン */
.accordion-body.open {
}
