@charset "UTF-8";

/* html */
html{
	overflow-y:scroll;
	font-size: 62.5%;
	font-family:'Noto Sans Japanese', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-family: "メイリオ", "Hiragino Kaku Gothic Pro", Meiryo, "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS UI Gothic", Helvetica, Arial, sans-serif;
	font-weight:400;
	line-height:1.4;
	color:#333;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
}
@media only screen and 
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/* body */
body{
	position:relative;
}

/* heading, p */
h1,h2,h3,h4,h5,h6,p{
	margin:0;
	font-weight: bold;
}
p {
	font-weight: normal;
}

/* a */
a{
	color:#0099ff;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}

/* img */
.globalHeader img,
.globalFooter img,
.mainContents img{
	vertical-align:top;
}
/* figure */
figure{
	overflow:hidden;
	margin:0;
}
/* ul ol */
ul,ol{
	padding: 0;
	margin-bottom: 0;
	list-style: none;
}
/* dd */
dd{
	padding: 0;
	margin: 0;
}

/* レスポンシブ時のアイテム出し分け */
@media screen and (min-width:769px){
	.itemSP{display:none!important;}
}
@media screen and (max-width:769px){
	.itemPC{display:none!important;}
}

