@charset "utf-8";
/* CSS Document */
.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.bg_onetime_popup.js_active {
  opacity: 1;
  visibility: visible;
}
.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  min-width: 500px;
}
.topicsEntry {
  background-color: #fff;
  padding: 40px;
  overflow: scroll;
  height: 700px;
}
.onetime_popup .close {
  font-size: 40px;
  font-weight: 100;
  cursor: pointer;
	color: #fff;
	text-align: right;
	padding-bottom: 10px;
}
.onetime_popup_title {
  position: relative;
  padding: 30px 90px;
  margin: 0px;
  background-color: #3388dd;
  color: #fff;
  font-size: 32px;
  text-align: center;
  line-height: 1.5;
}
.onetime_popup_title::before, .onetime_popup_title::after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 4px;
  background-color: #fff;
  content: "";
}
.onetime_popup_title::before {
  transform: rotate(45deg);
}
.onetime_popup_title::after {
  transform: rotate(-45deg);
}
.onetime_popup_content {
  padding: 60px 30px;
  text-align: center;
}
/* topics.css */
.topicsHeader {
  font-size: 24px;
  font-weight: normal;
  color: #936D00;
  margin: 20px 0 60px 0;
  line-height: 1.75;
}
.topicsEntry p {
  font-size: 16px;
  line-height: 1.75;
  margin: 1em 0;
}
.topicsEntry ul li {
  margin-left: 30px;
  list-style-type: disc;
  line-height: 1.75;
}
.topicsEntry ol li {
  margin-left: 30px;
  list-style-type: decimal;
  line-height: 1.75;
}
.topicsEntry h1, .topicsEntry h2 {
  font-size: 24px;
  font-weight: normal;
  color: #936D00;
  margin: 20px 0 20px 0;
  line-height: 1.75;
}
.topicsEntry h3, .topicsEntry h4 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 20px 0 20px 0;
  line-height: 1.75;
}
.topicsEntry h5, .topicsEntry h6 {
  font-size: 18px;
  font-weight: normal;
  color: #000;
  margin: 20px 0 20px 0;
  line-height: 1.75;
}
.topicsEntry table {
  font-size: 16px;
  width: 90%;
  margin: 20px auto;
  border-collapse: collapse;
}
.topicsEntry table th {
  padding: 5px;
  border: solid 1px #ddd;
  background-color: #f0f0f0;
}
.topicsEntry table td {
  padding: 5px;
  border: solid 1px #ddd;
  background-color: #fff;
}