/*------------------------*/
/* 画面全体の基本的な設定 */
/*------------------------*/
* {
    /* 全体のパディングとマージンをクリアする */
    margin  : 0px;
    padding : 0px;
    word-wrap : break-word;
    word-break : break-all;
}

#content_wrapper {
    /* 画面全体の背景や色、フォントの設定(ブログコンテンツ外側も含む) */
    color : #999;
    font : 10px/1.5em "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Osaka";
    background-color : #FFE0E0;
}

#content_wrapper #content {
    /* ブログコンテンツ全体の設定 */
    width  : 760px;
    background : #FFF url(/template/3010/img/bg.png) repeat-y center top;
    margin : 0px auto;
    padding : 0px 80px;
}


/*------------------------------*/
/* ヘッダータイトルに関する指定 */
/*------------------------------*/
#content #header {
    height : 260px;
    background : url("/template/3010/img/header.png") no-repeat center top;
    /* Firefox対応（色は背景に合わせてください） */
    border-top : 1px solid #FFE0E0;
    color : #F33;
    /* 折り返しの対応 */
    line-height : 4px;
    width : 760px;
    position : relative;
    overflow : hidden;
}

#header #blogname {
    font-size : 24px;
    line-height : 24px;
    vertical-align : center;
    width : auto; height : auto;
    overflow : hidden;
    margin : 96px 32px 0px 320px;
}

#header #description {
    font-size : 14px;
    line-height : 14px;
    height : 45px;
    overflow : hidden;
    margin : 5px 32px 0px 320px;
}

#header #navigator {
    font-size : 12px;
    line-height : 12px;
    width : 780px; height : auto;
    font-weight : bold;
    text-align : center;
    /* 一番下に貼り付ける記述 */
    position : absolute;
    bottom : 0px;
}

#header a         { color : #F33; text-decoration : none; background : none; }
#header a:link    { color : #F33; text-decoration : none; background : none; }
#header a:visited { color : #F33; text-decoration : none; background : none; }
#header a:active  { color : #F33; text-decoration : none; background : none; }
#header a:hover   { color : #F33; text-decoration : none; background : none; }


/*----------------------------*/
/* メニュー・記事に関する設定 */
/*----------------------------*/
#content #main {
    /* ブログ記事の表示位置の調整 */
    padding-top : 10px;
    overflow : hidden;
}

#main .left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 172px;
    padding-left : 8px;
    overflow : hidden;
}

#main .middle {
    /* 記事の幅(予定幅 - マージン左右 - パディング左右) */
    width : 372px;
    padding : 0px 14px;
    overflow : hidden;
}

#main .right {
    /* サイドメニュー(右)の大きさ、背景の調整 */
    width : 172px;
    padding-right : 8px;
    overflow : hidden;
}


/*--------------*/
/* メニュー設定 */
/*--------------*/
#content .side {
    /* サイドの一項目（カレンダー・最新記事など）*/
    color : #333;
    /* 項目と項目の隙間は、ここで指定します */
    padding-bottom : 20px;
    background : #FFE7D9 url(/template/3010/img/side_footer.png) no-repeat center bottom;
    margin-bottom : 15px;
}

.side .side_title {
    /* サイドメニューのタイトル */
    height : 26px;
    font-weight : bold;
    padding-top : 3px;
    padding-left : 40px;
    color : #F30;
    background : url(/template/3010/img/side_header.png) no-repeat center top;
}

.side .calendar_bg {
    /* カレンダー全体 */
    background : url(/template/3010/img/side_bg.png) repeat-y top;
    padding : 0px;
}

.side .calendar_bg th.calendar {
    /* 曜日 */
    padding : 0px 4px;
    text-align : center;
    vertical-align : center;
}

.side .calendar_bg td.calendar {
    /* 日付 */
    padding : 0 4px;
    text-align : center;
}

.side .side_text, .profile_name_text {
    width : 154px;
    padding : 0px 9px 4px;
    white-space : normal;
    overflow-x : hidden;
    background : url(/template/3010/img/side_bg.png) repeat-y top;
}

/* ぷろふのテキストは横パディングしない */
.side .profile_name_text .side_text, .side .side_text .side_text {
    padding : 0px 0px 4px;
}


/*------------*/
/* 記事の設定 */
/*------------*/
#content #main .middle .entry {
    /* 記事と記事の間隔はここで指定 */
    margin-bottom : 30px;
    background : url(/template/3010/img/main_bg.png) repeat-y center top;
}

#main .middle .entry_header {
    /* 記事投稿日 */
    font-weight : bold;
    padding : 5px 10px 0px 40px;
    height : 24px;
    color : #F30;
    background : url(/template/3010/img/main_header.png) no-repeat center;
}

