/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 13 2025 | 01:12:02 */
.underline-animate {
  position: relative;
  display: inline-block;
  color: #333333; /* 好きな文字色に変更 */
  text-decoration: none;
  padding-bottom: 4px;
}

.underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #086d93; /* 下線の色 */
  transition: width 0.4s ease;
}

.underline-animate:hover::after {
  width: 100%;
}
