/*====================================================================================*/
/* Common
/*====================================================================================*/
/* import google fonts Noto Serif JP*/


body {
	/*
	font-family: 
		"Noto Serif JP",
		"shippori-mincho",
		"Hiragino Mincho ProN",
		"MS Mincho",           
		serif;                 

	font-family: 
		"NonBreakingSpaceOverride", "Hoefler Text", "Baskerville Old Face", Garamond, "Times New Roman", serif;

	*/
	
	font-family: 
	"YakuHanMP",          
        "Zen Old Mincho",
        "Hiragino Mincho ProN",
        "MS Mincho",           
        serif;	
	
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 65%;
	letter-spacing:0.1em;
    color: rgba(0, 0, 0, 0.85) !important;
    background: #346d2c33;
}
.hide{
	display:none !important;
}
.pcDisp{
	display:block !important;
}
.mobDisp{
	display:none !important;
}
.pcDispIb{
	display:inline-block !important;
}
.mobDispIb{
	display:none !important;
}

/* animation */
.FadeIn{
	opacity:0.0;

	/* animation */	
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}


/*====================================================================================*/
/* スマフォ縦表示
/*====================================================================================*/
/* ipad pro? */
@media only screen and (max-width: 1024px) and (orientation:portrait){
	body {
    background: #346d2c22;
	}
	.pcDisp{
	display:none !important;
	}
	.mobDisp{
		display:block !important;
	}
	.pcDispIb{
		display:none !important;
	}
	.mobDispIb{
		display:inline-block !important;
	}


}
/*====================================================================================*/
/* スマフォ　横表示
/*====================================================================================*/
@media only screen and (max-width: 1024px) and (orientation:landscape){

}