@charset "UTF-8";
.btn-blue {
  /* mixinブロック内の中身を全て持ってくる */
  border: 1px solid #b8b8b8;
  border-radius: 5px;
  background-color: #c9c9c9;
  color: blue;
}

.btn-red {
  /* こっちは引数を渡してるパターン */
  border: 1px solid #b8b8b8;
  border-radius: 5px;
  background-color: #c9c9c9;
  color: red;
}

h1 {
  margin-top: 80px;
  font-size: 2em;
  text-align: center;
}

.title-header {
  background-color: #E6F7FF;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: #BBE0F9 solid 3px;
}

.clearfix:after {
  content: ".";
  /* 新しい要素を作る(""だと認識しないブラウザがある) */
  display: block;
  /* ブロックレベル要素に */
  clear: both;
  /* ここが核心部 */
  height: 0;
  /* ここと次で表示を抑制するが...昔は... */
  visibility: hidden;
  /* ブラウザ仕様(バグ?)の対応が大変だった... */
}

.gsc-selected-option-container {
  width: 100px;
}

.gsc-search-button.gsc-search-button-v2 {
  width: 70px;
  height: 28px;
}

#gsc-iw-id1 {
  height: 30px;
}

.gsc-inline-block {
  margin-bottom: 8px;
}
