@charset "UTF-8";

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

	- common
	- pc（1366px〜）固定
	- tablet & pc（1025px〜1365px）動的可変
	- tablet & pc（769px〜1024px）動的可変
	- tablet & pc（541px〜768px）動的可変
	- smartphone（〜540px）動的可変

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

/*----------------------------------------
	common
-----------------------------------------*/

body {
	background-color: #ffffff;
	color: #333333;
	font-family:
		"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka",
		"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic",
		sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#visionalist {
	display: none;
}

/*	link
-----------------------------------------*/

a:link,
a:visited {
	color: #0000ff;
	text-decoration: underline;
}

a:hover,
a:active {
	color: #0000ff;
	text-decoration: none;
}

/*	color
-----------------------------------------*/

/*	layout
-----------------------------------------*/

/*----------------------------------------
	pc（1366px〜）固定
-----------------------------------------*/

@media only screen and (min-width: 1366px) {
	
/*----------------------------------------
	layout
-----------------------------------------*/

.for_sp01 {
	display: none;
}

}

/*----------------------------------------
	tablet & pc（1025px〜1365px）動的可変
-----------------------------------------*/

@media only screen and (min-width: 1025px) and (max-width: 1365px) {

/*----------------------------------------
	layout
-----------------------------------------*/

.for_sp01 {
	display: none;
}

}

/*----------------------------------------
	tablet & pc（769px〜1024px）動的可変
-----------------------------------------*/

@media only screen and (min-width: 769px) and (max-width: 1024px) {

/*----------------------------------------
	layout
-----------------------------------------*/

.for_sp01 {
	display: none;
}

}

/*----------------------------------------
	tablet & pc（541px〜768px）動的可変
-----------------------------------------*/

@media only screen and (min-width: 541px) and (max-width: 768px) {
	
/*----------------------------------------
	layout
-----------------------------------------*/

.for_sp01 {
	display: none;
}

}

/*----------------------------------------
	smartphone（〜540px）動的可変
-----------------------------------------*/

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

/*----------------------------------------
	layout
-----------------------------------------*/

.for_pc01 {
	display: none;
}

}