/* 親メニューのスタイル調整 */
.menu-item-has-children {
  position: relative;
}

/* 子メニュー非表示 */
.menu-item-has-children ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  border: none;
}

/* 子メニューをホバーで表示 */
.menu-item-has-children:hover ul {
  display: block;
}

/* 子メニューの見た目 */
.menu-item-has-children ul li {
  padding: 5px 5px 5px 15px;
  white-space: nowrap;
}

.menu-item-has-children ul li:hover {
  background-color: #f5f5f5;
}

/*
@media (max-width: 768px) {
  .footer-menu li {
    width: 100%; 
  }
}
*/