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

*,
*::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;
}

ul,
ol {
	list-style-type: none;
}

img {
	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;
}


/* メインここから */




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

@media (max-width:520px) {
	h1 {
		font-size: 60px;
	}
	h2 {
		margin-bottom: 10px;
	}
	.top-hero p {
		font-size: 37px;
		text-align: center;
		line-height: 1;
		padding-top: 10px;
		letter-spacing: 2px;
	}
	.container {
		padding-left: 30px;
		padding-right: 30px;
	}
	
}