/*------------------------*/
/* 画面全体の基本的な設定     */
/*------------------------*/
* {
    /* 全体のパディングとマージンをクリアする */
    margin  : 0px;
    padding : 0px;
    word-wrap : break-word;
    word-break : break-all;
}

#content_wrapper {
    /* 画面全体の背景や色、フォントの設定(ブログコンテンツ外側も含む) */
    font : 10px/1.5em "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka", "Verdana", sans-serif;
    color : #FFFFFF;
}

#content_wrapper #content {
    /* ブログコンテンツ全体の設定 */
    width  : 760px ;
    margin : 0px auto;
}


/*------------------------------*/
/* ヘッダータイトルに関する指定 */
/*------------------------------*/
#content #header {
    /* タイトルの大きさや背景画像、文字色を定義する */
    height : 234px;
    background : url("/template/2014/img/header.png") no-repeat center top;
    border-top : 1px solid white;    /* Firefox対応 */
    color : #FFFFFF;
    /* 折り返しの対応 */
    line-height : 4px;
    position : relative;
    overflow : hidden;
}
 
#header #blogname {
    margin : 85px 200px 0px 35px;
    font-size : 24px;
    line-height : 24px;
    overflow : hidden;
}

#header #description {
    margin : 10px 200px 0px 35px;
    font-size : 14px;
    color : #333333;
    line-height : 14px;
    height: 45px;
    overflow : hidden;
}

#header #navigator {
    font-size : 12px;
    line-height : 12px;
    width : 760px; 
    height : auto;
    font-weight : bold;
    text-align : center;
    
    /* 一番下に貼り付ける記述 */
    position : absolute;
    bottom : 10px;
}

div#header a         { color : #FFFFFF; text-decoration : none; background : none; }
div#header a:link    { color : #FFFFFF; text-decoration : none; background : none; }
div#header a:visited { color : #FFFFFF; text-decoration : none; background : none; }
div#header a:active  { color : #FFFFFF; text-decoration : none; background : none; }
div#header a:hover   { color : #FFFFFF; text-decoration : none; background : none; }


/*----------------------------*/
/* メニュー・記事に関する設定 */
/*----------------------------*/
#content #main {
    /* ブログ記事の表示位置の調整 */
    width : 760px;
    margin : 0px;
    background-color : #FFFFFF;
}

#main .left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 165px;
    overflow : hidden;
    
    /* サイドメニュースペースと見出しの隙間は、ここで調整*/
    margin-bottom : auto;
    padding : 10px 10px 0px;
    float : left;
    color : #666666;
    background : url("/template/2014/img/side_bg1.png") no-repeat top;
}

#main .middle {
    /* 記事の幅(予定幅 - マージン左右 - パディング左右) */
    height : auto;
    width : 575px;
    padding : 10px 0px 0px;
    float : right;
    color : #FFFFFF;
    overflow : hidden;
    background : url("/template/2014/img/middle_bg1.png") no-repeat top;
}

/*--------------*/
/* メニュー設定 */
/*--------------*/
#content_wrapper #content #main .side {
    /* サイドの一項目（カレンダー・最新記事など）*/
    width : 155px;
    
    /* 項目と項目の隙間は、ここで指定します */
    margin-bottom : 15px;
}

.side .side_title {
    /* サイドメニューのタイトル */
    height : 20px;
    padding-left : 24px;
    font-weight : bold;
    color : #333333;
    background : url("/template/2014/img/header_side.gif") no-repeat;  
}

.side .calendar_bg {
    /* カレンダー全体 */
    padding : 0px;
    background :#EEEEEE;
}

.side .calendar_bg th.calendar {
    /* 曜日 */
    padding : 0 4px;
    text-align : center;
    vertical-align : center;
}

.side .calendar_bg td.calendar {
    /* 日付 */
    padding : 0 4px;
    text-align : center;
}

.side .side_text, .side .profile_name_text {
    width : 145px;
    padding : 3px 10px;
    background :#EEEEEE;
    white-space : normal;
    overflow-x : hidden;
}

/* ぷろふのテキストは横パディングしない */
.side .profile_name_text .side_text, .side .side_text .side_text {
    padding : 3px 0px;
}

/*------------*/
/* 記事の設定 */
/*------------*/
#content #main .middle .entry {
    height : 100%;
    margin-bottom : 15px;
}

#content #main .middle .entry_header {
    /* 記事投稿日 */
    height : 20px;
    padding : 0px 10px;
    font-weight : bold;
    /* background : url("/template/2014/img/uline_main.png") no-repeat center bottom;  */
}

