@charset "UTF-8";


/* ---余白等 */
* {
  padding: 0px;
  margin: 0px;
  
}

/* --- bodyフォントスタイル フォントサイズ */
body{
  font-size: 100%;
  font-family:"Yu Gothic UI Semibold","BIZ UDゴシック","HGSｺﾞｼｯｸM","sans-serif";
  color: #FFFFFF;
  background-color: #333333;
}

#wrapper{
    margin-left: 10px;
    margin-right: 10px;
 }

#wrapper_m10 {
  margin-left: 10px;
	margin-right: 10px;
}

a{
  color: blue;
  text-decoration:none;
}

a:link {
  text-decoration: underline;
}

a:visited {
  color: blue;
  text-decoration: none;
}

a:hover {
    text-decoration: underline;
	color: cadetblue;
}

#attention{
  color:red;
  text-align:center;
  font-size: 24px;
}

/* ---------------------*/
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu{
    margin-right: auto;
	margin-left: auto;
    paddig: 0px;
    background-color: #003f8e;
    width: auto;
	text-align: right;
}

/*--------------------*/
/*メインメニュ―項目の装飾*/
/*--------------------*/
ul.ddmenu li {
   width: 165px;          /* メニュー項目の横幅(165px) */
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative; /* ★サブメニュー表示の基準位置にする */
   text-align:right;
}

ul.ddmenu a {
   background-color: #003f8e; /* メニュー項目の背景色(濃い色) */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 40px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: bold;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #ffdddd; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
   color: #dd0000;            /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu ul {
   display: none;      /* ★非表示にする */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
}

/* -------------------------------- */
/* ▼サブメニュー項目がある場合に開く処理 */
/* ------------------------------- */
ul.ddmenu li:hover ul{
	display: block;
}

/* -------------------- */
/* ▼サブメニュー項目の装飾 */
/* ------------------- */
ul.ddmenu ul li {
   width: 165px;               /* サブメニュー1項目の横幅(165px) */
   border-top: 1px solid pink; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
ul.ddmenu ul li a {
   line-height: 35px;     /* サブメニュー1項目の高さ(35px) */
   text-align: center;      /* 文字列の配置(左寄せ) */
   font-weight: normal;   /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ffdddd; /* サブメニュー項目にマウスが載ったときの背景色(淡いピンク色) */
   color: #dd0000;            /* サブメニュー項目にマウスが載ったときの文字色(濃い赤色) */
}
#stt   {
    font-size: 40px;
}
/*----footer始まり----*/
#wrapper .footer {
    text-align: center;
    text-shadow: 0px 0px #000;
    margin-top: 30px;
    margin-bottom: 10px;
}
#wrapper .footer ul {
    margin: 30px;
    padding-left: 30px;
}
.footer ul li {
    list-style-type: none;
    display: inline-block;
    width: 10%;
    margin-top: 10px;
    margin-bottom: 0px;
}
.footer ul li a {
    text-decoration: none;
    color: #000;
	
}
.footer p strong {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000;
    padding-top: 30px;
    padding-bottom: 10px;
	
}

.footer ul li a:hover{
    background-color: #ffdddd; 
   color: #dd0000; 
}
#wrapper #content {
    color: blue;
    width: 900px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
