html {
	scroll-behavior: smooth;
}
body {
	line-height: 1.6;
	font-size: 16px;
	word-wrap: break-word;
	color: #444444;
	font-family: "NotoSansJP-Regular", sans-serif;
	font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-feature-settings: "lnum";
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
	font-weight: 400; /* Regular相当を明示 */
	font-display: swap;
	overflow-x: hidden;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased; /* iOS対応 */
	text-rendering: optimizeLegibility;   /* より滑らかなフォントレンダリング */
}

.post, .page {
	margin: 0;
}

.page-content, .entry-content, .entry-summary {
	margin: 0;
}

@font-face {
	font-family: NotoSansJP-Regular;
	src: url(https://club.rebase-jp.com/wp-content/themes/jbav/fonts/NotoSansJP-Regular2.woff2) format('woff2');
}
@font-face {
	font-family: NotoSansJP-Bold;
	src: url(https://club.rebase-jp.com/wp-content/themes/jbav/fonts/NotoSansJP-Bold2.woff2) format('woff2');
}

/* iOSのズームインを防ぐ */
html, body {
	-webkit-text-size-adjust: 100%; /* iOSのデフォルトズームを無効化 */
}

:root {
	--mc: #55AABC;
	--sc: #FECD00;
	--wid: 1100px;
	--wid100:100%;
}

a {
	text-decoration: none;
}

a:visited {
	color: unset;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0
}
/* reCAPTCHA */
.grecaptcha-badge { visibility: hidden; }

/* PCのみ表示 (768px以上の画面サイズで表示) */
.pc_only {
	display: none;
}
@media (min-width: 600px) {
	.pc_only {
		display: block;
	}
}
/* スマホのみ表示 (768px以下の画面サイズで表示) */
.sp_only {
	display: block;
}
@media (min-width: 600px) {
	.sp_only {
		display: none;
	}
}


