   /* ===== BRANDS SECTION ===== */
    .brands-section {
      padding: 80px 40px;
      background: #fff;
      text-align: center;
    }

    /* Section heading — matches site's serif/decorative style */
    .brands-section__heading {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.25em;
      color: #888;
      
      margin-bottom: 10px;
    }

    .brands-section__title {
      font-size: 36px;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: #1a1a1a;
      margin-bottom: 48px;
      line-height: 1.2;
    }

    /* Decorative sunburst / lines — mirrors the site's "Concept" ornament */
    .brands-section__ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 50px;
    }

    .brands-section__ornament::before,
    .brands-section__ornament::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: #1a1a1a;
    }

    .brands-section__ornament-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brands-section__ornament-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: #1a1a1a;
      stroke-width: 1;
    }

    /* ===== BRAND GRID ===== */
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid #d0d0d0;
      border-left: 1px solid #d0d0d0;
    }

    .brands-grid__item {
      padding: 22px 16px;
      border-right: 1px solid #d0d0d0;
      border-bottom: 1px solid #d0d0d0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: default;
    }

    .brands-grid__name {
      
      font-size: 13.5px;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: #1a1a1a;
      line-height: 1.4;
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
      .brands-section {
        padding: 64px 32px;
      }

      .brands-section__title {
        font-size: 30px;
      }

      .brands-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 599px) {
      .brands-section {
        padding: 52px 20px;
      }

      .brands-section__title {
        font-size: 26px;
      }

      .brands-section__ornament::before,
      .brands-section__ornament::after {
        width: 36px;
        background: #1a1a1a;
      }

      .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
      }

      .brands-grid__item {
        padding: 18px 10px;
      }

      .brands-grid__name {
        font-size: 11.5px;
        letter-spacing: 0.12em;
      }
    }
    

    /* =====================
       SHOP INFO SECTION
       padding/max-width はサイト側コンテナに委ねる
       幅は 100% で自然に流す
    ===================== */
    .shopinfo {
      width: 100%;
      padding: 80px 0;
      background: #fff;
      max-width: 1200px;
    margin: auto;
    }

    .shopinfo__label {
      
      font-size: 11px;
      letter-spacing: 0.35em;
      color: #888;
      display: block;
      margin-bottom: 8px;
    }

    .shopinfo__title {
      
      font-size: 38px;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: #1a1a1a;
      margin-bottom: 48px;
      line-height: 1;
    }

    /* two-column card — 幅 100% でコンテナに追従 */
    .shopinfo__body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      border: 1px solid #d0d0d0;
    }

    /* LEFT: image */
    .shopinfo__image {
      position: relative;
      min-height: 380px;
      overflow: hidden;
      background: #111;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .shopinfo__image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.85;
      z-index: 1;
    }

    /* 画像がない場合のフォールバックテキスト */
    .shopinfo__image::after {
      content: 'CAFE COUNTER';
      
      font-size: 11px;
      letter-spacing: 0.3em;
      color: #555;
      position: relative;
      z-index: 0;
    }

    /* RIGHT: info */
    .shopinfo__info {
      padding: 44px 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid #d0d0d0;
    }

    .shopinfo__catch-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .shopinfo__catch-tag {
      
      font-size: 12px;
      letter-spacing: 0.2em;
      color: #1a1a1a;
      border: 1px solid #1a1a1a;
      padding: 4px 14px;
    }

    .shopinfo__list {
      list-style: none;
      border-top: 1px solid #d0d0d0;
      margin-bottom: 36px;
    }

    .shopinfo__list li {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #d0d0d0;
      line-height: 1.7;
    }

    .shopinfo__list-key {
      
      font-size: 11px;
      letter-spacing: 0.18em;
      color: #888;
      
      padding-top: 2px;
    }

    .shopinfo__list-val {
      font-size: 12px;
      color: #1a1a1a;
      font-weight: 300;
    }

    .shopinfo__btn {
      display: inline-block;
      
      font-size: 12px;
      letter-spacing: 0.28em;
      color: #fff;
      background: #1a1a1a;
      padding: 14px 32px;
      text-decoration: none;
      
      align-self: flex-start;
      transition: background 0.2s, color 0.2s, outline 0.2s;
    }

    .shopinfo__btn:hover {
      background: #fff;
      color: #1a1a1a;
      outline: 1px solid #1a1a1a;
    }

    /* LINK BAR — body と同幅 */
    .shopinfo__links {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid #d0d0d0;
      border-top: none;
    }

    .shopinfo__link-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 28px;
      text-decoration: none;
      color: #1a1a1a;
      border-right: 1px solid #d0d0d0;
      transition: background 0.2s;
    }

    .shopinfo__link-item:last-child { border-right: none; }
    .shopinfo__link-item:hover { background: #f5f5f5; }

    .shopinfo__link-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      flex-shrink: 0;
    }

    .shopinfo__link-label {
      
      font-size: 13px;
      letter-spacing: 0.22em;
      
      color: #1a1a1a;
      display: block;
      line-height: 1.2;
    }

    .shopinfo__link-sub {
      font-size: 10px;
      color: #888;
      letter-spacing: 0.05em;
      display: block;
      margin-top: 2px;
    }

    /* 1024px */
    @media (max-width: 1024px) {
      .shopinfo {
        padding: 64px 0;
        max-width: 92%;
        
      }
      .shopinfo__title { font-size: 30px; }
      .shopinfo__info { padding: 32px 28px; }
    }

    /* 599px */
    @media (max-width: 599px) {
      .shopinfo { 
        padding: 52px 0; 
        max-width: 90%;
      }
      
      .shopinfo__title { font-size: 26px; margin-bottom: 32px; }
      .shopinfo__body { grid-template-columns: 1fr; }
      .shopinfo__image { min-height: 240px; }
      .shopinfo__info {
        padding: 28px 20px;
        border-left: none;
        border-top: 1px solid #d0d0d0;
      }
      .shopinfo__list li { grid-template-columns: 60px 1fr; }
      .shopinfo__links { grid-template-columns: 1fr; }
      .shopinfo__link-item {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        padding: 18px 20px;
      }
      .shopinfo__link-item:last-child { border-bottom: none; }
    }
    
