
/* ドロップボタンのスタイルを指定する */
.dropbtn {
  background-color: midnightblue;
  color: white;
  padding: 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  line-height: 0;
}
    
/* コンテナ <div> - ドロップダウン コンテンツを配置するために必要 */
.dropdown {
  position: relative;
  display: inline-block;
}
    
/* ドロップダウン コンテンツ (デフォルトでは非表示) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: midnightblue;
  opacity: .8;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
    
/* ドロップダウン内のリンク */
.dropdown-content a {
  color: white;
  font-weight: bold;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
    
/* ホバー時のドロップダウンリンクの色を変更する */
.dropdown-content a:hover {
    background-color: midnightblue;
    color: #d42c12ea;
    font-weight: bold;
}
    
/* ホバー時にドロップダウンメニューを表示する */
.dropdown:hover .dropdown-content {
  display: block;
}
    
/* ドロップダウンのコンテンツが表示されているときのドロップダウンボタンの背景色を変更 */
.dropdown:hover .dropbtn {background-color: midnightblue;}


/*フォント指定*/
body {
  font-family: "Noto Sans JP", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}

/*タイトル用テーブル設定 */
.titletable {background-color: white; width: 1200px; margin: auto;}

/*ドロップダウンリスト　書式設定*/
.dropdowntable {width: 1200px; margin: auto; background-color:midnightblue; color: white; text-align: center; font-size: 14px;}

/*ドロップダウンリスト　項目文字色指定*/
.ddlist {text-decoration-line: none; color: white;}

/*メインテーブル設定*/
.maintable{width: 1200px; margin: auto; border-collapse: collapse;}

/*サブテーブル設定*/
.subtable{width: 800px; margin: auto;}

/*サブテーブルワイド設定*/
.subtablewide{width: 1080px; margin: auto;}

/* pタグ書式設定 */
p { text-indent: 1em; text-align: left;}

/*英単語の途中改行禁止*/
.nobreak{display:inline-block;}

/*　パンくずリスト */
.Breadcrumb {
  padding: 0.1em;
  font-size: small;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
.Breadcrumb ul{
  padding-left:0;
}

.Breadcrumb li{
  list-style:none;
}
/* パンくずリスト　おわり*/
