@charset "UTF-8";

/**
 *
 * CSSリセット、再定義
 *
**/


/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/

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%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote: before, blockquote: after,
q: before, q: after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/**
 * 再定義
**/

body {
	-webkit-text-size-adjust: none;
	color: #333333;
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0px;
	text-align: center;
	background: #ffffff;
}

table {
	color: #333333;
	font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0px;
	empty-cells:  show;
}

table td, table td {
	empty-cells: show;
}

a {
	color: #333333;
	text-decoration: none;
}

a:hover {
	color: #333333;
}
/*
a:hover img {
	opacity: 0.6;
	transition-timing-function: ease-in-out;
	transition-duration: 0.2s;
}
*/
img {
	border: none;
	display: block;
}

em { font-style: normal; }

sub {
	line-height: 120%;
	font-size: 75%;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

/* for PC */
@media only screen and (min-width: 768px) {
	.sp{
    display: none !important;
    }
    body {
    min-width: 1100px;
    }
    a:hover {
	text-decoration: underline;
	}
}
/* for SP */

@media only screen and (max-width: 767px) {
	.pc,
	#gNav{
    display: none !important;
    }
    a:hover {
	text-decoration: none;
	}
	sub {
	vertical-align: middle;
		}	
	}	