TD{
  font-size : 11pt;
  line-height : 120%;
}
DIV{
  font-size : 11pt;
  line-height : 150%;
}
BLOCKQUOTE{
  font-size : 10pt;
  margin-top : 3pt;
  margin-left : 3pt;
  margin-right : 3pt;
  margin-bottom : 3pt;
}
P{
  font-size : 10pt;
  margin-top : 5px;
  margin-left : 5px;
  margin-right : 5px;
  margin-bottom : 5px;
}
.list_test-wrap{
  margin-top : -2px;
  margin-left : -13px;
  margin-right : 1px;
  margin-bottom : 1px;
  top : 1px;
}
.list_test{
  line-height : 150%;
}

/* ナビゲーションメニュー */
.nav-menu{
  background-color : #ffffe6; /* メニューの背景色 */
  color : gray; /* メニューテキストの色 */

  font-family : Arial;
  font-weight : bold;
}
.menu-list{
  display: flex;
  margin-left : -40px;
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item{
  list-style:  none;      /* デフォルトのアイコンを消す */
  border-left : 1px solid silver; /* メニューアイテムの左ボーダー */
  position: relative;
}
.menu-item:last-child{
  border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list{
  visibility: visible; /* 下層メニューを表示 */
}
.menu-item a{
  align-items: center;
  color : teal; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 50px;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
  width: 116px;
  font-family : Arial;
  font-weight : bold;
}

/* ドロップダウンメニュー */
.drop-menu{
  position: relative;
}
.drop-menu-list{
  list-style:  none;      /* デフォルトのアイコンを消す */
  background-color : #FFFFFF; /* ドロップダウンメニューの背景色 */
  left: 0;
  position: absolute;
  top: 100%;
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  fontcolor : black;
}
.drop-menu-item{
  margin-left : -30px;
}
