@charset "utf-8";
/* ============================================================
   networks-top.css
   トップページ本文セクション用スタイル（.nwt- でスコープ）
   配色トークン: 濃紺 #001840 / ブルー #1a7ae0 / 水色 #3cb4ff
   フォントは networks-hero.css の Noto Sans JP を利用（再importしない）
   ブレークポイント: 768px（networks-hero.css と統一）
   ============================================================ */

.nwt-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 20px 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #1c2b3a;
  text-align: left;
}

/* --- セクション共通 --- */
.nwt-section {
  margin: 56px 0;
}

.nwt-wrap h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #001840;
  line-height: 1.4;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 14px;
}
.nwt-wrap h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, #3cb4ff, #1a7ae0);
}

.nwt-wrap p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #33475b;
  margin: 0 0 1em;
}

.nwt-wrap a {
  color: #1a7ae0;
}

.nwt-more {
  text-align: center;
  margin-top: 20px !important;
}
.nwt-more a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #1a7ae0;
  border-bottom: 1px solid rgba(26,122,224,0.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.nwt-more a:hover {
  color: #3cb4ff;
  border-color: #3cb4ff;
}

/* --- 3-1. 業種宣言 --- */
.nwt-lead {
  text-align: center;
}
.nwt-lead-text {
  text-align: center;
  font-size: 1rem !important;
  color: #33475b;
}

/* --- 3-2. サービスカード --- */
.nwt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.nwt-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,24,64,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nwt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,24,64,0.14);
  border-color: #3cb4ff;
}

.nwt-card-media {
  line-height: 0;
  background: #f2f6fb;
}
.nwt-card-media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.nwt-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 業種ラベル（水色系バッジ） */
.nwt-badge {
  align-self: flex-start;
  display: inline-block;
  background: rgba(60,180,255,0.14);
  color: #1a7ae0;
  border: 1px solid rgba(60,180,255,0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.nwt-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #001840;
  line-height: 1.5;
  margin: 0 0 8px;
}

.nwt-card-desc {
  font-size: 0.88rem !important;
  line-height: 1.75;
  color: #445;
  margin: 0 !important;
}

/* 画像なしテキストカード（けーた君） */
.nwt-card--text .nwt-card-body {
  padding-top: 22px;
  background: linear-gradient(160deg, #f7fbff 0%, #eef5fd 100%);
}

/* --- 3-3 / 3-4 テキストセクション --- */
.nwt-custom p,
.nwt-stance p {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 3-5. お知らせ --- */
.nwt-news p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 2;
  padding: 20px 24px;
  background: #f6f9fc;
  border-left: 3px solid #1a7ae0;
  border-radius: 4px;
}

/* --- 3-6. お問い合わせCTA --- */
.nwt-cta {
  text-align: center;
  background: linear-gradient(135deg, #001840 0%, #0050bb 70%, #1a7ae0 100%);
  color: #fff;
  border-radius: 12px;
  padding: 44px 24px 48px;
}
.nwt-cta h2 {
  color: #fff;
}
.nwt-cta h2::after {
  background: #3cb4ff;
}
.nwt-cta p {
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.nwt-cta-btn-wrap {
  margin: 24px 0 0 !important;
}
.nwt-cta-btn {
  display: inline-block;
  background: #1a7ae0;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  padding: 15px 40px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(26,122,224,0.45);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nwt-cta-btn:hover {
  background: #3cb4ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(60,180,255,0.5);
}

/* --- 3-7. ポリシー・ロゴ --- */
.nwt-policy {
  text-align: center;
  margin: 48px 0 24px;
}
.nwt-policy p {
  text-align: center;
  margin: 0 0 6px;
}
.nwt-policy a {
  color: #33475b;
  font-size: 0.85rem;
}
.nwt-policy img {
  margin-top: 18px;
  max-width: 100%;
  height: auto;
}

/* ============================================================
   レスポンシブ（768px）
   ============================================================ */
@media (max-width: 768px) {
  .nwt-wrap {
    padding: 8px 16px 0;
  }
  .nwt-section {
    margin: 40px 0;
  }
  .nwt-wrap h2 {
    font-size: 1.35rem;
  }
  .nwt-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .nwt-card-media img {
    height: 160px;
  }
  .nwt-cta {
    padding: 36px 18px 40px;
  }
  .nwt-cta-btn {
    display: block;
    padding: 15px 20px;
  }
}

/* ============================================================
   第3段階：下層ページ（services / profile / recruit）追加スタイル
   すべて .nwt- プレフィックスでスコープ
   ============================================================ */

/* --- services: カード内の公式リンク・提供開始 --- */
.nwt-card-media a { display: block; line-height: 0; }
.nwt-card-link {
  margin: auto 0 0 !important;   /* カード下部に寄せて高さを揃える */
  padding-top: 14px;
  font-size: 0.9rem;
}
.nwt-card-link a {
  font-weight: 700;
  color: #1a7ae0;
  text-decoration: none;
  border-bottom: 1px solid rgba(26,122,224,0.4);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.nwt-card-link a:hover { color: #3cb4ff; border-color: #3cb4ff; }
.nwt-card-meta {
  margin: 8px 0 0 !important;
  font-size: 0.75rem !important;
  color: #8496a8;
}

/* --- profile: 導入リード文 --- */
.nwt-intro {
  max-width: 760px;
  margin: 4px auto 8px !important;
  text-align: center;
}

/* --- profile: 理念（パーパス）ブロック --- */
.nwt-purpose { text-align: center; }
.nwt-purpose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a7ae0;
  margin: 28px 0 6px;
}
.nwt-purpose p { text-align: center; }

/* --- profile: 会社概要テーブル --- */
.nwt-company h2 { margin-bottom: 24px; }
.nwt-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.nwt-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 14px;
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
}
.nwt-table tr td:first-child {
  width: 128px;
  background: #f2f6fb;
  color: #33475b;
  font-weight: 700;
  white-space: nowrap;
}
.nwt-table p { margin: 0 !important; font-size: 0.9rem; line-height: 1.7; }

/* --- profile: 代表プロフィール --- */
.nwt-cv h4 {
  font-size: 1rem;
  color: #001840;
  margin: 24px 0 8px;
  padding-left: 12px;
  border-left: 4px solid #3cb4ff;
}

/* --- profile: 末尾の横断リンク --- */
.nwt-crosslink { margin-top: 36px !important; }

/* --- recruit: 採用情報 --- */
.nwt-recruit { text-align: center; }
.nwt-recruit p { text-align: center; }
.nwt-recruit-note {
  max-width: 640px;
  margin: 28px auto 0 !important;
  font-size: 0.9rem;
  color: #445;
}

@media (max-width: 768px) {
  .nwt-table tr td:first-child { width: 96px; }
  .nwt-table td { padding: 10px; }
}
