@charset "UTF-8";

.dropdown__link:hover,
.dropdown__link:active,
.dropdown__link:focus {
  /* リンクにホバーした時の輪郭線と内側の影 */
  color: #082746;
  border: 1px solid #591400;
  background-color: #5914005e;
}

/* #############################################################################
 * ドロップダウンメニュー
 * #############################################################################
 */
.dropdown__button {
  /* ---------------------------------------------------------------------------
   * ボタン
   * ---------------------------------------------------------------------------
   */
  padding: 3px 12px;
  cursor: pointer;
}

.dropdown__menu {
  /* ---------------------------------------------------------------------------
   * メニュー内容
   * ---------------------------------------------------------------------------
   */
  display: none;
  position: absolute;
  top: 100%;
  left: auto;
  right: 2px;
  z-index: 1000;
  min-width: 0px;
  padding: 5px 0;
  margin: 2px 0 0;
  border: solid 1px #897652;
  border-radius: 6px;
  background-color: #59140073;
  -webkit-box-shadow: 0 0 3px 2px #00000075 inset;
  box-shadow: 0 0 3px 2px #00000075 inset;
  text-align: left;
  list-style: none;
}

.open>.dropdown__menu {
  /* ボタンクリック時に表示 */
  display: block;
}

.dropdown__link {
  /* ---------------------------------------------------------------------------
   * クリックできるリンク本体
   * ---------------------------------------------------------------------------
   */
  display: block;
  margin: 0px 5px;
  padding: 10px 20px;
  border: solid 1px transparent;
  white-space: nowrap;
  font-weight: 550;
}

/*# sourceMappingURL=dropdown.css.map */