@charset "utf-8";
/* CSS Document */
@media screen and (max-width: 768px) {
    .none {
        display: none
    }
}
@media screen and (min-width: 769px) {
    .none1 {
        display: none
    }
}
img {
    max-width: 100%;
    height: auto;
    width
    /***/
    : auto;
    vertical-align: bottom;
}
body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}
.fade {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    ransition: 0.3s ease-in-out;
}
.fade:hover {
    opacity: 0.7;
    filter: alpha(opacity=60);
}
#tbl-bdr table, #tbl-bdr td, #tbl-bdr th {
    border-collapse: collapse;
    border: 1px solid #ccc;
    font-size: 14px;
}
.hoge {
    position: relative;
    z-index: 1;
    /* 必要であればリンク要素の重なりのベース順序指定 */
}
.hoge a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 2;
    /* 必要であればリンク要素の重なりのベース順序指定 */
}
.hoge:hover {
    background-color: rgba(255, 255, 153, 0.5);
    transition: 0.4s;
    zoom: 1;
    /*IE*/
}