@charset "utf-8";

.head_navi_ul {
    display: flex;
    list-style: none;
    gap: 8px;
    justify-content: flex-end;
}
.head_navi_item {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin: 0;
}
.head_navi_item a {
    padding-top: 12px;
    padding-right: 8px;
    padding-left: 16px;
    padding-bottom: 24px;
    display: block;
    background-image: url(../images/onp_8_blue.svg);
    background-repeat: no-repeat;
    background-position: left top 10px;
    background-size: 10px auto;
	pointer-events: none;
}
.has-child {
    position: relative;
}

.child-menu {
    position: fixed;
    top: 122px;
    left: 0;
    width: 100vw;
    background-color: #FFEDF5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    padding-top: 16px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 16px;
    box-shadow: 0 4px 6px hsla(0,27%,69%,0.33); /* 下方向だけにシャドウ */
    -webkit-box-shadow: 0 4px 6px hsla(0,27%,69%,0.33);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

.has-child:hover .child-menu {
    opacity: 1;
    visibility: visible;
}

.child-menu-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.child-menu-list {
    display: flex;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
/*    gap: 16px;*/
    justify-content: center;
}
.child-menu-list.space-around {
    /* [disabled]justify-content: space-around; */
    display: flex;
    gap: 0px;
}

.child-menu-item {
    font-size: 14px;
    font-weight: 600;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 8px;

}


.child-menu-item a {
    text-decoration: none;
    /* [disabled]border-radius: 8px; */
    padding-bottom: 8px;
    background-image: url(../images/onpu_brown.svg);
    background-size: 7px auto;
    padding-left: 14px;
}

/* ハンバーガーアイコン */
#hamburger {
  display: none;
}

#sp_menu {
    display: none;
}