body {
  font-family: "M PLUS 2", serif;
  overflow-x: hidden;
}

main, footer {
	text-align:center;
/* 	padding:100px; */
}



#header {
	background-color: white;
	width: 90%;
	max-width: 800px;
	height: 70px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header.active {
	background-color: white;
}

#hmb {
	width: 32px;
	height: 28px;
	cursor: pointer;
	position: relative;
	z-index: 30;
}
#hmb span {
	width: 32px;
	height: 3px;
	display: block;
	background-color: gray;
	border-radius: 2px;
	position: absolute;
	transition: .2s;
}
#hmb span:first-child {top: 0;}
#hmb span:nth-child(2){top: 12px;}
#hmb span:last-child{top: 24px;}
nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 80%;
	max-width: 200px;
	height: 100vh;
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: pink;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
	transition-property: all;
	transition-duration: .2s;
}
nav ul li a {
	background-color: white;
	display: block;
	margin-bottom: 16px;
}
.active #hmb span:first-child{
	top: 12px;
	transform: rotate(45deg);
}
.active #hmb span:nth-child(2){
	opacity: 0;
}
.active #hmb span:last-child{
	top: 12px;
	transform: rotate(-45deg);
}
.active nav {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
}
.active::before {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	background-color: black;
	width: 100vw;
	height: 100vh;
	opacity: 0.4;
	z-index: 10;
}
h1 {
	font-size: 25px;
	margin-bottom: 10px;
}

.row {
	max-width: 1000px;
	margin: 0 auto;
}

.col {
	max-width: 1000px;
	margin: 0 auto;
}

.text {
	width: 100%;
	text-align: left;
	padding: 10px 120px;
	line-height: 1.6;
}
.box02s {
	width: 90%;
	text-align: left; 	/*幅と高さ*/
	margin: auto;
    border: solid 10px #ffffff;
    border-radius: 30px;
    background-color: pink;
	line-height: 1.6;
	margin: 10px 10px 10px 10px;
	padding: 10px 10px 10px 10px;
}
table{
  border-collapse:separate;
  border-spacing: 5px;
/*   width: 100%; */
}

table th,table td{
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
}

table th{
  background-color: pink;
  color: black;
  border:solid 1px lightpink;
}

table td{
  background-color: pink;
  border:solid 1px hotpink;
}

footer {
	font-size: 13px;
	padding:10px 10px 10px 10px;
}