@charset "UTF-8";

body {
	margin: 0;
	padding: 0;
	font-family: "游ゴシック体", "Yu Gothic", sans-serif;
	background-color: #faf0e6;
}

h1 {
}

h1.banner {
	margin: 0;
	padding: 0;
}

h2 {
	text-align: center;
	font-size: 1.2rem;
}

h3 {
	text-align: center;
	font-size: 0.6rem;
	margin: 20px 0 30px 0;
}

p {
    text-align: center;
	margin: 0 0 30px 0;
}

p a {
    text-decoration: none;
}


div {
	/*
	border: solid 1px red;
	*/
}

div.button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

div.button-list + div.button-list {
	margin-top: 16px;
}

div.button {
	display: inline-block;
	width: 144px;
	height: 144px;
	margin: 10px;
	/*
	border: solid 1px green;
	*/
}

div.button a {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;

}

div.step {
	display: block;
	justify-content: center;
	width: 300px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-image: url(images/step.svg);
}

div.step + div.step {
	margin-top: 40px;
}

div.link {
	display: inline-block;
	width: 160px;
	height: 160px;
	margin: 20px;
	background-size: contain;
	border-radius: 10px;
}

div.link a {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}


div.button-content {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	/*
	border: solid 1px green;
	*/
}

div.button.white {
	background-image: url(images/button_white.svg);
}

div.button.red {
	background-image: url(images/button_red.svg);
}

div.button.blue {
	background-image: url(images/button_blue.svg);
}

p.button-title {
	margin: 0;
	padding: 0;
	font-family:  "游ゴシック体", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 0.9em;
	color: white;
	/*
	border: solid 1px green;
	*/
}

div.white p.button-title {
	color: black;
}

div.step p.button-title {
	color: black;
}



table {
  	width: 540px;
  	border-collapse: collapse;
  	border-spacing: 0;
}

table th {
  	padding: 10px 10px;
  	text-align: left;
}

table td {
  	padding: 10px 10px;
  	text-align: center;
}

table tr:nth-child(odd) {
  	background-color: #fffafa
}