@charset "UTF-8";
/* @acab/reset.css */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:where([hidden]:not([hidden='until-found'])) {
	display: none !important; }
:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light; }
@supports not (min-block-size: 100dvb) {
	:where(html) { block-size: 100%;	} }
@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) { scroll-behavior: smooth;	} }
:where(body) {
	block-size: 100%;
	block-size: 100dvb;
	line-height: 1.5;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased; }
:where(input, button, textarea, select) {
	font: inherit;
	color: inherit; }
:where(textarea) {
	resize: vertical;
	resize: block; }
:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer; }
:where(:disabled) {
	cursor: not-allowed; }
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;}
:where(button) {
	border-style: solid;  }
:where(a) {
	text-underline-offset: 0.2ex; }
:where(ul, ol) {
	list-style: none;  }
:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block; }
:where(img, picture, svg) {
	max-inline-size: 100%; /* images should never overflow past the available space */
	block-size: auto; }
:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word; } 
:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);  }
:where(hr) {
	border: none; border-block-start: 1px solid; color: inherit; block-size: 0; overflow: visible; }
:where(:focus-visible) {
	outline: 2px solid var(--focus-color, Highlight); outline-offset: 2px;}

 /* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;}


/* ----------------------------------------------------
	flex
---------------------------------------------------- */
.row { display: flex; flex-flow: row wrap;}
.column { display: flex; flex-flow: column wrap;}
.f-cnt-fs { justify-content: center; align-items: flex-start; }
.f-cnt-cnt { justify-content: center; align-items: center; }
.f-sb-st { justify-content: space-between; align-items: stretch; }
.f-sb-fs { justify-content: space-between; align-items: flex-start; }
.f-sb-cnt { justify-content: space-between; align-items: center; }
.f-sa-st { justify-content: space-around; align-items: stretch; }
.f-sa-cnt { justify-content: space-around; align-items: center; }
.f-sa-fs { justify-content: space-around; align-items: flex-start; }
.f-fs-fs { justify-content: flex-start; align-items: flex-start;}
.f-fs-st { justify-content: flex-start; align-items: stretch;}
.f-fs-cnt { justify-content: flex-start; align-items: center;}
.f-fe-cnt { justify-content: flex-end; align-items: center;}
.f-fe-fs { justify-content: flex-end; align-items: flex-start;}
.f-fe-fe { justify-content: flex-end; align-items: flex-end;}
.f-cnt-st-sb { justify-content: center; align-items: stretch; align-content: space-between;}






