/* =========================================================
   Source: 03-footer-copyright.css
   ========================================================= */

/* =========================================================
   Footer Copyright (keep selector)
   ========================================================= */
.site-footer-copyright p:nth-child(2){display:none;}


/* =========================================================
   Source: 06-header-footer-panels.css
   ========================================================= */

/* =========================================================
   Header / Footer Panels
   ========================================================= */
.header-container,.footer-panel-container{background:var(--color-secondary);color:#fff;}

.footer-panel-container{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:20px;gap:var(--gap-md);}
.footer-panel-logo{flex:1 1 200px;text-align:left;padding:10px;}
.footer-wp-image{max-width:200px;height:auto;}
.footer-panel-content{flex:2 1 320px;padding:10px;font-size:.875rem;line-height:1.5;text-align:left;}

@media(max-width:768px){
  .footer-panel-container{flex-direction:column;text-align:center;}
  .footer-panel-logo,.footer-panel-content{flex-basis:100%;text-align:center;}
}


/* =========================================================
   Source: 14-page-header.css
   ========================================================= */

.page-header { display:none !important; }


/* =========================================================
   Source: 15-slider.css
   ========================================================= */

/* =========================================================
   Slider Base
   スライド枠と画像トリミングの基本補正
   ========================================================= */

/* スライド枠でクリップして外側を見せない */
.lightning_swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background: #eaf3f8;
}

/* 画像側の過剰な拡大を抑える */
.lightning_swiper .ltg-slide-item-img {
  will-change: transform, filter, opacity;
  transform: scale(1.01);
  object-fit: cover;
  object-position: center 32%;
  transition:
    transform 640ms cubic-bezier(.22,.61,.36,1),
    filter 640ms cubic-bezier(.22,.61,.36,1),
    opacity 640ms cubic-bezier(.22,.61,.36,1);
  backface-visibility: hidden;
  image-rendering: auto;
}

/* 非アクティブ：外周を隠すための拡大は最小限にする */
.lightning_swiper .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
  transform: scale(1.015);
  filter: blur(1.2px) saturate(.96) contrast(.98);
  opacity: .82;
}

/* 直前・直後も拡大しすぎない */
.lightning_swiper .swiper-slide-prev .ltg-slide-item-img,
.lightning_swiper .swiper-slide-next .ltg-slide-item-img {
  transform: scale(1.012);
  filter: blur(1.6px) saturate(.96);
  opacity: .78;
}

/* アクティブは等倍に近づけ、顔が切れにくい状態にする */
.lightning_swiper .swiper-slide-active .ltg-slide-item-img {
  transform: scale(1);
  filter: none;
  opacity: 1;
}

/* ラッパーのタイミング関数 */
.lightning_swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(.15,.7,.1,1);
}

/* 両端のフェード */
.lightning_swiper.swiper {
  overflow: hidden;
}

.lightning_swiper.swiper::before,
.lightning_swiper.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8vw;
  pointer-events: none;
  z-index: 2;
}

.lightning_swiper.swiper::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,.16), rgba(0,0,0,0));
}

.lightning_swiper.swiper::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,.16), rgba(0,0,0,0));
}

/* 移動中だけブラーを少し強める */
.lightning_swiper .swiper-wrapper.is-animating .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
  transform: scale(1.02);
  filter: blur(2.2px) saturate(.94) contrast(.96);
  opacity: .72;
}


/* =========================================================
   Source: 18-header.css
   ========================================================= */

/* =========================================================
   Header
   Reiwa-style clean corporate header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 100%
    );
  border-bottom: 1px solid rgba(0, 86, 179, 0.08);
  box-shadow: 0 8px 28px rgba(15, 45, 75, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header-logo {
  margin: 0;
  flex: 0 0 auto;
}

.site-header-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header-logo img {
  max-height: 42px;
  width: auto;
  display: block;
  transition: transform var(--ease-fast), opacity var(--ease-fast);
}

.site-header-logo a:hover img {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* グローバルナビ全体 */
.global-nav {
  margin-left: auto;
}

.global-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.global-nav-list > li {
  position: relative;
}

/* ナビリンク */
.global-nav-list > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 0 16px;
  color: var(--color-secondary);
  text-decoration: none;
  border-radius: 999px;
  transition:
    color var(--ease-fast),
    background-color var(--ease-fast),
    transform var(--ease-fast);
}

.global-nav-list > li > a:hover {
  color: var(--color-primary);
  background: rgba(0, 123, 255, 0.06);
  transform: translateY(-1px);
}

