/* ============================================ */
/* 全体レイアウト
/* -------------------------------------------- */
/* 全セレクタのデフォルト余白を削除 */
* {
    margin: 0;
    padding: 0;
    /*zoom: 1;  for IE (hasLayout対策)  StickyFotterが無効になってしまうため、個別にhasLayout対策を行う */
}

/* 全体レイアウト */
body {
    background-color: #E4E4E4;
}

div.wrap1 {
    min-width: 768px;/*width: 1200px;*/
    margin: 0 auto;
    border-left: 1px solid #C3C3C3;
    border-right: 1px solid #C3C3C3;
    background-color: #FFFFFF;
}

div.wrap2 {
    padding-left: 1px;
    padding-right: 1px;
}

div.wrapMain {
    /*margin-left: 10px;*/
    margin-right: 2px;
}

div.wrapHeader{
    margin-left: 10px;
    margin-right: 10px;
    /*margin-bottom: 20px;*/
}

/* ============================================ */


/* ============================================ */
/* Font関係
/* -------------------------------------------- */
/* フォント指定が小の場合は8px*/
body.fontSizeS { /* for IE6 */
    font-size : 62.5%;
}
html>body.fontSizeS { /* for IE6以外 */
    font-size : 8px;
}

/* フォント指定が中の場合は10px*/
body.fontSizeM, body { /* for IE6 */
    font-size : 62.5%;
}
html>body.fontSizeM, html>body { /* for IE6以外 */
    font-size : 10px;
}

/* フォント指定が大の場合は15px*/
body.fontSizeL { /* for IE6 */
    font-size : 62.5%;
}
html>body.fontSizeL { /* for IE6以外 */
    font-size : 15px;
}

/* デフォルトfont-familyの指定 */
body {
    font-family:'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', 'MS PGothic', 'Osaka', arial, helvetica, clean, sans-serif;
    /*font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
    /*font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;*/
}
/* ============================================ */


/* ============================================ */
/* 共通部品
/* -------------------------------------------- */
/* 非表示 */
div.hide {
    height: 0px;
    visibility: hidden;
}

