/* トップページ用スタイル */
#locator_template_c2 .inner, main#contents, main.inner{
  max-width: 100%;
  padding: 130px 0 0;
}
#top #contents {
  padding-top: 130px !important;
}

:root {
  --idx-red: #c41623;
  --idx-red-rgb: 196, 22, 35;
  --idx-navy: #032647;
  --idx-navy-deep: #021322;
  --idx-navy-rgb: 3, 38, 71;
  --idx-text: #161c2d;
  --idx-light: #f5f7fa;
  --idx-border: #dde0e5;
  --idx-muted: #5a6478;
  --idx-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 共通：コンテンツ幅 ---------- */
.idx-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

/* ---------- 共通：見出し / もっと見るリンク ---------- */
.idx-section-heading {
  margin-bottom: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.idx-section-heading .idx-label {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--idx-red);
  margin-bottom: 10px;
}
.idx-section-heading h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--idx-navy);
  letter-spacing: .02em;
  margin: 0;
}

.idx-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--idx-navy);
  white-space: nowrap;
  transition: color .2s var(--idx-ease), gap .2s var(--idx-ease);
}
.idx-more-link:hover { color: var(--idx-red); gap: 14px; }
.idx-more-link .idx-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(var(--idx-red-rgb), .08);
  color: var(--idx-red);
  transition: background-color .2s var(--idx-ease), color .2s var(--idx-ease);
}
.idx-more-link:hover .idx-more-icon { background: var(--idx-red); color: #fff; }
.idx-more-link svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- 共通：リンク下線の打ち消し ---------- */
a.idx-hero_cta,
a.idx-more-link,
a.idx-svc_pill,
.idx-resource_grid a,
.idx-svc_grid a,
.idx-news-list a {
  text-decoration: none !important;
}

/* ---------- 共通：スクロールフェードイン ---------- */
.idx-section-heading.js-inview,
.idx-seminar_card.js-inview,
.idx-resource_grid.js-inview,
.idx-news-list.js-inview,
.idx-svc_card.js-inview,
.idx-strengths_card.js-inview,
.idx-synergy_card.js-inview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--idx-ease), transform .6s var(--idx-ease);
}
.idx-section-heading.is-inview,
.idx-seminar_card.is-inview,
.idx-resource_grid.is-inview,
.idx-news-list.is-inview,
.idx-svc_card.is-inview,
.idx-strengths_card.is-inview,
.idx-synergy_card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ① hero slider ---------- */
.idx-hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(160deg, var(--idx-navy) 0%, var(--idx-navy-deep) 100%);
  color: #fff;
}
.idx-hero_viewport {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.idx-hero_track {
  display: flex;
  width: 600%;
  transition: transform .65s var(--idx-ease);
  backface-visibility: hidden;
  will-change: transform;
}
.idx-hero_slide {
  position: relative;
  width: 16.6667%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 92px;
  backface-visibility: hidden;
}
.idx-hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: 380px;
}

.idx-hero_photo-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  overflow: hidden;
}
#idx-hero .idx-hero_photo-panel img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.idx-fade-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 100%);
}
.idx-photo-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  background: rgba(3, 38, 71, .10);
}

/* 斜めカットの2分割（イラスト用。デュオトーン加工なし） */
.idx-hero_photo-panel--diagonal {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 30% 100%);
  transform: translateZ(0);
  will-change: transform;
}
.idx-hero_photo-panel--full { width: 100%; left: 0; }
.idx-photo-tint--30 { background: rgba(3, 38, 71, .4); }

.idx-hero_txtarea { position: relative; z-index: 2; }
.idx-hero_eyebrow {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--idx-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.idx-hero_eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--idx-red); display: inline-block; }
.idx-hero_eyebrow--gold {
  font-size: clamp(16px, 1.6vw, 18px);
  color: #ec9932;
}
.idx-hero_eyebrow--gold::before { display: none; }
.idx-hero_eyebrow--plain {
  display: inline-flex;
  font-size: 18px;
  color: var(--idx-navy);
  background: #fff;
  border-radius: 100px;
  padding: 4px 22px;
}
.idx-hero_eyebrow--plain::before { display: none; }
.idx-hero_title {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .01em;
  margin: 0;
}
.idx-hero_title .idx-accent { color: #ff8f8f; }
.idx-hero_lead {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #c7d1de;
  max-width: 40%;
}
.idx-hero_cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--idx-red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background-color .25s var(--idx-ease), transform .25s var(--idx-ease);
}
.idx-hero_cta:hover { background: #a6111c; color: #fff; transform: translateX(2px); }
.idx-hero_cta svg { width: 15px; height: 15px; }

.idx-hero_visual--stack {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 9%;
  width: 32%;
  aspect-ratio: 450.891 / 280;
  transform: translateY(-50%);
}
.idx-hero_visual--stack .idx-float { position: absolute; display: block; }
#idx-hero .idx-hero_visual--stack .idx-float img {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  display: block;
}
.idx-hero_visual--stack .c1 { top: 13%; left: -3%; width: 35%; }
.idx-hero_visual--stack .c2 { top: 19.2%; left: 9%; width: 50%; z-index: 2; }
.idx-hero_visual--stack .c3 { top: 0; left: 32%; width: 62%; }
.idx-hero_visual--stack .c4 { top: 30%; right: -3%; width: 38%; }

