.logo-detail-wrap {
  padding-top: 120px;
}

.logo-detail {
  display: flex;
  height: calc(100vh - 120px);
}

.logo-detail__left {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  height: 100%;
  border-right: 0.5px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.logo-detail__back {
  display: block;
  font-size: 18px;
  color: #888;
  text-decoration: none;
  padding: 1.5rem 2rem;
  border-bottom: 0.5px solid #e0e0e0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.logo-detail__back:hover {
  color: #111;
}

.logo-detail__left-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.logo-detail__title {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.logo-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-detail__meta-item {
  font-size: 11px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}


.logo-detail__meta-label {
  font-size: 10px;
  color: #aaa;
  display: block;
  margin-bottom: 2px;
}

.logo-detail__url {
  font-size: 11px;
  color: #888;
  word-break: break-all;
}

.logo-detail__desc {
  font-size: 11px;
  color: #555;
  line-height: 2em;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid #e0e0e0;
  letter-spacing: 0.12em;
}

.logo-detail__cat-badge {
  display: inline-block;
  font-size: 10px;
  color: #888;
  border: 0.5px solid #ccc;
  border-radius: 20px;
  padding: 3px 12px;
  margin-top: 16px;
  margin-right: 4px;
}

.logo-detail__right {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logo-detail__img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.logo-detail__other {
  padding: 2rem 3rem;
  border-top: 0.5px solid #e0e0e0;
}

.logo-detail__other-title {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.logo-detail__other-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.logo-detail__other-card {
  text-decoration: none;
  color: inherit;
}

.logo-detail__other-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.logo-detail__other-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.logo-detail__other-name {
  font-size: 11px;
  color: #111;
  margin-top: 0 !important;
}

/* タブレット・スマホ */
@media (max-width: 1023px) {
  .logo-detail {
    flex-direction: column;
    height: auto;
  }
  .logo-detail__left {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 0.5px solid #e0e0e0;
  }
  .logo-detail__back {
    padding: 1rem 2rem;
  }
  .logo-detail__left-scroll {
    padding: 2rem;
  }
  .logo-detail__right {
    height: auto;
    overflow-y: visible;
    padding: 2rem;
  }
  .logo-detail__other {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .logo-detail__other-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-detail__other-card:nth-child(n+4) {
    display: none;
  }
  
}