*{
	margin:0;
	padding:0;
}

body{
font-family: 'Helvetica Neue','Helvetica',YuGothic,'Yu Gothic','メイリオ', Meiryo,'Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ＭＳ ゴシック',sans-serif;
    background: #00000;
background-size: 100px 100px;
  margin-right: auto;
  margin-left : auto;
margin:0;
	padding:0;
}

.page {
  width: 90%;
  height: 90%;

  /* html, body の hidden を打ち消す */
  overflow: auto;
}

div{
    width: 80%;
    margin: 0 auto;
    padding: 14px;
    background: #fff;
}
h1{
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}


h1:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -15px;/*線の上下位置*/
  display: inline-block;
  width: 150px;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}


h1:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;/*線の上下位置*/
  display: inline-block;
  width: 150px;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: black;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.box17{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
    margin: 0; 
    padding: 0;
}

.divleft{  position: relative;
  left: 50%;
  float: left;
width:40%;
overflow: hidden;
}
.divright{  position: relative;
  left: -50%;
  float: right;
width:40%;
overflow: hidden;
}

@media screen and (max-width: 1000px){
    .divleft {
	left: 0%;
        float: none;/*floatをnoneで解除*/
        width: auto;/*幅をpx指定していたものをautoに設定*/
        margin-bottom: 10px;/*間に余白を入れる*/
    }
    .divright {
	left: 0%;
        float: none;/*floatをnoneで解除*/
        width: auto;/*幅をpx指定していたものをautoに設定*/
    }
}

.mojis {font-size: 12px;}

table {
width: 90%;
  border-collapse: collapse;
}
table th, table td {
  border: solid 0.5px gray;
  /*実線 0.5px 黒*/
}

h2 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #d3d3d3;/*左線*/
}

.breadcrumb {
  margin-left: 0;
  padding-left: 0;
}

.breadcrumb li {
  position: relative;
  display:inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
  margin-right: 12px;
}
.breadcrumb li:after {/*三角の部分*/
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: #dcdcdc;/*背景色*/
  border-width: 14px 12px;
  width: 0;
  height: 0;
}

.breadcrumb li a {
  display: inline-block;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #747772;
  background: #dcdcdc;/*背景色*/
  font-size: 13px;
}

.breadcrumb li a:hover {
  color: #FFF;
}

.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #f0f8ff;
  border-left: solid 6px #b0c4de;/*左線*/
  color: #000000;/*文字色*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

.note {
  width: 500px;
  padding:0 1em;
  background: linear-gradient(#ccc 1px, transparent 1px) #ffffff;
  background-size: auto 2.5em;
  line-height: 2.5em;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  overflow: hidden;
}