@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&display=swap');

/* tags */
* {
	box-sizing: border-box;
	position: relative;
}

body {
	line-height: 1.75;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	color: #1D1D1D;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

div,
p,
span,
em,
b,
i {
	line-height: inherit;
	font-weight: inherit;
	text-decoration: inherit;
	letter-spacing: inherit;
}

rt {
	letter-spacing: 0;
}

img {
	max-width: 100%;
	height: auto;
	/* pointer-events: none; */
	/* user-select: none; */
}

svg {
	fill: currentColor;
}

/* common */
.inner {
	margin: 0 auto;
	padding: 0 20px;
}

.-serif {
	font-family: 'Noto Serif JP', serif;
}

.-round {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

.-nolink {
	pointer-events: none;
}

/* responsive */
.tb-block,
.tb-inline,
.tb-table,
.tb-flex,
.sp-block,
.sp-inline,
.sp-table,
.sp-flex {
	display: none;
}

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

	/* responsive */
	.tb-block {
		display: block;
	}

	.tb-inline {
		display: inline;
	}

	.tb-table {
		display: table;
	}

	.tb-flex {
		display: flex;
	}

	.tb-none {
		display: none;
	}

}

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

	/* tags */
	body {
		line-height: 1.5;
		font-size: 14px;
	}

	/* common */
	.inner {
		padding: 0 10px;
	}

	/* responsive */
	.sp-block {
		display: block;
	}

	.sp-inline {
		display: inline;
	}

	.sp-table {
		display: table;
	}

	.sp-flex {
		display: flex;
	}

	.sp-none {
		display: none;
	}

}

@media print {}