@charset "utf-8";

/*------------------------------------------------------
     ページレイアウト（ボタン関連はbutton.css記述）
--------------------------------------------------------*/
/* ページ全体
------------------------------------------*/
body {
  font-family: "ＭＳ Ｐゴシック",sans-serif;
  font-size: 14px;
  line-height: 165%;
  margin: 0px;
  padding: 0px;
  background-color: #FFFFFF;
  -webkit-text-size-adjust: 100%;
}

/* #container */
/*  コンテンツページ
         横幅サイズ
------------------------*/
#containerBox {
    width: 96%;  /*デバイスの96%幅に指定*/
    margin: 4px auto;  /*上下に余白、左右はオート*/
    border-radius: 16px;  /*角丸ボーダーに*/
}


/*  トップページ
         横幅サイズ
------------------------*/
#conWidth {
    width:98%;
    margin:0 auto;
}

/* 最少width指定
-------------------------*/
.minWidth80p {
    min-width:80px;
}

/* ボーダー非表示
-------------------------*/
.borNone {
    border:0;
}
.notBorBtm{
	border-bottom-width:none;
}

/* display指定
-------------------------*/
.blockSpan {
    display:block;
}

/* clear指定
-------------------------*/
.clear {
    clear:both;
}

/* クリア用hr
-------------------------*/
hr.cl {
	display:none;
	margin:0;
	padding:0;
	clear:both;
}

/* IE不具合回避 br
-------------------------*/
br {
	letter-spacing: 0;
}

/* リンク関連
------------------------------------------*/
a:link {
  color: #800000;
  letter-spacing: .1em;
}
a:visited {
    color:#8B5A2B;
    text-decoration:underline;
}
a:hover img {
  border: none;
}
a img {
  border: none;
}


/* p段落関連
------------------------------------------*/
p {
  margin: 0px;
  padding: 0px;
}


/*
   リスト関連
------------------------------------------*/
ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

/* 横並びテキストリンク：下線付
-------------------------*/
.txtLink {
    padding.2em;
    border-bottom:1px solid #ccc;
}
ul.txtLink li {
    display: inline;
    margin: 0 2px;
    padding: 0 0 1px 4px;
    border-left:1px solid #ccc;
}
ul.txtLink li:nth-child(1) {
    border:0;
    margin:0;
    padding:0;
}
ul.txtLink li a {
    display: inline-block;
    padding: 1px 5px;
    text-decoration: none;
    vertical-align: middle;
}
ul.txtLink li a:hover {
    text-decoration:underline;
}

/* 横並びテキストリンク：下線無し
-------------------------*/
.txtLinkNob {
    padding.2em;
}
ul.txtLinkNob li {
    display: inline;
    margin: 0 2px;
    padding: 0 0 1px 4px;
    border-left:1px solid #ccc;
}
ul.txtLinkNob li:nth-child(1) {
    border:0;
    margin:0;
    padding:0;
}
ul.txtLinkNob li a {
    display: inline-block;
    padding: 1px 5px;
    text-decoration: none;
    vertical-align: middle;
}
ul.txtLinkNob li a:hover {
    text-decoration:underline;
}

/* 縦並びテキストリンク：下線付
-------------------------*/
.txtTanLink {
    padding:.2em .2em .3em;
    /* border-bottom:1px solid #ccc; */
}
ul.txtTanLink li {
    display: block;
    margin:8px 0;
    padding:0;
    /* border-left:1px solid #ccc; */
    /* background:#efefef; */
}
/*
ul.txtTanLink li:nth-child(1) {
    border:0;
    margin:0;
    padding:0;
}
*/
ul.txtTanLink li a {
    display: block;
    padding: 5px;
    text-decoration: none;
    vertical-align: middle;
    /* letter-spacing: .1em; */
    background:#ffedd2;
    border:1px solid #ffdead;
    border-radius: 4px;        /* CSS3草案 */
    -webkit-border-radius: 4px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 4px;   /* Firefox用 */
}
ul.txtTanLink li a:hover {
    /* text-decoration:underline; */
    background:#f6f6f6;
    border:1px solid #ddd;
}


/*
   フォーム関連
----------------------------------*/
/*
input, select {
  font-size: 14px;
}
*/
select {
  font-size: 14px;
}

textarea {
  width: 240px;
}

/* フォームスタイル
       サイズなどもろもろ指定用
-------------------------*/
.inp240 {
	height:20px;
	width:240px;
}

/* フォーム横テキスト
       ラベル代用
-------------------------*/
.labelTxt {
    display:block;
    color:#666;
    font-weight:bold;
    font-size:14px;
}
/* プロフィール-----  */
.labelTxtPrf {
    display:block;
    color:#FF66CC;
    font-weight:bold;
    font-size:14px;
}

/* フォーム下テキスト
       注釈用（家計簿機能など）
-------------------------*/
.frmTxt {
    display:block;
    padding:.1em .2em;
    color:#666;
    font-weight:normal;
    font-size:85%;
}

/*
       画像修飾（投稿画像サムネイル）
       みんなの日記・コミュニティ一覧、詳細
------------------------------------------*/
img.thumbnail {
    float: left;
    margin: 10px 20px 20px 0;
    vertical-align: bottom;
}

/* コミュニティ詳細画像
       コミュニティ画像、投稿画像
-------------------------*/
img.topThumbnail {
    float: left;
    margin: 10px 20px 20px 0;
    vertical-align: top;
}
#thumbnailBox img.thumbnail {
    clear:both;
    margin: 10px 10px 10px 0;
}


/* トップボーダー
   1px  solid  カラー複数
------------------------------------------*/
.borSolTopCCC {
    border-top:1px solid #ccc;
}
.borSolTopDDD {
    border-top:1px solid #ddd;
}
.borSolTopEEE {
    border-top:1px solid #eee;
}

/* トップボーダー
   1px  dotted（破線）  カラー複数
------------------------------------------*/
.borDotTop666 {
    border-top:1px dotted #666;
}
.borDotTopCCC {
    border-top:1px dotted #ccc;
}
.borDotTopDDD {
    border-top:1px dotted #ddd;
}
.borDotTopEEE {
    border-top:1px dotted #eee;
}


/* ボトムボーダー
   1px  solid  カラー複数
------------------------------------------*/
.borSolBtmCCC {
    border-bottom:1px solid #ccc;
}
.borSolBtmDDD {
    border-bottom:1px solid #ddd;
}
.borSolBtmEEE {
    border-bottom:1px solid #eee;
}

