@charset "UTF-8";

/*============================================

common.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;}
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;}


/*form*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
}
select::-ms-expand {
    display: none;
}


html {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}



/*-------------------------------------------

Setting

--------------------------------------------*/
*{box-sizing:border-box}
img{max-width:100%;width:auto}


/*for clearFix*/
.cf:after { 
   display: block ;
   height: 0 ;
   visibility: hidden ;
   clear: both ;
   content:"";
}
/* 追加 MacIE 5 と WinIE 7 向け */
.cf {
   display: inline-block ;
}
/*MacIE \*/
* html .cf {
	height: 1em ;
}
.cf {
	display: block ;
}

.fwb{font-weight:bold;}

.fl{
	float: left;
}
.fr{
	float: right;
	
}
/*-------------------------------------------

PC

--------------------------------------------*/

.onlySP,
.onlyTablet{
	display:none!important
}

a{
	transition:.3s;
}
a img{
	transition:.3s;
}

a:hover img{
	opacity:.6;
}

a:hover.none img{
	opacity:1;
}



/*-------------------------------------------

SP

--------------------------------------------*/

@media screen and (max-width:768px){

	.onlyPC{display:none!important}
	.onlySP{display:block!important}
	img{width: 100%;}
}