.head_navi_ul {
    display: flex;
    background-color: #61c000;
    flex-wrap: wrap;
    justify-content: center;
}
.head_navi_item {
    font-size: clamp(0.6rem, 1.4svw, 0.9rem);
    line-height: 1em;
    font-weight: 600;
    text-align: center;
}
.head_navi_item a {
    box-sizing: border-box;
    color: #FFFFFF;
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
}
/* 左ボーダー（テキストの高さだけ） */
.head_navi_item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.05em;
    height: 1em;               /* ←テキストの高さにフィット */
    background-color: #FFFFFF;
    transform: translateY(-50%);
}
/* 先頭だけ不要なら */
.head_navi_item:first-child a::before {
  display: none;
}

.has-child {
  position: relative;
}

.child-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #FFFFFF;
    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;
    background-image: url(../images/dot_deco_large.svg),url(../images/dot_deco_large.svg);
    background-repeat: no-repeat;
    background-position: left -200px center,right -200px center;
    background-size: 30% auto;
}

.child-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.child-menu-list {
    display: flex;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    gap: 8px;
    justify-content: center;
    width: 94.61%;
}
.child-menu-list.space-around {
    /* [disabled]justify-content: space-around; */
    display: flex;
    gap: 0px;
}

.child-menu-item {
    border-bottom: 1px none #E2690E;
    font-size: clamp(0.6rem, 1.4svw, 0.9rem);
    font-weight: 600;
	flex: 1 1 20%; /* 横幅を均等にしつつ折り返し */
}


.child-menu-item a {
    text-decoration: none;
    border-radius: 32px;
    padding-top: 16px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 16px;
    color: #FFFFFF;
    background-color: #22c34f;
    border-left-style: none;
}
.child-menu-item a::before {
    content: none;
}

#head_navi_contact {

}
#head_navi_contact .link-invert {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 0.1em solid #de2526;
    background-image: none;
    padding-left: 16px;
    border-radius: 24px;
    padding-right: 16px;
    width: 144px;
    min-width: 0px;
    text-align: center;
}

#head_navi_contact .link-invert:hover {
    border: 0.1em solid #de2526;
	
}
#hamburger_box {
    display: none;
}


/* ハンバーガーアイコン */
#hamburger {
  display: none;
}

#sp_menu {
  display: none;
}
