@charset "utf-8";


/*---------- ページ全体の指定 ----------*/

body {
  font-family: arial, "ヒラギノ角ゴ Pro W3", "Hiragino KaKu Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #333;
 /* background-image: url(../img/back.gif);*/
  background-repeat: no-repeat;
  background-position: top;
}

a:link {
  color: #004080;
  font-size: 14px;
}

a:hover {
  color: #005ebb;
  font-size: 14px;
}

a:visited {
  color: #004080;
  font-size: 14px;
}

p {
  margin: 18px 0 18px 0;
  line-height: 180%;
  letter-spacing: 1px;
}


/*---------- メイン ----------*/

#main {
  margin: 0 auto 0 auto;
  padding: 0;
  width: 1100px;
  background-color: #ffffff;
}


/*---------- ヘッダー ----------*/

#header {
    margin: 0;
    width: 1100px;
    height: 90px;
    background-color: #ffffff;
    /*background-image: url(../img/header.jpg);
    background-repeat: no-repeat;*/
}

#header-home {
    margin: 0;
    width: 1100px;
    
    background-color: #ffffff;
    /*background-image: url(../img/header.jpg);
    background-repeat: no-repeat;*/
}

#header h1 {
  margin: 0;
  padding: 5px 0 0 5px;
  font-weight: bold;
  text-align: left;
  font-size: 13px;
  color: #ffffff;
}

#header h2 {
  margin: 0;
  padding: 25px 10px 10px 15px;
  width: 1000px;
  text-align: left;
  font-size: 14px;
  color: #666666;
  letter-spacing: 1px;
}


#table-left{
  text-align: left;
  font-size: 20px;
  color: #333333;
  line-height: 140%;
  text-decoration: none;
  
}

#table-left a{
  font-size: 20px;
  color: #4c4c4c;
  text-decoration: none;
}

#table-left a:hover{
  font-size: 20px;
  color: #4c4c4c;
  text-decoration: none;
}



#table-right{
  text-align: right;
  margin: 0;
  padding: 8px 14px 2px 0;
  font-size: 15px;
  color: #c9171e;
  line-height: 150%;
  text-decoration: none;
}

#table-right a{
  font-size: 13px;
  color: #333333;
  text-decoration: none;
}

#table-right a:hover{
  font-size: 13px;
  color: #666666;
  text-decoration: none;
}

.table-center{
  border: 0;
  padding: 0;
  border-spacing: 0;
  width:1100px;
  height: 75px;
}

#header-menu {
    margin: 0px;
    padding: 0px;
    height: 2px;
    border-bottom: solid 1px #ffffff;
    background: url(../img/head_menu_back1.png);
    background-repeat: repeat-x;
    text-align: left;
    width: auto;
}

#header-menu ul {
  text-align: left;
  padding-bottom: 1px;
  margin: 0px;
  padding: 0px;
}

#header-menu li {
  color: #ffffff;
  display: inline;
  list-style-type: none;
  float: left;
  margin: 0;
}

    #header-menu li a {
        font-size: 14px;
        width: 113px;
        height: 30px;
        line-height: 20px;
        color: #fffffc;
        background: url(../img/head_menu_back1.png);
        background-repeat: repeat-x;
        text-align: center;
        display: block;
        border-left-width: 1px;
        border-left-style: solid;
        border-left-color: #ffffff;
        text-decoration: none;
        padding-top: 10px;
		
    }

        #header-menu li a:hover {
            background: url(../img/head_menu_back_hover.png);
            background-repeat: repeat-x;
            color: #fffffc;
        }

#header-menu #rightline a {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ffffff;
	width: 113px;
}

#floatbox {
  float:right;
  font-size: 14px;
}


#container {
    width: 1100px;
    overflow: hidden;
    margin: 0px;
    padding: 6px;
    background-color: #ffffff;
}

/*----------ドロップダウンメニュー------------*/
/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 0px; /* メニューバー内側の余白 */
   background-color: url(../img/head_menu_back1.png); /* バーの背景色 */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
   width: 113px;          /* メニュー項目の横幅(113px) */
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}

