.pl{
margin-left:0px;
text-align: left;
}
.uwidth
{width:100vw;}
.uwidth400
{width:400px;}
.uwidth200
{width:200px;}
.uwidth100
{width:100px;}
.cut
{
width:228px;
overflow: hidden;
white-space: nowrap;
font-size: 12px;
margin-top: -7px; /*追加*/
margin-bottom: -7px; /*追加*/
line-height: 2;
color:lightblue;
}
.cutw
{
width:228px;
overflow: hidden;
white-space: nowrap;
font-size: 12px;
margin-top: -7px; /*追加*/
margin-bottom: -7px; /*追加*/
line-height: 2;
color:white;
}
.cut2
{
width:228px;
overflow: hidden;
white-space: nowrap;
color:lightblue;
}
.menusize
{
display: inline-block;
width: 228px;
   border-right: 1px solid white;
}
.menusize2
{
display: inline-block;
width: 98px;
   border-right: 1px solid white;
}
.menusize3
{
display: inline-block;
width: 130px;
   border-right: 1px solid white;
}
.menusize4
{
display: inline-block;
width: 65px;
   border-right: 1px solid white;
}
.ws
{
   white-space:nowrap;
}
.column
{
column-count: 2;
column-fill:auto;
}
.list--0{
  display: flex;
  flex-flow: row wrap;
}

ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 0px; /* メニューバー内側の余白(左に15px) */
   background-color: #00008b; /* バーの背景色(濃い赤色) */
}

ul.ddmenu li {
   width: auto;          /* メニュー項目の横幅(125px) */
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   background-color: #00008b; /* メニュー項目の背景色(濃い赤色) */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 35px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: bold;         /* 太字にする */
   font-size: 14px;
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: darkblue; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
   color: white;            /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}

ul.ddmenu ul {
   margin: 0px;        /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;       /* ★サブメニュー内側の余白(ゼロ) */
   display: none;      /* ★標準では非表示にする */
   position: absolute; /* ★絶対配置にする */
}

ul.ddmenu ul li {
   width: 228px;               /* サブメニュー1項目の横幅(135px) */
   border-top: 1px solid white; /* 項目上側の枠線(ピンク色で1pxの実線) */
   border-right: 1px solid white;
   }
ul.ddmenu ul li a {
   line-height: 32px;   /* サブメニュー1項目の高さ(35px) */
   text-align: left;    /* 文字列の配置(左寄せ) */
   padding-left: 5px;   /* 文字列前方の余白(5px) */
   font-weight: bold; /* 太字にはしない */
   font-size: 14px;
}
ul.ddmenu ul li a:hover {
   background-color: forestgreen; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color: white;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

ul.ddmenu ul ul {
   margin: 0px;        /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;       /* ★サブメニュー内側の余白(ゼロ) */
   display: none;      /* ★標準では非表示にする */
   position: absolute; /* ★絶対配置にする */
   top: -1px;          /* 1pxだけ上方向にずらす(※上に1pxの枠線を引いている場合) */
   left: 100%;         /* ★基準位置からの距離を親ボックスの幅100％にする */
   border-left: 0px solid white; /* 左側に引く枠線(ピンク色で1pxの実線) */
}

