/* ===== ツールページ専用スタイル ===== */

/* アクティブナビ */
.nav-active {
  color: #1E2B7B !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #1E2B7B;
  padding-bottom: 2px;
}

/* ページヒーロー */
.tools-page-hero {
  background: linear-gradient(135deg, #ECEEFF 0%, #EEF0FF 100%);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid #E2E8F0;
}
.tools-page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  margin-top: 16px;
}
.tools-page-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

/* ツール詳細セクション */
.tool-detail {
  padding: 80px 0;
  background: #fff;
}
.tool-detail--alt {
  background: #F8FAFC;
}

.tool-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tool-detail-inner--rev {
  direction: rtl;
}
.tool-detail-inner--rev > * {
  direction: ltr;
}

/* ツール画像エリア */
.tool-detail-image img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: block;
}
.tool-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tool-status-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F59E0B;
  background: #FEF3C7;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #FDE68A;
}

/* ツール内容エリア */
.tool-detail-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.tool-detail-tagline {
  font-size: 0.95rem;
  color: #1E2B7B;
  font-weight: 500;
  margin-bottom: 20px;
}
.tool-detail-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* 機能リスト */
.tool-detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.tool-detail-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tool-detail-features strong {
  display: block;
  font-size: 0.9rem;
  color: #0F172A;
  margin-bottom: 3px;
}
.tool-detail-features p {
  font-size: 0.825rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.tool-detail-cta { }
.btn-tool-coming {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  background: #F1F5F9;
  color: #94A3B8;
  border: 2px solid #E2E8F0;
  cursor: not-allowed;
  width: 100%;
  max-width: 320px;
}

/* お問い合わせCTA */
.tools-inquiry {
  background: #1E2B7B;
  padding: 48px 0;
}
.tools-inquiry-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tools-inquiry-text {
  font-size: 1rem;
  color: #A5B4FC;
  font-weight: 500;
}
.tools-inquiry .btn-primary {
  background: white;
  color: #1E2B7B;
  border-color: white;
  white-space: nowrap;
}
.tools-inquiry .btn-primary:hover {
  background: #EEF0FF;
  border-color: #EEF0FF;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .tools-page-hero { padding: 56px 0 40px; }
  .tools-page-title { font-size: 1.6rem; }

  .tool-detail { padding: 56px 0; }
  .tool-detail-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tool-detail-inner--rev { direction: ltr; }
  .tool-detail-name { font-size: 1.8rem; }

  .tools-inquiry-inner {
    flex-direction: column;
    text-align: center;
  }
  .btn-tool-coming { max-width: 100%; }
}

@media (max-width: 480px) {
  .tools-page-title { font-size: 1.4rem; }
  .tool-detail-name { font-size: 1.5rem; }
}
