/* ===== サービスページ FAQ セクション ===== */

/* CVエリア(1カラム中央寄せ) */
.cv-area-single {
    justify-content: center;
}
.cv-area-single .cv-area-col {
    max-width: 480px;
    margin: 0 auto;
}

/* FAQ セクション */
.faq-section {
    margin: 60px 0;
}
.faq-heading {
    font-size: 1.5em;
    text-align: center;
    color: #1a3a8a;
    margin-bottom: 30px;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}
.faq-item[open] {
    background-color: #f8f9fb;
}
.faq-question {
    font-weight: bold;
    color: #1a3a8a;
    cursor: pointer;
    padding: 8px 12px;
    list-style: none;
    position: relative;
    padding-right: 32px;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    color: #1a3a8a;
    transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
    content: "−";
}
.faq-answer {
    padding: 12px 12px 16px;
    line-height: 1.8;
    color: #333;
}

/* グローバルナビ：フォントサイズと折り返しの制御 */
.header-menu .menu-item a {
  font-size: 13px;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 8px 6px;
  line-height: 1.4;
}

/* メニュー項目間の余白を詰める */
.header-menu .menu-item {
  margin: 0 2px;
}

/* メニュー全体が中央寄せ・折り返しなしになるように */
.header-menu {
  flex-wrap: nowrap;
  align-items: center;
}

/* お問い合わせボタンの体裁調整 */
.header-nav a[href*="contact"],
.header-contact,
.header-contact a,
.contact-btn,
.header-cta,
.header-cta a {
  font-size: 13px !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  letter-spacing: 0 !important;
  padding: 12px 16px !important;
  min-width: auto !important;
  width: auto !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ボタン内のテキスト要素も念のため横書きに */
.header-nav a[href*="contact"] span,
.header-contact span,
.contact-btn span {
  writing-mode: horizontal-tb !important;
  white-space: nowrap !important;
}
/* ヘッダー左側の事務所名テキストエリアに十分な幅を確保 */
.header-title,
.site-title,
.header-logo-text,
header h1 {
  flex-shrink: 0;
  min-width: 280px;
  white-space: normal;
  word-break: keep-all;
  line-height: 1.5;
  font-size: 12px;
}

/* 万一ヘッダー全体の親要素が圧迫している場合 */
.header-nav {
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}