/* 全体のリセットと共通スタイル */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body {
	background-color: #000000;
	color: #ffffff;
	font-family: "M PLUS 1", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.8;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
}

/* コンテナ全体の最大幅を制限して中央配置 */
.container {
	width: 100%;
	max-width: 600px;
	text-align: center;
}

/* 各要素の間隔 */
h1, h2, h3, p, .section {
	margin-bottom: 30px;
}

/* 一番上の画像（h1） */
h1 {
	margin-bottom: 40px;
}
h1 img {
	width: 100%;
	/*max-width: 450px;*/
	height: auto;
	display: block;
	margin: 0 auto;
}

/* 大きめのテキスト（h2） */
h2 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin: 105px 20px;
	line-height:1.3;
}

/* 各セクションのグループ化 */
.section {
	margin-bottom: 45px;
	text-align: left;
}

/* グレーの見出し（h3） */
h3 {
	background-color: #d3d3d3;
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	padding: 6px 0;
	text-align: center;
	letter-spacing: 0.1em;
	width: 100%;
	margin-bottom: 35px;
}

/* 本文テキスト（p） */
p {
	font-size: 16px;
	font-weight: normal;
	line-height: 30px;
}

/* 最後のp要素の余白調整 */
p:last-child {
	margin-bottom: 0;
}

/* スマホ向け調整 */
@media (max-width: 480px) {
	body {
		padding: 25px 15px;
	}
	h2 {
		/*font-size: 1.1rem;*/
		margin-block: 35px;
	}
	h3 {
		/*font-size: 0.85rem;*/
	}
	p {
		margin-inline: 10px;
		/*font-size: 0.85rem;*/
	}
}

/* 電話番号の自動リンク用 */
a {
	color: #e92905;
}