ul.ddmenu a {
   background-color: url(../img/head_menu_back1.png); /* メニュー項目の背景色 */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 20px;         /* メニュー項目のリンクの高さ(20px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: bold;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
  
ul.ddmenu a:hover {
   background: url(../img/head_menu_back_hover.png); /* メニュー項目にマウスが載ったときの背景色 */
   color: #fffffc;/* メニュー項目にマウスが載ったときの文字色 */
   
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
   padding-left: 0px;
   z-index:100;
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが2階層以上ある場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover > ul {
   display: block;         /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------------------- */
/* ▼サブメニュー(以降の)項目の装飾 */
/* -------------------------------- */
ul.ddmenu ul li {
   width: 113px;               /* サブメニュー1項目の横幅(113px) */
   border-top: 1px solid; /* 項目上側の枠線(1pxの実線) */
}
ul.ddmenu ul li a {
   line-height: 20px;   /* サブメニュー1項目の高さ(20px) */
   text-align: left;    /* 文字列の配置(左寄せ) */
   padding-left: 0px;   /* 文字列前方の余白(0px) */
   font-weight: normal; /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ffff80; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color: #005500;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

/* ----------------------------------- */
/* ▼3階層目以降(孫メニュー以降)の装飾 */   /* ※下ではなく横(右)に表示します。 */
/* ----------------------------------- */
ul.ddmenu ul ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
   top: -1px;           /* 1pxだけ上方向にずらす(※上に1pxの枠線を引いている場合) */
   left: 100%;         /* ★基準位置からの距離を親ボックスの幅100％にする */
   border-left: 1px solid; /* 左側に引く枠線(1pxの実線) */
}


/*------ テキストサイズ　--------------------*/
.txt-small {
    font-size: 0.85em;
    margin-bottom:10px;

}

.txt-small img {
    width: 25px;
    height: 30px;
    margin: 3px 3px 0px 3px;
    }





/*---------- メインコンテンツ ----------*/
#contents-home {
  float: right;
  margin: 0;
  padding: 5px 5px 5px 5px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 1100px;
}



     #contents-home h2 {
        margin: 0 0 4px 0;
        padding: 14px 8px 8px 14px;
        line-height: 110%;
        font-size: 22px;
        color: #5b5b5b;
        background-image: url(../img/titlebar.png);
        background-repeat: no-repeat;
    }
	
#contents-sidebar {
  float: right;
  margin: 0;
  padding: 20px 5px 5px 5px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 800px;
}



     #contents-sidebar h2 {
        margin: 0 0 4px 0;
        padding: 14px 8px 8px 14px;
        line-height: 110%;
        font-size: 22px;
        color: #5b5b5b;
        background-image: url(../img/titlebar.png);
        background-repeat: no-repeat;
    }
#contents {
  float: right;
  margin: 0;
  padding: 20px 5px 5px 5px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 1060px;
}
/*----------WS2020page 20191127added----------*/
#ws2020 {
  margin: 15px auto;
  padding: 20px 5px 5px 5px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 1060px;
}
#ws2020contents {
  margin: 5px auto;
  padding: 5px 5px 5px 5px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 980px;
}

#ws2020title {
  text-align: center;
  padding: 5px 5px 5px 5px;
  color: #595959; 
  font-size: 35px;
  font-weight: bold;
  line-height: 100%;
   width: 980px;
}


    #contents h2 {
        margin: 0 0 4px 0;
        padding: 14px 8px 8px 14px;
        line-height: 110%;
        font-size: 22px;
        color: #5b5b5b;
        background-image: url(../img/titlebar.png);
        background-repeat: no-repeat;
    }

#contents p {
  margin: 18px 0 18px 35px;
  padding: 0 5px 0 5px;
  line-height: 180%;
  letter-spacing: 1px;
}

