.main-footer a, 
.main-footer a:visited, 
.main-footer a:hover, 
.main-footer a:focus, 
.main-footer a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* アイテムページのメディアサイズを現在の40%に縮小 */
.item .media-render img {
    width: 40% !important; /* 幅を 40% に縮小 */
    height: auto !important; /* アスペクト比を維持 */
}

.logo-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-flex img {
  height: 60px;
  width: auto;
}

/* 画面が768px以下のときは縦並びにする */
@media screen and (max-width: 768px) {
  .logo-flex {
    flex-direction: column;
    align-items: flex-start; /* 左揃え */
  }
}

