@charset "UTF-8";

/* --------------------------------------------
FONTS
--------------------------------------------- */
:root{
	--fontFamily : "Zen Kaku Gothic New" , sans-serif;
	--fontFamilyEn : "Montserrat" , sans-serif;
}
.montserrat{
	font-family : var( --fontFamilyEn );
}

/* --------------------------------------------
UNIT
--------------------------------------------- */
@media screen and ( width <= 750px ){
	:root{
		--breakPoint : 375;
		--contentWidth : 335;
		--gutter : 20;
		--remBase : 100vw / 375;
		--viewportBase : 100% / var( --breakPoint );
	}
}
@media print , screen and ( width > 750px ){
	:root{
		--breakPoint : 1180;
		--contentWidth : 1100;
		--gutter : 40;
		--remBase : min( 1px , 100vw / var( --breakPoint ) );
		--viewportBase : min( 1px , 100% / var( --breakPoint ) );
	}
}
:root{
	--contentBase : 100% / var( --contentWidth );
}

/* --------------------------------------------
COLOR
--------------------------------------------- */
@property --base{
	syntax : "<color>";
	inherits : false;
	initial-value : #171776;
}
@property --pink{
	syntax : "<color>";
	inherits : false;
	initial-value : #ff6254;
}
@property --pink02{
	syntax : "<color>";
	inherits : false;
	initial-value : #fff5f4;
}
@property --pink03{
	syntax : "<color>";
	inherits : false;
	initial-value : #ff9c93;
}
@property --red{
	syntax : "<color>";
	inherits : false;
	initial-value : #e03f51;
}

/* --------------------------------------------
FILTER COLOR
--------------------------------------------- */
:root{
	--filterWhite : invert( 99% ) sepia( 28% ) saturate( 2% ) hue-rotate( 3deg ) brightness( 108% ) contrast( 100% );
	--filterBase : invert( 9% ) sepia( 69% ) saturate( 4654% ) hue-rotate( 241deg ) brightness( 90% ) contrast( 105% );
	--filterPink : invert( 43% ) sepia( 41% ) saturate( 1569% ) hue-rotate( 325deg ) brightness( 113% ) contrast( 100% );
	--filterPink03 : invert( 65% ) sepia( 31% ) saturate( 658% ) hue-rotate( 315deg ) brightness( 101% ) contrast( 116% );
}

/* --------------------------------------------
REGULATE
--------------------------------------------- */
*{
	padding : 0;
	margin : 0;
}
* , *::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{
	color-scheme : light;
}
:where( html ){
	block-size : 100%;
	-webkit-text-size-adjust : none;
	tab-size : 2;
	scrollbar-gutter : stable;
}
@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-optical-sizing : auto;
	line-height : 1;
	color : var( --base );
	word-break : normal;
	overflow-wrap : anywhere;
	text-rendering : optimizeLegibility;
	min-block-size : 100%;

	/* font-feature-settings: "palt" on; */
	scrollbar-gutter : stable;
	line-break : strict;
}
main{
	overflow-x : clip;
}
:where( p , h1 , h2 , h3 , h4 , h5 , h6 ){
	overflow-wrap : break-word;
}
:where( ul, ol ){
	list-style : none;
}
:where( a ){
	color : var( --base );
	text-decoration : none;
	text-underline-offset : calc( ( 1lh - 1em ) / 2 );
	touch-action : manipulation;
	cursor : pointer;
	text-decoration-skip-ink : auto;
}
:where( picture ){
	display : block;
	font-size : 0;
}
:where( img ){
	image-rendering : -webkit-optimize-contrast;
}
:where( p , h1 , h2 , h3 , h4 , h5 , h6 , a , span ){
	&:has( > img:only-child ){
		font-size : 0;
		line-height : 1;
	}
}
:where( svg , video , canvas , audio , iframe , embed , object ){
	display : block;
}
:where( svg ){
	fill : currentColor;
	stroke : none;
}
:where( svg:not( [fill] ) ){
	fill : none;
	stroke : currentColor;
	stroke-linecap : round;
	stroke-linejoin : round;
}
:where( img , svg , video ){
	max-width : inherit;
	font-size : 0;
	inline-size : auto;
}
:where( svg , video ){
	vertical-align : top;
}
:where( button ){
	font : inherit;
	font-size : inherit;
	color : inherit;
	letter-spacing : inherit;
	touch-action : manipulation;
	cursor : pointer;
	background-color : transparent;
	&:focus , &:focus-visible{
		outline : none;
	}
}
: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( details ){
	cursor : pointer;
}
:where( summary  ){
	display : block;
	list-style : none;
	&::-webkit-details-marker{
		display : none;
	}
}
:where( table ){
	border-collapse : collapse;
}
:where( em ,dfn ){
	font-style : normal;
}

/* @mixin regulateForms; */