   .brand-list {
    list-style: none;
    padding: 0 10px 10px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 400px;
}

.brand-list li {
    flex: 0 0 48%;
}

.brand-list a {
    display: block;
    position: relative;
     margin-bottom: .2rem;
 width: 170px;
}

.brand-list img {
    opacity: .4;
}

.brand-list a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    text-align: center;
    color: #603429;
    font-weight: 700;
 font-family: 'Noto Serif JP', serif;
}

.brand-list a:after {
  content: "";
  position: absolute;
  bottom: .3rem;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 14px solid #800001;
  border-left: 14px solid transparent;
}
.top_banner{
padding: 0 10px;
}

.top_banner .line_banner{
padding: 10px 0 0 0;
}

.line_banner{
padding: 10px 10px 0 10px;
}

.more-newitem {
  text-align: center;
  margin: 30px 0;
  border: none; /* ← ライン消す */
}

.more-newitem .btn-more {
  display: inline-block;
  padding: 12px 28px;
  background-color: #800020; /* ワインレッド */
  color: #fff;
  font-weight: bold;
  border: 2px solid #d4af37; /* ゴールドの枠線 */
  border-radius: 30px; /* 角丸でボタンっぽく */
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2); /* ちょっと浮かせる */
}

.more-newitem .btn-more:hover {
  background-color: #66001a; /* 濃いワインレッド */
  color: #ffd700; /* ホバー時に文字をゴールドっぽく */
}