/* 現在ページ */
.global-nav-list > li.current-menu-item > a,
.global-nav-list > li.current_page_item > a,
.global-nav-list > li.current-menu-ancestor > a {
  color: var(--color-primary);
  background: rgba(0, 123, 255, 0.08);
}

/* 現在ページの下線を細く短く */
.global-nav-list > li.current-menu-item > a::after,
.global-nav-list > li.current_page_item > a::after,
.global-nav-list > li.current-menu-ancestor > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c2d7, var(--color-primary));
  transform: translateX(-50%);
}

/* 日本語ラベル */
.global-nav-name {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* 英語ラベル */
.global-nav-description {
  margin-top: 3px;
  font-size: 0.64rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.09em;
  color: rgba(44, 62, 80, 0.58);
}

/* ホバー時の英語ラベル */
.global-nav-list > li > a:hover .global-nav-description,
.global-nav-list > li.current-menu-item > a .global-nav-description,
.global-nav-list > li.current_page_item > a .global-nav-description,
.global-nav-list > li.current-menu-ancestor > a .global-nav-description {
  color: rgba(0, 86, 179, 0.72);
}

/* サブメニュー */
.global-nav-list .sub-menu {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 86, 179, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(15, 45, 75, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.global-nav-list .sub-menu li {
  margin: 0;
}

.global-nav-list .sub-menu a {
  display: block;
  padding: 0.78rem 0.9rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 12px;
  text-decoration: none;
  transition:
    color var(--ease-fast),
    background-color var(--ease-fast),
    transform var(--ease-fast);
}

.global-nav-list .sub-menu a:hover {
  color: var(--color-primary);
  background: rgba(0, 123, 255, 0.07);
  transform: translateX(2px);
}

/* Lightningの開閉ボタンが浮く場合の調整 */
.global-nav-list .acc-btn {
  opacity: 0.5;
}

/* 管理バー表示時のsticky位置調整 */
.admin-bar .site-header {
  top: 32px;
}

/* タブレット */
@media (max-width: 1199px) {
  .site-header-container {
    gap: 20px;
  }

  .global-nav-list > li > a {
    padding: 0 12px;
  }

  .global-nav-name {
    font-size: 0.88rem;
  }

  .global-nav-description {
    font-size: 0.6rem;
  }
}

/* モバイル */
@media (max-width: 991px) {
  .site-header {
    position: sticky;
  }

  .site-header-container {
    min-height: 64px;
  }

  .site-header-logo img {
    max-height: 36px;
  }

  .admin-bar .site-header {
    top: 46px;
  }
}

/* スマホの管理バーがない状態 */
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .site-header-logo img,
  .global-nav-list > li > a,
  .global-nav-list .sub-menu a {
    transition: none !important;
    transform: none !important;
  }
}


/* =========================================================
   Source: 19-slider-polish.css
   ========================================================= */

/* =========================================================
   Slider Polish
   Reiwa-style Lightning swiper refinement
   ========================================================= */

.lightning_swiper {
  position: relative;
  overflow: hidden;
  background: #f5f8fb;
  isolation: isolate;
}

/* ヘッダー直下で自然につながるようにする */
.site-header + .lightning_swiper,
.site-header + * .lightning_swiper {
  margin-top: 0;
}

.lightning_swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(.16, .84, .28, 1);
}

.lightning_swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  background: #eaf3f8;
}

/* 画像本体
   cover は維持しつつ、過剰なscaleを抑え、人物の顔が切れにくい位置へ調整する */
.lightning_swiper .ltg-slide-item-img {
  width: 100%;
  height: clamp(360px, 58vh, 620px);
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.01);
  filter: saturate(1.02) contrast(1.02);
  transition:
    transform 900ms cubic-bezier(.16, .84, .28, 1),
    filter 900ms cubic-bezier(.16, .84, .28, 1),
    opacity 900ms cubic-bezier(.16, .84, .28, 1);
  backface-visibility: hidden;
}

/* アクティブ画像は等倍に近づける */
.lightning_swiper .swiper-slide-active .ltg-slide-item-img {
  transform: scale(1);
  filter: saturate(1.04) contrast(1.03);
  opacity: 1;
}

/* 非アクティブ画像は少しだけ柔らかくする */
.lightning_swiper .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
  transform: scale(1.02);
  filter: blur(1.2px) saturate(.96) contrast(.98);
  opacity: .86;
}

/* 移動中だけ余韻を出す */
.lightning_swiper .swiper-wrapper.is-animating .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
  transform: scale(1.03);
  filter: blur(2.4px) saturate(.94) contrast(.96);
  opacity: .72;
}

