@charset "UTF-8";

/* =========================
   Reset CSS
   ========================= */

/* box-sizing */
html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* margin / padding reset */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
table,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
}

/* base */
html:focus-within {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* list */
ul,
ol {
	list-style: none;
}

/* link */
a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
}

a:focus {
	outline: none;
}

/* media */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

img {
	border-style: none;
}

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

th,
td {
	text-align: left;
	vertical-align: top;
}

/* form */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}

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

textarea {
	resize: vertical;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: default;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

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

/* checkbox / radio */
input[type="checkbox"],
input[type="radio"] {
	appearance: auto;
	-webkit-appearance: auto;
}

/* search */
input[type="search"] {
	-webkit-appearance: none;
	appearance: none;
}

/* number */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* details */
summary {
	display: list-item;
	cursor: pointer;
}

/* hr */
hr {
	border: 0;
	border-top: 1px solid currentColor;
	height: 0;
	overflow: visible;
}

/* iframe */
iframe {
	border: 0;
}

/* hidden */
[hidden] {
	display: none !important;
}

/* accessibility */
:where(button, [type="button"], [type="submit"], [type="reset"], a, input, select, textarea, summary):focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}