header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #FFFFFF;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 4px 6px hsla(0,27%,69%,0.33); /* 下方向だけにシャドウ */
    -webkit-box-shadow: 0 4px 6px hsla(0,27%,69%,0.33);
}
header.has-child-open {
  background: #fff;
}
#header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    /* [disabled]height: 80px; */
    padding-top: 16px;
}
#head_logo {
    width: 272px;
    min-width: 272px;
	margin-bottom: 16px;
	z-index: 1001;
}
#head_logo a {
}
#head_logo a img {
    display: block;
}
#head_right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
}

.head_navi_ul {
    display: flex;
    list-style: none;
    gap: 8px;
}
.head_navi_item {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    /* [disabled]background-color: #FFFBBD; */
}
.head_navi_item a {
    padding-top: 12px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 28px;
    display: block;
}
.has-child {
  position: relative;
}

.child-menu {
    position: fixed;
    top: 76px;
    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: 32px;
    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: 0;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    gap: 32px;
    justify-content: center;
}
.child-menu-list.space-around {
    /* [disabled]justify-content: space-around; */
    display: flex;
    gap: 0px;
}

.child-menu-item {
    border-bottom: 1px none #E2690E;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 600;

}


.child-menu-item a {
    text-decoration: none;
    background-image: url(../images/arrow_circle_org.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 22px auto;
    /* [disabled]border-radius: 8px; */
    /* [disabled]padding-top: 16px; */
    /* [disabled]padding-right: 16px; */
    /* [disabled]padding-left: 16px; */
    padding-bottom: 8px;
    border-left: 1px none #444445;
    border-right: 1px none #444445;
    border-bottom: 1px solid #444445;
    border-top: 1px none #444445;
}


#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 {
  display: none;
}

#sp_menu {
  display: none;
}
