@charset "UTF-8";
/* ------------------------------
	Reset（基本のリセット）
-------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ------------------------------
	HTML, Body の基本設定
-------------------------------- */
html {
	font-size: 16px;
	line-height: 1.75;
	font-feature-settings: "palt";
	letter-spacing: .2px;
	color: #333333;
	background-color: #EDF4FE;
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", 'Arial', sans-serif;
	min-height: 100vh;
}

/* ------------------------------
	見出しの設定
-------------------------------- */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
	margin-top: 0;
}
h1 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

h2 {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 16px;
}

h3 {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 14px;
}

h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 12px;
}

/* ------------------------------
	テキストとリンク
-------------------------------- */
p {
	text-align: justify;
}

a {
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}

button {
	cursor: pointer;
}

ul {
	list-style: none;
}

/* ------------------------------
	レスポンシブ対応
-------------------------------- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	display: block;
}
