@charset "UTF-8";

/* --------------------------------------------
FONTS
--------------------------------------------- */
:root{
	--fontFamily : zen-old-mincho , sans-serif;
}
.futura{
	font-family : futura-pt , sans-serif;
}
.futuraBold{
	font-family : futura-pt-bold , sans-serif;
	font-weight : 700;
}
.clarendon{
	font-family : clarendon-text-pro , serif;
}
.zen{
	font-family : zen-kaku-gothic-new , sans-serif;
}

/* --------------------------------------------
SETTINGS
--------------------------------------------- */
@media screen and ( width <= 750px ){
	:root{
		--breakPoint : 750;
		--wrapperSize : 670;
		--gutter : 40;
	}
}
@media print , screen and ( width > 750px ){
	:root{
		--breakPoint : 1270;
		--wrapperSize : 1210;
		--gutter : 30;
	}
}
:root{
	--base : black;
	--primary : #1f4996;
	--remBase : * .1rem;
	--percentBase : * 100% / var( --wrapperSize );
	--viewportBase : * 100% / var( --breakPoint );
	--transitionBase : .3s ease-in;
	--filterWhite : invert( 100% ) sepia( 100% ) saturate( 2% ) hue-rotate( 58deg ) brightness( 108% ) contrast( 101% );
}

/* --------------------------------------------
REGULATE
--------------------------------------------- */
*{
	padding : 0;
	margin : 0;
	word-break : break-all;
}
* ,
::before ,
::after{
	box-sizing : border-box;
}
*:not(fieldset, progress, meter){
	background-repeat : no-repeat;
	background-origin : border-box;
	border-style : solid;
	border-width : 0;
}
html{
	block-size : 100%;
	-webkit-text-size-adjust : none;
}
@media ( prefers-reduced-motion : no-preference ){
	html{
		scroll-behavior : smooth;
	}
}
body{
	overflow-x : clip;
	overflow-y : auto;
	font-family : var( --fontFamily );
	font-weight : 400;
	font-feature-settings : "palt" on;
	line-height : 1;
	color : var( --base );
	overflow-wrap : anywhere;
	text-rendering : optimizeSpeed;
	min-block-size : 100%;
	line-break : strict;
}
:where( svg, video, canvas, audio, iframe, embed, object ){
	display : block;
}
:where( img, svg, video ){
	inline-size : auto;
	font-size : 0;
}
:where( img ){
	image-rendering : -webkit-optimize-contrast;
}
:where( svg ){
	fill : currentColor;
	stroke : none;
}
:where( svg:not( [fill] ) ){
	fill : none;
	stroke : currentColor;
	stroke-linecap : round;
	stroke-linejoin : round;
}
:where( svg:not( [width] ) ){
	inline-size : 5rem;
}
:where( input, button, textarea, select , input[type="file"]::-webkit-file-upload-button ){
	font : inherit;
	font-size : inherit;
	color : inherit;
	letter-spacing : inherit;
	outline : none;
}
:where( textarea ){
	resize : vertical;
}
@supports (resize: block){
	textarea{
		resize : block;
	}
}
:where( button ){
	background-color : transparent;
}
:where( p, h1, h2, h3, h4, h5, h6 ){
	overflow-wrap : break-word;
}
:where( p, h1, h2, h3, h4, h5, h6 , a ):has( > img:only-child ){
	font-size : 0;
	line-height : 1;
}
:where( ul, ol ){
	list-style : none;
}
:where( a ){
	color : var( --body );
	-webkit-text-decoration : none;
	text-decoration : none;
	text-underline-offset : .4em;
	text-decoration-skip-ink : auto;
}
:where( a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not( [tabindex*="-"] ) ){
	touch-action : manipulation;
	cursor : pointer;
}
:where( input[type="file"] ){
	cursor : auto;
}
:where( input[type="file"]::-webkit-file-upload-button,input[type="file"]::file-selector-button ){
	cursor : pointer;
}
@media ( prefers-reduced-motion : no-preference ){
	:focus-visible{
		transition : outline-offset 145ms cubic-bezier( .25 , 0 , .4 , 1 );
	}
	:where( :not( :active ) ):focus-visible{
		transition-duration : .25s;
	}
}
:where( :not( :active ) ):focus-visible{
	outline-offset : 5px;
}
:where( button, button[type], input[type="button"], input[type="submit"], input[type="reset"],input[type="file"]::-webkit-file-upload-button,input[type="file"]::file-selector-button ){
	-webkit-tap-highlight-color : transparent;
	-webkit-touch-callout : none;
	user-select : none;
}
:where( button, button[type], input[type="button"], input[type="submit"], input[type="reset"] )[disabled]{
	cursor : not-allowed;
}
:where( table ){
	border-collapse : collapse;
}
:where( picture ){
	display : block;
}
:where( em ){
	font-style : normal;
}
:where( dialog ){
	max-width : 100%;
	max-height : 100%;
}

/* @mixin print; */