/* header-footer-inline.css
   ヘッダー/フッターの Liquid セクションが <style> で直に出力していたCSS。
   stdwear.first-ch.com の実配信HTML（Internet Archive 2026-04-13）から抽出。
   Shopify 固有のセクションIDだけ静的ミラー用のクラス名へ置換している。 */

/* --- archive inline style block #2 --- */
header-drawer {
    justify-self: start;
    margin-left: -1.2rem;
  }@media screen and (min-width: 990px) {
      header-drawer {
        display: none;
      }
    }.menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  summary.list-menu__item {
    padding-right: 2.7rem;
  }

  .list-menu__item {
    display: flex;
    align-items: center;
    line-height: calc(1 + 0.3 / var(--font-body-scale));
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }

  /* Stdwear Dark Mode Header */
  .header-wrapper {
    background-color: var(--stdwear-bg-secondary, #161B22) !important;
    border-bottom: 1px solid var(--stdwear-border, #30363D) !important;
  }

  .header {
    background-color: var(--stdwear-bg-secondary, #161B22) !important;
  }

  .header__heading-link .h2 {
    font-family: var(--stdwear-font-mono, 'JetBrains Mono', monospace) !important;
    color: var(--stdwear-text-primary, #E6EDF3) !important;
    letter-spacing: -0.02em;
    font-weight: 600;
  }

  .header__heading-link {
    color: var(--stdwear-text-primary, #E6EDF3) !important;
    transition: color 0.2s ease;
  }

  .header__heading-link:hover {
    color: var(--stdwear-accent-green, #7EE787) !important;
  }

  .list-menu__item--link {
    color: var(--stdwear-text-secondary, #8B949E) !important;
    transition: color 0.2s ease;
    position: relative;
  }

  .list-menu__item--link:hover,
  .list-menu__item--link:focus {
    color: var(--stdwear-accent-blue, #58A6FF) !important;
  }

  .list-menu__item--link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--stdwear-accent-blue, #58A6FF);
    transition: width 0.3s ease;
  }

  .list-menu__item--link:hover::after {
    width: 100%;
  }

  .header__icon,
  .header__icon .svg-wrapper {
    color: var(--stdwear-text-secondary, #8B949E) !important;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .header__icon:hover,
  .header__icon:hover .svg-wrapper {
    color: var(--stdwear-accent-blue, #58A6FF) !important;
  }

  .header__icon:hover {
    transform: translateY(-1px);
  }

  .cart-count-bubble {
    background-color: var(--stdwear-accent-green, #7EE787) !important;
    color: var(--stdwear-bg-primary, #0D1117) !important;
    font-family: var(--stdwear-font-mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.7rem;
    font-weight: 700;
  }

  .header__submenu,
  .mega-menu__content,
  .mega-menu {
    background-color: var(--stdwear-bg-tertiary, #21262D) !important;
    border-color: var(--stdwear-border, #30363D) !important;
  }

  .shopify-section-header-sticky .header-wrapper {
    background-color: var(--stdwear-bg-secondary, #161B22) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .header-wrapper[class*="color-"] {
    background-color: var(--stdwear-bg-secondary, #161B22) !important;
  }

/* --- archive inline style block #3 --- */
.header {
    padding: 10px 3rem 10px 3rem;
  }

  .section-header {
    position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
    margin-bottom: 0px;
  }

  @media screen and (min-width: 750px) {
    .section-header {
      margin-bottom: 0px;
    }
  }

  @media screen and (min-width: 990px) {
    .header {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }

/* --- archive inline style block #4 --- */
.cart-notification {
    display: none;
  }

/* --- archive inline style block #9 --- */
.footer {
    margin-top: 36px;
  }

  .footer-padding {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  @media screen and (min-width: 750px) {
    .footer {
      margin-top: 48px;
    }

    .footer-padding {
      padding-top: 36px;
      padding-bottom: 36px;
    }
  }
