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;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
}
#head_logo {
    width: 208px;
    min-width: 208px;
    z-index: 1001;
}
#head_logo a {
}
#head_logo a img {
    display: block;
}
#head_right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
#hamburger_box {
    display: none;
}

.head_navi_ul {
    display: flex;
    list-style: none;
    gap: 24px;
}
.head_navi_item {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.head_navi_item a {
    padding-top: 22px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 22px;
    display: block;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.has-child {
  position: relative;
}
.has-child {
  cursor: pointer; /* 手の形を出す（親で指定） */
}

.has-child > .menu_no_link {
  pointer-events: none; /* 子のリンクはクリック無効 */
}
.child-menu {
    position: fixed;
    top: 64px;
    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: 24px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 24px;
    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: 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;
    padding-top: 16px;
    padding-bottom: 16px;
    /* [disabled]background-image: url(../images/common/brackets_l.svg),url(../images/common/brackets_r.svg); */
    /* [disabled]background-repeat: no-repeat; */
    /* [disabled]background-position: left top,right bottom; */
    /* [disabled]background-size: 24px auto; */
    padding-left: 24px;
    padding-right: 24px;
    min-width: 304px;
    text-align: center;
    margin-left: 16px;
    margin-right: 16px;
    background-color: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #231815;
}
.child-menu-item a span {
    color: #17489d;
}

.child-menu-item a:hover {
    opacity: 1;
    visibility: visible;
    background-color: #EFEFF7;
}

#head_navi_contact {

}
#head_navi_contact a {
    background-image: none;
    border-bottom-left-radius: 8px;
    width: 160px;
    text-align: center;
    background-color: #d86547;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
}

#head_navi_contact a:hover {

	
}
#head_navi_contact a img {
    width: 18px;
    margin-right: 4px;
}


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

#sp_menu {
    display: none;
}