#contents ul {
  list-style-type: square;
  margin: 18px 20px 18px 65px;
  padding: 0 5px 0 50px;
  line-height: 180%;
  letter-spacing: 1px;
}


#contents img.head_photo {
  margin: 0 0 10px 0;
}

#contents img.photo {
  float: left;
  margin: 10px 20px 0 0;
}

#contents img.picture {
  margin: 0 10px 10px 0;
  float: left;
}

#contents p.photo {
  margin: 0 0 20px 0;
  padding: 0;
}

table#t01 {
  border: solid 1px #999999;
  border-collapse: collapse;
}


td#t01 {
  border: solid 1px #999999;
  border-collapse: collapse;
}


td#head {
  padding: 6px;
  border: solid 1px #999999;
  border-collapse: collapse;
}



/*---------- パンくずリスト------2018.2. add--------*/
#breadcrumb {
    font-size: 14px;
    margin: 0;
    padding: 10px 15px 20px 10px;
    line-height: 1;
}

a:link {
  color: #004080;
  font-size: 14px;
}

a:hover {
  color: #005ebb;
  font-size: 14px;
}

a:visited {
  color: #004080;
  font-size: 14px;
}

/*---------- What's New -----2017.12. add-----*/

#news {
	font-family:  arial, "ヒラギノ角ゴ Pro W3", "Hiragino KaKu Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;
    font-size: 14px;
    height: 600px;
    width: 1060px;
	box-sizing: border-box;
    padding-left: 40px;
    padding-right: 50px;
    border: 1px solid #CCC;
    overflow: auto;
    line-height: 25px;
}

/*------------ 新着ラベル------------------*/
.label-orange {
    background-color: #F08B53;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1), 1px 1px 0 rgba(255,255,255,0.5);
}

.label-green {
    background-color: #C0D674;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1), 1px 1px 0 rgba(255,255,255,0.5);

}

.label-yellow {
    background-color: #FDC868;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1), 1px 1px 0 rgba(255,255,255,0.5);
}

.label-blue {
    background-color: #80B5DA;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1), 1px 1px 0 rgba(255,255,255,0.5);
}

.label {
    padding: 0 0.7em;
    font-size: 1em;
    border-radius: 0.3em;
}

/*---------- Event --------2017.12. add--------*/

#event {
	font-family:  arial, "ヒラギノ角ゴ Pro W3", "Hiragino KaKu Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;
    font-size: 13px;
    height: 800px;
    width: 160px;
	box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #CCC;
    overflow: auto;
    line-height: 25px;
}


/*---------- メンバーページのテーブルレイアウト ----2017.10. add ------*/
table.mblayout {
    border: 1px solid #999;
    border-collapse: collapse;
    width: 80%;
}

table.mblayout th, table.mblayout td {
        border-left: 1px solid #999;
        border-bottom: 1px solid #999;
        padding: 5px;
    }

table.mblayout th {
        background-color: #eee;
        text-align: center;
    }

/*table td.atstyle2 {
        font-size: 12px;
        width:425px;
        text-align: left;
    }
*/

.hdth1 { width: 180px;}
.hdth2 { width: 430px;}
.hdth3 { width: 220px;}


/*---------- メンバーページのテーブルレイアウト ----2017.10. add end ------*/

/*---------- プログラムページのテーブルレイアウト ----2017.11. add ------*/
table.prlayout {
    border: 1px solid #999;
    border-collapse: collapse;
    width: 100%;
}

table.prlayout th, table.prlayout td {
        border-left: 1px solid #999;
        border-bottom: 1px solid #999;
        padding: 5px;
    }

table.prlayout th {
        background-color: #eee;
        text-align: center;
    }

/*table td.atstyle2 {
        font-size: 12px;
        width:425px;
        text-align: left;
    }
*/

.hdth3 { width: 125px;}
.hdth4 { width: 125px;}
.hdth5 { width: 400px;}

/*---------- プログラムページのテーブルレイアウト ----2017.11. add end ------*/

