@charset "UTF-8";

.posts {
}

/* ----- ユーザー ----- */

.posts .user-box {
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.posts .user-box .user-icon-box {
  display: table-cell;
  vertical-align: top;
}

.posts .user-box .user-icon-box .user-icon {
  width: 45px;
  height: 45px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.posts .user-box .user-icon-box .user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.posts .user-box .user-profile {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 12px;
  box-sizing: border-box;
  width: 100%;
}

.posts .user-box .user-profile .user-name {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.3rem;
  font-weight: bold;
  box-sizing: border-box;
  width: 100%;
}

.posts .user-box .user-profile  .user-name a { color: #000; }

.posts .user-box .user-profile .user-name .label-first {
  font-size: 1rem;
  color: #fff;
  background: #00BCD4;
  padding: 2px 3px 1px 3px;
  border-radius: 3px;
  line-height: 1.3;
  margin: 0 0 0 5px;
}

.posts .user-box .user-profile .user-teintroduction {
  font-size: 1.1rem;
  font-weight: normal;
  margin: 3px 0 0 0;
  line-height: 1.4;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* ----- タイトル ----- */

.posts h1.title {
  font-size: 1.4rem;
  color: #000;
  padding: 5px 0 15px;
}

.posts h1.title a {
  color: #000;
}

/* ----- 投稿情報 ----- */

.posts .post-data {
  padding: 15px 0 0 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
}

.posts .post-data .reaction-area {
  display: inline-block;
}

.posts .post-data .button-block {
  display: inline-block;
}

.posts .post-data .button {
  display: inline-block;
  font-size: 0;
  padding: 0 10px 0 10px;
  box-sizing: border-box;
  height: 32px;
  background: #ccc;
  border-radius: 100px;
  border: 0;
  vertical-align: middle;
  line-height: 2.9;
}

.posts .post-data .button.active {
  background: #FF6767;
}

.posts .post-data .button-block .button-text {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
}

.posts .post-data .button-block .button-text.like::before {
  content: " ";
  display: inline-block;
  margin: 0 4px 0 0;
}

.posts .post-data .button-block .button-text.comment::before {
  content: " ";
  background-image: url(../../../img/post/sp-icon-posts-comment.png);
  background-size: 100%;
  width: 14px;
  height: 13px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 4px 0 0;
}

.posts .post-data .button-num {
  display: inline-block;
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
  margin: 0 15px 0 2px;
  line-height: 1.5;
  position: relative;
  top: 3px;
}

.posts .post-data .post-num {
  font-size: 1rem;
  color: #999;
  float: right;
  line-height: 3;
}

/* ----- 投稿内容 ----- */

.posts .sentence {
  margin: 25px 0 0 0;
}

/* 総合評価 */
.posts .sentence .evaluation {
  margin: 30px 0 5px;
}

.posts .sentence .evaluation .title {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 5px 0;
}

.posts .sentence .evaluation ul  {
  font-size: 0;
  text-align: center;
}

.posts .sentence .evaluation ul li  {
  display: inline-block;
  margin: 0 0 0 5px;
}

.posts .sentence .evaluation ul li:first-child  {
  margin: 0;
}

.posts .sentence .evaluation .icon-star {
  background-size: 37px 36px;
  width: 37px;
  height: 36px;
  display: block;
  background-image: url("../../../img/common/icon-star-grey.png");
}
.posts .sentence .evaluation .icon-star.active { background-image: url("../../../img/common/icon-star-yellow.png"); }

.posts .sentence .evaluation ul li .num {
  font-size: 4rem;
  color: #e8bb3f;
  font-weight: bold;
  position: relative;
  top: -2px;
  left: 5px;
}

/* 各評価 */
.posts .sentence .review-list-wrapper {
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
}

.posts .sentence .review-list-wrapper .review-list-box {
  padding: 20px 0;
  margin: 0;
}

.posts .sentence .review-list-wrapper .review-list-box .review-list-title {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper {
  box-sizing: border-box;
  position: relative;
  height: 42px;
  width: 600px;
  margin: 0 auto;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .point-box {
  width: 20%;
  float: left;
  text-align: center;
  position: relative;
  z-index: 2;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .point-box .point {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #fff;
  border: 2px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  position: relative;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .point-box .point.post-active {
  border: none;
  background: #e8bb3f;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .border {
  box-sizing: border-box;
  float: none;
  height: 2px;
  background: #ccc;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  z-index: 1;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .detail-text {
  position: absolute;
  bottom: 0;
  font-size: 1.1rem;
  color: #999;
}

.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .detail-text.left { left: 48px; text-align: right; }
.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .detail-text.right { right: 48px; text-align: right; }
.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .detail-text.center { left: 0; right: 0; margin: auto; text-align: center; }

/* 文章 */

.posts .sentence .text {
  font-size: 1.5rem;
  color: #000;
  line-height: 1.7;
}

.posts .sentence img {
  width: 80%;
  height: auto;
  margin: 15px auto;
  border-radius: 6px;
  display: block;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}


/* ----- 関連するスニーカー ----- */

.posts .post-link-sneaker-wrapper {
  padding: 30px 0 0;
}

.posts .post-link-sneaker-wrapper .post-link-sneaker-title {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
}

.posts .post-link-sneaker-box {
  display: block;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  margin: 15px 0 0 0;
  padding: 15px 0 0 0;
}

.posts .post-link-sneaker-box .post-link-sneaker {
  display: table;
  table-layout: fixed;
}

.posts .post-link-sneaker-box .post-link-sneaker .img-box {
  display: table-cell;
  vertical-align: top;
  width: 130px;
  height: 80px;
}

.posts .post-link-sneaker-box .post-link-sneaker .img-box .inner {
  width: 130px;
  height: 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.posts .post-link-sneaker-box .post-link-sneaker .img-box .inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.posts .post-link-sneaker-box .post-link-sneaker .text-box {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.posts .post-link-sneaker-box .post-link-sneaker .text-box .inner {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #000;
}

.posts .post-link-sneaker-box .post-link-sneaker .text-box .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0030;
  display: inline-block;
  margin: 3px 0 0 0;
}

.posts .post-link-sneaker-box .detail-box {
  margin: 10px 0 0 0;
}

.posts .post-link-sneaker-box .detail-box .detail-text {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.posts .post-link-sneaker-box .detail-box .brands-list {
  font-size: 1.2rem;
  color: #000;
  line-height: 1.4;
  display: inline-block;
  margin: 5px 6px 0 0;
}

.posts .post-link-sneaker-box .detail-box .brands-list a {
  font-weight: bold;
}

/* ----- 商品カード ----- */

.product-buy-card {
  margin: 15px 0 6px 0;
  width: 44%;
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 8px 25px 10px 12px;
  border-radius: 5px;
  background-color: #fff;
  background-image: url(../../../img/common/icon-arrow-right.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: right 12px center;
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  -webkit-align-items: center;
  font-family: Avenir , 'Hiragino Sans', 'ヒラギノ角ゴ Pro W3','游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ','ＭＳ Ｐゴシック',sans-serif;
  position: relative;
}

.product-buy-card .product-img-box {
  flex-basis: 30%;
  height: 70px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.product-buy-card .product-img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  bottom: 0;
  margin: auto;
}

.product-buy-card .product-description {
  flex-basis: 70%;
  margin: 0 0 0 12px;
}

.product-buy-card .product-description .price {
  color: #ff0030;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .price-blank {
  color: #000000;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .price span {
  font-size: 1rem;
  position: relative;
  top: -3px;
  left: 3px;
  background: #ff0030;
  border-radius: 2px;
  color: #fff;
  padding: 3px 6px 1px 5px;
  margin: 0;
  line-height: 1;
}

.product-buy-card .product-description .sell-num {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin: 4px 0 5px 0;
  line-height: 1;
}

.product-buy-card .product-description .sell-num.pb-badge {
  position: relative;
  color: #009166;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 16px;
}

.product-buy-card .product-description .sell-num.pb-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../../img/common/pb-badge.png);
  background-size: 14px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.product-buy-card .product-description .sell-num.pbs-badge {
  position: relative;
  color: #0089B4;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 16px;
}

.product-buy-card .product-description .sell-num.pbs-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../../../img/common/pbs-badge.png);
  background-size: 14px;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
}

.product-buy-card .product-description .name {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #000;
  margin: 4px 0 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height: 11px;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1;
}

/* ----- ページャー ----- */

.posts .post-pager {
  margin: 30px 0 0 0;
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  -webkit-align-items: center;
  border-top: 1px solid #e5e5e5;
}

.posts .post-pager .post-pager-button {
  font-size: 1.3rem;
  flex-basis: 50%;
  padding: 15px 0;
  box-sizing: border-box;
  line-height: 1.5;
}

.posts .post-pager .post-pager-button.prev {
  text-align: left;
}

.posts .post-pager .post-pager-button.next {
  text-align: right;
}

/* ----- コメント ----- */

.posts .posts-comment {
  box-sizing: border-box;
}

.posts .posts-comment-title {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
  margin: 45px 0 0 0;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 15px 0;
}

/* 吹き出し */

.posts .posts-comment .comment-list {
  display: table;
  table-layout: fixed;
  margin-top: 17px;
}

.posts .posts-comment .comment-list.child {
  margin-left: 44px;
}

.posts .posts-comment .comment-list .user-icon-box {
  display: table-cell;
  vertical-align: top;
  padding: 0 7px 0 0;
}

.posts .posts-comment .comment-list .user-icon-box .inner {
  width: 35px;
  height: 35px;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.posts .posts-comment .comment-list.child .user-icon-box .inner {
  width: 25px;
  height: 25px;
}

.posts .posts-comment .comment-list .user-icon-box .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.posts .posts-comment .comment-list .ballon {
  display: table-cell;
  vertical-align: top;
}

.posts .posts-comment .comment-list .ballon .inner {
  min-width: 120px;
  height: auto;
  padding: 12px 12px 10px 12px;
  box-sizing: border-box;
  background: #eee;
  border-radius: 15px;
}

.posts .posts-comment .comment-list .ballon .user-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.posts .posts-comment .comment-list .ballon .user-name a { color: #000; }

.posts .posts-comment .comment-list .ballon .text {
  font-size: 1.4rem;
  color: #000;
  line-height: 1.4;
}

.posts .posts-comment .comment-list .ballon .response-box {
  margin: 6px 1px 0;
  height: 12px;
  position: relative;
}

.posts .posts-comment .comment-list .ballon .response-box .comment-reply-button {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 10px;
}

.posts .posts-comment .comment-list .ballon .response-box .comment-num {
  font-size: 1rem;
  color: #999;
  line-height: 1.1;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

/* ----- 投稿ボックス ----- */

.posts .posts-comment .comment-wrapper {
  border-top: 1px solid #e5e5e5;
  margin: 25px 0 0 0;
  padding: 20px 0 0 0;

}

.posts .posts-comment .comment-wrapper.not-comment {
  border-top: none;
  margin: 0;
  padding: 0;
}

.posts .posts-comment .comment-wrapper.not-comment .title {
  font-size: 1.3rem;
  color: #FF5700;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 10px 0;
}

.posts .posts-comment .comment-wrapper .comment-input-wrapper {
  position: relative;
}

.posts .posts-comment .comment-wrapper .comment-input-box {
  box-sizing: border-box;
  width: 100%;
}

.posts .posts-comment .comment-wrapper .comment-input-box #comment-post-input {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  max-height: 250px;
  min-height: 130px;
  height: 130px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 15px;
  line-height: 1.4;
  font-family: sans-serif;
  font-size: 1.4rem;
  background: #f5f5f5;
  margin: 0 0 15px 0;
}

.posts .posts-comment .comment-wrapper .comment-input-box #comment-post-input::placeholder {
  color: #ccc;
}

/* メンション */

.posts .posts-comment .comment-wrapper .comment-mention-box {
  position: relative;
  margin: 0 0 15px 0;
}

.posts .posts-comment .comment-wrapper .comment-mention-box .comment-mention-text {
  color: #666;
  font-size: 1.2rem;
  line-height: 1;
}

.posts .posts-comment .comment-wrapper .comment-mention-box .comment-mention-text .name {
  color: #0827c6;
  font-weight: bold;
}

.posts .posts-comment .comment-wrapper .comment-mention-box .comment-mention-delete {
  text-align: right;
  color: #666;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 6px 13px;
}

/* 注意事項 */

.posts .posts-comment .comment-wrapper .detail-box {
  color: #999;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 25px 0 10px 0;
}

.posts .posts-comment .comment-wrapper .pc-post-guide-banner {
  height: auto;
  display: block;
}

.posts .posts-comment .comment-wrapper .pc-post-guide-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}


/* ----- 商品テーブル ----- */

.posts .product-content-wrapper {
  padding: 0;
}

.posts .product-detail-info-table {
  width: 100%;
  position: 0;
  margin: 10px 0 0 0;
  border: 0;
}

.posts .product-detail-info-table tr {
  border-bottom: 1px #e5e5e5 dotted;
  padding: 10px 0 8px 0;
  display: block;
}

.posts .product-detail-info-table tr th {
  width: 30%;
  display: inline-block;
  text-align: left;
  font-size: 1.3rem;
  font-weight: bold;
  color: #999;
  line-height: 2;
}

.posts .product-detail-info-table tr td {
  width: 68%;
  display: inline-block;
  text-align: right;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.4;
}
