@charset "UTF-8";
/* CSS Reset - 2025 Best Practices */
/* Box sizing */
*,
*::before,
*::after {
	box-sizing: border-box;
}
/* Remove default margin and padding */
* {
	margin: 0;
	padding: 0;
}
/* HTML and Body */
html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* ノッチ付きデバイスへの対応 */
	padding-top: env(safe-area-inset-top);
	padding-right: env(safe-area-inset-right);
	padding-bottom: env(safe-area-inset-bottom);
	padding-left: env(safe-area-inset-left);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.2;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
/* Lists */
ul,
ol {
	list-style: none;
}
/* Links */
a {
	text-decoration: none;
	color: inherit;
}
/* Media elements */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
/* Forms */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
/* Remove default button styles */
button {
	cursor: pointer;
}
/* Remove spinner controls */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	appearance: none;
}
/* Remove default appearance */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="number"],
input[type="search"],
textarea {
	appearance: none;
	width: 100%;
}
/* Date input */
input[type="date"] {
	position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
/* Select */
select {
	appearance: none;
	cursor: pointer;
}
/* Radio and Checkbox */
input[type="radio"],
input[type="checkbox"] {
	appearance: none;
}
/* Textarea */
textarea {
	resize: vertical;
}
/* Remove default focus outline, but maintain accessibility */
:focus {
	outline: none;
}
:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}
/* Table */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}