
@charset "utf-8";

/* ===== Body ===== */
.sl-faq-body{
  padding: 34px 0 60px;
}
.sl-faq-body__inner{
  width: min(980px, calc(100% - 48px));
  margin:0 auto;
}
.sl-faq-head{
  position: relative;
  text-align: center;
  margin-bottom: 18px;
  z-index: 0;
  box-shadow: none;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  filter: none;
}
.sl-faq-head__title{
  margin:0 0 8px;
  /*font-size: 34px;*/
  font-size: 5rem;
  letter-spacing:.12em;
  font-weight: 900;
  color:#0f172a;
}
.sl-faq-head__lead{
  margin:0;
  /*font-size: 13px;*/
  font-size: 1.5rem;
  color:#111827;
  font-weight: 700;
}

/* ===== Accordion ===== */
.sl-accordion{
  margin-top: 22px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.sl-acc-item{
  background:#fff;
  border:1px solid rgba(17,24,39,.25);
  border-radius: 4px;
  overflow:hidden;
}
.sl-acc-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 18px;
  background:#fff;
  border:0;
  cursor:pointer;
  text-align:left;
}
.sl-acc-q__text{
  font-weight: 900;
  color:#0f2f6b;
  /*font-size: 14px;*/
  font-size: 1.5rem;
}
.sl-acc-q__icon{
  width: 22px;
  height: 22px;
  color:#0f2f6b;
  display:grid;
  place-items:center;
  transition: transform .2s ease;
}
.sl-acc-q__icon svg{ width:20px; height:20px; display:block; }
.sl-acc-item.is-open .sl-acc-q__icon{ transform: rotate(90deg); }

.sl-acc-a{
  background:#eef2f7;
  border-top:1px solid rgba(17,24,39,.12);
}
.sl-acc-a__inner{
  padding: 14px 18px 18px;
  font-size: 13px;
  line-height: 1.85;
  color:#111827;
}
.sl-acc-a__inner p{
  font-size: 1.5rem;
}

/* ===== CTA（別セクション） ===== */
.sl-faq-contact{
  background:#fff;            /* ← ここが「背景が違う」ポイント */
  padding: 52px 0 70px;
}
.sl-faq-contact__inner{
  width: min(980px, calc(100% - 48px));
  margin:0 auto;

  border: 2px solid #0f2f6b;
  border-radius: 10px;
  background: #f3f4f6;        /* ← 中のボックスは薄グレー */
  padding: 34px 18px;
  text-align:center;
}
.sl-faq-contact__text{
  margin:0 0 18px;
  font-weight: 800;
  color:#0f2f6b;
  line-height: 1.7;
  /*font-size: 13px;*/
  font-size: 1.5rem;
}
.sl-faq-contact__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#2F5597;
  color:#fff;
  font-weight: 900;
  padding: 14px 26px;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,.18);
}

/* ===== Responsive ===== */
@media (max-width: 768px){
  .sl-faq-hero{ height: 180px; }
  .sl-faq-hero__big{ font-size: 34px; }
  .sl-faq-body__inner,
  .sl-faq-contact__inner{ width: min(980px, calc(100% - 28px)); }
  .sl-acc-q{ padding: 14px 14px; }
  .sl-acc-a__inner{ padding: 12px 14px 16px; }
}