@charset "UTF-8";

.exe-faq-page *, .exe-faq-page *::before, .exe-faq-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.exe-faq-page {
  font-family: "ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"MS PGothic",sans-serif;
  
  color: #2E3030;
  background: #f7f7f7;
}
.exe-faq-page a { text-decoration: none; }

/* ヘッダー */
.efq-header { width:100%; background:rgba(244,244,244,0.97); border-top:1px solid #e2e2e2; border-bottom:1px solid #e2e2e2; position:sticky; top:0; z-index:100; }
.efq-header-inner { width:90%; max-width:1000px; margin:0 auto; padding:0 5%; display:flex; align-items:center; justify-content:space-between; height:52px; }
.efq-logo { display:flex; align-items:center; gap:8px; text-decoration:none; }
.efq-logo-mark { font-size:1.8rem; font-weight:900; color:#ef8200; letter-spacing:-1px; }
.efq-logo-text { font-size:1.2rem; color:#2E3030; font-weight:700; line-height:1.3; }
.efq-logo-text small { display:block; font-size:1.0rem; font-weight:400; color:#191919; }
.efq-header-cta {
  display:block;
  background:linear-gradient(90deg, rgba(0,180,165,1) 0%, rgba(0,141,183,1) 100%);
  border-bottom-right-radius:10px; border-bottom-left-radius:10px;
  color:#fff; font-size:1.3rem; font-weight:bold; padding:7px 14px; text-align:center; white-space:nowrap; transition:opacity 0.3s;
}
.efq-header-cta:hover { opacity:0.7; }

/* ページタイトル（pagetitle_diagonal に完全準拠） */
.efq-pagetitle-back { overflow:hidden; width:100%; }
.efq-pagetitle-diagonal {
  position:relative; width:100%;
  background:-moz-linear-gradient(left, #e97d09, #fabe00);
  background:-webkit-linear-gradient(left, #e97d09, #fabe00);
  background:linear-gradient(to right, #e97d09, #fabe00);
  padding:0 0 40px 0;
}
.efq-pagetitle-diagonal::after {
  content:''; display:block; position:absolute; left:0; bottom:0;
  border-top:60px solid transparent;
  border-left:200vw solid transparent;
  border-right:160vw solid #f7f7f7;
  border-bottom:60px solid #f7f7f7;
}

/* パンくず（.pankuzu に準拠） */
.efq-pankuzu-area { width:100%; border-bottom:1px solid #f9d7b9; }
.efq-pankuzu { width:90%; max-width:1200px; margin:0 auto; padding:5px 5%; color:#fff; font-size:1.2rem; }
.efq-pankuzu a { color:#fff; font-size:1.2rem; opacity:0.9; }
.efq-pankuzu a:hover { opacity:0.7; }

/* ページタイトルテキスト */
.efq-pagetitle-area { width:90%; max-width:1200px; margin:16px auto 0 auto; padding:0 5%; }
.efq-pagetitle-en { font-size:1.6rem; color:#fff; opacity:0.9; margin-bottom:4px; }
.efq-pagetitle-jp { font-size:2.4rem; font-weight:bold; color:#fff; line-height:1.45; margin-bottom:8px; }


/* 実績バー */
.efq-stats { display:flex; flex-wrap:wrap; gap:0; max-width:660px; margin-bottom:60px; }
.efq-stat { background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3); padding:12px 18px; text-align:center; flex:1; min-width:110px; position:relative; }
.efq-stat + .efq-stat::before { content:''; position:absolute; left:0; top:20%; height:60%; width:1px; background:rgba(255,255,255,0.3); }
.efq-stat:first-child { border-radius:6px 0 0 6px; }
.efq-stat:last-child  { border-radius:0 6px 6px 0; }
.efq-stat-num { font-size:2.0rem; font-weight:900; color:#fff; line-height:1; margin-bottom:4px; }
.efq-stat-label { font-size:1.0rem; color:rgba(255,255,255,0.75); }

/* メインラッパー */
.efq-main-wrap { width:90%; max-width:1200px; margin:0 auto; padding:40px 0 80px; display:grid; grid-template-columns:1fr 260px; gap:40px; align-items:start; font-size:15px;}

/* セクション見出し（.sub_title / .sub_catch に準拠） */
.efq-section-label {
  font-size:16px; font-weight:bold; color:#ef8200;
  border-left:3px solid #ef8200;
  padding-left:8px;
  margin:28px 0 10px;
  letter-spacing:0.5px;
}
.efq-section-label:first-child { margin-top:0; }

/* コンテンツリード文 */
.efq-content-lead {
  font-size:15px;
  color:#191919;
  line-height:1.8;
  border-top:1px solid #EDEDED;
  border-bottom:1px solid #EDEDED;
  padding:16px 0;
  margin-bottom:24px;
}

/* カテゴリタブ */
.efq-tabs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:24px; }
.efq-tab { background:#fff; border:1px solid #DBDBDB; color:#606060; font-family:inherit; font-size:14px; font-weight:bold; padding:6px 16px; border-radius:20px; cursor:pointer; transition:background 0.2s, color 0.2s, border-color 0.2s; }
.efq-tab:hover, .efq-tab.active { background:#ef8200; border-color:#ef8200; color:#fff; }

/* FAQリスト */
.efq-list {
  display:flex; flex-direction:column; gap:1px;
  background:#e2e2e2;
  border:1px solid #e2e2e2;
  border-radius:6px;
  overflow:hidden;
  margin-bottom:20px;
}
.efq-item { background:#fff; }
.efq-item.efq-hidden { display:none; }

/* Qボタン（services_submenu_waku に準拠：白・角丸・影・左オレンジ5px） */
.efq-q {
  width:100%; text-align:left;
  background:#fff;
  border:none;
  border-radius:0;
  box-shadow:none;
  cursor:pointer;
  display:grid; grid-template-columns:28px 1fr 20px;
  align-items:start; gap:10px;
  padding:16px 18px;
  font-family:inherit; font-size:15px; font-weight:bold; color:#2E3030;
  transition:background 0.15s; line-height:1.5;
}
.efq-q:hover { background:#fff8ee; }
.efq-q-badge { width:26px; height:26px; background:#ef8200; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:bold; flex-shrink:0; }
.efq-q-text { text-align:left; }
.efq-chevron { color:#ef8200; font-size:14px; transition:transform 0.25s; flex-shrink:0; justify-self:end; }
.efq-q[aria-expanded="true"] .efq-chevron { transform:rotate(180deg); }

/* 回答エリア（service-text 風：薄橙背景） */
.efq-a-wrap { overflow:hidden; max-height:0; transition:max-height 0.32s ease; }
.efq-a-wrap.open { max-height:800px; }
.efq-a { padding:0 30px 18px 56px; }
.efq-a-inner { border-top:1px solid #f4f4f4; padding-top:14px; }
.efq-a-badge { display:inline-block; background:#f9eccf; color:#ef8200; font-size:11px; font-weight:bold; padding:2px 8px; border-radius:2px; margin-bottom:8px; }
.efq-a p { font-size:15px; color:#606060; line-height:1.85; margin:0; }
.efq-a p + p { margin-top:10px; }
.efq-hl { color:#ef8200; font-weight:bold; }

/* 本文CTA */
.efq-inline-cta { background:#fff; border-top:3px solid #ef8200; border:1px solid #e2e2e2; border-top:3px solid #ef8200; border-radius:0 0 8px 8px; padding:28px 24px; text-align:center; margin-top:40px; }
.efq-inline-cta h3 { font-size:16px; color:#1f1b18; margin-bottom:8px; }
.efq-inline-cta p { font-size:14px; color:#606060; margin-bottom:20px; line-height:1.7; }
.efq-cta-btn { display:inline-block; background:linear-gradient(90deg, rgba(0,180,165,1) 0%, rgba(0,141,183,1) 100%); color:#fff; font-size:15px; font-weight:bold; padding:12px 36px; border-radius:4px; transition:opacity 0.3s; }
.efq-cta-btn:hover { opacity:0.75; }
.efq-inline-tel { margin-top:12px; font-size:12px; color:#191919; }
.efq-inline-tel a { color:#044274; }

/* サイドバー */
.efq-sidebar { position:sticky; top:72px; display:flex; flex-direction:column; gap:16px; }
.efq-sb-card { background:#fff; border-top:3px solid #ef8200; border-radius:0 0 6px 6px; box-shadow:0px 4px 15px 0px rgba(94,94,94,0.10); padding:16px; }
.efq-sb-card h3 { font-size:14px; font-weight:bold; color:#1f1b18; margin-bottom:12px; padding-bottom:8px; border-bottom:1px solid #f7c19c; }
.efq-stat-row { display:flex; justify-content:space-between; align-items:center; padding:7px 0; border-bottom:1px solid #fae0c8; font-size:14px; }
.efq-stat-row:last-child { border-bottom:none; }
.efq-stat-row-label { color:#191919; }
.efq-stat-row-val { font-weight:bold; color:#ef8200; font-size:15px; }
.efq-apo-chart { background:#fcf8f5; border-radius:4px; padding:12px; text-align:center; }
.efq-apo-chart-label { font-size:11px; color:#191919; margin-bottom:10px; }
.efq-chart-bars { display:flex; align-items:flex-end; justify-content:center; gap:20px; }
.efq-bar-wrap { text-align:center; }
.efq-bar { width:44px; border-radius:3px 3px 0 0; margin:0 auto 4px; }
.efq-bar.industry { background:#DBDBDB; height:18px; }
.efq-bar.ours { background:#ef8200; height:96px; }
.efq-bar-pct { font-size:14px; font-weight:bold; color:#2E3030; }
.efq-bar-pct.ours { color:#ef8200; font-size:15px; }
.efq-bar-name { font-size:10px; color:#191919; }
.efq-sb-cta { background:linear-gradient(90deg, rgba(0,180,165,1) 0%, rgba(0,141,183,1) 100%); border-radius:6px; padding:20px 16px; text-align:center; }
.efq-sb-cta p { color:rgba(255,255,255,0.9); font-size:13px; margin-bottom:14px; line-height:1.7; }
.efq-sb-cta-btn { display:block; background:#fff; color:#007a6e; font-weight:bold; font-size:0.82rem; padding:10px; border-radius:4px; transition:opacity 0.3s; }
.efq-sb-cta-btn:hover { opacity:0.8; }
.efq-sb-tel { margin-top:10px; font-size:11px; color:rgba(255,255,255,0.75); }
.efq-sb-tel a { color:#fff; font-size:14px; font-weight:bold; display:block; margin-top:2px; }
.efq-sb-links { list-style:none; }
.efq-sb-links li { border-bottom:1px solid #fae0c8; }
.efq-sb-links li:last-child { border-bottom:none; }
.efq-sb-links a { display:block; padding:7px 0; font-size:14px; color:#356293; transition:opacity 0.3s; }
.efq-sb-links a::before { content:'› '; color:#ef8200; }
.efq-sb-links a:hover { opacity:0.7; }

/* フッター */
.efq-footer { background:#2E3030; color:rgba(255,255,255,0.45); text-align:center; padding:24px 5%; font-size:12px; }
.efq-footer-links { margin-bottom:10px; }
.efq-footer-links a { color:rgba(255,255,255,0.55); text-decoration:none; margin:0 8px; transition:opacity 0.3s; }
.efq-footer-links a:hover { opacity:0.8; }

/* レスポンシブ（760px 基準） */
@media screen and (max-width: 759px) {

  .efq-header-inner { padding:0 4%; height:48px; }
  .efq-main-wrap { grid-template-columns:1fr; padding:24px 5% 48px; }
  .efq-sidebar { position:static; }
  .efq-pagetitle-diagonal { padding-bottom:50px; }
  .efq-stats { gap:1px; }
  .efq-stat { min-width:80px; padding:8px 10px; }
  .efq-stat-num { font-size:18px; }
  .efq-q { font-size:13px; padding:13px 14px; }
  .efq-q-badge { width:22px; height:22px; font-size:11px; }
  .efq-a { padding:0 14px 16px 48px; }
  .efq-a p { font-size:13px; line-height:1.75; }
  .efq-content-lead { font-size:13px; line-height:1.7; }
  .efq-tabs { gap:5px; }
  .efq-tab { font-size:14px; padding:5px 12px; }
}
@media (prefers-reduced-motion: reduce) { .exe-faq-page * { transition:none !important; } }
