.div_center {
  text-align: center;
}

.p_title {
  font-size: 2.5rem;
  color: #999;
  text-decoration: none;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  -webkit-font-smoothing: antialiased;
}


.a-block {
  font-size: 1.0rem;
  display: inline-block;
  position: relative;
  color: #333333;
  text-decoration: none;
  padding: 0.2em 0.05em;
  border-bottom: 2px solid #333333;
}

.a-block:hover {
  color: #efefef;
}

.a-block:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  background: #333333;
  z-index: -1;
  transition: all 0.1s cubic-bezier(0, 0.59, 1, 0.26);
}

.a-block:hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #333333;
  z-index: -1;
}



.ordered-nav {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.ordered-nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 6px;
  top: 8px;
  bottom: 16px;
  width: 3px;
  background-color: #27A4FC;
}
.ordered-nav--link {
  padding-left: 1.5rem;
  margin: 0.75rem 0;
  position: relative;
}
.ordered-nav--link::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  width: 9px;
  height: 9px;
  background-color: white;
  border-color: #27A4FC;
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
}
.ordered-nav--link:first-child {
  margin-top: 0;
}
.ordered-nav--link:first-child::before {
  top: 2px;
}
.ordered-nav--link:last-child {
  margin-bottom: 0;
}
.ordered-nav--link__active .tx-link {
  color: white;
}
.ordered-nav--link__active::before {
  background-color: #27A4FC;
}

.tx-link {
  font-family: "Ubuntu", sans-serif;
  color: #000000;
  text-decoration: underline;
  text-underline-position: under;
}









.hr-dot {
  margin: 12px 0;
  border: 0;
  text-align: center;
  display:block;  
}


.hr-dot:before {
  content: "•••";
  font-size: 50px;
  color: #4F8BCA;
}


.hr-box {
  width: 70px;
  height: 8px;
  margin: 0 auto;
  background: #000;
  border: none;
  position: relative;
  overflow: visible;
  display:block;  
}
.hr-box:before,
.hr-box:after {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  width: 55px;
  border-bottom: 1px solid #aaa;
  top: 2.5px;
}
.hr-box:before {
  left: -60px;
}
.hr-box:after {
  right: -60px;
}


.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: 0.5;
  display:block;  
}
.hr-text:before {
  content: "";
  background: linear-gradient(to right, transparent, #818078, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: black;
  padding: 0 0.5em;
  line-height: 1.5em;
  color: #818078;
  background-color: #fcfcfa;
}
