
.nav-fullwidth-panel {
  position: fixed;
  left: 0;
  top: 80px;
  width: 100vw;
  min-width: 100vw;
  background: #fff;
  z-index: 100;
  box-shadow: 0 10px 32px rgba(31,27,26,.10);
  border-bottom: 1.5px solid #e5e1db;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-32px);
  transition: opacity 0.32s cubic-bezier(.4,0,.2,1), transform 0.32s cubic-bezier(.4,0,.2,1);
}
.nav-fullwidth-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-wide-dropdown {
  width: 100vw;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 0;
}
.nav-wide-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-left: 1px solid #ece7e0;
}
.nav-wide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 120px;
  max-width: 16.66%; /* 6個で1行 */
  box-sizing: border-box;
  padding: 16px 0 12px 0;
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: #2f2621;
  border-right: 1px solid #ece7e0;
  border-bottom: none;
  border-radius: 0!important;
  transition: background .18s, color .18s;
  position: relative;
  font-size: 0.92rem;
}
/* 6個ごとに改行 */
.nav-wide-item:nth-child(6n) {
  border-right: 1px solid #ece7e0;
}
.nav-wide-item:nth-child(6n+1) {
  border-left: none;
}
/* 2行目以降にも上ボーダー */
.nav-wide-item:nth-child(n+7) {
  border-top: 1px solid #ece7e0;
}
.nav-wide-item:hover {
  background: #f8f5f0;
  color: #c41b1b;
  border-radius: 0;
}
.nav-wide-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-wide-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* タイトル・説明文小さめ */
.nav-wide-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2f2621;
}
.nav-wide-desc {
  font-size: 0.7rem;
  color: #7a6a5a;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .nav-fullwidth-panel {
    top: var(--header-height-sp, 56px);
  }
  .nav-wide-list {
    flex-wrap: wrap;
    max-width: 100vw;
  }
  .nav-wide-item {
    min-width: 120px;
    padding: 14px 0 12px 0;
  }
}
