main {
  padding: 45px 18vw;
  min-height: 100vh;
  margin-top: 80px;
}
h1 {
  font-family: "LINE Seed JP", Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #195cb0;
  padding-top: 30px;
  padding-bottom: 19px;
  line-height: 1.1;
}
h2 {
  font-size: 1.2rem;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
hr {
  border: none;
  border-top: 1.3px solid #cfd3da;
  margin: 40px auto;
  width: 85%;
}
small {
  color: #666;
  font-size: .7rem;
  line-height: 1.1;
}
p:has(small) {
  line-height: 1.1;
}
p i {
  margin-right: 2px;
}

.blogHead {
  border: none;
  border-bottom: 1.1px solid #cfd3da;
  font-size: .8rem;
  padding-bottom: 3px;
  color: #777;
}
.blogHead > span {
  margin-right: 5px;
}
.blogHead > span > i {
  margin-right: 2px;
  font-size: .9em;
}
.chip {
  background-color: #195cb0;
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
}
.blogInfo {
  display: flex;
  margin-bottom: 20px;
}
.blogInfo > span {
  margin-left: auto;
  color: #777;
  font-size: .8rem;
}
div.author {
  display: flex;
  align-items: center;
}
div.author > span {
  margin-left: 6px;
  font-size: .9rem;
}
div.author > img {
  height: 2.3rem;
  width: 2.3rem;
  border-radius: 50%;
  overflow: hidden;
}
.thumbnail {
  width: 85%;
  margin-bottom: 35px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #222;
  border-radius: 20px;
  width: fit-content;
  min-width: 185px;
  height: 25px;
  font-family: "M PLUS 1p", "LINE Seed JP", Noto Sans JP, sans-serif;
  border: 2px solid #195cb0;
  transition: 0.3s;
  box-shadow: 0px 6px 0px -2px #195cb0;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 23px;
}
.btn:hover {
  box-shadow: 0 0 #fff;
  transform: translateY(1px);
}
#b-body img {
  max-width: 70%;
  display: block;
  margin: 10px auto;
  max-height: 340px;
}
#b-body img.border {
  border: 1.5px solid #b2b1b1;
}

.share {
  text-align: right;
  margin-top: 50px;
  border-top: 1.1px solid #cfd3da;
  padding-top: 20px;
}
.share > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.share #share-x {
  color: #fff;
  font-size: 1.1rem;
  background-color: #000;
  -webkit-text-stroke: 0.5px #000;
}
.share #share-facebook {
  color: #fff;
  font-size: 1.5rem;
  background-color: #1877f2;
  align-items: end;
  -webkit-text-stroke: 0.5px #1877f2;
  transform: translateY(6px);
}
.share #share-line {
  box-shadow: inset 0 0 0 5px #06c755;
  color: #06c755;
  padding-top: 1px;
  font-size: 1.7rem;
  background-color: #fff;
  transform: translateY(4px);
}
.share #share-copy {
  color: #fff;
  font-size: 1rem;
  background-color: #666;
  -webkit-text-stroke: 0.5px #666;
}
.share-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.fa-solid {
  font-size: .8rem;
}
@media screen and (max-width: 480px) {
  main {
    padding: 45px 15vw;
  }
  .blogInfo {
    flex-direction: column;
    align-items: flex-start;
  }
  .blogInfo > span {
    margin-top: 7px;
    margin-left: 0;
  }
  #b-body img {
    max-width: 100%;
  }
  .thumbnail {
    width: 100%;
  }
}
