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


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


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


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

/* ================================================================================
html
================================================================================ */
html{	scroll-behavior: smooth;	}
body{	overflow-x: hidden;	}


/* ================================================================================
coverAll
load完了までカバーする場合は、content: "";のコメントアウトを解除
================================================================================ */
body::before
{
	content: "";
	display: block;

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

	width: 100%;	height: 100vh;
	background-color: white;

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

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


/* ================================================================================
MH
================================================================================ */
@media screen and (min-width: 768px)
{

.MH
{
	display: inline-block;
	cursor: pointer;
	transition: var(--T03);
	transition-property: opacity;
}
.MH:hover{	opacity: 0.7;	}

}

/* ================================================================================
a
================================================================================ */
a{	text-underline-offset: 0.2em;	}


/* ================================================================================
mb
================================================================================ */
@media screen, print
{

.mb5{	margin-bottom: var(--u5) !important;	}
.mb10{	margin-bottom: var(--u10) !important;	}
.mb15{	margin-bottom: var(--u15) !important;	}
.mb20{	margin-bottom: var(--u20) !important;	}
.mb25{	margin-bottom: var(--u25) !important;	}
.mb30{	margin-bottom: var(--u30) !important;	}
.mb40{	margin-bottom: var(--u40) !important;	}
.mb50{	margin-bottom: var(--u50) !important;	}
.mb60{	margin-bottom: var(--u60) !important;	}
.mb70{	margin-bottom: var(--u70) !important;	}
.mb80{	margin-bottom: var(--u80) !important;	}
.mb90{	margin-bottom: var(--u90) !important;	}
.mb100{	margin-bottom: var(--u100) !important;	}
.mb150{	margin-bottom: var(--u150) !important;	}
.mb200{	margin-bottom: var(--u200) !important;	}

}


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