@charset "utf-8";
/* CSS Document */
header {
    width: 100%;
    padding: 30px 4% 10px;
    background-color: #fff;
    top: 0;
	display: flex;
    align-items: center;
}
h1 {
    margin: 0; padding: 0;
    font-size: 20px;
}

a {	
   text-decoration: none;
   color: #4b4b4b;
}

img {
  max-width: 100%;
  height: auto;
}

/* Q&A */
#panel {
  width: 60%;
  margin: auto;
}
h2 {
text-align: center;
}
#panel > dt {
  border-bottom: solid 1px white;
  background-color: rgba(217,235,252,1.00);
  color: black;
  cursor: pointer;
  padding: 10px;
  font-weight: bold;
}

#panel > dt .dtext {
	font-weight:100;
	margin: 3px;
}
 
#panel > dd {
  border: solid 1px rgba(217,235,252,1.00);
  margin: 0px;
  padding: 10px;
}

.point {
  font-weight: bold;
  color: rgba(77,77,77,1.00);
}
/* */
table{
  width: 100%;
  border-collapse:collapse;
  text-align: center;
  font-size: 13px;
}
caption{
  font-weight: 600;
}
td ,th{
  border: solid 1px #000;
}
td.gray {
	background-color: rgba(239,239,239,1.00);
}
th {
  background: #000;
  color: #fff;
  border-bottom: solid 1px #fff;
}
th:m{
  background: #000;
  color: #fff;
  border-bottom: solid 1px #fff;
}
.answer {
  list-style: none;
}
/*トップへ戻るボタン*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3f98ef;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/* */
@media only screen and (max-width: 800px) {
#panel {
  width: 100%;
  margin: auto;
}
}