/* ClearFix */
.clearfix:after {
    content: ".";  /* 新しい要素を作る */
    display: block;  /* ブロックレベル要素に */
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix {
    min-height: 1px;
}
* html .clearfix {
    height: 1px;
    /*\*//*/
    height: auto;
    overflow: hidden;
    /**/
}
/**********************************************************/
/* ClearFixとStickyFotterが競合するので、float解除は空divで行う */
/**********************************************************/
div.clear {
    clear:both;
}

/* ============================================ */
/* リンク
/* -------------------------------------------- */
a ,
a:link,
a:visited {
    color: #000033;
}

a:hover{
    text-decoration: none;
}

/* ============================================ */
/* ボタン関連
/* -------------------------------------------- */
.ed-wrap-button {
    float: left;
}

.ed-button
{
    border-top: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    border-left: 1px solid #ccc;
    padding: 5px 15px;
    /*font-weight: bold;*/
    cursor: pointer;
    color: #444;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 0 -1px 1px #FFF, -1px 0 1px #FFF, 1px 0 1px #aaa;
    /* For WebKit (Safari, Google Chrome etc) */
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #F1F1F1), color-stop(0.5, #F1F1F1), color-stop(0.99, #DFDFDF), to(#ccc));
    /* For Mozilla/Gecko (Firefox etc) */
    background: -moz-linear-gradient(top, #fff, #F1F1F1 1%, #F1F1F1 50%, #DFDFDF 99%, #ccc);
    /* For Internet Explorer 10 */
    background: linear-gradient(to bottom, #FFF,#CCC);
    /* For Internet Explorer 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#FFCCCCCC);
    /* For Internet Explorer 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF, endColorstr=#FFCCCCCC)";
    -moz-box-shadow: 1px 1px 2px #E7E7E7;
    -webkit-box-shadow: 1px 1px 2px #E7E7E7;
}
.ed-button:hover{
    /* For WebKit (Safari, Google Chrome etc) */
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(0.01, #e1e1e1), color-stop(0.5, #e1e1e1), color-stop(0.99, #cfcfcf), to(#ccc));
    /* For Mozilla/Gecko (Firefox etc) */
    background: -moz-linear-gradient(top, #fff, #e1e1e1 1%, #e1e1e1 50%, #cfcfcf 99%, #ccc);
    /* For Internet Explorer 10 */
    background: linear-gradient(to bottom, #EEE,#CCC);
    /* For Internet Explorer 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFE1E1E1, endColorstr=#FFCCCCCC);
    /* For Internet Explorer 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFE1E1E1, endColorstr=#FFCCCCCC)";
}
.ed-button:active{
    background: #ccc;
    /*padding: 3px 6px 1px;*/
}
.ed-button[disabled]{
    background: #FFF;
    color: #BBB;
    /*text-shadow: none;*/
    cursor: default;
    /*padding: 3px 6px 1px;*/
}

/*
input, button, textarea {
    padding: 1px 2px;
    font-size: 1.3em;
}
button{
    cursor: pointer;
}
select {
    padding: 1px 0;
    line-height: 100%;
}
*/
/**forIE6or7**/
/*
button{
    *padding:0;
}
*/


/*
input, button {
    background-color: #FFFFFF;
    background-image: url("../images/button/normal.png");
    background-repeat: repeat-x;
    border: 1px solid #ABB5C3;
    padding: 3px;
}
button{
    cursor: pointer;
}
*/
/**forIE6or7**/
/*
button{
    *padding:0;
}
input.readonly,input:hover.readonly {
    background-image: url("../images/button/readonly.png");
    background-repeat: repeat-x;
    background-color: #E4E4E4;
}

input:hover, button:hover {
    background-image: url("../images/button/active.png");
    background-repeat: repeat-x;
}

input.disabled:hover, button.disabled:hover {
    background-image: url("../images/button/normal.png");
    background-repeat: repeat-x;
    cursor: default;
}
*/
/**ForIe6Only**/
/*
input.radioButton,
input.radioButton:hover
{
    _background-color: transparent;
    _background-image: none;
    _border: 0px;
    _padding: 0px;
}
input.checkBox,
input.checkBox:hover
{
    background-color: transparent;
    background-image: none;
    border: 0px;
    padding: 0px;
}
select.changeStyle {
    background-color: transparent;
    background-image: url("../images/button/normal.png");
    background-repeat: repeat-x;
    border: 1px solid #ABB5C3;
    padding: 3px;
}

select.changeStyle:hover {
    background-image: url("../images/button/active.png");
}
*/
/* ============================================ */


/* ============================================ */
/* メインレイアウト
/* -------------------------------------------- */
/* 一段組 */
div.mainContents {
    width: 100%;
    background-color: #FFFFFF;
}

/* 三段組 */
div.mainContainerWrapper {
    float: left;
    width: 100%;
    margin-right: -380px;
}
div.mainContainerCenter {
    float: right;
    width: 100%;
    background-color: #FFFFFF;
    margin-left: -380px;
}
div.mainContainerCenterContents {
    margin: 0px 380px;
}
div.mainContainerLeft {
    float: left;
    width: 380px;
    background-image: url(../images/main/sidePanel.png);
    height: 600px;
}
div.mainContainerRight {
    float: right;
    width: 380px;
    background-image: url(../images/main/sidePanel.png);
    height: 600px;
}
/* =========================================== */

.right{
    text-align: right;
}
.left{
    text-align: left;
}
.center{
    text-align: center;
}

table,
tr,
th,
td,
ul,
li,
ol,
div{
    word-break:break-all;
    word-wrap:break-word;
}

div.tutorialMovie{
    text-align: right;
    margin-right: 10px;
    /*margin-top: 15px;*/
    font-size: 1.2em;
}
.showTutorialMovie{
    cursor: pointer;
    color: #006699;
    text-decoration: underline;
}




/* ============================================ */
/* ボタン
/* -------------------------------------------- */
.eds-button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.8em 2em 0.8em;
    /* rgba not supported (IE 8) */
    color: white;
    /* アンカータグをボタンに使用する時用 */
    border: 1px solid #999;
    /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);
    /*IE9 + everything else*/
    background-color: #4d4d4d;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    /* Transitions */
    -webkit-transition: 0.1s linear -webkit-box-shadow;
    -moz-transition: 0.1s linear -moz-box-shadow;
    -ms-transition: 0.1s linear box-shadow;
    -o-transition: 0.1s linear box-shadow;
    transition: 0.1s linear box-shadow;
}

.eds-button:visited {
    color: white; }
.eds-button:hover {
    color: white; }
.eds-button:active {
    color: white; }
html.ie6 .eds-button {
    font-size: 90%;
    overflow: visible;
    color: #444; }
html.ie7 .eds-button {
    font-size: 90%;
    overflow: visible;
    color: #444; }

.eds-button:hover, .eds-button:focus {
    padding: 0.8em 2em 0.8em;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33ffffff', endColorstr='#0dffffff',GradientType=0);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.2)), color-stop(40%, rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.05));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05));
    background-image: -o-linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.05));
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0.05)); }

.eds-button:focus {
    outline: 0; }

.eds-button:active {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 8px rgba(255, 255, 255, 0.8) inset; }

.eds-button[disabled] {
    border: none;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    filter: alpha(opacity=40);
    -khtml-opacity: 0.40;
    -moz-opacity: 0.40;
    opacity: 0.40;
    cursor: not-allowed;
    box-shadow: none; }

/* Firefox: Get rid of the inner focus border */
.eds-button::-moz-focus-inner {
    padding: 0;
    border: 0; }

 .ed-button{
     background:#fafafa;
 }
 .ed-button:hover{
     background:#ccc;
 }
/* =========================================== */