@charset "utf-8";
/* CSS Document */


html {
	font-size: 62.5%;
}


/* <uniquifier>: Use a unique and descriptive class name*/
/* <weight>: Use a value from 100 to 900*/

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-feature-settings: "palt" 1;
}
.font-bold {
	font-weight: 700;
}
a {
	text-decoration: none;
}

.switch__sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.switch__pc {
		display: none;
	}
	.switch__sp {
		display: block;
	}
}
h2 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

/* ------------------------
fadein effect
---------------------------*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 800ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

@media screen and (min-width: 1024px) {
	.fadein__delay1 {
		transition-delay: 0.5s;
	}
	.fadein__delay2 {
		transition-delay: 1.5s;
	}
	.fadein__delay3 {
		transition-delay: 0.75s;
	}
}