/* ボトムボーダー
   1px  dotted（破線）  カラー複数
------------------------------------------*/
.borDotBtmCCC {
    border-bottom:1px dotted #ccc;
}
.borDotBtmDDD {
    border-bottom:1px dotted #ddd;
}
.borDotBtmEEE {
    border-bottom:1px dotted #eee;
}


/* マージンclass
------------------------------------------*/

/* 上下 margin 10px
-------------------------*/
.topMar10p {
    margin-top:10px;
}
.btmMar10p {
    margin-bottom:10px;
}

/* 上左右全体 margin .2em
-------------------------*/
.marCom2em {
    margin:.2em;
}
.topMarCom2em {
    margin-top:.2em;
}
.leftMarCom2em {
    margin-left:.2em;
}
.rightMarCom2em {
    margin-right:.2em;
}

/* 上左右全体 margin .4em
-------------------------*/
.marCom4em {
    margin:.4em;
}
.topMarCom4em {
    margin-top:.4em;
}
.btmMarCom4em{
	margin-bottom:.4em;
}
.leftMarCom4em {
    margin-left:.4em;
}
.rightMarCom4em {
    margin-right:.4em;
}


/* パディングclass
------------------------------------------*/

/* 上下左全体padding 10px
-------------------------*/
.par10p{
	padding:10px;
}
.topPar10p {
    padding-top:10px;
}
.btmPar10p {
    padding-bottom:10px;
}
.leftPar10p {
    padding-left:10px;
}
.rlPar10p {
    padding-right:10px;
	padding-left:10px;
}

/* 上下左右全体 padding .2em
-------------------------*/
.padCom2em {
    padding:.2em;
}
.topPadCom2em {
    padding-top:.2em;
}
.rightPadCom2em {
    padding-right:.2em;
}
.btmPadCom2em {
    padding-bottom:.2em;
}
.leftPadCom2em {
    padding-left:.2em;
}

/* 上下左右全体 padding .4em
-------------------------*/
.padCom4em {
    padding:.4em;
}
.topPadCom4em {
    padding-top:.4em;
}
.rightPadCom4em {
    padding-right:.4em;
}
.btmPadCom4em {
    padding-bottom:.4em;
}
.leftPadCom4em {
    padding-left:.4em;
}


/* フォントサイズ指定
------------------------------------------*/
.fontSmall {
    font-size:small;
}
.fontXsmall {
    font-size:x-small;
}
.fontMid {
	font-size:medium;
}

/* フォントカラー指定
------------------------------------------*/
.red {
    color:#FF0000;
}
.color999 {
    color:#999;
}
.deepPink {
	color:#ff1493;
}
.prfCC {
    color:#00CC33;
}


/* テキスト配置指定
------------------------------------------*/
.txtCenter {
    text-align:center;
}
.txtRight {
    text-align:right;
}
.textRight {
    text-align:right;
}
.txtLeft {
    text-align:left;
}

/* エラーテキスト装飾
------------------------------------------*/
.errorTxt {
    color:#FF0000;
}
.error {
    color:#FF0000;
}


/* 背景指定
------------------------------------------*/
.Bg_oldlace{
	background:#fdf5e6;
}
.Bg_mistyRose{
    background:#ffe4e1;
}



/*-----------------------------------------------
  見出しタイトル関連
-----------------------------------------------*/
h1 {
  text-align: center;
  margin: 0px;
  padding: 0px;
}

/* 背景ボーダーあり見出し
------------------------------------------*/
h1.pageTitle {
    color:#6b8e23;
    text-align:center;
    font-size:small;
    font-weight: bold;
    background:#f0ede8;
    border-bottom:1px solid #acacac;
}

/* コンテンツ
       装飾ｈ4見出し
------------------------------------------*/
h4.subTitle{
border:1px solid #acacac;
margin:0;
padding:3px 5px;
/* background:#f0ede8; */
background:#f7f5ec;
color:#e87800;
font-size:13pt;
font-weight:bold;
text-shadow:1px 1px 1px #eee;
background:#f0ede8;
}

/* お知らせ詳細
       ｈ2装飾見出し
------------------------------------------*/
h2.titleH2{
    margin-bottom:5px;
    /*
    padding:.5em .2em .2em;
    font-size:12pt;
     */
    padding:5px .2em;
    font-size:100%;
    color:#333;
    text-shadow:1px 1px 1px #ccc;
    /* border-bottom:1px solid #ccc; */
    border-bottom:1px dotted #666;
}
.subTitleH2{
    display: block;
    padding:.1em 0 0 0;
    font-size:.8em;
    font-weight: bold;
    color:#aaa;
    text-shadow:none;
}
.subTitleH202{
    display: block;
    padding:.1em 0 0 0;
    font-size:.8em;
    font-weight: normal;
    color:#333;
    text-shadow:none;
}

h3.titleH3{
    margin-bottom:5px;
    padding:.5em .2em .2em;
    font-size:10pt;
    color:#333;
    text-shadow:1px 1px 1px #ccc;
    /* border-bottom:1px solid #ccc; */
    border-bottom:1px dotted #666;
}

h3.titleH302{
    margin-bottom:5px;
    padding:.5em .2em .2em;
    /* font-size:10pt; */
    font-size:110%;
    font-weight:bold;
    color:#dfa113;
    text-shadow:1px 1px 1px #ccc;
    border-bottom:1px dotted #999;
}

/* 矢印付見出し
------------------------------------------*/
.arrowRightx16 {
    display:block;
    margin-top:5px;
    padding-left: 20px;
    background: url(../images/arrowRight_16.png) no-repeat left 3px;
    list-style: none;
    font-size:18px;
}
.arrowRightx16 a {
    text-decoration: none;
}
.arrowRightx16 a:hover {
    text-decoration:underline;
}

/* 子見出しあり矢印付
------------------------------------------*/
h2.arrowTitleH2{
    margin-bottom:5px;
    padding:.5em .2em .2em 1.2em;
    background: url(../images/arrowRight_16.png) no-repeat left 12px;
    font-size:18px;
    color:#333;
    text-shadow:1px 1px 1px #ccc;
    border-bottom:1px dotted #666;
}
.subArrowTitleH2{
    display: block;
    padding:.1em 0 0 0;
    font-size:.8em;
    font-weight: bold;
    color:#aaa;
    text-shadow:none;
}


/* ページトップタイトル
       コンテンツ内のタイトルとも兼用？
------------------------------------------------*/
.pageTopTitle {
    padding:2px 0;
    background:#f0ede8;
    text-align:center;
    color:#7d4c33;
    font-size:10pt;
    border-bottom:1px solid #dfdfdf;
}

