/* /faq 専用。/about と同トーン（ヒーローは style.css の .page-hero 共通を使用） */

/* ===== セクション余白（PC基準） ===== */
.page-faq .company-section { padding: 80px 0; }

/* ===== 本文見出し（/about と同寸） ===== */
.page-faq .section-title{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ===== FAQ リスト ===== */
.faq-list{ list-style: none; margin: 0; padding: 0; }

.faq-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  margin: 12px 0;
  overflow: hidden;
}

.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-question:hover{ opacity: .9; }
.faq-question .q-label{ flex: 0 0 auto; font-weight: 800; }
.faq-question .q-text { flex: 1 1 auto; line-height: 1.9; }

.faq-question .q-icon{ position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-question .q-icon::before,
.faq-question .q-icon::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #000;
  opacity: .9;
  transform: translateY(-50%);
}
/* 閉じている時のみ縦線（＝＋） */
.faq-item:not(.is-open) .q-icon::after{ transform: translateY(-50%) rotate(90deg); }

.faq-answer{
  line-height: 1.9;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  will-change: max-height;
}
.faq-answer p{ margin: 14px 0 18px; }

/* 開いた状態 */
.faq-item.is-open .faq-answer{ max-height: 600px; }

/* ===== CTA（/about と同じ） ===== */
.page-faq .cta-box{
  text-align: center;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 28px 20px;
}
.page-faq .cta-tel  { font-size: 28px; font-weight: 800; letter-spacing: 1px; margin: 0 0 6px; }
.page-faq .cta-hours{ margin: 0 0 16px; color: #333; }
.page-faq .btn-primary{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
}
.page-faq .btn-primary:hover{ opacity: .85; }
.page-faq .cta-note{ margin-top: 10px; font-size: 12px; color: #555; }

/* =========================================================
   レスポンシブ（モバイル設定は末尾に集約）
   ※ 見た目は現状維持。PC/タブレットへは非干渉。
   ========================================================= */
@media (max-width: 768px){
  .faq-question{ padding: 14px 16px; }
  .faq-answer  { padding: 0 16px; }
}

@media (max-width: 640px){
  .page-faq .company-section{ padding: 48px 0; }
}
