/* .blog-search__container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0;
}

.blog-search__title {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.blog-search__filter {
  margin-bottom: 16px;
}

.blog-search-filter {
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.blog-search-heading {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.blog-search-filter__title {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 8px;
}

.blog-search-filter__option {
  font-size: 0.8em;
  display: block;
  margin-bottom: 8px;
  vertical-align: middle;
}

.blog-search-filter label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.blog-search-filter__item {
  vertical-align: middle;
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: white;
  border: 2px solid #c0c0c0;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
}

.blog-search-filter__item:checked {
  border-color: #00bfff;
  background-color: white;
}

.blog-search-filter__item:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #00bfff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.blog-search-filter__label {
  font-size: 0.9em;
  white-space: nowrap;
  cursor: pointer;
}

.blog-search__keyword {
  margin-bottom: 24px;
}

.blog-search__keyword-input {
  position: relative;
}

.blog-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-40%);
}

.blog-search-icon svg {
  width: 18px; /* アイコンサイズ */
  height: 18px;
  fill: #00bfff;
}

.blog-search-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 1em;
  border: 1px solid #c0c0c0;
  outline: none;
  box-sizing: border-box;
  padding-left: 36px;
}

.blog-search-input::placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}

.blog-search-input:focus {
  border-color: #00bfff;
  box-shadow: 0 0 4px rgba(0, 191, 255, 0.3);
}

.blog-search__submit {
  text-align: left;
}

.blog-search-button {
  display: inline-block;
  width: 100%;
  padding: 16px 16px;
  font-size: 1em;
  font-weight: bold;
  color: black;
  background-color: #f0f0f0;
  border: none;
  border-radius: 24px;
  cursor: pointer;
}

.blog-search-button:active {
  background-color: #f0f0f0;
  font-size: 1em;
  font-weight: bold;
}

.blog-search-button:hover {
  color: #00bfff;
}
 */