@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;900&display=swap');


/* ==========================================================
*
* Basic Setting
*
========================================================== */
html{
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
	height: -webkit-fill-available;
}

body {
	/*font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI","Noto Sans Japanese","ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;*/
	font-size: 1.6rem;
	line-height:155%;
	font-family:'Noto Sans JP', sans-serif;
	font-weight:400;
}


body.locked {
	height: 100%;
	overflow: hidden;
}


a {
	text-decoration:none;
	color: inherit;

	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

a *{
	pointer-events:none;
}


/***********************************
共通パーツ
***********************************/

.noPC{
	display:none;
}

.noSP{
	display:initial;
}

address{
	font-size:1.2rem;
}

/* for Sp --------------------*/
@media screen and ( max-width:738px) {
	

	.noPC{
		display:initial;
	}

	.noSP {
		display: none !important;
	}

}

