
/* CSS Document */
.contents__post {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
}
/* 記事内タグ */
.contents__post .post__inner {
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 80px;
}
.contents__post .post__inner a {
  text-decoration: underline;
  color: #007bff;
}
.contents__post .post__inner a:hover {
  color: #0056b3;
}
.contents__post .post__inner a:visited {
  color: #007bff;
}

.contents__post .post__inner a:hover {
  text-decoration: none;
}
.contents__post .post__inner p {
  margin-bottom: 34px;
}
.contents__post .post__inner blockquote {
  border-radius: 10px;
  background: #F5F5F5;
  padding: 20px 30px;
  margin-bottom: 30px;
}
.contents__post .post__inner .red {
  color: #FF0303;
}
.contents__post .post__inner img {
  border-radius: 10px;
  margin-bottom: 40px;
}
.contents__post .post__inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.contents__post .post__inner h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
/* コンバージョンボタンまわり */
.contents__post .post__inner .conversion {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 50px 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.contents__post .post__inner .conversion .button__line-large {
  color: #222;
}
.contents__post .post__inner .conversion .button__primary-large {
  color: #FFF;
}
.contents__post .post__inner .conversion-after {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 20px 20px;
  margin-bottom: 25px;
}
.contents__post .post__inner .conversion-after .text__info {
  font-weight: 800;
  margin-bottom: 0px;
}
.contents__post .post__inner .conversion .text__info {
  margin-bottom: 20px;
  font-weight: 800;
}
.contents__post .post__inner .conversion .text__continuation {
  color: #1C689B;
  margin-bottom: 20px;
  display: block;
  margin-bottom: 15px;
}


.contents__post .thumb__cover {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 38px;
}
.contents__post .thumb__cover img {
  object-fit: cover;
  width: 100%;
}
.contents__post .main__title {
  font-size: 32px;
}
.contents__post .writer__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}
.contents__post .writer__info .writer {
  display: flex;
  justify-content: left;
}
.contents__post .writer__info .writer .thumb {
  width: 30px;
  height: 30px;
  border: 1px solid#D9D9D9;
  border-radius: 100px;
  overflow: hidden;
}
.contents__post .writer__info .writer .thumb img {
  object-fit: cover;
  width: 180px;
}
.contents__post .writer__info .writer .writer__date {
  margin-left: 6px;
}
.contents__post .writer__info .writer .writer__date .name {
  font-size: 10px;
  color: #7A7A7A;
  display: block;
}
.contents__post .writer__info .writer .writer__date .date {
  font-size: 10px;
  vertical-align: text-top;
  margin-top: 1px;
  display: block;
  color: #7A7A7A;
}
.contents__post .writer__info .price {
  font-weight: 800;
  font-size: 17px;
  padding: 0px 11px;
  height: 24px;
  display: inline-block;
  border: 1px solid;
  border-radius: 100px;
  /* color: #1C689B; */
}
.contents__post .writer__info .price__done {
  font-weight: 800;
  font-size: 15px;
  padding: 1px 10px;
  height: 24px;
  display: inline-block;
  border: 1px solid;
  border-radius: 100px;
  color: #fff;
  /* background: #1C689B; */
}
.writer__info .detail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contents__post .post__share {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.contents__post .post__share .post__tag .tag {
  font-size: 10px;
  border: 1px solid #ECECEC;
  padding: 3px 6px;
  color: #7A7A7A;
  border-radius: 4px;
  margin-right: 5px;
  text-decoration: none;
}
.contents__post .post__share .post__tag .tag:hover {
  transition: all .2s ease;
  opacity: .8;
}
.contents__post .post__share .post__sns {
  display: flex;
  gap: 10px;
  margin-right: 10px;
  align-items: baseline;
}
.contents__post .post__share .post__sns .sns:hover{
transition: all .2s ease;
  opacity: .6;
}
.contents__post .post__share .post__sns .sns img {
  border-radius: 0px;
  margin-bottom: 0px;
}


/* //////////////////////////////////////////
  TABLET / SP
  ////////////////////////////////////////// */

  @media screen and (max-width: 767px) {
    .contents__post .main__title {
      font-size: 22px;
      margin-bottom: 15px;
    }
    .contents__post .thumb__cover {
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .contents__post .writer__info {
      margin-bottom: 25px;
    }
    .contents__post .post__inner {
      font-size: 16px;
    }
    .contents__post .post__inner p {
      margin-bottom: 24px;
    }
    .contents__post .post__inner h2 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .contents__post .post__inner h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 5px;
    }
    .contents__post .post__inner img {
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .contents__post .post__inner blockquote {
      border-radius: 8px;
      background: #F5F5F5;
      padding: 18px 18px;
      margin-bottom: 20px;
    }
  }
  /*media screen_end*/

/*# sourceMappingURL=post.css-3cd9bcf59e2890c35b77ff84584585bcba5aaa1b4f03b18d50c056de13558fc6.map */
