﻿/*-------------------------------------------------------------
  1. ベースのタイポグラフィ
-------------------------------------------------------------*/
.main--company {
  max-width: 1190px;
  margin: 0 auto 80px;
  padding: 0 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
}

/*-------------------------------------------------------------
  2. ページタイトル（h1 相当）
  → ガイドページの .c-page-title と同等サイズ・太さに
-------------------------------------------------------------*/
.main--company .h2--title-company {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
  color: #111;
}

/*-------------------------------------------------------------
  3. セクション見出し（h2 相当）
  → ガイドページの .p-guide-title と同等
-------------------------------------------------------------*/
.section--title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 50px 0 20px;
  color: #111;
  text-align: left;
  /* ボーダーは不要なら外しています */
}

/*-------------------------------------------------------------
  4. テーブルスタイル
  → 見やすい余白・ストライプ・アクセントカラー
-------------------------------------------------------------*/
.table--company {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  background-color: #fff;
  font-size: 16px;
}

.table--company th,
.table--company td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  vertical-align: middle;
  background-color: #f9f9f9;
  color: #222;
}

.table--company tr:nth-child(even) td {
  background-color: #f7f9fc;
}
.table--company tr:nth-child(odd) td {
  background-color: #ffffff;
}

.table--company td:first-child {
  width: 160px;
  min-width: 140px;
  text-align: center;
  background-color: #e0e6f0;
  font-weight: 700;
  color: #111;
}

/*-------------------------------------------------------------
  5. テキストインデント（住所リスト用）
-------------------------------------------------------------*/
.item--text-indent {
  padding-left: 100px;
  text-indent: -100px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .item--text-indent {
    padding-left: 85px;
    text-indent: -85px;
  }
}
@media (max-width: 575px) {
  .item--text-indent {
    padding-left: 0;
    text-indent: 0;
  }
  .item--text-indent:not(:last-child) {
    margin-bottom: 18px;
  }
  .item--text-indent span {
    display: inline-block;
    margin-bottom: 5px;
  }
}

/*-------------------------------------------------------------
  6. リンク（テキストリンク共通）
  → ガイドページの .link-text と同様スタイル
-------------------------------------------------------------*/
.main--company a {
  color: #2a89db;
  text-decoration: underline;
  transition: color 0.3s;
}
.main--company a:hover {
  color: #155fa0;
}

/*-------------------------------------------------------------
  7. CTA ボタン風リンク（下部関連ページ）
-------------------------------------------------------------*/
.section--cta-links {
  margin-top: 60px;
  padding: 30px 20px;
  background-color: #f5f7fa;
  border-radius: 8px;
  text-align: center;
  animation: fadeInUp 0.8s ease both;
}

.section--cta-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.cta--link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta--link-list li a {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #2a89db;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
}

.cta--link-list li a:hover {
  background-color: #155fa0;
  transform: translateY(-3px);
}

/*-------------------------------------------------------------
  8. ユーティリティ・レスポンシブ
-------------------------------------------------------------*/
.mg-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-100 {
  width: 100%;
}
.fonts-w600 {
  font-weight: 600;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .m-sp575 {
    display: none;
  }
  .mb-sp20 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .m-sp575 {
    display: block;
  }
}

/*-------------------------------------------------------------
  9. フェードインアニメーション定義
-------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}