@charset "utf-8";

*, *:before, *:after {
    -webkit-box-sizing: border-box !important;
       -moz-box-sizing: border-box !important;
         -o-box-sizing: border-box !important;
        -ms-box-sizing: border-box !important;
            box-sizing: border-box !important;
}

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, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.25em;
  vertical-align: baseline;
  letter-spacing: 0em;
  word-wrap: break-word;
  white-space: normal;
}

b, strong  {
  font-weight: bold;
}

main, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block;
}
 
html{
  overflow-y: scroll;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color:#000;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img{
	margin:0;
	padding:0;
	vertical-align: bottom;
	max-width:100%;
	height:auto;
}

 
blockquote, q {
  quotes: none;
}
 
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}
 
input, textarea {
  margin: 0;
  padding: 0;
}
 
input::-webkit-input-placeholder, input:-moz-placeholder, textarea::-webkit-input-placeholder, textarea:-moz-placeholder {
  color: #888;
}
 
input[type="text"], input[type="email"], input[type="password"], input[type="button"], input[type="submit"], input[type="search"], input[type="reset"],textarea,select {
	box-shadow: none !important;
	-webkit-appearance: none;
	border: solid 1px #ccc;  /* 窪みを防止 */
	outline:none; /* クロームで入力ボックスへのカーソル時に輪郭の色が変わるのを防止 */
}
 
ol, ul{
  list-style: none;
}
 
table{
  border-collapse: collapse; 
  border-spacing: 0;
  width: 100%;
}
 
caption, th{
  text-align: left;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}


a {
	text-decoration: none;
	color:#66a;
	transition: 0.2s ;
}

a:hover {
	color: #99d ;
}

a:focus {
  outline:none;
}


/* リンク画像マウスオーバー時に半透明にするのに１ｐｘずれるのを防ぐ(IE8以下リンク画像対策) */
a img {
	transition: 0.2s ;
	display: inline-block;
	opacity:1;
	filter: alpha(opacity=100); /*IE6,7*/
	-ms-filter: "alpha(opacity=100)"; /*IE8*/
	-moz-opacity:1;
	/*background-color:#FFF; FIREFOXで画像がだぶつくのを防ぐ */
	-webkit-backface-visibility: hidden; /* クロームで画像がだぶつくのを防ぐ */
	backface-visibility: hidden; /* クロームで画像がだぶつくのを防ぐ */
}

/* リンク画像マウスオーバー時に半透明にする(IE8以下リンク画像対策) */
input[type="submit"]:hover,
input[type="button"]:hover,
a:hover img {
	display: inline-block;
	opacity:0.75;
	filter: alpha(opacity=75); /*IE6,7*/
	-ms-filter: "alpha(opacity=75)"; /*IE8*/
	-moz-opacity:0.75;
	/*background-color:#FFF; FIREFOXで画像がだぶつくのを防ぐ */
	-webkit-backface-visibility: hidden; /* クロームで画像がだぶつくのを防ぐ */
	backface-visibility: hidden; /* クロームで画像がだぶつくのを防ぐ */
	cursor:pointer;
}