.t-whiteshadow{
      text-shadow: 0 0 10px #FFF, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

.footer-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 16px;
  width: fit-content;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
}

/* 2026/03/08 */

  /* ================================================================
     ① CONCEPT MORE BUTTON
  ================================================================ */
  .concept-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .concept-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #1a1a1a;
    
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.25s, gap 0.25s;
  }

  .concept-more__btn:hover {
    opacity: 0.5;
    gap: 28px;
  }

  .concept-more__btn-text { display: block; }

  .concept-more__btn-arrow {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    .concept-more { margin-top: 32px; }
    .concept-more__btn { font-size: 12px; letter-spacing: 0.24em; }
  }
  @media (max-width: 599px) {
    .top04 { padding: 48px 20px; }
    .concept-more { margin-top: 28px; }
    .concept-more__btn { font-size: 11.5px; letter-spacing: 0.2em; gap: 16px; }
    .concept-more__btn:hover { gap: 22px; }
    .concept-ornament::before,
    .concept-ornament::after { width: 36px; }
  }

  /* ================================================================
     ② BRANDS SECTION
  ================================================================ */
  .brands-section {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
    border-top: 1px solid #e0e0e0;
  }

  .brands-section__heading {
    
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #888;
    
    margin-bottom: 10px;
  }

  .brands-section__title {
    
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-bottom: 48px;
    line-height: 1.2;
  }

  /* ornament */
  .brands-section__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
  }
  .brands-section__ornament::before,
  .brands-section__ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #1a1a1a;
  }
  .brands-section__ornament-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brands-section__ornament-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 1;
  }

  /* grid */
  .brands-grid {
    display: grid;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #d0d0d0;
    border-left: 1px solid #d0d0d0;
  }

  .brands-grid--partial {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-grid__item {
    padding: 28px 16px;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .brands-grid__item:hover { background: #fafafa; }

  .brands-grid__name {
    
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: #1a1a1a;
    
    line-height: 1.4;
  }

  /* more block */
  .brands-more {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

.brands-more__note {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-decoration: underline;
}

  .brands-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #fff;
    
    text-decoration: none;
    border: 1px solid #fff;
    padding: 14px 40px;
    transition: background 0.25s, color 0.25s;
  }

  .brands-more__btn:hover {
    background: #1a1a1a;
    color: #fff;
  }

  .brands-more__btn-arrow {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  @media (max-width: 1024px) {
    .brands-section { padding: 64px 32px; }
    .brands-section__title { font-size: 30px; }
    .brands-grid--partial { grid-template-columns: repeat(3, 1fr); }
    .brands-more { margin-top: 36px; gap: 16px; }
    .brands-more__btn { font-size: 12px; padding: 13px 30px; letter-spacing: 0.22em; }
  }

  @media (max-width: 599px) {
    .brands-section { padding: 52px 20px; }
    .brands-section__title { font-size: 26px; }
    .brands-section__ornament::before,
    .brands-section__ornament::after { width: 36px; }
    .brands-grid--partial { grid-template-columns: repeat(2, 1fr); }
    .brands-more { margin-top: 28px; gap: 14px; }
    .brands-more__note { font-size: 11px; }
    .brands-more__btn { font-size: 11.5px; letter-spacing: 0.18em; padding: 12px 22px; gap: 14px; }
  }
  
  /* =====================
     SECTION HEADER
  ===================== */
  .gallery-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
  }

  .gallery-section__head {
    padding: 0 40px;
    margin-bottom: 52px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-section__label {
    font-size: 11px;
    letter-spacing: 0.35em;
    color: #888;
    
    display: block;
    margin-bottom: 8px;
  }

  .gallery-section__title {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 52px;
  }

  /* ornament */
  .gallery-section__ornament {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .gallery-section__ornament::before,
  .gallery-section__ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #1a1a1a;
  }
  .gallery-section__ornament-icon svg {
    display: block;
  }

  /* =====================
     SLIDER WRAPPER
  ===================== */
  .slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  /* single track */
  .slider-track {
    display: flex;
    gap: 6px;
    width: max-content;
    will-change: transform;
  }

  /* row 1 → left */
  .slider-row--left .slider-track {
    animation: scrollLeft var(--dur, 38s) linear infinite;
  }
  .slider-row--left:hover .slider-track {
    animation-play-state: paused;
  }

  /* row 2 → right */
  .slider-row--right .slider-track {
    animation: scrollRight var(--dur, 44s) linear infinite;
  }
  .slider-row--right:hover .slider-track {
    animation-play-state: paused;
  }

  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  /* =====================
     SLIDE ITEM
  ===================== */
  .slide-item {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    height: 300px; /* fixed height — width adapts to aspect ratio */
  }

  .slide-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity 0.4s ease;
    opacity: 0.86;
    pointer-events: none;
  }

  .slide-item:hover img {
    transform: scale(1.06);
    opacity: 1;
  }

  /* hover overlay */
  .slide-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
  }

  .slide-item:hover .slide-item__overlay {
    opacity: 1;
  }

  .slide-item__caption {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.8);
    
  }

  /* edge fade masks */
  .slider-row {
    position: relative;
  }
  .slider-row::before,
  .slider-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .slider-row::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
  }
  .slider-row::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
  }

  /* =====================
     LIGHTBOX
  ===================== */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .lightbox.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .lightbox__img {
    max-width: 88vw;
    max-height: 86vh;
    object-fit: contain;
    display: block;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity 0.15s ease;
  }
  .lightbox.is-open .lightbox__img {
    transform: scale(1);
  }
  .lightbox__close {
    position: fixed;
    top: 24px; right: 28px;
    width: 44px; height: 44px;
    cursor: pointer;
    background: none; border: none;
  }
  .lightbox__close::before,
  .lightbox__close::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 28px; height: 1px;
    background: rgba(255,255,255,0.7);
    transform-origin: center;
  }
  .lightbox__close::before { transform: translate(-50%,-50%) rotate(45deg); }
  .lightbox__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }
  .lightbox__close:hover::before,
  .lightbox__close:hover::after { background: #fff; }

  .lightbox__nav {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    width: 44px; height: 44px;
    cursor: pointer;
    font-size: 18px;
    transition: border-color 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox__nav:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
  .lightbox__nav--prev { left: 24px; }
  .lightbox__nav--next { right: 24px; }

  .lightbox__counter {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.35);
  }

  /* =====================
     RESPONSIVE
  ===================== */
  @media (max-width: 1024px) {
    .gallery-section__head { padding: 0 32px; }
    .gallery-section__title { font-size: 30px; }
    .slide-item { height: 240px; }
  }

  @media (max-width: 599px) {
    .gallery-section { padding: 52px 0; }
    .gallery-section__head { padding: 0 20px; margin-bottom: 36px; }
    .gallery-section__title { font-size: 26px; margin-bottom: 36px; }
    .slide-item { height: 180px; }
    .slider-row::before,
    .slider-row::after { width: 48px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
  }
  
/* 2026/03/09 */

.bg-black>*{
  color: #fff !Important;
}

.bg-black h2{
  color: #fff !Important;
}

.bg-black span{
  color: #fff !Important;  
}

.bg-black div{
  color: #fff !Important;  
}

.brands-grid__item:hover span{
  color: #202020 !Important;
}

.bg-black{
  background: #202020 !Important;
}

.footer01{
  background: #202020 !Important;
  
}

 /* ===== LINK BAR ===== */
    .shopinfo__links {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid #d0d0d0;
      background: #fff;
    }

    .shopinfo__link-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 28px 32px;
      text-decoration: none;
      color: #1a1a1a;
      border-right: 1px solid #d0d0d0;
      background: #fff;
      transition: background 0.22s ease, color 0.22s ease;
    }

    .shopinfo__link-item:last-child {
      border-right: none;
    }

    .shopinfo__link-item:hover {
      background: #1a1a1a;
      color: #fff;
    }

    .shopinfo__link-item:hover .shopinfo__link-label {
      color: #fff;
    }

    .shopinfo__link-item:hover .shopinfo__link-arrow {
      color: #fff;
      transform: translateX(4px);
    }

    .shopinfo__link-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      letter-spacing: 0.28em;
      color: #1a1a1a;
      display: block;
      line-height: 1;
      transition: color 0.22s ease;
    }

    .shopinfo__link-arrow {
      font-style: normal;
      color: #aaa;
      flex-shrink: 0;
      transition: color 0.22s ease, transform 0.22s ease;
      display: flex;
      align-items: center;
    }

    .shopinfo__link-arrow svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
    }

    @media (max-width: 599px) {
      .shopinfo__links { grid-template-columns: 1fr; }
      .shopinfo__link-item {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        padding: 20px;
      }
      .shopinfo__link-item:last-child { border-bottom: none; }
    }
    
.slide-item__caption{
  display: none;
}
