.elementor-3548 .elementor-element.elementor-element-4214e54{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:30px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3548 .elementor-element.elementor-element-52fb468 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for container, class: .elementor-element-4214e54 *//* =========================================
   商工NEWSゆざわセクション（完全版）
   ========================================= */

/* セクション背景とタイトル */
.service-links {
  padding: 40px 20px;
  background: #f3f6f9; /* 淡いグレー背景 */
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

/* ==============================
   グリッド配置（中央揃え対応）
   ============================== */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カードなら2列 */
  gap: 20px;
  max-width: 800px;          /* 横幅を限定して中央に */
  margin: 0 auto;            /* 中央寄せ */
  justify-content: center;   /* グリッド全体を中央に */
  align-items: stretch;      /* 高さを揃える */
}

/* タブレット（2列維持） */
@media (max-width: 1024px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
  }
}

/* スマホ（1列表示） */
@media (max-width: 768px) {
  .service-card-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
  }
}

/* ==============================
   カード全体デザイン
   ============================== */
.service-card {
  display: block;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none; /* 下線を消す */
  color: inherit;        /* 見出しやテキストの色を継承 */
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;    /* テキスト中央揃え */
}

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

/* ==============================
   カード内の見出しと本文
   ============================== */
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;  /* 黒字 */
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ==============================
   下線を完全に削除（テーマ干渉防止）
   ============================== */
.service-links a,
.service-links a:link,
.service-links a:visited,
.service-links a:hover,
.service-links a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* 念のためカード内要素にも適用 */
.service-links .service-card * {
  text-decoration: none !important;
}

/* ==============================
   カード内の色を固定（リンク色対策）
   ============================== */
.service-card h3,
.service-card h3 a,
.service-card h3 a:link,
.service-card h3 a:visited,
.service-card h3 a:hover,
.service-card h3 a:active {
  color: #222 !important; /* 見出し黒固定 */
}

.service-card p,
.service-card p a {
  color: #555 !important; /* 説明文グレー固定 */
}

.service-links .section-title {
  color: #333 !important; /* タイトルも固定 */
}/* End custom CSS */