/*　　ページトップに戻る　＆　ホームに戻るボタン 　*/

/* ページトップに戻る */
.page_top {
  width: 30px;
  height: 30px;
  position: fixed;
  opacity: 0.6;
  border-radius: 50%;
  background: #009999;
  bottom: 1rem;
  right: 1.3rem;
}

.page_top::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f106";
  font-size: 15px;
  color: white;
  position: absolute;
  /* right: 0px; */
  left: 10px;
  top: 8px;
  /* bottom: 0px; */
  /* width: 0px; */
  /* height: 0px; */
  /* margin: auto; */
  /* text-align: center; */
}

/* ホームに戻る */
/* 本体 */
.home {
  font-size: 2rem;
  position: fixed;
  opacity: 0.7;
  bottom: 1rem;
  left: 2rem;
  width: 0.4em;
  height: 0.4em;
  /* 以下、ボトムがないので下側が開いているように見える */
  border-top: 0.6em solid #009999;
  border-left: 0.4em solid #009999;
  border-right: 0.4em solid #009999;
}

/* 屋根 */
.home::before {
  position: absolute;
  content: "";
  bottom: 0.8em;
  left: -0.7em;
  /* 以下、大きさがないのでボーダーのみが表示される */
  width: 0;
  height: 0;
  /* 以下、3つは角で重なるが、重なり部分は半分ずつ分け合って表示するので境目が斜めになる */
  border-left: 0.9em solid transparent;
  border-right: 0.9em solid transparent;
  border-bottom: 0.7em solid #009999;
}

/* 煙突 */
.home::after {
  position: absolute;
  bottom: 1.1em;
  left: 0.5em;
  /* 領域を設けて色を付ける */
  width: 0.2em;
  height: 0.4em;
  content: "";
  background-color: #009999;
}

@media (min-width: 768px) {
  /* ページトップに戻る */
  .page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    opacity: 0.6;
    border-radius: 50%;
    background: #009999;
    bottom: 20px;
    right: 20px;
  }

  .page_top::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    font-size: 30px;
    color: white;
    position: absolute;
    right: 0.6em;
    left: 0em;
    top: 0em;
    bottom: 1em;
    width: 0px;
    height: 0px;
    margin: auto;
    text-align: center;
  }

  .page_top:hover {
    opacity: 1;
  }

  /* 本体 */
  .home {
    font-size: 2rem;
    position: fixed;
    opacity: 0.8;
    bottom: 2rem;
    left: 2.5rem;
    width: 0.6em;
    height: 0.6em;
    /* 以下、ボトムがないので下側が開いているように見える */
    border-top: 0.8em solid #009999;
    border-left: 0.6em solid #009999;
    border-right: 0.6em solid #009999;
  }

  /* 屋根 */
  .home::before {
    position: absolute;
    content: "";
    bottom: 1.2em;
    left: -0.9em;
    /* 以下、大きさがないのでボーダーのみが表示される */
    width: 0;
    height: 0;
    /* 以下、3つは角で重なるが、重なり部分は半分ずつ分け合って表示するので境目が斜めになる */
    border-left: 1.2em solid transparent;
    border-right: 1.2em solid transparent;
    border-bottom: 1em solid #009999;
  }

  /* 煙突 */
  .home::after {
    position: absolute;
    bottom: 1.4em;
    left: 0.8em;
    /* 領域を設けて色を付ける */
    width: 0.3em;
    height: 0.7em;
    content: "";
    background-color: #009999;
  }

  .home:hover {
    opacity: 1;
  }
}
