@charset "utf-8";
/*@charset "UTF-8";     コメント */
/*css初期設定 start*/
html {
	font-size: 62.5%;
	/*文字標準*/
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-style: normal;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
	/*リンクデコレーションリセット*/
	color: #000;
}
/*大きさの計算*/
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*hrリセット*/
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	width: 100%;
	margin: 0 auto;
	/*文字詰め*/
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	/*スマホ横向き時のフォントサイズリセット*/
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	line-height: 1.7;
	letter-spacing: 0.1rem;
	background-color: #ffffff;
	color: #000;
	overflow: visible;
}
/*iOSフォーム要素の初期化*/
input,
button,
textarea,
select {
	-webkit-appearance: none;
	appearance: none;
}
/*画像の調整*/
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

@media (max-width: 599px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.br-sp {
		display: block !important;
	}
	.br-pc {
		display: none !important;
	}
}
@media only screen and (min-width: 600px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
	.br-sp {
		display: none !important;
	}
	.br-pc {
		display: block !important;
	}
}

/*ヘッダーアイコンサイズ調整　sp*/
#header #name-and-logo img {
	height: 48px;
	width: 150px;
}
/*css初期設定 end*/

/*メインcss*/
.mainWrap {
	width: 100%;
	padding: 8rem 9.6% 4rem;
	margin: 0 auto;
}

/* --- セクション1 (タイトルエリア) --- */
.firstSec {
	margin-bottom: 6rem;
	text-align: left;
}

.firstSec h2 {
	font-size: clamp(1.8rem, 4.8vw, 2.4rem);
	font-weight: 800;
	margin-bottom: 3rem;
	text-align: center;
}

.firstSec p {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
}

.firstSec h3 {
	font-size: 1.4rem;
	font-weight: 600;
}

.secondSec p {
	font-size: 1.4rem;
	margin-bottom: 3rem;
	text-align: left;
}

.noteBlock {
	margin-top: 4rem;
}
.noteBlock p {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

@media only screen and (min-width: 600px) {
	.mainWrap {
		max-width: 720px;
		padding: 80px 50px;
	}

	.firstSec {
		margin-bottom: 50px;
		text-align: center;
	}

	.firstSec p {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.firstSec h3 {
		font-size: 1.8rem;
	}

	.secondSec p {
		font-size: 1.5rem;
	}

	.noteBlock {
		margin-top: 40px;
	}
}
