/* ----------------全体の設定ここから---------------- */

*,
*::after,
*::before {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

body {
	/* font-family: 'Lora', serif; */
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 16px;
	line-height: 2;
}

img {
	max-width: 100%;
}

input {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.6;
}

.container {
	width: min(92%, 1024px);
	margin-inline: auto;
}

/* ----------------全体の設定ここまで---------------- */


/* ヘッダーここから */



/* フッターここから */

footer {
	height: 44px;
	background-color: #6b6262;
	font-size: 12px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}


/* メインここから */

.one {
	text-align: center;

}
.two {
	text-align: center;
	padding-top: 10px;
}
.three {
	text-align: center;
	padding-top: 10px;
}
.four {
	text-align: center;
	padding-top: 10px;
}


/* -----------------スマートフォン版ここから----------------- */

@media (max-width:520px) {
	.one {
		text-align: center;
	
	}
	.two {
		text-align: center;
		padding-top: 10px;
	}
	.three {
		text-align: center;
		padding-top: 10px;
	}
	.four {
		text-align: center;
		padding-top: 10px;
	}
}