/* 上品な薄いグラデーション */
.lightning_swiper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(15, 45, 75, 0.24) 0%,
      rgba(15, 45, 75, 0.09) 36%,
      rgba(255, 255, 255, 0.02) 68%,
      rgba(255, 255, 255, 0.06) 100%
    );
}

/* 下部に白い余韻を作る */
.lightning_swiper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(247, 247, 247, 0.70) 78%,
      rgba(247, 247, 247, 1) 100%
    );
}

/* スライダー内テキストがある場合 */
.lightning_swiper .ltg-slide-text-set {
  z-index: 3;
}

.lightning_swiper .ltg-slide-text-title,
.lightning_swiper .ltg-slide-text-caption,
.lightning_swiper .ltg-slide-text {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

/* ページネーション */
.lightning_swiper .swiper-pagination {
  bottom: 22px;
  z-index: 4;
}

.lightning_swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 5px !important;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0.72;
  box-shadow: 0 2px 8px rgba(15, 45, 75, 0.20);
  transition:
    width var(--ease-fast),
    opacity var(--ease-fast),
    background-color var(--ease-fast);
}

.lightning_swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  opacity: 1;
  background: linear-gradient(90deg, #00c2d7, var(--color-primary));
}

/* 前後ボタン */
.lightning_swiper .swiper-button-next,
.lightning_swiper .swiper-button-prev {
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(15, 45, 75, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.74;
  transition:
    opacity var(--ease-fast),
    transform var(--ease-fast),
    background-color var(--ease-fast);
}

/* Lightning / Swiper の矢印色調整 */
.lightning_swiper .swiper-button-next::after,
.lightning_swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.lightning_swiper .swiper-button-next:hover,
.lightning_swiper .swiper-button-prev:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px) scale(1.04);
}

/* 左右の位置を少し内側へ */
.lightning_swiper .swiper-button-prev {
  left: 24px;
}

.lightning_swiper .swiper-button-next {
  right: 24px;
}

/* スライダー下に自然な区切りを作る */
.lightning_swiper + .site-body {
  position: relative;
  z-index: 3;
}

/* タブレット */
@media (max-width: 991px) {
  .lightning_swiper .ltg-slide-item-img {
    height: clamp(320px, 52vh, 520px);
    min-height: 320px;
    object-position: center 30%;
  }

  .lightning_swiper .swiper-button-prev {
    left: 16px;
  }

  .lightning_swiper .swiper-button-next {
    right: 16px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .lightning_swiper .ltg-slide-item-img {
    height: clamp(280px, 46vh, 400px);
    min-height: 280px;
    object-position: center 28%;
  }

  .lightning_swiper .swiper-slide-active .ltg-slide-item-img {
    transform: scale(1);
  }

  .lightning_swiper .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
    transform: scale(1.015);
  }

  .lightning_swiper .swiper-wrapper.is-animating .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
    transform: scale(1.02);
  }

  .lightning_swiper::before {
    background:
      linear-gradient(
        180deg,
        rgba(15, 45, 75, 0.08) 0%,
        rgba(15, 45, 75, 0.22) 100%
      );
  }

  .lightning_swiper::after {
    height: 86px;
  }

  .lightning_swiper .swiper-button-next,
  .lightning_swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .lightning_swiper .swiper-button-next::after,
  .lightning_swiper .swiper-button-prev::after {
    font-size: 13px;
  }

  .lightning_swiper .swiper-pagination {
    bottom: 16px;
  }
}

/* かなり狭い画面 */
@media (max-width: 480px) {
  .lightning_swiper .ltg-slide-item-img {
    height: 280px;
    min-height: 280px;
    object-position: center 26%;
  }

  .lightning_swiper .swiper-button-next,
  .lightning_swiper .swiper-button-prev {
    display: none;
  }

  .lightning_swiper .swiper-pagination-bullet-active {
    width: 20px;
  }
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .lightning_swiper .swiper-wrapper,
  .lightning_swiper .ltg-slide-item-img,
  .lightning_swiper .swiper-pagination-bullet,
  .lightning_swiper .swiper-button-next,
  .lightning_swiper .swiper-button-prev {
    transition: none !important;
  }

  .lightning_swiper .ltg-slide-item-img,
  .lightning_swiper .swiper-slide-active .ltg-slide-item-img,
  .lightning_swiper .swiper-slide:not(.swiper-slide-active) .ltg-slide-item-img {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

.lightning_swiper.is-slider-touching .ltg-slide-item-img {
  filter: saturate(1.02) contrast(1.02);
}


/* =========================================================
   Source: 22-footer-polish.css
   ========================================================= */

/* =========================================================
   Footer Polish
   Reiwa-style corporate footer
   ========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(245, 248, 251, 1) 0%,
      rgba(238, 246, 250, 1) 100%
    );
  border-top: 1px solid rgba(0, 86, 179, 0.08);
  color: var(--color-secondary);
}

/* 背景にごく薄い光を入れる */
.site-footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 194, 215, 0.14) 0%,
      rgba(0, 123, 255, 0.06) 42%,
      rgba(255, 255, 255, 0) 72%
    );
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 123, 255, 0.10) 0%,
      rgba(0, 194, 215, 0.04) 44%,
      rgba(255, 255, 255, 0) 74%
    );
}

