/* CSS Document */

h1 {
	text-align: center;
}

.wf-roundedmplus1c { font-family: "Rounded Mplus 1c"; }
.bold { font-weight:  700; }
.extrabold { font-weight: 800; }

html {
	/*height: 100%;*/
}

body {
	margin: 0;
    padding: 0;
    width:100%;
    /*height:100%;*/
	font-family: zen-maru-gothic, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #626262;
}

nav {
	text-align: center;
	margin: 50px auto;
}

nav.right {
	text-align: right;
	margin-right: 2%;
}

nav a{
	font-size: 0.9em;
	text-decoration: underline;
	cursor: pointer;
}


/* PC版 */

@media screen and (min-width: 769px) {
	
	br.sp {
		display: none;
	}
	
	.prefbtns {
		display: flex;
		justify-content: space-around;
	}
	
	.prefbtn {
		width:9.5%;
	}
	
	
.prefbtn {
	display: block;
	background-color: indianred;
	color: white;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
	margin: 10px auto;
	font-size: 1.4em;
	cursor: pointer;
	text-align: center;
}
	
	p.notice {
		text-align: center;
		font-size: 1.1em;
		padding: 30px 0;
	}	
	
table {
	width: 90%;
	margin: 0 auto;
	border-collapse: collapse;
}

table caption {
	/*background-color: #52c2d0;*/
	background-color: lightsalmon;
	color: white;
	font-weight: bold;
	text-align: left;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 30px;
	border: none;
	font-size: 1.5em;
	text-align: center;
	margin-top: 30px;
	border-radius: 15px;
}

table thead {
	background-color: cornflowerblue;
	color: white;
	font-weight: bold;
	text-align: left;
	padding: 15px;
	box-sizing: border-box;
	margin: 10px 0;
}

table thead tr {
	border-bottom: solid 5px white;
}

table thead tr td {
	border-right: solid 3px white;
	padding: 15px;
	font-size: 1.2em;
	text-align: center;
}

table tbody tr{
  border-bottom: solid 2px white;
	margin: 2px 0;
}

table tbody tr:last-child{
  border-bottom: none;
}

table tbody th{
  position: relative;
  text-align: left;
  width: 35%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 12px 0;
}

table tbody th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table tbody td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 2px 0;
	font-size: 1.1em;
}
	
	footer {
		margin-top: 100px;
		padding: 30px;
	}
	
	footer p {
		text-align: center;
		font-size: 0.7em;
	}
	
}

/*　携帯版　*/

@media screen and (max-width: 768px) {
	
	h1 {
		font-size: 1.5em;
		margin: 1em 0;
	}
	
	nav {
	text-align: center;
	margin: 30px auto;
}

.prefbtns {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	
	div.prefbtn {
		width:23%;
	}
	
	
.prefbtn {
	display: block;
	background-color: indianred;
	color: white;
	border-radius: 20px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 1em;
	margin: 3px 1%;
	cursor: pointer;
	text-align: center;
}
	
	p.notice {
		text-align: center;
		font-size: 0.9em;
		padding: 30px 0;
	}
	
table {
	width: 96%;
	margin: 0 auto;
	border-collapse: collapse;
}
	
table td,table th{ display:block; }	

table caption {
	/*background-color: #52c2d0;*/
	background-color: lightsalmon;
	color: white;
	font-weight: bold;
	text-align: left;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	border: none;
	font-size: 1.2em;
	text-align: center;
	margin-top: 20px;
	border-radius: 15px;
}

table thead {
	background-color: cornflowerblue;
	color: white;
	font-weight: bold;
	text-align: left;
	padding: 5px;
	box-sizing: border-box;
	margin: 10px 0;
	display: none;
}

table thead tr {
	border-bottom: solid 5px white;
}

table thead tr td {
	border-right: solid 3px white;
	padding: 7px;
	font-size: 1em;
	text-align: center;
}

table tbody tr{
  border-bottom: solid 2px white;
	margin: 10px 0;
}

table tbody tr:last-child{
  border-bottom: none;
}

table tbody th{
  position: relative;
  text-align: left;
  width: 100%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 12px 0;
	margin-top: 7px;
}

table tbody th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table tbody td{
  text-align: left;
  width: 100%;
  text-align: left;
  background-color: #eee;
	box-sizing: border-box;
  padding: 6px 5px;
	font-size: 1em;
}
	
	footer {
		margin-top: 100px;
		padding: 30px;
	}
	
	footer p {
		text-align: center;
		font-size: 0.7em;
	}	
	
}