/* =========================
   LUXE UI (having fun)
   ========================= */
html, body{
  padding: 0;
  margin: 0;
	background: #FCFBF8;
}
  .faq-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 56px;
  }

  .title_h2 {
    text-align: center;
    margin-bottom: 18px;
  }

  .faq-lead {
    text-align: center;
    color: #555;
    line-height: 1.8;
    margin: 0 auto 20px;
    max-width: 760px;
  }

  /* タブ */
  .faq-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 20px;
    flex-wrap: wrap;
  }
 .faq-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.faq-tab-btn-lit {
  appearance: none;
  border: 1px solid #d7dce5;
  background: #fff;
  color: #00479d;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}
.faq-tab-btn-lit:hover {
    background: #f5f9ff;
  }

.faq-tab-btn-lit.is-active {
    background: #00479d;
    color: #fff;
    border-color: #00479d;
    box-shadow: 0 8px 20px rgba(0, 71, 157, 0.15);
  }
.faq-tab-btn-if {
	appearance: none;
    border: 1px solid #d7dce5;
    background: #fff;
    color: #8f6b1a;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: .25s ease;
}
 .faq-tab-btn-if:hover {
    background: #FAF7F0;
  }
 .faq-tab-btn-if.is-active {
    background: #8f6b1a;
    color: #fff;
    border-color: #8f6b1a;
    box-shadow: 0 8px 20px rgba(0, 71, 157, 0.15);
  }
 
  /* 検索 */
  .faq-search {
    max-width: 680px;
    margin: 0 auto 12px;
  }

  .faq-search input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #d9dee7;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
    outline: none;
  }

  .faq-search input:focus {
    border-color: #00479d;
    box-shadow: 0 0 0 4px rgba(0, 71, 157, 0.08);
  }

  .faq-status {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
  }

  /* 一覧 */
  .faq-wrap {
    display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  }

  .accordion {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  /* Lit / FOCUSごとの色分け */
  .accordion[data-category="lit"] {
    background: #F7FCFF;
  }

  .accordion[data-category="focus"] {
    background: #FAF7F0;
  }

  .accordion.is-hidden {
    display: none;
  }

  .accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px 16px;
    position: relative;
  }

  .accordion summary::-webkit-details-marker {
    display: none;
  }

  .faq-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .04em;
  }

  .faq-label--lit {
    background: rgba(0, 71, 157, 0.10);
    color: #00479d;
  }

  .faq-label--focus {
    background: rgba(184, 155, 94, 0.16);
    color: #8f6b1a;
  }

  .faq-question {
    color: #00479d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    padding-right: 28px;
  }

  .accordion summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    line-height: 1;
    color: #00479d;
    transition: transform .2s ease;
  }
.accordion[data-category="focus"] summary::after {
  color: #8f6b1a;
}
  .accordion[open] summary::after {
    content: "−";
  }

  .accordion-body {
    padding: 0 22px 22px;
    color: #222;
    line-height: 1.9;
    font-size: 15px;
  }

  .accordion-body p {
    margin: 0;
  }

  .accordion-body img {
    margin-top: 14px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .no-result {
    display: none;
    text-align: center;
    margin: 28px 0 0;
    color: #666;
    font-size: 15px;
  }

  @media (max-width: 768px) {
    .faq-wrap {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .faq-question {
      font-size: 17px;
    }

    .accordion summary {
      padding: 18px 18px 14px;
    }

    .accordion-body {
      padding: 0 18px 18px;
    }

    .accordion summary::after {
      right: 16px;
      top: 18px;
    }
	 


  }
.faq-question-if {
	color: #8f6b1a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    padding-right: 28px;
}

@media (min-width: 769px) {
  .accordion-body img {
    width: 50%;
  }
}

.site-footer {
  margin-top: 72px;
  background: linear-gradient(180deg, #0a4a9f 0%, #003f90 100%);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 40, 100, 0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  padding: 14px 24px 16px;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 56px;
  }

  .footer-inner {
    padding: 18px 16px;
  }

  .footer-brand {
    font-size: 15px;
  }

  .footer-bottom {
    padding: 12px 16px 14px;
  }

  .footer-bottom small {
    font-size: 12px;
  }
}