@charset "utf-8";

/*
-----------------------------------------------
▼基本デザイン
----------------------------------------------- */

* {
margin:0;
padding:0;
}

html, body{  
    font-size: 16px;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    color:#030015;
}

/*
body * {
line-height:1.45;
}
*/

.clearfix{
    clear:both;
}


img {
border:0;
vertical-align:bottom;
}

ul,ol,li {
list-style-type:none;
}


table {
border-collapse:collapse;
}




/*
-----------------------------------------------
▼基本リンク+マウスオーバー
----------------------------------------------- */

a {
	outline: none;
        color:#030015;
	text-decoration: none;
}

a:hover, a:focus {
	color: #69606b;
}


a:link {color:#03F;}
a:visited {color:#039;}
a:hover,a:active {color:#903;}


a:hover img{
filter: alpha(opacity=50);
-moz-opacity:0.5;
opacity:0.5;
}




/*
-----------------------------------------------
▼Win IEちらつき防止
----------------------------------------------- */

* html {
filter:expression(document.execCommand("BackgroundImageCache", false, true));
}