/* myHeader広告
------------------------------------------------*/
.hedAdBox {
	padding:0 0 10px;
	text-align:center;
	clear:both;
}

/* トップページ広告
------------------------------------------------*/
.topAdBox {
	padding:5px 0 0;
	text-align:center;
	clear:both;
}

/* 日記・コミュニティトップページ広告
------------------------------------------------*/
.snsTopAdBox {
    padding:0 0 13px;
    text-align:center;
    clear:both;
}

/* 日記・コミュニティ詳細ページ広告
------------------------------------------------*/
.snsDetailAdBox {
    padding:10px 0;
    text-align:center;
    clear:both;
}

/* myFooter広告
------------------------------------------------*/
.fotAdBox {
	padding:8px 0 3px;
	text-align:center;
	clear:both;
}

/* テキスト広告
------------------------------------------------*/
.topAmazonAdd {
    clear:both;
    display:block;
    /*
    height:10px;
    margin:14px auto;
    */
    padding:5px 8px 6px;
    font-size:10pt;
    text-align:center;
}


/*  一覧ページ
         項目名
------------------------------------------------*/

.listName {
    display:block;
    line-height:10pt;"
}

/* 確認画面
       項目名
------------------------------------------------*/
.confTxt {
    display:block;
    color:#333;
    font-weight:bold;
    font-size:14px;
}


/* ページ送りナビ
   1ページ、複数ページ対応
------------------------------------------------*/
#pagingArea {
    text-align: center;
}

ul.pageNavi {
    margin: 0;
    padding: 10px 10px 0;
    text-align: center;
}
ul.pageNavi li {
    display: inline;
    /* height:25px; */
    margin: 0 2px;
    padding: 0;
    line-height: 25px;
}
ul.pageNavi li a {
    display: inline-block;
    margin:0 0 5px 0;
    padding: 1px 8px;
    background: #eee;
    text-decoration: none;
    vertical-align: middle;
    border:1px solid #dedede;
}
ul.pageNavi li span {
    display: inline-block;
    margin:0 0 5px 0;
    padding: 1px 8px;
    font-weight:bold;
    text-decoration: none;
    vertical-align: middle;
    color:#fff;
    border:1px solid #5e5951;
    background: #716c61;
}
ul.pageNavi li a:hover {
    text-decoration:underline;
    border-color:#bbb;
}
span.pagesCnt {
    color:#666;
    font-size:small;
}


/* バックページトップ
      ページ上部移動ナビ
------------------------------------------------*/
p.pageTop {
text-align:center;
font-size:small;
border-top:3px solid #FFCC99;padding:5px 0;
}


/* トップページ
        ログインボタン
-------------------------------------------------*/
.loginTop {
    width:98%;
    height:30px;
    /* margin:0px auto; */
    margin:5px auto 0;
}
.loginTop p {
    -webkit-box-shadow: 0px 1px 4px rgb(51, 51, 51);
    -moz-box-shadow: 0px 1px 4px rgb(51, 51, 51);
    -ms-box-shadow: 0px 1px 4px rgb(51, 51, 51);
    box-shadow: 0px 1px 4px rgb(51, 51, 51);
    background-image: -webkit-gradient(linear, left top, left bottom,color-stop(0, rgb(237, 237, 237)),color-stop(0.4, rgb(204, 204, 204)));
    background-image: -moz-linear-gradient(-90deg,rgb(237, 237, 237) 0%,rgb(204, 204, 204) 40%);
    background-image: linear-gradient(-90deg,rgb(237, 237, 237) 0%,rgb(204, 204, 204) 40%);
    /* text-shadow: 1px 1px 0px rgb(255, 255, 255); */
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    font-size: 16px;
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#ffededed, endcolorstr=#ffcccccc, gradienttype=0)) progid:DXImageTransform.Microsoft.Shadow(color=#333333, direction=180, strength=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startcolorstr=#ffededed, endcolorstr=#ffcccccc, gradienttype=0)) progid:DXImageTransform.Microsoft.Shadow(color=#333333, direction=180, strength=1)";
    zoom: 1;
}
.loginTop p a {
  display:block;
  /* height:30px; */
  padding:10px 0;
  color:#333;
  font-size: 16pt;
  letter-spacing:0.3em;
  text-align:center;
  /* text-shadow: 1px 1px 0px rgb(255, 255, 255); */
  text-decoration: none;
  font-weight: bold;
}


/* トップページ
       「家計簿を書く」「マイページ」ボタン
-------------------------------------------------*/

/*
#subMenu {
    width:98%;
    margin:3px auto 0;
    padding:0;
}
*/

#subMenu {
    text-align: center;
    overflow: hidden;
}
#subMenu ul{
    padding: 0;
    margin: 0 auto;
    list-style-type: none;
    float: left;
    position: relative;
    left: 50%;
    width: 98.8%;
}
#subMenu li{
    float: left;
    position: relative;
    right: 50%;
    width: 50%;
}
#subMenu a{
    display: block;
    width: auto;
    margin:2px 3px;
    padding: 12px 0;
    cursor: pointer;
    background: #E9E9E9;
    outline: none;
    vertical-align: baseline;
    text-decoration: none;
    white-space:nowrap;
    color: #606060;
    font: 14px/100% Arial, Helvetica, sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    border-radius: .4em;
    -webkit-border-radius: .4em;
    -moz-border-radius: .4em;
    border: solid 1px #DEDEDE;
}
#subMenu a:link, #subMenu a:visited {
    color: maroon;
}
#subMenu a:hover {
    border: solid 1px #DEDEDE;
    background: #F3F3F3;
    color: #606060;
}

.myKakiboBtn {
    display:inline;
    float:left;
    width:49.6%;
    height:38px;
    box-sizing:border-box;
    padding:10px 0 0;
    font-size:12pt;
    -moz-box-sizing:border-box; /* firefoxだとズレるので */
}
.myPageBtn {
    display:inline;
    float:right;
    width:49.6%;
    height:38px;
    box-sizing:border-box;
    padding:10px 0 0;
    font-size:12pt;
    -moz-box-sizing:border-box; /* firefoxだとズレるので */
}


/* ヘッダー
------------------------------------------------*/
#header {
  width: 320px;
  height:65px;
  margin: 0px;
}

.hed {
  margin:0;
  padding:3px 0 3px 5px;
  height:20px;
  background:#e87800;
  color:#fff;
  text-shadow:1px 1px 1px #8b5a2b;
  border-bottom:1px solid #dfc391; /* #ff9724; */
}
.hed a {
  color:#fff;
  text-decoration: none;
  font-size:12pt;
  font-weight: bold;
}
.hed a:link, .hed a:visited {
  color:#fff;
  text-decoration: none;
}