#main .middle .title {
    /* 記事のタイトル */
    font-weight : bold;
    margin-top : 10px;
    margin-left : 10px;
    padding : 10px 10px 10px 20px;
    background : url("/template/2014/img/header_maintitle.png") no-repeat center left;
}

#main .middle .entry_text {
    font-size : 12px;
}

#main .middle .entry div.text, .comment_layer {
    /* 本文 */
    width : 555px;
    white-space : normal;
    overflow-x : hidden;
    padding : 10px;
    line-height : 18px;
    font-size : 12px;
}

#main .middle .continue {
    /* 続きを読む */
    padding : 10px 10px;
    font-size :12px;
}

#main .middle .posted {
    /* 記事の投稿者 */
    padding : 0px 5px;
    font-size : 10px;
    color : #FFFFFF; 
    /* background : url("/template/2014/img/uline_main.png") no-repeat center bottom;   */

    /* 記事と記事の間隔はここで指定 */
    margin-bottom : 10px;
}

#main .middle .posted2 {
    /* 記事の投稿者 */
    padding-top : 10px;
    font-size : 10px;
    text-align : right;
}

#content #footer {
    margin : 0px auto;
    text-align : center;
}

ul {
    list-style-type : none;
}


/* -------------- */
/* リンク色の設定     */
/* -------------- */
a         { color : #FFF; text-decoration : underline; background : none; }
a:link    { color : #FFF; text-decoration : underline; background : none; }
a:visited { color : #FFF; text-decoration : underline; background : none; }
a:active  { color : #FFF; text-decoration : underline; background : none; }
a:hover   { color : #FFF; text-decoration : underline; background : none; }

.side a         { color : #666; text-decoration : underline; background : none; }
.side a:link    { color : #666; text-decoration : underline; background : none; }
.side a:visited { color : #666; text-decoration : underline; background : none; }
.side a:active  { color : #666; text-decoration : underline; background : none; }
.side a:hover   { color : #666; text-decoration : underline; background : #CCC; }

.side .side_title a         { color : #333; text-decoration : none; background : none; }
.side .side_title a:link    { color : #333; text-decoration : none; background : none; }
.side .side_title a:visited { color : #333; text-decoration : none; background : none; }
.side .side_title a:active  { color : #333; text-decoration : none; background : none; }
.side .side_title a:hover   { color : #333; text-decoration : none; background : #CCC; }


/*----------------------*/
/* マイポータル共通記述 */
/*----------------------*/
#portal_left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 185px;
    padding-top : 20px;
    background : url("/template/2014/img/side_bg1.png") no-repeat center top;
    /* サイドメニュースペースと見出しの隙間は、ここで調整*/
    float : left;
    color : #666;
    overflow-x : hidden;
}

#portal_left .side {
    width : 165px;
    padding : 0px 10px 20px;
    background : url("/template/2014/img/side_bg2.png") repeat-y center top;
    overflow-x : hidden;
}

#portal_left br {
    line-height : 0px;
}

#portal_left .side_title {
    /* サイドメニュー(左)のタイトル部 */
    font-weight : bold;
    text-align : left;
    padding-left : 24px;
}

#portal_left .side_text {
    /* サイドメニュー(左)のテキスト部 */
    text-align : left;
}

#portal_right {
    /* 記事の幅(予定幅 - マージン左右 - パディング左右) */
    width : 555px;
    padding : 0px 10px;
    float : right;
    color : #FFFFFF;
    background : url("/template/2014/img/middle_bg1.png") no-repeat center top;
}

#portal_right .portal_title_box {
    /* 記事のタイトル */
    height : 35px;
    padding : 5px 35px;
    font-weight : bold;
    background : url("/template/2014/img/header_main.png") no-repeat center;
}

#portal_right .portal_title {
    /* 記事投稿日 */
    font-weight : bold;
    padding : 10px 10px 3px;
}

#portal_right .portal_text {
    text-align : left;
    font-size : 12px;
}

.cl { clear : both; padding : 0px;}

.head {
    font : 28px bold;
    color : #000;
    padding-left: 50px;
}

.head a         { font : 28px bold; color : black; text-decoration : none; background : none; padding-right: 10px; }
.head a:link    { font : 28px bold; color : black; text-decoration : none; background : none; padding-right: 10px; }
.head a:visited { font : 28px bold; color : black; text-decoration : none; background : none; padding-right: 10px; }
.head a:active  { font : 28px bold; color : black; text-decoration : none; background : none; padding-right: 10px; }
.head a:hover   { font : 28px bold; color : black; text-decoration : none; background : #998; padding-right: 10px; }
