.menubar_PC{
    position: relative;
}

.menubar_PC .menulist{
    background-color: #fff;
    box-shadow: 0px 3px 6px #00000029;
    box-sizing: border-box;
    line-height: 3.5;
    list-style: none;
    pointer-events: none;
    transform: translateY(10px); /* 初期は少し下に */
    transition: all 0.5s ease;
    opacity: 0;
    padding: 10px;
    visibility: hidden;
    z-index: 9999;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-10px);
}

.menubar_static .menulist{
    width: 100%;
    
}

.menubar_panel .menulist{
    width: 195px;
}

.menulist li{
    margin: 0px;
    padding: 0px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
}

.menulist li a{
    width: auto;
    height: auto;
    display: block;
    padding: 0 10px;
    position: relative;
}

.menulist li a:hover{
    color: #555555;
    text-decoration: underline;
}

.menulist li a::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-family: "fs-icon";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333333;
    content: "\e90c";
    font-size: 2.2rem;
    grid-column: 3;
    grid-row: 1 / 3;
}

.menubar_PC:hover .menulist{
    max-height: 500px; /* 十分な高さに設定（内容に合わせて調整） */
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav_header{
    display: none;
}