@charset "UTF-8";
/* ==========================================================================
   サービス内容ページ固有スタイル
   common.css を読み込んだ上で追加で当てる
   ========================================================================== */

/* セクション見出し（旧 ttl_service*.gif の置き換え） */
.service-section { margin-bottom: 48px; }
.service-section:last-child { margin-bottom: 0; }

.service-heading {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-main);
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--line-light);
  position: relative;
}
/* 見出し左の青いアクセントバー */
.service-heading::before {
  content: "";
  display: inline-block;
  width: 6px; height: 1.1em;
  background: var(--brand-blue);
  margin-right: 12px;
  vertical-align: -2px;
  border-radius: 2px;
}

/* サービス項目（定義リスト） */
.service-list { margin: 0; }
.service-list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 0;
  border-bottom: 1px dotted var(--line);
}
.service-list .row:last-child { border-bottom: none; }

.service-list dt {
  flex: 0 0 140px;
  font-weight: 700;
  color: var(--accent-orange);
  font-size: 15px;
}
.service-list dd {
  flex: 1 1 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}
/* dd内の項目を a, b, c... の段組みで見やすく */
.service-list dd ul { display: grid; gap: 4px; }

@media (max-width: 600px) {
  .service-heading { font-size: 18px; }
  .service-list .row { gap: 4px; padding: 12px 0; }
  .service-list dt { flex: 1 1 100%; }
  .service-list dd { flex: 1 1 100%; }
}