/* グローバルナビ
------------------------------------------------*/

#globalNavi {
	text-align: center;
	overflow: hidden;
}
#globalNavi ul{
	padding: 0;
	margin: 5px auto;
	list-style-type: none;
	float: left;
	position: relative;
	left: 50%;
	width: 98.8%;
}
#globalNavi li{
	float: left;
	position: relative;
	right: 50%;
	width: 50%;
	/* width: 33.3%; */
}
#globalNavi a{
	width: auto;
	display: block;
	height: 40px;
	/* padding: 7px 16px 0; */
	/* margin:2px auto; */
	color:#4b4b4b;
	font-size:11pt;
	font-weight: bold;
	letter-spacing:-0.1em;
	text-decoration: none;
	text-shadow:1px 1px 1px #ddd;
	/* borderで隙間作り */
	box-sizing: border-box;
	-moz-box-sizing:border-box;
	/* border-left:2px solid #fff;
	border-right:2px solid #fff;
	*/
	/* border:2px solid #fff; */
	/* 背景 */
	background:#f4e8c4;
	/* 角丸部分 */
	border-radius: 10px; /* CSS3草案 */
	-webkit-border-radius: 10px; /* Safari,Google Chrome用 */
	-moz-border-radius: 10px; /* Firefox用 */
}
#globalNavi li:nth-child(odd) a{
    /* 奇数メニューのみ */
    margin:2px 3px 5px 2px;
}
#globalNavi li:nth-child(even) a{
    /* 偶数メニューのみ */
    margin:2px 2px 5px 3px;
}

#globalNavi a:hover {
background:#f0ebe2;
border-radius: 10px;        /* CSS3草案 */
-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
-moz-border-radius: 10px;   /* Firefox用 */
}
#globalNavi a.on:link {
background:#f4e8c4;
border-radius: 10px;        /* CSS3草案 */
-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
-moz-border-radius: 10px;   /* Firefox用 */
}

#globalNavi a span#home{
    display: block;
    min-width: 124px;
    min-height: 32px;
    /* margin-top:-4px; */
    padding:4px 0 0 0;
    background: url(../images/gNaviHome.gif) no-repeat center center;
}
#globalNavi a span#kakei{
    display: block;
    min-width: 124px;
    min-height: 32px;
    /* margin-top:-4px; */
    padding:4px 0 0 0;
    background: url(../images/gNaviKakei.gif) no-repeat center center;
}
#globalNavi a span#diary{
    display: block;
    min-width: 124px;
    min-height: 32px;
    /* margin-top:-4px; */
    padding:4px 0 0 0;
    background: url(../images/gNaviDiary.gif) no-repeat center center;
}
#globalNavi a span#community{
    display: block;
    min-width: 124px;
    min-height: 32px;
    /* margin-top:-4px; */
    padding:4px 0 0 0;
    background: url(../images/gNaviCom.gif) no-repeat center center;
}


/*
        トライアル終了前メッセージ
------------------------------------------*/
.trialMsg {
	clear:both;
	margin: 0 0 7px;
	padding:5px 0;
	background:#ffd700;
	color:#8b0000;
	font-weight:bold;
	font-size:small;
	text-align:center;
	border-top:1px solid #d2691e;
	border-bottom:1px solid #d2691e;
}

/*
   コンテンツ
   お知らせ一覧 top
--------------------------------*/
.infoTopList {
 margin:.3em 0;
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}

.infoTopList ul li a{
 display:block;
 overflow:hidden;
 margin:0;
 width:100%;
 min-height:40px; /* 最小高さ */
 max-height:40px; /* 最大高さ */
 color:#333;
 font-size:110%;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 line-height:40px;
 background:#fff;
 border-bottom:1px solid #bbb;
 white-space:nowrap;
 text-overflow: ellipsis;
 -webkit-text-overflow: ellipsis;
 -o-text-overflow: ellipsis;
}

.infoTopList ul li a:hover {
  background:#eee;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.infoTopList ul li a span.infoDate {
  padding:0 5px 0 3px;
  font-weight:bold;
}
.infoTopList ul li a:visited span.infoDate {
  letter-spacing: 0.1em;
}
.infoTopList ul li a span.infoTitle {
  min-width:300px;
  overflow:hidden;
  color:#800000;
}

/*
   コンテンツ
   お知らせ一覧
--------------------------------*/
.infoList {
 margin:.3em 0;
 /* border:2px solid #025d7d; */
 /* background:#025d7d; */
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}

.infoList ul li a{
 display:block;
 overflow:hidden;
 margin:0;
 /* padding:0 .1em; */
 width:100%;
 min-height:40px; /* 最小高さ */
 max-height:40px; /* 最大高さ */
 color:#333;
/* font-size:130%; */
 font-size:100%;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 /* text-shadow:1px 1px 1px #bbb; */
 line-height:40px;
 background:#fff;
 border-bottom:1px solid #bbb;
 /*
 text-shadow:1px 1px 1px #025d7d;
 background:-webkit-gradient(linear, left top, left bottom, from(#85d7f4), to(#2da7d2));
 background: -moz-linear-gradient(top, #85d7f4, #2da7d2);
 */
 white-space:nowrap;
 text-overflow: ellipsis;
 -webkit-text-overflow: ellipsis;
 -o-text-overflow: ellipsis;
}

.infoList ul li a:hover {
  background:#eee;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.infoList ul li a span.infoDate {
  padding:0 5px 0 3px;
  font-weight:bold;
}
.infoList ul li a:visited span.infoDate {
  letter-spacing: 0.1em;
}
.infoList ul li a span.infoTitle {
  min-width:300px;
  overflow:hidden;
  color:#800000;
}

/*
   コンテンツ
   みんなの日記一覧
--------------------------------*/
.diaryList {
 margin:.3em 0;
 /* border:2px solid #025d7d; */
 /* background:#025d7d; */
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}

.diaryList li{
 display:block;
 overflow:hidden;
 margin:0;
 width:100%;
  /* 最小高さ */
 /* max-height:51px; */
 min-height:60px;
  /* 最大高さ */
 color:#333;
 font-size:16pt;
 font-weight:bold;
 text-align:left;
 /* text-decoration:none; */
 /* text-shadow:1px 1px 1px #bbb; */
 /* line-height:44px; */
 background:#fff;
 /* border-bottom:1px solid #bbb; */
 white-space: nowrap;
}

