.boda {
  font-family: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  background: #f8f6f2;
  color: #333;
  margin: 0;
  padding: 0;
}
.alert-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 18px;
  color: #5a4637;
}
.qcontainer {
  max-width: 800px;
  margin: 20px auto;

  background: #ffffff;
  border: 1px solid #d4c4a8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.qtitle {
  font-size: 28px;
  text-align: center;
  color: #5a4637;
  margin-bottom: 25px;
  border-bottom: 2px solid #cbbfae;
  padding-bottom: 10px;
}

.alert-list {
  list-style: none;
  padding: 0;
}

.alert-item {
  background: #f4f1ec;
  border: 1px solid #d8cbb7;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 16px;
}

.alert-item a {
  color: #8a5d2c;
  text-decoration: underline;
}

.alert-item a:hover {
  text-decoration: none;
}
.pref-filter-container label {
  display: block;
 
  font-weight: 600;
  font-size: 17px;
  color: #5a4637;
}

/* セレクトボックス全体 */
#pref-filter {
  width: 100%;
  max-width: 320px;
  padding: 10px 15px;
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  background-color: #f9f6f2; /* 柔らかいクリーム色 */
  border: 2px solid #b69f7f; /* 落ち着いたベージュ系 */
  border-radius: 8px;
  color: #5a4637; /* ダークブラウン */
  box-shadow: 0 2px 5px rgba(90, 70, 55, 0.15);
  transition: border-color 0.3s ease;
  appearance: none; /* デフォルト矢印非表示（モダンブラウザ用） */
  background-image:
    linear-gradient(45deg, transparent 50%, #5a4637 50%),
    linear-gradient(135deg, #5a4637 50%, transparent 50%),
    linear-gradient(to right, #f9f6f2, #f9f6f2);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* フォーカス時 */
#pref-filter:focus {
  outline: none;
  border-color: #8a5d2c; /* 少し濃いブラウン */
  box-shadow: 0 0 6px rgba(138, 93, 44, 0.7);
}

/* セレクトボックスのオプション（フォントと色）*/
#pref-filter option {
  font-family: inherit;
  color: #5a4637;
  background-color: #f9f6f2;
}
/* セレクトボックスの親コンテナを中央揃えにする例 */
.pref-filter-container {
  width: 100%;
  margin:0 auto;text-align:center!important;
}

.pref-filter-container label {
  display: block;
  margin-bottom: 4px; /* 8px→4pxに減らす */
  font-weight: 600;
  font-size: 17px;
  color: #5a4637;
}