/* =====================================================================
   FAQ アコーディオン
   ===================================================================== */

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 9px;
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px;
  font-family: inherit;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.faq__q .qmark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--blue-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}

.faq__plus {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--blue);
  transition: transform .25s;
  font-weight: 400;
}

.faq__item.open .faq__plus {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a-inner {
  padding: 0 14px 14px 46px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* =====================================================================
   根拠 / footer注釈 (開閉式)
   ===================================================================== */

.disclosure {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.disclosure__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  background: #fafbfe;
  border: none;
  padding: 12px 14px;
  font-family: inherit;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.disclosure__head .ic {
  color: var(--blue);
}

.disclosure__plus {
  margin-left: auto;
  color: var(--ink-3);
  transition: transform .25s;
}

.disclosure.open .disclosure__plus {
  transform: rotate(180deg);
}

.disclosure__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.disclosure__body-inner {
  padding: 4px 14px 14px;
}

.basis-list {
  margin: 0;
  padding-left: 18px;
}

.basis-list li {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 8px;
}

.basis-notice {
  margin-top: 16px;
  background: var(--cta-50);
  border: 1px solid #f6cdb0;
  border-radius: var(--r);
  padding: 13px 14px;
}

.basis-notice__title {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--cta-deep);
  margin-bottom: 4px;
}

.basis-notice__text {
  margin: 0;
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* =====================================================================
   サイトフッター
   ===================================================================== */

.sitefooter {
  background: var(--blue-ink);
  color: #c2d6c4;
  padding: 24px 16px 30px;
}

.sitefooter h4 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 8px;
}

.sitefooter p {
  font-size: 10.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.sitefooter .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 11px;
  margin: 14px 0;
}

.sitefooter .links a {
  color: #d7ebd9;
  text-decoration: none;
}

.sitefooter .copy {
  font-size: 9.5px;
  opacity: .6;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 14px;
}

.sitefooter .pr-foot {
  font-size: 9.5px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 14px;
  line-height: 1.6;
}