/* フッター内の要素を背景装飾より前面へ */
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* フッターナビ */
.footer-nav {
  background: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(0, 86, 179, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-nav .container {
  padding-top: 14px;
  padding-bottom: 14px;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.7rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  margin: 0;
}

.footer-nav-list li a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--color-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color var(--ease-fast),
    background-color var(--ease-fast),
    transform var(--ease-fast);
}

.footer-nav-list li a:hover {
  color: var(--color-primary);
  background: rgba(0, 123, 255, 0.07);
  transform: translateY(-1px);
}

/* フッター本文 */
.site-footer-content {
  padding-top: 40px;
  padding-bottom: 28px;
}

.site-footer .widget {
  margin-bottom: 24px;
}

/* 会社紹介カード */
.site-footer .company-introduction {
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  text-align: left;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.84) 0%,
      rgba(255, 255, 255, 0.62) 100%
    );
  border: 1px solid rgba(0, 86, 179, 0.08);
  box-shadow:
    0 10px 28px rgba(15, 45, 75, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.site-footer .company-introduction::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      rgba(0, 194, 215, 0.16) 0%,
      rgba(0, 123, 255, 0.06) 46%,
      rgba(255, 255, 255, 0) 74%
    );
}

.site-footer .company-introduction figure {
  margin: 0 0 14px;
}

.site-footer .company-introduction img {
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
}

.site-footer .company-introduction .card-content {
  position: relative;
  z-index: 1;
}

.site-footer .company-introduction p {
  margin: 0 0 0.75em;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(44, 62, 80, 0.86);
}

.site-footer .company-introduction p:last-child {
  margin-bottom: 0;
}

.site-footer .company-introduction strong {
  color: var(--color-secondary);
  letter-spacing: 0.03em;
}

/* Adobe Stock表記などの小さなfooterブロック */
.site-footer footer {
  margin-top: 10px;
}

.site-footer footer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(44, 62, 80, 0.58);
}

/* 空ウィジェットが余白だけ出る場合の抑制 */
.site-footer .widget:empty,
.site-footer aside:empty {
  display: none;
}

/* コピーライト */
.site-footer-copyright {
  border-top: 1px solid rgba(0, 86, 179, 0.08);
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(44, 62, 80, 0.64);
  text-align: center;
}

.site-footer-copyright p {
  margin: 0;
}

.site-footer-copyright a {
  color: var(--color-primary);
  text-decoration: none;
}

.site-footer-copyright a:hover {
  text-decoration: underline;
}

/* Powered by 表記を非表示にする既存方針を念のため維持 */
.site-footer-copyright p:nth-child(2) {
  display: none;
}

/* モバイルナビ内のフッター的カードへの影響を抑える */
.vk-mobile-nav .card {
  box-shadow: 0 8px 22px rgba(15, 45, 75, 0.10);
}

/* タブレット */
@media (max-width: 1024px) {
  .site-footer-content {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .site-footer .company-introduction {
    padding: 20px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .footer-nav .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .footer-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-nav-list li a {
    min-height: 36px;
    padding: 0 14px;
  }

  .site-footer-content {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .site-footer .company-introduction {
    align-items: center;
    text-align: center;
    border-radius: 22px;
  }

  .site-footer .company-introduction img {
    margin: 0 auto;
  }

  .site-footer-copyright {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 0.8rem;
  }
}

/* かなり狭い画面 */
@media (max-width: 480px) {
  .site-footer::before {
    width: 280px;
    height: 280px;
    top: -120px;
    right: -150px;
  }

  .site-footer::after {
    width: 320px;
    height: 320px;
    left: -180px;
    bottom: -180px;
  }

  .site-footer .company-introduction {
    padding: 18px;
  }
}

/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .footer-nav-list li a {
    transition: none !important;
    transform: none !important;
  }

  .footer-nav-list li a:hover {
    transform: none !important;
  }
}
