/******************************************************************************
** reset.css
*******************************************************************************/

/* === Base Fonts & Typography === */
:root {
	font-size: 10px;
	line-height: 1.6;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	box-sizing: border-box;
}

/* === Base Reset Styles === */
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	color: #030303;
	font-size: 1.6rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

p {
	margin: 0;
}

ul, ol {
	list-style: none;
	padding-left: 0;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

img, video, canvas {
	max-width: 100%;
	height: auto;
	display: block;
	image-rendering: crisp-edges;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	border: none;
	padding: 0;
}

button, [role="button"] {
	cursor: pointer;
}

button:focus {
	outline: 2px solid rgba(0, 0, 0, 0.5);
	outline-offset: 2px;
}

textarea {
	resize: vertical;
}

table {
	border-collapse: collapse;
}

th, td {
	padding: 0;
	text-align: left;
	vertical-align: middle;
}

abbr[title] {
	border-bottom: 1px dotted currentColor;
	cursor: help;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}

[hidden] {
	display: none !important;
}