@charset "UTF-8";
@import url("./destyle.css");
@import url("./var.css");
@import url("./site.css");
@import url("./animation.css");
@import url("./header.css");
@import url("./footer.css");
@import url("./sideDrawer.css");
@import url("./form.css");


/* ================================================================================
font
================================================================================ */
.gothic{	font-family: 'Open Sans', sans-serif;	}
.Lato{	font-family: 'Lato', sans-serif;	}
.ZenMaru{	font-family: 'Zen Maru Gothic', sans-serif;	}
.Crimson{	font-family: 'Crimson Pro', serif;	}

.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;	}


/* ================================================================================
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
{
	cursor: pointer;
	transition: var(--T03);
	transition-property: filter;
}
.MH:hover{	filter: brightness(1.1)	opacity(0.7);	}

}


/* ================================================================================
mb
================================================================================ */
@media screen, print
{

.mb_10{	margin-bottom: 10px;	}
.mb_20{	margin-bottom: 20px;	}
.mb_30{	margin-bottom: 30px;	}
.mb_40{	margin-bottom: 40px;	}
.mb_50{	margin-bottom: 50px;	}

}
@media screen and (max-width: 767px)
{

.mb_10{	margin-bottom: 2vw;	}
.mb_20{	margin-bottom: 4vw;	}
.mb_30{	margin-bottom: 6vw;	}
.mb_40{	margin-bottom: 8vw;	}
.mb_50{	margin-bottom: 10vw;	}

}


.noLetterSpacing{	letter-spacing: 0;	}

/* ======================================== end ======================================== */
