@charset "utf-8";

/*
 --------------------------------------------------------------------
 4Uweb／CMS 表取り込み・表編集用スタイルシート。

 更新日：2010-08-02
 --------------------------------------------------------------------
 【編集履歴】
 ・2009-05-25 新規作成
 ・2010-08-02 背景色用のスタイルを追加。
 
 -------------------------------------------------------------------- */


/**
 * 中央詰め
 */

table th, td {
  vertical-align: middle;
}


/**
 * 上詰め
 */
table th.top, td.top {
  vertical-align: top !important;
}

/**
 * 下詰め
 */
table th.bottom, td.bottom {
  vertical-align: bottom !important;
}

/**
 * 左詰め
 */
table th.left, td.left {
  text-align: left !important;
}

/**
 * 右詰め
 */
table th.right, td.right {
  text-align: right !important;
}

/**
 * 中央揃え
 */
table th.center, td.center {
  text-align: center !important;
}

/**
 * WYSIWYG用の背景色-赤
 */
table.table01 th.tbl-bgcolor-red, td.tbl-bgcolor-red {
	background-color: #FFCCFF !important;
	
}

/**
 * WYSIWYG用の背景色-黄
 */
table.table01 th.tbl-bgcolor-yellow, td.tbl-bgcolor-yellow {
	background-color: #FFFFCC !important;
}

/**
 * WYSIWYG用の背景色-緑
 */
table.table01 th.tbl-bgcolor-green, td.tbl-bgcolor-green {
	background-color: #CCFFCC !important;
}

/**
 * WYSIWYG用の背景色-青
 */
table.table01 th.tbl-bgcolor-blue, td.tbl-bgcolor-blue {
	background-color: #CCFFFF !important;
}

/**
 * WYSIWYG用の背景色-灰
 */
table.table01 th.tbl-bgcolor-gray, td.tbl-bgcolor-gray {
	background-color: #CCCCCC !important;
}


/* ------------------------------テーブルのスタイル設定----------------------------- */
/* table_data wisiwyg */
table {
    padding: 0;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
table caption {
    font-family: "UD Shin Go Regular","メイリオ", sans-serif;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}
table caption:empty {
    padding: 0;
}
table td {
}
table p {
    margin: 0;
    padding: 0;
}
table th {
    font-family: "UD Shin Go Regular","メイリオ", sans-serif;
}
table[align="center"] {
  margin-left: auto;
  margin-right: auto;
}


/* [chrome]table内にルビを付けるとセルがずれる */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  table rb {
    line-height: 6;
  }
}