@charset "utf-8";

body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #c8aa8e;	/*全体の文字色*/
	font-family: YuGothic,'Yu Gothic';	/*フォント種類*/
	font-size: 0.3em;	/*文字サイズ*/

	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: 100%;
}



.resizeimage img { width: 100%;
height: auto;}


a {
    text-decoration:none; 
	color: #A687B7;	
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 980px) {
.pc { display: none !important; }
.sp { display: block !important; }
}


/* メニュー固定 */
.fix-01{
    left:0;
    position:fixed;
    top:0;
    z-index:100;
    text-align:center;
 width:100%;
}


