@charset "UTF-8";

/* --------------------------------------------
FONTS
--------------------------------------------- */
@font-face{
	font-family : "Noto Sans JP";
	font-weight : 1 999;
	src : url( "../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.woff2" ) format( "woff2" );
	font-display : swap;
}
.notosans{
	font-family : "Noto Sans JP" , sans-serif;
}
@font-face{
	font-family : "Noto Serif JP";
	font-weight : 1 999;
	src : url( "../fonts/Noto_Serif_JP/NotoSerifJP-VariableFont_wght.woff2" ) format( "woff2" );
	font-display : swap;
}
.notosefir{
	font-family : "Noto Serif JP" , serif;
}
@font-face{
	font-family : Poppins;
	font-weight : 600;
	src : url( "../fonts/Poppins/Poppins-SemiBold.woff2" ) format( "woff2" );
	font-display : swap;
}
@font-face{
	font-family : Poppins;
	font-weight : 500;
	src : url( "../fonts/Poppins/Poppins-Medium.woff2" ) format( "woff2" );
	font-display : swap;
}
.poppins{
	font-family : Poppins , serif;
}

/* --------------------------------------------
COLOR SETTINGS
--------------------------------------------- */
@property --base{
	syntax : "<color>";
	inherits : false;
	initial-value : #333;
}
@property --blue{
	syntax : "<color>";
	inherits : false;
	initial-value : #004a8c;
}
@property --perple{
	syntax : "<color>";
	inherits : false;
	initial-value : #859efb;
}
@property --red{
	syntax : "<color>";
	inherits : false;
	initial-value : #bf0008;
}
@property --gradation01{
	syntax : "*";
	inherits : false;
	initial-value : linear-gradient( 90deg , #55b7ee 0% , #899cfb 50% , #3475eb 100% );
}
@property --gradation02{
	syntax : "*";
	inherits : false;
	initial-value : linear-gradient( 90deg , #30a1df 0% , #5c75f1 50% , #1b61e1 100% );
}
@property --filterWhite{
	syntax : "*";
	inherits : false;
	initial-value : invert( 100% ) sepia( 100% ) saturate( 2% ) hue-rotate( 58deg ) brightness( 108% ) contrast( 101% );
}
@property --filterBase{
	syntax : "*";
	inherits : false;
	initial-value : invert( 17% ) sepia( 12% ) saturate( 0% ) hue-rotate( 209deg ) brightness( 96% ) contrast( 89% );
}
@property --filterBlue{
	syntax : "*";
	inherits : false;
	initial-value : invert( 16% ) sepia( 83% ) saturate( 2594% ) hue-rotate( 194deg ) brightness( 97% ) contrast( 101% );
}
@property --filterPerple{
	syntax : "*";
	inherits : false;
	initial-value : invert( 79% ) sepia( 45% ) saturate( 5771% ) hue-rotate( 198deg ) brightness( 101% ) contrast( 97% );
}

/* --------------------------------------------
UNIT SETTINGS
--------------------------------------------- */
@media screen and ( width <= 750px ){
	@property --breakPoint{
		syntax : "<number>";
		inherits : false;
		initial-value : 375;
	}
	@property --wrapperSize{
		syntax : "<number>";
		inherits : false;
		initial-value : 335;
	}
	@property --gutter{
		syntax : "<number>";
		inherits : false;
		initial-value : 20 ;
	}
}
@media screen and ( width > 750px ) , print{
	@property --breakPoint{
		syntax : "<number>";
		inherits : false;
		initial-value : 1140 ;
	}
	@property --wrapperSize{
		syntax : "<number>";
		inherits : false;
		initial-value : 1100;
	}
	@property --gutter{
		syntax : "<number>";
		inherits : false;
		initial-value : 20;
	}
}
@property --remBase{
	syntax : "*";
	inherits : false;
	initial-value : * .1rem;
}
:root{
	--percentBase : * 100% / var( --wrapperSize );
	--viewportBase : * 100% / var( --breakPoint );
}

/* --------------------------------------------
TRANSITION
--------------------------------------------- */
@property --transitionBase{
	syntax : "*";
	inherits : false;
	initial-value : .3s ease-in;
}

/* --------------------------------------------
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;
}
:root{
	--csstools-color-scheme--light : initial ! important;
	color-scheme : light ! important;
}
:where( html ){
	block-size : 100%;
	-webkit-text-size-adjust : none;
	tab-size : 2;
}
@media ( prefers-reduced-motion : no-preference ){
	html{
		scroll-behavior : smooth;
	}
}
:where( html:has( dialog[open] ) ){
	overflow : clip;
}
:where( body ){
	overflow-x : clip;
	overflow-y : auto;
	font-family : var( --fontFamily );
	font-weight : 400;
	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 ){
	max-width : inherit;
	font-size : 0;
	vertical-align : top;
	inline-size : auto;
}
: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( p, h1, h2, h3, h4, h5, h6 ){
	overflow-wrap : break-word;
}
:where( p, h1, h2, h3, h4, h5, h6 , a ):only-child:has( > img ){
	font-size : 0;
	line-height : 1;
}
:where( ul, ol ){
	list-style : none;
}
:where( a ){
	color : var( --base );
	-webkit-text-decoration : none;
	text-decoration : none;
	text-underline-offset : calc( ( 1lh - 1em ) / 2 );
	touch-action : manipulation;
	cursor : pointer;
	text-decoration-skip-ink : auto;
}
:where( button , [type="button"] , [type="reset"] , [type="submit"] ){
	touch-action : manipulation;
}
:where( button ){
	background-color : transparent;
}
:where( button, input, label[for], select, summary, textarea, [tabindex]:not( [tabindex*="-"] ) ){
	touch-action : manipulation;
	cursor : pointer;
}
:where( :disabled ){
	cursor : not-allowed;
}
:where( label:has( > input:disabled ), label:has( + input:disabled ) ){
	cursor : not-allowed;
}
: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( table ){
	border-collapse : collapse;
}
:where( picture ){
	display : block;
}
:where( em,dfn ){
	font-style : normal;
}
:where( dialog , [popover] ){
	inset : unset;
	max-width : unset;
	max-width : 100%;
	max-height : unset;
	max-height : 100%;
	color : inherit;
	background : none;
	border : none;
}
:where( dialog:not( [open] ), [popover]:not( :popover-open ) ){
	display : none;
}
:where( summary  ){
	display : block;
	list-style : none;
}
:where( summary::-webkit-details-marker  ){
	display : none;
}

/* --------------------------------------------
PRINT
--------------------------------------------- */
body{
	width : 100%;
	overflow-x : hidden;
}
@page{
	margin : .5cm;
	margin-top : .4cm;
	size : a4 portrait;
}
.no-print{
	display : none;
}