@charset "utf-8";

/* PC：basic_sp.css
 * **************************************************
 */

 /* Body
----------------------------------------------------- */

/* Font：基本サイズ（16 * 0.625 = 10px） */

html {
	font-size: 62.5%;
}
body {
	font-size: 12px;
	font-size: 3.75vw;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Content
----------------------------------------------------- */

#content {
	color: #231815;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-feature-settings: "palt";
	line-height: 1;
	margin: 0;
	padding: 0;
	width: auto;
}

/* Common Elements
----------------------------------------------------- */

/* img */
img {
	height: auto;
	vertical-align: bottom;
	max-width: 100%;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}
a:hover {
	color: inherit;
	text-decoration: none;
}
