/*本文*/
.textHON{
 text-align="left";
 text-size="4";
}

/*リンク*/
.linkA{
    border-radius: 5px;
    display: block;
    width: 100px;
    padding: 5px;
    box-sizing: border-box;
    background: #4682b4;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
}

.linkB{
    border-radius: 5px;
    display: block;
    width: 100px;
    padding: 5px;
    box-sizing: border-box;
    background: #2b4b65;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
}

.linkC {
color:#454545;
text-decoration: none;
padding-bottom: 1px;
border-bottom: dotted 2px #060;
}

/*ブロック*/
.blockHON{
 background: #f0f0f0;
 padding:15px;
}

/*ライン*/
.has-lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.has-lines:before,
.has-lines:after {
  content: '';
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #2b4b65;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
}
.has-lines:before {
  margin-right: 20px;
}
.has-lines:after {
  margin-left: 20px;
}


/*上に戻る*/
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #2b4b65;
    border: solid 2px #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}