@charset "UTF-8";

/* reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	letter-spacing: 0;
}

html {
	position: relative;
	overflow-x: hidden;
	width: 100%;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: middle;
}

body {
	background: url(./img/back.webp);
	background-repeat: repeat;
	font-family: "Noto Sans JP", sans-serif;
	overflow-x: clip;
	position: relative;
	width: 100%;
}

a {
	text-decoration: none;
}

/* pc size */
@media screen and (min-width: 768px) {
	.pc {
		display: inline-block;
	}

	.sp {
		display: none;
	}
}

/* sp size */
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}

	.sp {
		display: inline-block;
	}
}