@charset "utf-8";

#answer > * {
  margin-bottom: 20px;
}
#answer > *:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
h1
-------------------------------------------------- */
#answer h1 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 40px;
}

/* --------------------------------------------------
h2
-------------------------------------------------- */
#answer h2 {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #00699B;
}
#answer h2::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: -moz-linear-gradient(top left, #6EB92D, #007DAF); 
  background: -webkit-linear-gradient(top left, #6EB92D, #007DAF); 
  background: linear-gradient(to bottom right, #6EB92D, #007DAF);
  background: -ms-linear-gradient(top left, #6EB92D, #007DAF);
}

/* --------------------------------------------------
h3
-------------------------------------------------- */
#answer h3 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  color: #3C4950;
  text-align: center;
}
#answer h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 32px;
  height: 3px;
  margin-left: -16px;
  content: '';
  background: -moz-linear-gradient(top left, #6EB92D, #007DAF);
  background: -webkit-linear-gradient(top left, #6EB92D, #007DAF);
  background: linear-gradient(to bottom right, #6EB92D, #007DAF);
  background: -ms-linear-gradient(top left, #6EB92D, #007DAF);
}

/* --------------------------------------------------
h4
-------------------------------------------------- */
#answer h4 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  color: #3C4950;
  text-align: center;
}
#answer h4::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  content: '';
  background-color: #00699B;
}

/* --------------------------------------------------
h5
-------------------------------------------------- */
#answer h5 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #3C4950;
  text-align: center;
}

/* --------------------------------------------------
p
-------------------------------------------------- */
#answer p strong {
  color: inherit;
}
#answer p em {
  font-style: italic;
}

/* --------------------------------------------------
blockquote
-------------------------------------------------- */
#answer blockquote {
  border-left: 5px solid #ccc;
  padding-left: 5px;
}

/* --------------------------------------------------
pre
-------------------------------------------------- */
#answer pre {
  background-color: #ECEDF1;
  color: #333;
  border: 1px solid #ccc;
  font-size: 12px;
  padding: 1em;
  overflow-x: auto;
}

/* --------------------------------------------------
ul
-------------------------------------------------- */
#answer ul > li {
  position: relative;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.7;
}
#answer ul > li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #007DAF;
  border-radius: 50%;
}

/* --------------------------------------------------
ol
-------------------------------------------------- */
#answer ol {
  counter-reset: num;
}
#answer ol > li {
  position: relative;
  padding-left: 1.5em;
  font-size: 16px;
  list-style-position: inside;
  list-style-type: none;
}
#answer ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 100%;
  font-weight: bold;
  color: inherit;
  content: counter(num) ".";
  counter-increment: num;
}

/* --------------------------------------------------
table
-------------------------------------------------- */
#answer table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
#answer table th {
  padding: 24px;
  font-size: 18px;
  vertical-align: middle;
  border: 1px solid #fff;
  text-align: center;
}
#answer table td {
  padding: 24px;
  font-size: 16px;
  border: 1px solid #B2CBD8;
}
#answer table td *:last-child {
  margin-bottom: 0;
}
#answer table thead th {
  font-weight: bold;
  color: #fff;
  background: #007DAF;
}
#answer table tbody th {
  font-weight: bold;
  color: #fff;
  background: #007DAF;
}
#answer table tbody td {
  background: #fff;
}
#answer table thead + tbody th {
  font-weight: bold;
  color: #3C4950;
  background: #F8F8F8;
  border-bottom: 1px solid #B2CBD8;
}

/* --------------------------------------------------
a
-------------------------------------------------- */
#answer a,
#answer a:visited,
#answer a:active {
  color: #007DAF;
  text-decoration: underline;
}
#answer a:hover {
  text-decoration: none;
}