/* =============================================
   株式会社ビズム コーポレートHP - style.css
   ============================================= */

/* --- CSS変数 --- */
:root {
  --primary: #1a2a3a;
  --accent: #2563eb;
  --accent-light: #e8f0fe;
  --bg: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e2e8f0;
  --success: #059669;
  --header-height: 64px;
}

/* --- リセット・ベース --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   ヘッダーナビ（固定）
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-logo small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 8px;
  letter-spacing: 2px;
}

/* ナビゲーション */
.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-list a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--accent);
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   ヒーローセクション
   ============================================= */
.hero {
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--primary) 0%, #2d4a6a 60%, #1a3a5c 100%);
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-catch {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.9;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 160px;
  backdrop-filter: blur(4px);
}

.hero-badge .badge-value {
  font-size: 32px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.hero-badge .badge-unit {
  font-size: 14px;
  opacity: 0.8;
}

.hero-badge .badge-label {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

/* =============================================
   共通コンテナ・セクション
   ============================================= */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  background: var(--white);
  border-radius: 12px;
  padding: 56px 48px;
  margin: 36px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 32px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.section-subtitle:first-of-type {
  margin-top: 0;
}

.section-lead {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.9;
}

p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.9;
}

/* =============================================
   フロー図
   ============================================= */
.flow-line {
  background: var(--accent-light);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0;
}

.flow-step {
  background: var(--accent-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}

.flow-arrow {
  color: var(--accent);
  font-size: 20px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* =============================================
   カードグリッド（サービス対応領域）
   ============================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card .card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.service-card .card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card .card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   実績サマリー
   ============================================= */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.summary-card {
  background: var(--accent-light);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.summary-card .label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.summary-card .value {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.summary-card .unit {
  font-size: 14px;
  color: var(--text-light);
}

/* =============================================
   リスト系
   ============================================= */
.task-list {
  list-style: none;
  padding: 0;
}

.task-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.task-list li:last-child {
  border-bottom: none;
}

.task-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* =============================================
   成果事例カード
   ============================================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.case-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.case-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-card .case-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.case-card table {
  width: 100%;
  border-collapse: collapse;
}

.case-card table td {
  font-size: 14px;
  padding: 4px 0;
  vertical-align: top;
}

.case-card table td:first-child {
  color: var(--text-light);
  white-space: nowrap;
  padding-right: 12px;
  width: 130px;
}

.case-card table td:last-child {
  font-weight: 600;
  text-align: right;
}

.case-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

/* =============================================
   業種グリッド
   ============================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.industry-card {
  background: #fafbfc;
  border-radius: 10px;
  padding: 20px 24px;
}

.industry-card .industry-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.industry-card .industry-items {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}

.industry-card.full-width {
  grid-column: 1 / -1;
}

/* =============================================
   月1集客便セクション
   ============================================= */
.service-box {
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 32px;
  margin-top: 16px;
}

.service-box .service-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.service-box .service-price {
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.concept {
  background: var(--accent-light);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
}

.concept .concept-copy {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* 比較テーブル */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.compare-table thead th:first-child {
  background: var(--text-light);
  border-radius: 8px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--primary);
  background: #fafbfc;
  text-align: left;
}

.compare-table tbody td:last-child {
  color: var(--accent);
  font-weight: 600;
}

/* 実績カード（月1集客便用） */
.result-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.result-card {
  background: var(--accent-light);
  border-radius: 10px;
  padding: 24px;
}

.result-card .result-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.result-card .result-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   BSM Partners セクション
   ============================================= */
.vision-block {
  background: var(--accent-light);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.vision-block .vision-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.vision-block .vision-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.vision-block .vision-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ターゲットリスト */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.target-card {
  background: #fafbfc;
  border-radius: 10px;
  padding: 24px;
}

.target-card .target-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.target-card .target-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* 料金体系 */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}

.pricing-card.featured {
  border-color: var(--accent);
}

.pricing-card .pricing-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pricing-card .pricing-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card .pricing-price .price-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .pricing-share {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 14px;
}

.pricing-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ステップアップ */
.steps-row {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.step-item {
  flex: 1;
  background: #fafbfc;
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
}

.step-item .step-num {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.step-item .step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-item .step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   スキル系
   ============================================= */
.skill-section {
  margin-top: 32px;
}

.skill-section:first-of-type {
  margin-top: 0;
}

.skill-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.skill-category {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 16px;
  margin-bottom: 8px;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}

.skill-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 14px;
}

.skill-list li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

/* =============================================
   BtoB実績
   ============================================= */
.btob-list {
  list-style: none;
  padding: 0;
}

.btob-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.btob-list li:last-child {
  border-bottom: none;
}

.btob-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* =============================================
   特徴セクション
   ============================================= */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.approach-card {
  background: #fafbfc;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}

.approach-card .approach-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.approach-card .approach-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================
   CTA
   ============================================= */
.cta-block {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cta-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

/* =============================================
   会社情報テーブル
   ============================================= */
.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  font-weight: 700;
  color: var(--primary);
  background: #fafbfc;
  white-space: nowrap;
}

/* =============================================
   フッター
   ============================================= */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 56px 24px 32px;
  margin-top: 36px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-company {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-company-en {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-contact {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.footer-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.2s, opacity 0.2s;
}

.btn-contact:hover {
  background: #1d4ed8;
}

.btn-contact.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-contact.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

/* =============================================
   サブページ（特商法・プライバシーポリシー）
   ============================================= */
.page-hero {
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--primary) 0%, #2d4a6a 100%);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}

.page-hero-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* 特商法テーブル */
.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
}

.legal-table th {
  width: 180px;
  font-weight: 700;
  color: var(--primary);
  background: #fafbfc;
  white-space: nowrap;
}

.legal-table td p {
  margin-bottom: 8px;
}

.legal-table td p:last-child {
  margin-bottom: 0;
}

.legal-item-title {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 2px;
}

/* プライバシーポリシー */
.privacy-content h3 {
  margin-top: 40px;
}

.privacy-content h3:first-of-type {
  margin-top: 0;
}

.legal-date {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-light);
  text-align: right;
}

/* =============================================
   レスポンシブ（768px以下）
   ============================================= */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  /* ヒーロー */
  .hero {
    padding: 64px 20px 56px;
  }

  .hero-catch {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .hero-badges {
    gap: 12px;
  }

  .hero-badge {
    padding: 16px 20px;
    min-width: 0;
    flex: 1;
  }

  .hero-badge .badge-value {
    font-size: 24px;
  }

  /* セクション */
  .section {
    padding: 32px 24px;
    margin: 20px auto;
  }

  .section-title {
    font-size: 22px;
  }

  /* グリッド系 */
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-cards {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
  }

  /* フロー */
  .flow-steps {
    flex-direction: column;
    gap: 4px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 2px 0;
  }

  /* 比較テーブル */
  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }

  /* サブページ */
  .page-hero {
    padding: 36px 20px;
  }

  .page-hero-title {
    font-size: 22px;
  }

  .legal-table th {
    display: block;
    width: 100%;
    padding: 16px 16px 4px;
  }

  .legal-table td {
    display: block;
    padding: 4px 16px 16px;
  }

  /* 会社情報テーブル */
  .company-table th {
    display: block;
    width: 100%;
    padding: 16px 16px 4px;
  }

  .company-table td {
    display: block;
    padding: 4px 16px 16px;
  }

  /* フッター */
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-contact {
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