.diaryList li a {
 display:block;
 overflow:hidden;
 margin:0;
 padding:0;
 color:#333;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 /* text-shadow:1px 1px 1px #bbb; */
 /* line-height:44px; */
 border-bottom:1px solid #bbb;
}
.diaryList li a:hover {
  background:#f5f5f5;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.diaryList span.diaryTitle {
  display:block;
  overflow:hidden;
  /* max-height:20px; */
  /* max-height:25px; */
  max-height:30px;
  min-width:300px;
  padding:3px 0 1px 3px;
  color:#800000;
  /* font-size:16pt; */
  /* line-height:100%; */
  line-height:30px;
  /* text-shadow:1px 1px 1px #b0aca3; */
  white-space:nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.diaryList span.diaryBtm {
    display:block;
    overflow:hidden;
    margin:0;
    padding:0 5px 0 7px;
    height:25px;
    font-size:small;
    font-weight:normal;
    white-space:nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/* マイ日記一覧
       日記リンク
--------------------*/
.diaryItm {
	padding:.2em 0 .2em .2em;
    border-bottom:1px dotted #ccc;
}
.diaryItm a {
	display:block;
	padding:5px 0;
}


/* My日記一覧
       ｈ2装飾見出し
------------------------------------------*/
h2.diaryH2{
    margin-bottom:5px;
    /*
    padding:.5em .2em .2em;
    font-size:12pt;
     */
    padding:5px .2em;
    font-size:100%;
    color:#333;
    text-shadow:1px 1px 1px #ccc;
    /* border-bottom:1px solid #ccc; */
    border-bottom:1px dotted #666;
}
.subDiaryH2{
    display: block;
    padding:.1em 0 0 0;
    font-size:.8em;
    font-weight: bold;
    color:#aaa;
    text-shadow:none;
}
.subDiaryH202{
    display: block;
    padding:.1em 0 0 0;
    font-size:.8em;
    font-weight: normal;
    color:#333;
    text-shadow:none;
}




/* マイ日記一覧
       もっと見るリンク
--------------------*/
.readLink {
	margin:.2em .2em 10px 0;
	text-align:right;
	font-size:small;
}

/* マイ日記一覧
       日記がありません表示
--------------------*/
.notDiary {
    padding:.2em 0 .2em .2em;
    font-size:small;
}

/*
   コンテンツ
   みんなの日記詳細
--------------------------------*/
.diaryDiv {
    padding:0 .2em 5px;
    /* border-bottom:1px dotted #666; */
}
.diaryTxt {
    min-height:100px;
}
.myLink {
    padding.2em;
    border-bottom:1px solid #ccc;
}

ul.myLink li {
    display: inline;
    margin: 0 2px;
    padding: 0 0 1px 4px;
    border-left:1px solid #ccc;
}
ul.myLink li:nth-child(1) {
    border:0;
    margin:0;
    padding:0;
}
ul.myLink li a {
    display: inline-block;
    padding: 1px 5px;
    text-decoration: none;
    vertical-align: middle;
}
ul.myLink li a:hover {
    text-decoration:underline;
}

.comTxt {
    padding:.2em;
    background:#eee;
}

.dBtn, .dBtn a{
    margin:.8em .3em;
    text-decoration:none;
}

.inpBtn, .inpBtn a{
    margin:.8em .3em 0;
    text-decoration:none;
}


/*
   コンテンツ
   みんなのコミュニティ一覧
--------------------------------*/
.communityList {
 margin:.3em 0;
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}
.communityList li{
 display:block;
 overflow:hidden;
 margin:0;
 width:100%;
 color:#333;
 font-size:16pt;
 font-weight:bold;
 text-align:left;
 /* text-shadow:1px 1px 1px #bbb; */
 background:#fff;
}

.communityList li a {
 display:block;
 overflow:hidden;
 max-height:74px;
 min-height:74px;
 margin:0;
 padding:0;
 color:#333;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 /* text-shadow:1px 1px 1px #bbb; */
 /* line-height:76px; */
 border-bottom:1px solid #bbb;
}
.communityList li a:hover {
  background:#f5f5f5;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.communityList span.titleImg {
  display:inline;
  float:left;
  min-width:75px;
  padding:2px 0 0 5px;
}
.communityList span.titleImg img {
  height:70px;
  width:70px;
}
.communityList span.leftText {
  display:inline;
  overflow:hidden;
  float: left;
  max-height:70px;
  /* width:74%; */
  width:70%;
  margin:0;
  padding:2px 0 0;
}
.communityList span.title {
  display:block;
  overflow:hidden;
  /* max-height:22px; */
  max-height:25px;
  margin:0;
  padding:0;
  color:#800000;
  font-size:16pt;
  letter-spacing:0;
  /* line-height:100%; */
  line-height:25px;
  /* text-shadow:1px 1px 1px #b0aca3; */
  white-space:nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.communityList span.text {
    display:block;
    overflow:hidden;
    margin:0;
    padding:0;
    height:50px;
    font-size:small;
    font-weight:normal;
    white-space:nowrap;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/* マイコミュニティ一覧
       コミュニティリンク
--------------------*/
.comListItm {
    padding:.2em 0 .2em .2em;
    border-bottom:1px dotted #ccc;
}
.comListItm a{
	display:block;
	padding:5px 0;
}


/* マイコミュニティ一覧
   ○○がありません表示
--------------------*/
.notCom {
    padding:.2em 0 .2em .2em;
    font-size:small;
}

/* マイコミュニティ一覧
       お気に入りコミュニティ
--------------------*/

.favComBox {
	clear:both;
	margin-bottom:20px;
	border-bottom:1px dotted #ccc;
}
.favComP {
	clear:both;
	margin:.2em;
	min-height:60px;
}
.favComImg {
	float:left;
}
.favComBtn {
	float:left;
	padding:15px 0 0 10px;
}


/* お気に入りユーザー一覧
--------------------*/

.favUsrBox {
    clear:both;
    margin-bottom:20px;
    border-bottom:1px dotted #ccc;
}
.favUsrP {
    clear:both;
    margin:.2em;
    min-height:100px;
}
.favUsrImg {
    float:left;
}
.favUsrBtn {
    float:left;
    padding:55px 0 0 10px;
}



/*
     コンテンツ
     家計簿機能
--------------------------------*/

.titleDeta{
margin:0;
padding:3px 5px;
color:#cd853f;
font-size:13pt;
font-weight:bold;
}
.cateDeta {
    padding:.2em .8em;
    background:#ffefef;
    border-top:1px solid #EFB3B3;
    border-bottom:1px solid #EFB3B3;
}

/* タイトル部分 */
.myKakeiTitle1 {
    padding:.2em;
    background:#f2ecd9;
    text-align:center;
    color:#5e5951;
    font-weight:bold;
    font-size:;
    border-top:1px solid #eae0c1;
    border-bottom:1px solid #e2d5ab;
}
.myKakeiTitle2 {
    padding:.2em .8em;
    background:#fbd682;
    color:#d2691e;
    font-weight:bold;
    border-top:1px solid #fac243;
    border-bottom:1px solid #f1ab07;
}
.myKakeiTitle3 {
    padding:.2em;
    background:#f2ecd9;
    color:#5e5951;
    font-weight:bold;
    border-top:1px solid #eae0c1;
    border-bottom:1px solid #e2d5ab;
}

.myKakeiShisan {
    padding:.2em .8em;
    background:#cfffcf;
    color:#3cb371;
    font-weight:bold;
    border-top:1px solid #80ff80;
    border-bottom:1px solid #66ff66;
}
.myKakeiHusai {
    padding:.2em .8em;
    background:#ffcfcf;
    color:#b22222;
    font-weight:bold;
    border-top:1px solid #f19c9c;
    border-bottom:1px solid #eb7676;
}

/* 今日の家計簿 */
table#kakeiToday {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiToday tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiToday tr:nth-child(even) {
    background: #f6f6f6;
}
table#kakeiToday th {
	width: 5em;
	padding: 10px 0;
	font-weight: bold;
	color: #666;
}
table#kakeiToday td {
    padding: 5px;
    border-width: 0 0 1px 1px;
    text-align: right;
}

/* 家計詳細、集計テーブル */
table#kakeiDeta {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiDeta tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiDeta th {
    width:5em;
    font-weight: bold;
    color:#666;
}
table#kakeiDeta th.act {
    width:auto;
    min-width:5em;
    padding:0 0 0 .4em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#kakeiDeta td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}
