@charset "UTF-8";
@import url("./destyle.css");
@import url("./site.css");
@import url("./animation.css");


/* ================================================================================
font
================================================================================ */
.gothic{  font-family: 'Noto Sans JP', sans-serif;	}
.mincho{	font-family: 'Noto Serif JP', serif;	}

.material-symbols-outlined
{
	font-size: 1em;
	line-height: inherit;
	vertical-align: bottom;
}


/* ================================================================================
display size
================================================================================ */
@media screen and (min-width: 768px){	.sp{	display: none!important;	}	}
@media screen and (max-width: 767px){	.pc{	display: none!important;	}	}


/* ================================================================================
image wrapper width or height
================================================================================ */
.IW, .IWW, .IWH, .IH, .IHH, .IHW{	display: block;	}
.IW img, .IWW img, .IWH img, .IW svg, .IWW svg, .IWH svg{	width: 100%;	height: auto;	}
.IH img, .IHH img, .IHW img, .IH svg, .IHH svg, .IHW svg{	width: auto;	height: 100%;	}

@media screen and (max-width: 767px)
{
	.IWH img, .IWH svg{	width: auto;	height: 100%;	}
	.IHW img, .IHW svg{	width: 100%;	height: auto;	}
}

picture
{
	display: block;
}
picture img
{
	width: 100%;	height: 100%;
	object-fit: cover;
}



/* ================================================================================
system
================================================================================ */
/* ========================================
coverAll
======================================== */
body::before
{
	content: "";
	display: block;

	z-index: var(--priorityCover);
	position: fixed;
	top: 0;	left: 0;

	width: 100%;	height: 100vh;
	background-color: rgba(255, 255, 255, 1.0);

	transition-delay: 0.1s;
	transition-duration: 0.3s;
}
body.loaded::before
{
	pointer-events: none;
	opacity: 0;
}


/* ========================================
IV
======================================== */
.IV{	opacity: 0;	}


/* ========================================
bgLazy
======================================== */
body:not(.loaded) .bgLazy{	background-image: none !important;	}


/* ======================================== end ======================================== */