/*---------- メニュー ----------*/  
/*---------- メニュー -----2018.6.add---------*/

#menu {
  float: left;
  margin: 16px 0 15px 0;
  padding: 0;
  width: 240px;
  bottom: 0;
  text-align: left;
  background-image:;
}

#menu h2 {
  margin: 0 0 4px 0;
  padding: 14px 8px 8px 14px;
  line-height: 110%;
  font-size: 20px;
  color: #5b5b5b;
  background-image: url(../img/menutitle.png);
  background-repeat: no-repeat;
}


.menulist {
    margin: 0 0 14px 0;
    padding: 5px 2px 10px 5px;
    width: 220px;
    text-align: left;
   
}

    .menulist h2 {
        margin: 0;
        padding: 7px 0 6px 12px;
        line-height: 110%;
        font-size: 14px;
        color: #2B2E2E;
        background-repeat: no-repeat;
    }

.menulist a{
  color: #2B2E2E;
  display: block;
  border-bottom: solid 1px #9f9f9f;
  width: 190px;
  padding: 5px 4px 4px 20px;
  font-size: 14px;
  line-height: 160%;
 
 }
 

    .menulist a:hover {
        color: #005ebb;
        background-image: url(../img/sideicon.png);
        background-repeat: no-repeat;
    }

/*--
.menu_free {
    margin: 0 0 14px 0;
    padding: 5px 2px 1px 5px;
    width: 190px;
    text-align: left;
    letter-spacing: 1px;
    background-image: url(../img/menu_back.png);
}

    .menu_free h2 {
        margin: 0;
        padding: 7px 0px 6px 12px;
        line-height: 110%;
        font-size: 13px;
        color:  #2B2E2E;
        background-image: url(../img/sidebar.png);
        background-repeat: no-repeat;
    }

.menu_free a{
  color: #004080;
  width: 138px;
  padding: 6px 0 5px 0;
  font-size: 12px;
  background-color: #f3f3f2;
 }

.menu_free a:hover{
  color: #005ebb;
  background-color: #f3f3f2;
}

.menu_free p{
  margin: 10px 4px 0 4px;
  font-size: 12px;
  background-color: #f3f3f2;
  line-height: 180%;
  letter-spacing: 1px;
}

#menu p {
  margin: 10px 4px 0 4px;
  line-height: 180%;
}
--*/

/*---------- サイトマップ ----------*/

#sitemap {
  float: right;
  margin: 0;
  padding: 5px 5px 5px 5px;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 1px;
  width: 1000px; 
  border-bottom: none;
}

#sitemap a:link {
  color: #004080;
  font-size: 16px;
}

#sitemap a:hover {
  color: #005ebb;
  font-size: 16px;
}

#sitemap a:visited {
  color: #004080;
  font-size: 16px;
}

.sm_list {
	padding:0.5em;
	list-style-type:none;
}

.sm_list li {
	position:relative;
	padding: 0em 0.3em 0.5em 1.3em;
}

.sm_list li:before {
	position:absolute;
	content:'';
	top: 0.5em;
	left: 0.2em;
	height:0;
	width:0;
	border-style: solid;
	border-width: 6px 0 6px 9px;
	border-color: transparent transparent transparent #F08B53;
}

.sm_list ul {
	padding:0.5em;
	list-style-type:none;
}

.sm_list li ul {
	position:relative;
	padding: 0em 0.3em 0.3em 3em;
}

.sm_list li ul :before {
	position:absolute;
	content:'';
	top: 0.5em;
	left: 0.2em;
	height:0;
	width:0;
	border-style: none;
}


/*---------- フッター ----------*/

#footer {
  clear: both;
  width: 100%;
  height: 50px;
  margin: 0 0 0 0;
  padding: 40px 0 20px 0;
  text-align: center;
  font-size: 12px;
  color: #333333;
  background-color: #ffedcc;
}

#footer a {
  color: #333333;
  font-size: 12px;
 }

#footer a:hover {
  color: #333333;
}