.kakeiDetaYosan {
    color:#33ccff;
}

table#kakeiDeta tr:nth-child(even) {
    background: #f6f6f6;
}

/* 資産・負債口座、収支テーブル */
table#kakeiInOut {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiInOut tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiInOut th {
    width:5em;
    padding:10px 0;
    font-weight: bold;
    color:#666;
}
table#kakeiInOut td {
    padding: 5px;
    border-width: 0 0 1px 1px;
    text-align:right;
}
table#kakeiInOut tr:nth-child(even) {
    background: #f6f6f6;
}
table#kakeiInOut th.inTxt {
    color:#3cb371;
}
table#kakeiInOut th.kakeiInOutShi {
    color:#37B837;
}
table#kakeiInOut th.kakeiInOutHu {
    color:#F23838;
}

/* 贈呈品一覧テーブル */
table#GiftDeta {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#GiftDeta tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#GiftDeta th {
	padding-left:.5em;
    width:8em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#GiftDeta th.act {
    width:auto;
    min-width:5em;
    padding:0 0 0 .4em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#GiftDeta td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}
table#GiftDeta tr:nth-child(even) {
    background: #f6f6f6;
}

/* カード検索一覧テーブル */
table#cardDeta {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#cardDeta tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#cardDeta th {
    padding-left:.5em;
    width:5.8em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#cardDeta th.act {
    width:auto;
    min-width:5em;
    padding:0 0 0 .4em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#cardDeta td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}
table#cardDeta tr:nth-child(even) {
    background: #f6f6f6;
}


/* 家計入力テーブル */
table#kakeiInp {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiInp tr {
    padding: 5px;
    height:50px;
    max-height:1000em;
    border-bottom: 1px dotted #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    vertical-align:middle;
}
table#kakeiInp th {
    width:8em;
    min-width:3em;
    padding:0 0 0 1em;
    font-weight: bold;
    color:#666;
    text-align:left;
    vertical-align:middle;
}
table#kakeiInp th.act {
    width:auto;
    min-width:5em;
    padding:0 0 0 .4em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#kakeiInp th.required {
    color:#F23838;
}
table#kakeiInp td {
    padding: 5px;
    border-width: 0 0 1px 1px;
    vertical-align:middle;
}

/* 家計固定費一覧テーブル */
table#kakeiDetaList {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 2px solid #ffe5cc;
}
table#kakeiDetaList tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiDetaList th {
    width:6em;
    padding:0 0 0 .2em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#kakeiDetaList th.act {
    width:auto;
    min-width:5em;
    padding:0 0 0 .4em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#kakeiDetaList td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}
table#kakeiDetaList tr:nth-child(even) {
    background: #f6f6f6;
}
/*
.kakeiDetaYosan {
    color:#33ccff;
}
*/


/* お店名・商品名検索
       一覧
--------------------------------*/

.findList {
	margin-bottom:10px;

}

ul.findList li {
	border-bottom:1px solid #ddd;
}

.findList li a {
	display:block;
	padding:10px .4em;
}
.findList li a:hover {
    background:#eee;
}


/* 家計機能
       家計検索画面関連
--------------------------------*/
table#kakeiListDeta {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiListDeta tr {
    padding: 5px;
    min-height:26px;
    /* border-bottom: 1px solid #eee; */
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiListDeta th {
    width:100px;
}

table#kakeiListDeta td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}
table#kakeiListDeta td.product {
	padding: 5px;
    border-width: 0 0 1px 1px;
	color:#555;
	font-size:small;
}

table#kakeiListDeta tr:nth-child(4n+3) {
    background: #f5f5f5;
}
table#kakeiListDeta tr:nth-child(4n+4) {
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}


/* 家計機能
       口座設定
--------------------------------*/
table#kakeiAcnt {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiAcnt tr {
    padding: 5px;
    height:20px;
    max-height:1000em;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    vertical-align:middle;
}
table#kakeiAcnt th {
    width:9em;
    min-width:3em;
    padding:0 0 0 1em;
    font-weight: bold;
    color:#666;
    text-align:left;
    vertical-align:middle;
}
table#kakeiAcnt td {
    padding: 5px;
    border-width: 0 0 1px 1px;
    vertical-align:middle;
}
table#kakeiAcnt tr:nth-child(3n+3) {
    border-bottom: 1px dotted #ccc;
}
table#kakeiAcnt tr:last-child {
	border:0;
}


