/*
 Theme Name: GeneratePress Child
 Template: generatepress
 Version: 1.0
*/

/* 登録日と更新日の両方を表示し、横に並べる */
.posted-on .published,
.posted-on .updated {
  display: inline-block;
}

/* 登録日と更新日の間に間隔をあける */
.posted-on .updated {
  margin-left: 20px;
}

/* 登録日の前に「登録日: 」を表示 */
.published::before {
  content: "登録日: ";
}

/* 更新日の前に「更新日: 」を表示 */
.updated::before {
  content: "更新日: ";
}

/* サイドバー設置の記事検索 */
.gp-sidebar-search {
  background: #fff;
  padding: 20px;
}

/* 見出し */
.gp-sidebar-search__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #d60000;
}

/* ラベル */
.gp-sidebar-search__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* 入力欄 */
.gp-sidebar-search__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

/* フォーム中央寄せ */
.gp-sidebar-search form {
  text-align: center;
}

/* ボタン */
.gp-sidebar-search__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #d60000;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.gp-sidebar-search__button span {
  margin-left: 8px;
  font-size: 18px;
}