.idx-hero_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 19, 34, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  isolation: isolate;
  transition: background-color .2s var(--idx-ease);
}
.idx-hero_arrow:hover { background: rgba(2, 19, 34, .8); }
.idx-hero_arrow svg { width: 18px; height: 18px; color: #fff; }
.idx-hero_arrow.is-prev { left: clamp(10px, 2.5vw, 32px); }
.idx-hero_arrow.is-next { right: clamp(10px, 2.5vw, 32px); }

.idx-hero_controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.idx-hero_controls-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  padding-bottom: 20px;
}
.idx-hero_count { font-family: "IBM Plex Sans", sans-serif; font-size: 13px; color: #8fa0b6; letter-spacing: .04em; }
.idx-hero_count b { color: #fff; font-weight: 600; }
.idx-hero_dots { display: flex; gap: 9px; }
.idx-hero_dot { width: 8px; height: 8px; border-radius: 2px; background: rgba(255, 255, 255, .28); border: none; padding: 0; transition: background-color .25s, transform .25s; cursor: pointer; }
.idx-hero_dot.is-active { background: var(--idx-red); transform: scale(1.2); }
.idx-hero_progress { flex: 1; max-width: 260px; height: 1px; background: rgba(255, 255, 255, .14); position: relative; }
.idx-hero_progress-bar { position: absolute; left: 0; top: 0; height: 1px; background: var(--idx-red); width: 0; }

@media print, screen and (max-width: 979.8px) {
  .idx-hero_inner { grid-template-columns: 1fr; min-height: 0; gap: 14px; }
  .idx-hero_slide { padding: 20px 0 24px; }
  .idx-hero_photo-panel { width: 100%; left: 0; }
  .idx-hero_photo-panel img { opacity: .28; }
  .idx-hero_photo-panel .idx-fade-mask {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .idx-photo-tint { background: rgba(3, 38, 71, .45); }
  .idx-hero_photo-panel--diagonal { clip-path: none; }
  .idx-hero_visual--stack { display: none; }
  .idx-hero_arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .idx-hero_track { transition: none; }
}

/* ---------- セミナー・イベント情報 ---------- */
.idx-seminar_container { margin-top: 0; padding: 88px 0 0; }
.idx-seminar_card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--idx-border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none !important;
  transition: box-shadow .25s var(--idx-ease), transform .25s var(--idx-ease), border-color .25s var(--idx-ease);
}
.idx-seminar_card:hover {
  box-shadow: 0 18px 32px -18px rgba(var(--idx-navy-rgb), .35);
  border-color: rgba(var(--idx-navy-rgb), .3);
  transform: translateY(-3px);
}
.idx-seminar_thumb {
  flex-shrink: 0;
  width: 42%;
  max-width: 420px;
}
.idx-seminar_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.idx-seminar_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}
.idx-seminar_tag {
  align-self: flex-start;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #fff;
  background: var(--idx-red);
  border-radius: 100px;
  padding: 4px 13px;
  margin-bottom: 14px;
}
.idx-seminar_title { font-size: 17px; font-weight: 700; color: var(--idx-navy); line-height: 1.7; }
@media print, screen and (max-width: 680px) {
  .idx-seminar_card { flex-direction: column; }
  .idx-seminar_thumb { width: 100%; max-width: none; aspect-ratio: 16 / 9; }
}

/* ---------- ② 新着お役立ち情報 ---------- */
.idx-resource_container { margin-top: 0; padding: 88px 0; }
.idx-resource_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.idx-resource_grid .top-media_slide,
.idx-resource_grid .swiper-slide {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  height: 100% !important;
  flex-shrink: initial !important;
  background: #fff !important;
  border: 1px solid var(--idx-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none !important;
  transition: box-shadow .25s var(--idx-ease), transform .25s var(--idx-ease);
}
.idx-resource_grid .top-media_slide:hover {
  box-shadow: 0 18px 32px -18px rgba(var(--idx-navy-rgb), .35) !important;
  transform: translateY(-3px);
}
.idx-resource_grid .top-media_item {
  height: 100%;
  margin-top: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.idx-resource_grid .top-media_box { order: 2 !important; padding: 0 !important; flex: 1; flex-direction: column; }
.idx-resource_grid .top-media_thumb {
  display: block !important;
  order: 1 !important;
  width: 100% !important;
  max-width: none !important;
  height: 180px !important;
  padding-top: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}
#contents .idx-resource_grid .top-media_thumb img {
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  position: static;
  transform: none;
}
.idx-resource_grid .top-media_txtarea { height: 100%; display: flex; flex-direction: column; padding: 18px 18px 22px !important; }
.idx-resource_grid .top-media_date {
  order: 1;
  margin: 0 0 8px !important;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11.5px;
  color: var(--idx-muted) !important;
  font-variant-numeric: tabular-nums;
}
.idx-resource_grid .top-media_title { order: 2; margin: 0 0 10px !important; }
.idx-resource_grid .top-media_title a { font-size: 14.5px; font-weight: 700; color: var(--idx-text) !important; line-height: 1.6; }
.idx-resource_grid .top-media_category {
  display: none !important;
  order: 3;
  flex-wrap: wrap;
  gap: 6px;
  width: auto;
  margin: auto 0 0 !important;
}
.idx-resource_grid .top-media_category .category {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--idx-red) !important;
  background: rgba(var(--idx-red-rgb), .08) !important;
  border-radius: 100px;
  padding: 3px 9px;
  margin: 0 !important;
  white-space: nowrap;
}
.idx-resource_grid .top-media_category .category:hover { color: #fff !important; background: var(--idx-red) !important; }
.idx-resource_grid .top-media_btn { display: none !important; }
@media print, screen and (max-width: 1080px) {
  .idx-resource_grid { grid-template-columns: repeat(2, 1fr); }
}
@media print, screen and (max-width: 560px) {
  .idx-resource_grid { grid-template-columns: 1fr; }
}

/* ---------- ③ お知らせ ---------- */
.idx-news_container { background: var(--idx-light); padding: 88px 0; }
.idx-news-list dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 20px;
  margin: 0;
  padding: 22px 4px;
  border-bottom: 1px solid var(--idx-border);
  transition: padding-left .2s var(--idx-ease);
}
.idx-news-list dl:hover { padding-left: 10px; }
.idx-news-list .rss_date {
  flex-shrink: 0;
  width: 96px;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  color: var(--idx-muted);
  font-variant-numeric: tabular-nums;
}
.idx-news-list .rss_title {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 15px;
  color: var(--idx-text);
}
.idx-news-list .rss_title a { color: inherit !important; }
.idx-news-list .rss_contents {
  width: 100%;
  margin: 0;
  padding-left: 116px;
  font-size: 12.5px;
  color: var(--idx-muted);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media print, screen and (max-width: 679.8px) {
  .idx-news-list .rss_contents { padding-left: 0; }
}

/* ---------- ④ サービス一覧 ---------- */
.idx-svc_container { background: #fff url('/dcms_media/image/top_svc_bg.jpg') center / cover no-repeat; padding: 88px 0; }
.idx-svc_container .top-svc_cover { padding: 0 !important; opacity: 1 !important; top: 0 !important; background: transparent !important; }
.idx-svc_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.idx-svc_card {
  border: 1px solid var(--idx-border);
  border-radius: 10px;
  padding: 26px 24px;
  background: #fff;
  transition: border-color .2s var(--idx-ease), box-shadow .2s var(--idx-ease);
}
.idx-svc_card:hover { border-color: rgba(var(--idx-navy-rgb), .35); box-shadow: 0 16px 30px -20px rgba(var(--idx-navy-rgb), .4); }
.idx-svc_head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.idx-svc_icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.idx-svc_icon img { width: 28px; height: 28px; object-fit: contain; }
.idx-svc_head h3 { font-size: 16px; font-weight: 700; color: var(--idx-navy); margin: 0; }
.idx-svc_desc { font-size: 13px; color: var(--idx-muted); line-height: 1.75; margin: 0 0 16px; }
.idx-svc_pills { display: flex; flex-wrap: wrap; gap: 8px; }
.idx-svc_pill {
  font-size: 12.5px;
  color: var(--idx-text);
  border: 1px solid var(--idx-border);
  border-radius: 100px;
  padding: 6px 13px;
  display: inline-block;
  transition: background-color .2s, border-color .2s, color .2s;
}
.idx-svc_pill:hover { background: var(--idx-navy); border-color: var(--idx-navy); color: #fff; }
.idx-svc_pill.is-ext { color: var(--idx-muted); }
@media print, screen and (max-width: 1060px) {
  .idx-svc_grid { grid-template-columns: repeat(2, 1fr); }
}
@media print, screen and (max-width: 680px) {
  .idx-svc_grid { grid-template-columns: 1fr; }
}

/* ---------- ⑤ 選ばれる理由 ---------- */
.idx-strengths_container {
  position: relative;
  overflow: hidden;
  background: var(--idx-navy-deep) url('/dcms_media/image/top_strengths_bg_pc.jpg') center / cover no-repeat;
  padding: 88px 0;
}
.idx-strengths_container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3, 38, 71, .44) 0%, rgba(2, 19, 34, .44) 100%);
}
.idx-strengths_container > .idx-container { position: relative; z-index: 1; }
.idx-strengths_container .idx-label { color: #ff8f8f; }
.idx-strengths_container h2 { color: #fff; }
.idx-strengths_lead {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: #c7d1de;
}
.idx-strengths_container .idx-more-link { color: #fff; }
.idx-strengths_container .idx-more-link:hover { color: #ff8f8f; }
.idx-strengths_container .idx-more-link .idx-more-icon { background: rgba(255, 255, 255, .14); color: #fff; }
.idx-strengths_container .idx-more-link:hover .idx-more-icon { background: var(--idx-red); color: #fff; }

.idx-strengths_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idx-strengths_card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 30px 26px;
}
.idx-strengths_num {
  position: absolute;
  top: 20px;
  right: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 84px;
  font-weight: 700;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  pointer-events: none;
}
.idx-strengths_en {
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff8f8f;
  margin: 0 0 10px;
}
.idx-strengths_title {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.idx-strengths_desc {
  position: relative;
  font-size: 13.5px;
  line-height: 1.8;
  color: #c7d1de;
  margin: 0;
}
@media print, screen and (max-width: 900px) {
  .idx-strengths_grid { grid-template-columns: 1fr; }
  .idx-strengths_card { padding: 30px 26px; }
}

/* ---------- ⑥ サイバー対策の先にある、グループの総合力 ---------- */
.idx-synergy_container { background: var(--idx-light) url('/dcms_media/image/top_synergy_bg.jpg') center / cover no-repeat; padding: 88px 0; }
.idx-synergy_lead {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--idx-muted);
}
.idx-synergy_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.idx-synergy_card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--idx-border);
  border-radius: 10px;
  padding: 32px 30px;
  text-decoration: none !important;
  transition: box-shadow .25s var(--idx-ease), transform .25s var(--idx-ease), border-color .25s var(--idx-ease);
}
.idx-synergy_card:hover {
  box-shadow: 0 18px 32px -18px rgba(var(--idx-navy-rgb), .3);
  border-color: rgba(var(--idx-navy-rgb), .3);
  transform: translateY(-3px);
}
.idx-synergy_tag {
  align-self: flex-start;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--idx-red);
  background: rgba(var(--idx-red-rgb), .08);
  border-radius: 100px;
  padding: 4px 11px;
  margin-bottom: 16px;
}
.idx-synergy_title {
  font-size: 17px;
  font-weight: 700;
  color: var(--idx-navy);
  line-height: 1.55;
  margin: 0 0 12px;
}
.idx-synergy_desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--idx-muted);
  margin: 0 0 20px;
}
.idx-synergy_more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--idx-navy);
  transition: color .2s var(--idx-ease), gap .2s var(--idx-ease);
}
.idx-synergy_card:hover .idx-synergy_more { color: var(--idx-red); gap: 14px; }
.idx-synergy_more .idx-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--idx-red-rgb), .08);
  color: var(--idx-red);
  transition: background-color .2s var(--idx-ease), color .2s var(--idx-ease);
}
.idx-synergy_more .idx-more-icon svg { width: 13px; height: 13px; }
.idx-synergy_card:hover .idx-synergy_more .idx-more-icon { background: var(--idx-red); color: #fff; }
@media print, screen and (max-width: 760px) {
  .idx-synergy_grid { grid-template-columns: 1fr; }
}
