/* 親メニュー */
/* .dropdown {
  position: relative;
} */
.header-html-inner{
  position: relative;
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none !important;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* ホバーで展開 */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 90%;
  left: 0;
  background: white;
  padding: 0;
  list-style: none;
  border: 1px solid #ccc;
  /* min-width: 180px; */
  min-width: 80%;
  z-index: 1000;
}
.dropdown.open .dropdown-menu{
  display: block !important;
}

.header-html-inner>ul {
    margin: 0 10px;
    list-style: none;
    background: #ff7a00;
    padding: 5px 20px;
    box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.2);
}
.header-html-inner>ul>li>a{
    color: var(--global-palette9, #ffffff);
    background: #ff7a00;
    text-decoration: none !important;
    font-weight: bold;
}