header {
  text-align: center;
  z-index: 9999;
  background: #fff;
  padding: 15px 0;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-align: center;
  align-items: baseline;
}

header .logo {
    width: 150px;
}

header a {
  border: unset;
}

strong {
	font-weight: 700;
}

main {
	width: 90%;
	max-width: 800px;
	padding-top: 10px;
  padding-bottom: 30px;
	margin: 0 auto;
	line-height: 1.7em;
}

img {
	width: 100%;
	padding-bottom: 20px;
}

p {
	white-space: pre-wrap;
	margin-bottom: 0.7em;
  font-size: 15px;
}

h1 {
	font-size: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: 700;
}

h2 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .01em;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  width: 100%;
  color: #444;
}

h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: .01em;
  color: #444;
}

a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  display: inline;
}

blockquote {
  padding: 20px 30px;
  background-color: #F7F9F9;
  font-size: 14px;
}

blockquote li {
  margin-bottom: 5px;
}

table {
  border-collapse: collapse;
  width: 100%
}

tbody {
	border: 1px solid #e7e7e7;
}

tr {
	height: 20px;
	display: table-row;
	border-top: 1px solid #e7e7e7;

}

th {
  min-width: 100px;
	padding: 10px 15px;
	background-color: #F7F9F9;
  font-size: 12px;
}

td {
  min-width: 100px;
  line-height: 1.4;
	padding: 10px 15px;
  font-size: 12px;
  text-align: center;
  border-left: 1px solid #e7e7e7;
}

td a {
  font-size: 12px;
}

.table-scroll {
  overflow-x: scroll;
}

.cta {
	text-align: center;
  padding: 13px;
  width: fit-content;
  border-bottom: none;
  background-color: darkcyan;
  display: block;
  margin: 0 auto;
  color: #fff;
  text-decoration: none !important;
  box-shadow: 0 -4px 0 rgb(0 0 0 / 10%) inset;
  border-radius: 3px;
}

/* 
 * footer 
 */
footer {
  background: #333;
  color: #fff;
  padding: 50px 0;
}

footer article {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

footer article .box {
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
}

footer article .box .boxL {
  width: 50%;
}

footer article .box .boxL img {
  display: block;
  margin-bottom: 15px;
  width: 300px;
  padding: unset;
}

footer article .box .boxL small {
  font-size: 12px;
  display: block;
}

footer article .box .boxR {
  width: 50%;
}

footer article .box .boxR ul li {
  margin-bottom: 10px;
}

footer article .box .boxR ul li a {
  font-size: 14px;
  transition: 0.2s;
  border: none !important;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
  blockquote {
  padding: 10px 10px;
  background-color: #F7F9F9;
  font-size: 14px;
  }

  footer {
    background: #333;
    color: #fff;
    padding: 50px 0;
  }

  footer article {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }

  footer article .box {
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-flow: column-reverse;
  }

  footer article .box .boxR {
    width: 100%;
  }

  footer article .box .boxL {
    width: 100%;
  }

  footer article .box .boxR ul li a {
    font-size: 12px;
  }
}