@charset "utf-8";

@font-face {
  font-family: 'Noto Sans JP';
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/NotoSansJP-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-display: swap;
  font-weight: 700;
  src: url('../fonts/NotoSansJP-Bold.woff2') format('woff2');
}

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

body {
	background: #fff;
	color: #333;
	line-height: 1.7;
	text-align: center;
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, 'MS PGothic', sans-serif;
	font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem);
	/*-----14px-16px / 320px-1000px-----*/
}

.container {
	max-width: 880px;
	margin: 0 auto;
}

.title {
	font-weight: bold;
	margin: 1em auto;
	font-size: clamp(1.5rem, 1.029rem + 2.35vw, 2.5rem);
	/*-----24px-40px / 320px-1000px-----*/
}

table {
	width: 92%;
	margin: 0 auto;
	text-align: left;
	border-collapse: collapse;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

th {
	width: 35%;
	background: #e4e4e4;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 0.5em 1em;
}

td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 0.5em 1em;
}

p {
	padding-left: 1em;
  text-indent: -1em;
}

a:link,
a:visited {
	color: #f03748;
	text-decoration:  none;
}

a:hover,
a:active {
	color: #333;
	text-decoration:  none;
}

footer {
	padding: 1.5em 0;
	font-size: clamp(0.625rem, 0.507rem + 0.59vw, 0.875rem);
	/*-----10px-14px / 320px-1000px-----*/
}

footer a {
	font-weight: bold;
	font-size: 150%;
}

/*
=========================================================================
SP max-width: 599px
=========================================================================
*/

@media screen and (max-width: 599px) {
	th,
	td {
		width: 100%;
		display: block;
	}
}