/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 01 2025 | 04:49:17 */
/*フッターメニューリンク*/
.footer-links, .footer-contact-info {
  list-style: none;
  padding: 0;
  width: 80%;
	color: #cccccc;
}

.footer-links li, .footer-contact-info li {
  margin: 3px 0;
}

.footer-links a, .footer-contact-info a {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  padding: 0 12px 0 0;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: block;
}

.footer-links a:hover, .footer-contact-info a:hover {
  color: #11bae0;
  transform: translateX(5px);
}

/* マウスホバー時の下線エフェクト */
.footer-links a::after, .footer-contact-info a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #11bae0;
  transition: width 0.3s ease;
}

.footer-links a:hover::after, .footer-contact-info a:hover::after {
  width: 100%;
}
/* フッターメニュー（l-footer__foot）のリンクに対するホバーエフェクト */
.l-footer__foot a {
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none !important; /* 既存の下線を強制的に非表示 */
}

/* ホバー時の色変更 */
.l-footer__foot a:hover {
  color: #11bae0;
  text-decoration: none !important;
}

/* 既存のボーダーを削除 */
@media (min-width: 600px) {
  .l-footer__nav li:first-child a {
    border-left: none !important;
  }
  
  .l-footer__nav a {
    border-right: none !important;
  }
}

/* 新しい区切り線を疑似要素で実装 */
@media (min-width: 600px) {
  .l-footer__nav li {
    position: relative;
    padding: 0;
  }
  
  /* 最初の項目の左側に区切り線 */
  .l-footer__nav li:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    height: 0.8em;
    width: 0.2px;
    background-color: currentColor; /* 現在のテキスト色を使用 */
  }
  
  /* 全項目の右側に区切り線 */
  .l-footer__nav li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0.2em;
    height: 0.8em;
    width: 0.2px;
    background-color: currentColor; /* 現在のテキスト色を使用 */
  }
}

/* 下線エフェクト用の疑似要素 */
.l-footer__foot a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #11bae0;
  transition: width 0.3s ease;
  visibility: hidden;
  z-index: 1;
}

/* ホバー時に下線を表示 */
.l-footer__foot a:hover::after {
  visibility: visible;
  width: 100%;
}