@charset "utf-8";
/* CSS Document */
body {
	font-size:10px;
	font-family: 'Noto Sans JP',"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	background: #EDEFF3;
}
body a { color:#333;}
body a:hover { text-decoration:none;}

.container {
	position: relative;
	background: #EDEFF3;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	overflow: hidden;
}
.container img { width:100%; height: auto;}

.fadeIn {
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}
.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

@media (min-width: 641px) {
/* PC用 */
	.container {
		width:750px;
		margin:0 auto;
		overflow: hidden; 
		font-size:20px;
	}	
}
@media (max-width: 640px) {
/* SP用 */
}

/* margin
-------------------------------------------------- */

.mb-s {
	margin-bottom: 2em;
}
.mb-m {
	margin-bottom: 4em;
}
.mb-l {
	margin-bottom: 6em;
}

/* item
-------------------------------------------------- */

.item {
	display: grid;
	width: fit-content;
	column-gap: 0;
	grid-template-columns: repeat(2, auto);	
}
@media (min-width: 641px) {
/* PC用 */
}
@media (max-width: 640px) {
/* SP用 */
}

/* footer
-------------------------------------------------- */
.footer {
	display: flex;
	justify-content: space-between;
	color: #74787a;
	padding: 2em 4%;
}
.footer .link {
	width: 50%;
	text-align: left;
}
.footer .copy {
	width: 50%;
	text-align: right;
}
.footer p a { color:#74787a;}
@media (min-width: 641px) {
/* PC用 */
}
@media (max-width: 640px) {
/* SP用 */
}