#main .middle .title {
    /* 記事のタイトル */
    font-weight : bold;
    font-size : 12px;
    padding : 10px;
    color : #333;
}

#main .middle div.text, .comment_layer {
    /* 本文 */
    width : 352px;
    font-size : 12px;
    line-height : 18px;
    padding : 10px;
    color : #666;
    white-space : normal;
    overflow-x : hidden;
}


#main .middle .entry_text {
    font-size : 12px;
}

#main .middle .continue {
    /* 続きを読む */
    font-size : 12px;
    padding : 5px 10px;
}

#main .middle .posted {
    /* 記事の投稿者 */
    font-size : 10px;
    padding : 10px;
    background : url(/template/3010/img/main_footer.png) no-repeat bottom;
}

#main .middle .posted2 {
    /* 記事の投稿者 */
    font-size : 10px;
    padding : 10px;
}

#content #footer {
    margin : 0px auto;
    text-align : center;
}

li {
    list-style-type: none;
}

/* -------------- */
/* リンク色の設定 */
/* -------------- */
a         { color : #999; text-decoration : none; background : none; }
a:link    { color : #999; text-decoration : none; background : none; }
a:visited { color : #999; text-decoration : none; background : none; }
a:active  { color : #999; text-decoration : none; background : none; }
a:hover   { color : #FFF; text-decoration : none; background : #CCC; }

.side a         { color : #666; text-decoration : none; background : none; }
.side a:link    { color : #666; text-decoration : none; background : none; }
.side a:visited { color : #666; text-decoration : none; background : none; }
.side a:active  { color : #666; text-decoration : none; background : none; }
.side a:hover   { color : #FFF; text-decoration : none; background : #CCC; }

.side .calendar_bg a         { color : #998; text-decoration : underline; background : none; }
.side .calendar_bg a:link    { color : #998; text-decoration : underline; background : none; }
.side .calendar_bg a:visited { color : #998; text-decoration : underline; background : none; }
.side .calendar_bg a:active  { color : #998; text-decoration : underline; background : none; }
.side .calendar_bg a:hover   { color : #FFF; text-decoration : underline; background : #CCC; }

.side .side_title a         { color : #F30; text-decoration : none; background : none; }
.side .side_title a:link    { color : #F30; text-decoration : none; background : none; }
.side .side_title a:visited { color : #F30; text-decoration : none; background : none; }
.side .side_title a:active  { color : #F30; text-decoration : none; background : none; }
.side .side_title a:hover   { color : #F30; text-decoration : none; background : none; }

/*----------------------*/
/* マイポータル共通記述 */
/*----------------------*/
#portal_left {
    /* サイドメニュー(左)の大きさ、背景の調整 */
    width : 172px;
    padding-top : 10px;
    padding-left : 8px;
    float : left;
    overflow-x : hidden;
}

#portal_left .side_title {
    /* サイドメニュー(左)のタイトル部 */
    font-weight : bold;
    text-align : left;
    padding-top : 5px;
    padding-left : 30px;
}

#portal_left .side_text {
    /* サイドメニュー(左)のテキスト部 */
    text-align : left;
    ;
}

#portal_right {
    /* ポータル(右)の大きさ、背景の調整 */
    width : 500px;
    margin : 12px 40px;
    padding-bottom : 20px;
    float : right;
    color : #930;
    /* background : url(/template/3010/img/main_bg2.png) repeat-y center top; */
    background : #FFE7D9 url(/template/3010/img/main_footer2.png) no-repeat center bottom;
}

#portal_right .portal_title_box {
    /* ポータルのタイトル部(外側) */
    height : 24px;
    padding-top : 6px;
    font-weight : bold;
    color : #F60;
    background : #FFF url(/template/3010/img/main_header2.png) no-repeat center bottom;
}

#portal_right .portal_title {
    /* ポータルのタイトル部(内側) */
    text-align : left;
    padding-left : 50px;
}

#portal_right td.portal_text {
    /* 本文 */
    line-height : 18px;
    padding : 7px;
    color : #930;
}

#portal_right div.portal_text {
    /* 本文 */
    text-align : left;
    border-left : 2px solid #FFC4A6;
    border-right : 2px solid #FFC4A6;
    width : 476px;
    font-size : 12px;
    padding : 5px 10px;
}

.cl {
    clear : both; padding : 0px;
}

.head {
    font : 28px bold;
    padding-right: 70px;
}

.head a         { color : white; text-decoration : none; background : none; }
.head a:link    { color : white; text-decoration : none; background : none; }
.head a:visited { color : white; text-decoration : none; background : none; }
.head a:active  { color : white; text-decoration : none; background : none; }
.head a:hover   { color : white; text-decoration : none; background : #998; padding-right: 10px; }
