/*リンク*/
a {
  text-decoration: none;
  color: #ffffff;
}

/*ラベル（「開く」ボタン）*/
.button{
  /*margin: 0 1.5em;*/ /*中央寄せ*/
  margin: 0 0 0 auto; /*右寄せ*/
  padding: 0.5em; /*テキストと外枠の間*/
  display: block;
  color: #fff; /*文字色*/
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0px 0 0px #aaa; /*影*/
  background: #fcae11;
  border-radius: 0px; /*角の丸み*/
  width: 100px;
  height: 20px;
}

.short_description {
  margin-top: 0px;
}

#bookmark_check {
  display: none;
}

#bookmark_search {
  height: 30px;
  border : solid 1px #000000;
  padding: 6px;
  margin: 2px;
}

.bookmark_search1 {
  background-color: white;
}

.bookmark_search2 {
  background-color: #1da1f2;
}

.select_label {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin: 10px 0px;
}

.select_label::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.select_label select {
    appearance: none;
    height: 40px;
    width: 120px;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}