/* 家計機能
       お店名・商品名一覧テーブル
--------------------------------*/
table#kakeiShpPrd {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiShpPrd tr {
    padding: 5px;
    height:20px;
    max-height:1000em;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    vertical-align:middle;
}
table#kakeiShpPrd th {
    width:3em;
    min-width:3em;
    padding:0 0 0 1em;
    font-weight: bold;
    color:#666;
    text-align:left;
    vertical-align:middle;
}
table#kakeiShpPrd td {
    padding: 5px;
    border-width: 0 0 1px 1px;
    vertical-align:middle;
}
table#kakeiShpPrd tr:nth-child(2n+2) {
    border-bottom: 1px dotted #ccc;
}
table#kakeiShpPrd tr:last-child {
    border:0;
}
/* 追加20140617 */
table#kakeiShpDel {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiShpDel tr {
    padding: 5px;
    height:20px;
    max-height:1000em;
    border-top: 1px dotted #ccc;
    line-height: 120%;
    vertical-align:middle;
}
table#kakeiShpDel tr:last-child {
    border-bottom: 1px dotted #ccc;
}
table#kakeiShpDel td {
    padding: 5px;
    vertical-align:middle;
}
table#kakeiShpDel td label {
	display:block;
}
/* 並び順固定時 */
table#kakeiShpPrd.notSort {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
table#kakeiShpPrd.notSort tr {
    padding: 5px;
    height:20px;
    max-height:1000em;
    border-bottom: 1px dotted #ccc;
    line-height: 120%;
    vertical-align:middle;
}
table#kakeiShpPrd.notSort th {
    width:3em;
    min-width:3em;
    padding:0 0 0 1em;
    font-weight: bold;
    color:#666;
    text-align:left;
    vertical-align:middle;
}
table#kakeiShpPrd.notSort td {
    padding: 5px;
    vertical-align:middle;
}
table#kakeiShpPrd tr:last-child {
   /* border-bottom: 1px dotted #ccc; */
}

/* 家計機能
       レシート入力テーブル
--------------------------------*/
table#kakeiRecipt {
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
    border-bottom: 2px solid #ffe5cc;
    background: #ffe4e1;
}
table#kakeiRecipt tr {
    padding:5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table#kakeiRecipt th {
    width:6em;
    padding:0 0 0 .2em;
    font-weight: bold;
    color:#666;
    text-align:left;
}
table#kakeiRecipt th.required {
    color:#F23838;
}
table#kakeiRecipt td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}


/* 有料機能装飾
       家計機能テーブル関連
--------------------------------*/
.input_ico_pre{
    background: url(../images/preIco.gif) no-repeat right center;
    padding: 3px 34px 3px 0 !important;
    text-align: left;
}


/* コンテンツ
       検索画面関連
--------------------------------*/

/* 検索DIV
-------------------------*/
.srchBoxes {
	margin:0 0 0 .2em;
	padding:0 0 10px 0;
}

/* 検索キーワードbox
-------------------------*/
.srchKey {
    padding:10px 0;
}

/* 検索サーチボタンbox
-------------------------*/
.srchBtnBox {
    margin:10px 0 0 0;
    padding:10px 0;
    text-align:center;
}
.srchBtnLeftBox {
    margin:10px 0 0 0;
    padding:10px 0;
    text-align:left;
}

/* コンテンツ
       マイページ関連
--------------------------------*/
/* 左側メニューBOX
-------------------------*/
.myLeftBox {
	float:left;
	padding:.3em 0 1em 0;
	width:50%;
}

/* 右側メニューBOX
-------------------------*/
.myRightBox {
    float:right;
    padding:.3em 0 1em 0;
    width:50%;
}

/* プロフィールBox
-------------------------*/
.profBox {
	margin:.2em 0 0 0;
	padding:0 0 .2em 0;
	text-align:center;
	font-size:small;
}


/* 新着コメントリンク
-------------------------*/
.myCmtList {
 margin:.3em 0;
 padding:0 0 0 .2em;
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}
.myCmtList ul li a{
 display:inline-block;
 overflow:hidden;
 margin:0;
 padding:0;
 width:100%;
 /* color:#333; */
 font-size:10pt;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 line-height:30px;
 background:#fff;
 border-bottom:1px solid #ddd;
 white-space:nowrap;
 text-overflow: ellipsis;
 -webkit-text-overflow: ellipsis;
 -o-text-overflow: ellipsis;
}

.myCmtList ul li a:hover {
  color:#7d4c33;
  background:#eee;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.myCmtList ul li a span.myDate {
  padding:0 5px 0 3px;
  font-weight:bold;
}
.myCmtList ul li a span.myTitle {
  min-width:300px;
  overflow:hidden;
  color:#800000;
  /* text-shadow:1px 1px 1px #b0aca3; */
}

/* マイ日記・コミュリンク
-------------------------*/
.myDetaList {
 margin:.3em 0;
 border-bottom:0px;
 border-radius:2px;
 -webkit-border-radius:2px;
 -moz-border-radius:2px;
}

.myDetaList ul li a{
 display:block;
 overflow:hidden;
 margin:0;
 /* padding:0 .1em; */
 width:100%;
 min-height:30px;
 max-height:30px;
 /* color:#333; */
 font-size:10pt;
 font-weight:bold;
 text-align:left;
 text-decoration:none;
 line-height:30px;
 background:#fff;
 border-bottom:1px solid #ddd;
 white-space:nowrap;
 text-overflow: ellipsis;
 -webkit-text-overflow: ellipsis;
 -o-text-overflow: ellipsis;
}

