html, body {
  width: 100%;
  margin: 0;
  height: 100%;
}
body {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#wrapper {
  height: 100%;
  overflow-y: scroll;
}
#wrapper > * {
  width: 99%;
  margin: 0 auto;
}
* {
  font-family: sans-serif;
}
#wrapper header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background-color: white;
  box-shadow: 0 0 5px 0 black;
  z-index: 1;
  display: flex;
}
header img {
  margin: 7px 20px 7px 10px;
  height: 30px;
  float: left;
}
header div {
  height: 100%;
  line-height: 44px;
}
header div a {
  display: inline-block;
  height: 100%;
  text-decoration: none;
  color: black;
  margin-right: 10px;
  position: relative;
}
header div a::before {
  content: '';
  position: absolute;
  border-right: 1px solid gray;
  display: block;
  top: 15px;
  width: 1px;
  height: 14px;
  left: -6px;
}
header .left {
  float: left;
}
header .left a {
  float: left;
}
header .right, header .right-page-link {
  display: inline-block;
  text-align: right;
  margin-right: 20px;
  cursor: pointer;
}
header .right a, header .right-page-link a {
  text-align: right;
}
header .right-page-link {
  flex: 1;
  white-space: nowrap;
}
@media (max-width: 750px) {
  header .right-page-link {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
header .right-page-link a:first-child::before {
  content: '';
  display: none;
}
.catch-copy {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  font-size: 36px;
 position: relative; 
  /* width: 100%; */
  display: table;
  background-attachment: fixed;
  /* box-shadow: 0 0 10px 0 black inset; */
  max-width: 1000px;
}
.catch-copy main {
  display: table-cell;
  vertical-align: middle;
	color: #8B0000; 
}
.catch-copy img.main-logo {
  display: block;
  height: 130px;
  margin: 0 auto 30px auto;
}
.counter {
  display: block;
  margin: 10px auto 0 auto;
}
section {
  background-color: white;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  display: table;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 5px 0 black;
}
.socialNetworkNavBar {
  overflow-x: scroll;
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  width: 100%;
}
.socialNetworkNav {
  display: inline-block;
  margin-right: 10px;
}
article, footer {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}
div#pull-down {
  position: fixed;
  right: 0;
  top: 44px;
  background-color: white;
  height: calc(100% - 44px);
  overflow-y: scroll;
  transform: translateX(100%);
  transition: all .5s ease 0s;
  width: auto;
}
#pull-down a {
  text-decoration: none;
  display: block;
  padding: 10px 30px 10px 20px;
}
#pull-down.pull-down-active {
  transform: none;
  box-shadow: -10px 0 10px -10px black;
}
.article-links {
  text-align: center;
  margin: 10px auto;
  max-width: 600px;
}
.article-links a {
  padding: 0 10px;
}

span.red {
	color: #FF0080;
}

span.green {
	color: #006400;
}

span.yellow {
	color: #D2691E;
}

span.orange {
	color: #FF4F50;
}

span.pueple {
	color: #9400D3;
}

span.blue {
	color: #0000CD;
}

span.orive {
	color: #556B2F;
}

span.darkred {
	color: #8B0000;
}

span.limegreen {
	color: #32CD32;
}

span.darkcyan {
	color: #008B8B;
}

span.gold {
	color: #FFD700;
}

span.darkslategrey {
	color: #2F4F4F;
}

span.tya {
	color: #8B0000;
}

span.white {
	color: #FFFFFF;
}


a {
  color: #3e2723;
}
a:active {
  color: #1b0000;
}
.section2Content img {
  width: 100%;
}
.section2Content img[height="74"], .section2Content img[width="74"] {
  width: auto;
}
.sectionContent {
  font-weight: normal;
  font-size: 16px;
}
.sectionContentSubTitle {
  font-size: 16px;
  font-weight: normal;
}
#jump-navi {
  position: fixed;
  right: 100%;
  top: 50%;
  background-color: #212121;
  color: white;
  padding: 10px;
  box-sizing: border-box;
  transform: translateY(-50%) translateX(36px);
  white-space: nowrap;
}
#jump-navi h3 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
#jump-navi ul {
  list-style-type: none;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
#jump-navi ul li {
  white-space: nowrap;
}
#jump-navi ul a {
  color: white;
}
#for-page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  color: white;
  text-align: center;
  border-radius: 20px;
  user-select: none;
  cursor: pointer;
  transform: translateY(200%);
  transition: transform .5s ease;
}
#for-page-top.for-page-top-active {
  transform: none;
}