/* ドロップダウンメニューの親 */
.menu > li.menu__single {
  position: relative;
  text-align: center;
}
/* ドロップダウン リスト */
li.menu__single ul.menu__second-level {
  display: none;
  position: absolute;
  top: 50px;
  width: 100%;
  /* -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease-in; */
  z-index: 999;
}

.init-bottom {
  pointer-events: none;
}

li.menu__single {
  /* transition: all 0.2s ease-in; */
}

li.menu__single:hover {
  background: var(--main-color);
  color: #fff !important;
}

.menu__single:hover .init-bottom {
  color: #fff;
}

li.menu__single:hover ul.menu__second-level {
  display: block;
  top: 70px;
  visibility: visible;
  opacity: 1;
}

.menu__second-level .menu_center {
  width: 100%;
  text-align: center;
  color: #fff;
}
/* ドロップダウン背景 */
.menu_center a {
  background-color: #fff;
  text-decoration: none;
}
/* ドリンクメニューの文字色 */
.menu__single:hover .init-bottom {
  color: #fff;
}