.myDetaList ul li a:hover {
  color:#7d4c33;
  background:#eee;
  background:-webkit-gradient(linear, 0% 0%, 0% 80%, from(#fff), to(#ddd)); /* Safari,Google Chrome用 */
  background: -moz-linear-gradient(top, #fff, #ddd);
  border-bottom:1px solid #999;
}
.myDetaList ul li a span.myDate {
  padding:0 5px 0 3px;
  font-weight:bold;
}
.myDetaList ul li a span.myTitle {
  min-width:300px;
  overflow:hidden;
  color:#800000;
  /* text-shadow:1px 1px 1px #b0aca3; */
}

/* 上位支出3位テーブル
-------------------------*/
table.myKakeiItm {
	width:100%;
}
table.myKakeiItm tr {
    padding: 5px;
    min-height:26px;
    border-bottom: 1px solid #eee;
    border-width: 0 0 1px 1px;
    line-height: 120%;
    height:28px;
    max-height:1000em;
}
table.myKakeiItm th {
    width:3em;
    font-weight: bold;
    color:#666;
}
table.myKakeiItm td {
    padding: 5px;
    border-width: 0 0 1px 1px;
}

/* マイページサブタイトル
-------------------------*/
.mySubTitle1 {
    padding:.2em .8em;
    background:#f2ecd9;
    color:#d2691e;
    font-weight:bold;
    border-top:1px solid #eae0c1;
    border-bottom:1px solid #e2d5ab;
}
.mySubTitle2 {
    padding:.2em .8em;
    background:#fbd682;
    color:#d2691e;
    font-weight:bold;
    border-top:1px solid #fac243;
    border-bottom:1px solid #f1ab07;
}
.mySubTitle3 {
    padding:.2em .8em;
    background:#FBA082;
    color:#d12d03;
    font-weight:bold;
    border-top:1px solid #FD8AA7;
    border-bottom:1px solid #FA7096;
}


/* プレミアム登録画面関連
--------------------------------*/
.fotTxtPre {
    padding:5px 0 20px 0;
    text-align:center;
    border-bottom:1px #ccc dotted;
}

/*
   プレミアムサービス
   エラー関連
--------------------------------*/

.errCordMsgBox {
	margin:20px auto 10px;
    padding:10px;
    font-size:11pt;
	text-align:left;
	border:5px solid #ccc;
}
.errCordMsg {
	font-weight:bold;
	font-size:115%;
}

.payErrBox {
	margin:5px auto 5px 25px;
}
dl.payErr {
	margin:20px auto 15px;
}
dl.payErr dt.title {
	display:list-item;
	list-style: disc outside;
	font-weight:bold;
	font-size:110%;
	color:#ff1493;
}


/* 利用規約関連
--------------------------------*/
#sConkiyaku{
margin:0 auto;
padding:24px 0;
width:750px;
font-size:13px;
}
.kiyaku{margin-bottom:16px;}
.kiyaku dt{
border-bottom:3px solid #FFDECF;
margin-bottom:1em;
padding:1em 0 0;
font-weight:bold;
}
.kiyaku dd{
padding-left:1em;
font-size:12px;
}
.kiyaku dd ul{margin-top:1em;}
.kiyaku dd ul li p,
.kiyaku dd ul li ul{margin:0;}
.kiyaku dd ul li ul{padding-left:1em;}


/*--------------------------------------------------------*/
/* 家計機能メニューやプレミアム機能メニュー用
------------------------------------------*/


ul.kakeiMenu{
	padding:.4em;
	list-style:none;
}
ul.kakeiMenu li{
    /* margin:5px 0; */
    border-bottom:1px dotted #ddd;
}
ul.kakeiMenu a{
	display: block;
	/* background: url(../images/li-square.png) no-repeat left; */
	/* padding:8px 0; */
	/* border-bottom:1px solid #dfdfdf; */
	padding:10px 0 10px 23px;
    background: url(../images/li-square.png) no-repeat 0.5%;
}
ul.kakeiMenu a:link {
    color:maroon;
}
ul.kakeiMenu a:hover, ul.kakeiMenu a:active {
    background-color:#ededed;
    color:#8b5a2b;
    -webkit-touch-callout:none;
    -webkit-tap-highlight-color:#ededed;
}
ul.kakeiMenu a:visited {
    color:maroon;
}
ul.kakeiMenu li:last-child{
	border-bottom:none;
}
/* プレミアム機能メニュー */
ul.kakeiMenu li.preMenu{
    font-size:110%;
    /* background: red url(../images/preIco.png) no-repeat right; */
    /* font-weight:bold; */
}

ul.kakeiMenu li.preMenu a{
	letter-spacing:-0.4em;/*隙間をなくすためのハック*/
	color:#ca9a1e;
	/* background: url(../images/preIco.png) no-repeat right; */
}
ul.kakeiMenu li.preMenu a:link span{
	display: inline-block;
	/* inline-blockのie6,ie7対応 */
	*display: inline;/*スターハックしてる*/
	*zoom: 1;/*ここもスターハック*/
	letter-spacing:normal;/*隙間をなくすためのハック*/
	padding-right: 33px;
	height: 24px;
	background: url(../images/preIco.png) no-repeat right;
}

ul.kakeiMenu li.preMenu a:hover{
	background-color: #ededed;
	color:#8b5a2b;
	-webkit-touch-callout:none;
    -webkit-tap-highlight-color:#ededed;
}


/*--------------------------------------------------------*/
/* お問い合わせフォーム用
------------------------------------------*/

input.inpCon{
	width:100%;
	border:1px solid #222222;
}


/* ページトップ・ホームへの移動ナビ
       フッターより上、コンテンツ最下部
------------------------------------------------*/

.btmNavi {
	text-align: center;
	overflow: hidden;
}
.btmNavi ul{
	padding: 0;
	margin: 10px auto 0;
	list-style-type: none;
	float: left;
	position: relative;
	left: 50%;
	width: 98.8%;
}
.btmNavi li{
	float: left;
	position: relative;
	right: 50%;
	width: 50%;
}
.btmNavi a{
	display: block;
    width: auto;
    margin:2px 3px;
    padding: 12px 0;
    cursor: pointer;
    background: #E9E9E9;
    outline: none;
    vertical-align: baseline;
    text-decoration: none;
    white-space:nowrap;
    color: #606060;
    font: 14px/100% Arial, Helvetica, sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    border-radius: .4em;
    -webkit-border-radius: .4em;
    -moz-border-radius: .4em;
    border: solid 1px #DEDEDE;
}
.btmNavi a:link, .btmNavi a:visited {
	color: maroon;
}
.btmNavi a:hover {
	border: solid 1px #DEDEDE;
	background: #F3F3F3;
	color: #606060;
}


/* フッター
--------------------------------*/
#myFooter{
  width:100%;
  clear:both;
}
.myFooterNavi{
margin:0;
padding:20px 0;
background:#b0a290;
color:#fff;
/* font-size:9pt; */
font-size:12pt;
text-align:center;
}

/* フッターナビ
--------------------------------*/
.myFooterNavi ul {
    margin:10px 8px 20px;
}
.myFooterNavi li {
	/* display: inline; */
    /* display: inline-block; */
    display: block;
    list-style-type: none;
    border-bottom:2px groove #eee;
    line-height:180%;
    font-weight:bold;
}
.myFooterNavi li:nth-last-child(1) {
        border-bottom:0;
}
.myFooterNavi li a {
	display: block;
	padding:8px 0 8px 10px;
    /* display: inline-box; */
    text-decoration: none;
    text-align:left;
}
.myFooterNavi li a:hover {
    color:#333;
    background:#bfb4a6;
}
