/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: "Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea,{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

table{
    border-collapse: collapse; 
    border-spacing:0;
    width: 100%;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}

button {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

a:link,a:visited {
	color:#333;
	text-decoration: underline;
}

a:hover {
	color:#999;
	text-decoration: underline;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

a img:hover,
a img:hover,
input[type="image"]:hover {
	/*-webkit-transition: 0.1s ease-in-out;  
	-moz-transition: 0.1s ease-in-out;  
    -o-transition: 0.1s ease-in-out;  
    -ms-transition: 0.1s ease-in-out;  
    transition: 0.1s ease-in-out;  */

	text-decoration: none;
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;

}

a.nop img:hover,
a.nop img:hover {
	text-decoration: none;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;

}

.clearfix:after {
	content: ""; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
/*.clearfix {
	overflow:hidden;
}*/

.none {
	display: none;
}


/*---------------------------------------------------------------------------------
CSS3 Sample
--------------------------------------------------------------------------------- */

/*

フォント指定　｛
	font-family:"游ゴシック","YuGothic",'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
｝
テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

ボックスシャドウ {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

ボックスシャドウ内側 {
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
	box-shadow: inset 1px 1px 3px #000;
}

角丸 {
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}

トランジション {
	-webkit-transition: background 0.5s ease-out;
	transition: background 0.5s ease-out;
}

透明 {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}

背景のみ透明 {
	background-color:rgba(255,255,255,0.2);
}

グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

アピアランス　{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ボックスサイジング {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

アニメーション {
	-webkit-animation: test_anime3 2s 1 forwards;
    animation: test_anime3 2s 1 forwards;
}
@-webkit-keyframes test_anime3 {
	from { width: 100px; background-color: #fff; }
	to { width: 200px; background-color: #000; }
}
@keyframes test_anime3 {
	from { width: 100px; background-color: #fff; }
	to { width: 200px; background-color: #000; }
}

トランスフォーム／横に移動　{
	-webkit-transform: translateX(200px);
    transform: translateX(200px);
}

トランスフォーム／縦に移動　{
	-webkit-transform: translateY(50px);
    transform: translateY(50px);
}

トランスフォーム／横と縦に移動　{
	-webkit-transform: translate(500px,50px);
    transform: translate(500px,50px);
}

トランスフォーム／拡大　{
	-webkit-transform: scale(1.5,1.5);
    transform: scale(1.5,1.5);
}

トランスフォーム／拡大の軸指定　{
	-webkit-transform-origin: left top;
    transform-origin: left top;
}

トランスフォーム／回転　{
	-webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

トランスフォーム／X軸回転　{
	-webkit-transform: rotateX(135deg);
    transform: rotateX(135deg);
}

トランスフォーム／Y軸回転　{
	-webkit-transform: rotateY(45deg);
    transform: rotateY(45deg);
}

トランスフォーム／回転の軸指定　{
	-webkit-transform-origin: left top;
    transform-origin: left top;
}


スマホ対応
@media screen and (max-width: 480px){
	
}
@media screen and (max-width: 320px){
	
}*/