*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

ul,
ol {
	list-style: none;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

html {
	word-wrap: break-word;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.loader {
	background: #000;
	display: grid;
	height: 100%;
	left: 0;
	-webkit-perspective: 7.5rem;
	perspective: 7.5rem;
	place-content: center;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.loader .loader__img {
	display: block;
	height: 100%;
	opacity: 1;
	position: relative;
	width: 100%;
}

.loader .loader__wave {
	inset: 0;
	-webkit-animation: wave 6s infinite linear;
	animation: wave 6s infinite linear;
	/* background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#000), to(transparent)); */
	background-image: linear-gradient(90deg, transparent, #000, transparent);
	background-position: 0%;
	background-size: 2.5rem 100%;
	display: block;
	height: 100%;
	opacity: 0.4;
	position: absolute;
	-webkit-transform: rotate(70deg);
	transform: rotate(70deg);
	width: 100%;
	z-index: 2;
}

.loader img {
	position: relative;
	width: 300px;
}

@media screen and (max-width: 576px) {
	.loader img {
		width: 200px;
	}
}


@-webkit-keyframes wave {

0% {
	background-position: 0%;
}

100% {
	background-position: 100%;
}

}

@keyframes wave {

0% {
	background-position: 0%;
}

100% {
	background-position: 100%;
}

}