:root {
  --nd-user-header-zindex: 99;
  --nd-user-header-margin-bottom: 1.25rem;
  --site-bg:	transparent;
}

.user-header {
  --nd-header-width: 100%;
  --nd-header-height: 3.5rem;
  --nd-header-margin: 0 auto;
  --nd-header-side-align-self: center;
  --nd-header-bg: var(--nd-white, #fff);
  /* logo */
  --nd-logo-max-width: 12.5rem;
  --nd-logo-max-height: 2rem;
  /* search */
  --nd-search-width: 100%;
  --nd-search-height: 2.5rem;
  --nd-search-font-size: 1.125rem;
  --nd-search-color: var(--nd-body-color, #000);
  --nd-search-bg: #fff;
  --nd-search-border-width: 0;
  --nd-search-border-color: transparent;
  --nd-search-border-radius: 0;
  --nd-search-focus-color: var(--nd-search-color);
  --nd-search-focus-bg: var(--nd-search-bg);
  /* search button */
  --nd-search-btn-font-size: 1.5rem;
  --nd-search-btn-color: var(--nd-search-color);
  --nd-search-btn-bg: var(--nd-search-bg);
  --nd-search-btn-hover-color: var(--nd-search-btn-color);
  --nd-search-btn-hover-bg: var(--nd-search-btn-bg);
  --nd-search-btn-active-color: var(--nd-search-focus-color);
  --nd-search-btn-active-bg: var(--nd-search-focus-bg);
  /* search action */
  --nd-search-action-height: var(--nd-header-height);
  --nd-search-action-padding-x: var(--nd-user-padding-x);
  --nd-search-action-padding-y: 0.25rem;
  --nd-search-action-font-size: 1.375rem;
  --nd-search-action-color: var(--nd-body-color, #000);
  --nd-search-action-hover-color: var(--nd-search-action-color);
  --nd-search-action-active-color: var(--nd-search-action-hover-color);
  /* button */
  --nd-header-btn-height: var(--nd-search-action-height);
  --nd-header-btn-padding: var(--nd-search-action-padding-y) var(--nd-search-action-padding-x);
  --nd-header-btn-font-size: 1.25rem;
  --nd-header-btn-color: var(--nd-search-action-color);
  /* icon */
  --nd-header-icon-height: 2px;
  --nd-header-icon-offset-y: 0.4375rem;
}

.user-header.scroll {
  position: fixed;
  width: 100%;
}
.mb-header-icon {
  display: block;
  position: relative;
  width: calc(var(--nd-header-btn-font-size) - 4px);
  height: var(--nd-header-icon-height);
  background-color: currentColor;
}
.mb-header-icon::after, .mb-header-icon::before {
  content: "";
  overflow: hidden;
  position: absolute;
  z-index: 1;
  left: 0;
  width: var(--nd-header-btn-font-size);
  height: 0;
  border-top: var(--nd-header-icon-height) solid currentColor;
}

.mb-header-icon::before {
  top: calc(-1 * var(--nd-header-icon-offset-y));
}
.mb-header-icon::after {
  bottom: calc(-1 * var(--nd-header-icon-offset-y));
}

.is-search .gl-search-action > i[class*=icon-] {
  --nd-ndfonts-icon: "\e9af";
}
.gl-search-wrap {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1.25rem;
  background-color: rgba(0, 0, 0, 0.9);
}
.user-header:not(.is-search) .gl-search-wrap {
  display: none;
}

.mobile-for-nav {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  z-index: 1004;
  left: 0;
  top: 0;
  width: 100%;
  max-height: 100%;
  padding: 1.5rem var(--nd-user-padding-x);
  background-color: var(--nd-body-bg, #fff);
}
.user-header:not(.is-active) .mobile-for-nav {
  display: none;
}
.mobile-for-nav > .index-max-width {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.mobile-for-nav > .index-max-width::before, .mobile-for-nav > .index-max-width::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.mobile-for-nav > .index-max-width::after {
  clear: both;
}
.mobile-for-nav .nav-close {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  margin-bottom: 1.875rem;
  margin-left: auto;
  font-size: 1.875rem;
  line-height: 1;
  color: var(--nd-body-color, #000);
  text-align: right;
}
.mobile-for-nav .nav-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}
.mobile-for-nav .nav-header-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}
.mobile-for-nav .nav-header-link {
  display: block;
  color: var(--nd-body-color, #000);
}
.mobile-for-nav .nav-header-link:hover, .mobile-for-nav .nav-header-link:focus {
  text-decoration: none;
}
.mobile-for-nav .nav-header-link.sns {
  font-size: 1.25rem;
}
.mobile-for-nav .nav-header-link.member {
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  color: #fff;
  background-color: #000;
}
.mobile-for-nav .sections {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.mobile-for-nav .sections > li > a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--nd-body-color, #000);
}
.mobile-for-nav .sections > li > a:hover, .mobile-for-nav .sections > li > a:focus {
  text-decoration: none;
}
.mobile-for-nav .sections:not(.nested) {
  font-size: 1.19rem;
  font-weight: 700;
  line-height: 25px;
}
.mobile-for-nav .sections:not(.nested) > li {
  padding: 1.875rem 1.25rem;
  border-bottom: 1px solid #000;
}
.mobile-for-nav .sections:not(.nested) > li > a {
  margin-bottom: 1rem;
}
.mobile-for-nav .sections.nested {
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 400;
  line-height: 23px;
}
.mobile-for-nav .sections.nested > li {
  flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}
.mobile-for-nav .sections.nested > li > a {
  padding: 0.25rem 0;
}
.mobile-for-nav .nav-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 22px;
}
.mobile-for-nav .nav-footer-link {
  display: block;
}
.mobile-for-nav .nav-footer-link:hover, .mobile-for-nav .nav-footer-link:focus {
  text-decoration: none;
}

/* footer */
#user-footer {
  --nd-footer-padding: 1.5625rem 1.25rem 3.125rem;
  --nd-footer-bg: #fff;
  /* quick-menu */
  --nd-quick-menu-margin: 0 0 1rem;
  --nd-quick-menu-font-size: 0.8125rem;
  --nd-quick-menu-color: #111;
  --nd-quick-menu-item-padding-x: 0.5rem;
  --nd-quick-menu-divider-color: #b3b3b3;
  /* address */
  --nd-address-font-size: 0.8125rem;
  --nd-address-color: #6c757d;
  border-top: 2px solid #111;
}
#user-footer .quick-menu {
  justify-content: flex-start;
}
#user-footer .user-address {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75rem;
  line-height: 1.875;
}
#user-footer .user-address-item {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
#user-footer .user-address-item:first-child {
  width: 100%;
}
#user-footer .info {
  display: flex;
  align-items: center;
  margin-top: 1.5625rem;
  font-size: 0.8125rem;
  color: #6c757d;
}
#user-footer .info a {
  color: currentColor;
  text-decoration: none;
}
#user-footer .info .ndsoft {
  margin-left: auto;
}