.site-submenu-nav-wrap {
	position: relative;
	height: auto;
	opacity: 1;
	visibility: visible;
	transition: all 150ms ease-in-out;
}

.site-submenu-nav-wrap.is-submenu-hidden {
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.is-sticky .site-submenu-nav-wrap {
	border-bottom: 1px solid #f5f5f5;
}

body:not(.home) .site-submenu-nav-wrap {
	border-bottom: 1px solid #f5f5f5;
}

#site-submenu-title {
	width: 980px;
	height: 48px;
	margin: 0 auto;
	padding: 8px 0 7px;
	background-color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
}

#site-submenu-title button {
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#site-submenu-title button svg {
	width: 24px;
	height: 24px;
	fill: #005ce2;
	transition-duration: 0.2s;
}

#site-submenu-title button svg path {
	fill: #005ce2;
}

#site-submenu-title button[aria-expanded='true'] svg {
	transform: rotate(180deg);
}

body.home #site-submenu-title {
	transition: padding 200ms ease-in-out;
}

body.home #sticky-nav-wrap:not(.is-sticky) #site-submenu-title {
	height: 100px;
	padding: 28px 0;
}

h1#site-submenu-title {
	color: #000415;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
}

h2#site-submenu-title {
	color: #000415;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

.is-sticky h1#site-submenu-title {
	color: #000415;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
}

#site-submenu-nav {
	width: 100%;
	opacity: 0;
	overflow: hidden;
	max-height: 0;
	transform: translateY(-100%);
	-webkit-overflow-scrolling: touch;
	transition:
		transform 250ms ease-out,
		opacity 250ms ease-out,
		max-height 250ms ease-out;
	position: relative;
	z-index: 5;
}

#site-submenu-nav.submenu-open {
	transform: translateY(0);
	overflow: visible;
	opacity: 1;
	max-height: calc(100dvh - 94px);
	transition:
		transform 150ms ease-out,
		opacity 150ms ease-out,
		max-height 150ms ease-out;
}

body.home #site-submenu-nav.submenu-open {
	max-height: calc(100dvh - 124px);
}

body.home .is-sticky #site-submenu-nav.submenu-open,
.is-sticky #site-submenu-nav.submenu-open {
	max-height: calc(100dvh - 48px);
}

#submenu-menu {
	width: 980px;
	margin: 0 auto;
	padding: 24px 0 80px;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

#submenu-menu > li:first-child {
	width: 100%;
	padding-bottom: 32px;
	border-bottom: 1px solid #dedede;
}

#submenu-menu > li:not(:first-child) {
	width: calc((100% - 96px) / 4);
}

#submenu-menu > li a {
	color: #005ce2;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
}

#submenu-menu > li a:hover {
	text-decoration: none;
}

#submenu-menu > li span {
	color: #676767;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
}

#submenu-menu .sub-menu {
	margin: 16px 0 0;
	padding: 0 0 0 16px;
}

#submenu-menu .sub-menu li:not(:first-child) {
	margin-top: 8px;
}

#submenu-menu .sub-menu li a {
	color: #005ce2;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.5;
	text-decoration: none;
}
