/* サイドバー全体の中央揃え */
.sidebar-inner {
  text-align: center;
}

/* 検索フォームの中央揃え */
.sidebar-search form {
  display: inline-block;
  position: relative;
  text-align: left; /* ボタンを入力欄の右下に揃えるため */
}

/* 入力欄 */
.sidebar-search input[type="text"],
.sidebar-search input[type="search"] {
  padding: 8px;
  width: 200px;
  box-sizing: border-box;
}

/* 検索ボタンを右下に配置 */
.sidebar-search button,
.sidebar-search input[type="submit"] {
  position: absolute;
  bottom: 4px;
  right: 4px;
  padding: 5px 10px;
  background-color: #854739; /* 紅茶色に調整 */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* SNSアイコンの中央揃えと整列 */
.sns-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.sns-links img {
  width: 24px;
  height: 24px;
}