@charset "UTF-8";

.posts {
}

.posts.app {
  margin-bottom: 60px;
}

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

.posts .user-box {
  margin: 10px 15px 0 15px;
  padding: 0 0 10px 0;
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  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: 40px;
  height: 40px;
  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 {
  font-size: 1.3rem;
  font-weight: bold;
  box-sizing: border-box;
  margin: 3px 0 0 0;
}

.posts .user-box .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 {
  line-height: 1.3;
  font-size: 1.4rem;
  color: #000;
  padding: 18px 15px 0 15px;
}

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

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

.posts .post-data {
  padding: 15px 15px 0 15px;
  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: 28px;
  background: #ccc;
  border-radius: 100px;
  border: 0;
  vertical-align: middle;
  line-height: 2.8;
}

.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.1rem;
}

.posts .post-data .button-block .like-button .like-button_icon {
  position: relative;
  top: -3px;
}

.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: 13px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 4px 0 0;
}

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

.posts .post-data .post-right-box {
  float: right;
}

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

.posts .post-data .post-right-box .post-report-box {
  display: inline-block;
  border-left: 1px solid #e5e5e5;
  padding: 0 0 0 8px;
  margin: 0 0 0 5px;
  position: relative;
  top: 2px;
}


.posts .post-data .post-right-box .post-report-box .post-report {
  display: inline-block;
}

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

.posts .sentence {
  padding: 12px 15px 15px 15px;
}

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

.posts .sentence .evaluation .title {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2;
  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: 35px 34px;
  width: 35px;
  height: 34px;
  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: 3.6rem;
  color: #e8bb3f;
  font-weight: bold;
  position: relative;
  top: -2px;
  left: 5px;
}

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

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

.posts .sentence .review-list-wrapper .review-list-box .review-list-title {
  font-size: 1.5rem;
  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: 38px;
}

.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: 15px; text-align: right; }
.posts .sentence .review-list-wrapper .review-list-box .buy-select-point-wrapper .detail-text.right { right: 15px; 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.4rem;
  color: #000;
  line-height: 1.7;
}

.posts .sentence img {
  width: 100%;
  height: auto;
  margin: 12px 0 0;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}

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

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

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

.posts .post-link-sneaker-box {
  display: block;
  border-top: dotted 1px #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.3rem;
  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.4rem;
  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: 1rem;
  color: #999;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.posts .post-link-sneaker-box .detail-box .brands-list {
  font-size: 1rem;
  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;
}

/* 商品カード */

.posts .post-link-sneaker-box .product-buy-card {
  margin: 15px 0 0 0;
  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 , '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','ＭＳ Ｐゴシック',sans-serif;
}

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

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

.posts .post-link-sneaker-box .product-buy-card .product-description {
  flex-basis: 70%;
  margin: 0 0 0 12px;
}

.posts .post-link-sneaker-box .product-buy-card .product-description .price {
  color: #ff0030;
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.posts .post-link-sneaker-box .product-buy-card .product-description .price-blank {
  color: #000000;
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.posts .post-link-sneaker-box .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;
}

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

.posts .post-link-sneaker-box .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 {
  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.2rem;
  text-align: center;
  flex-basis: 50%;
  padding: 13px 15px 12px;
  box-sizing: border-box;
  color: #999;
  font-weight: bold;
  line-height: 1.5;
}

.posts .post-pager .post-pager-button.prev {
}

.posts .post-pager .post-pager-button.next {
  border-left: 1px solid #e5e5e5;
}

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

.posts .posts-comment {
  margin: 25px 0 0 0;
  border-top: 1px solid #e5e5e5;
  padding: 20px 15px 15px;
  box-sizing: border-box;
}

.posts .posts-comment .contents-title {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px 0;
}

/* 吹き出し */

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

.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: 10px 10px 8px 10px;
  box-sizing: border-box;
  background: #eee;
  border-radius: 15px;
}

.posts .posts-comment .comment-list .ballon .user-name {
  font-size: 1.1rem;
  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.3rem;
  color: #000;
  line-height: 1.35;
}

.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-box {
  display: block;
  position: absolute;
  top: -4px;
  right: 0;
}

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

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

.posts .posts-comment .comment-list .ballon .response-box .comment-num-box .post-report {
  display: inline-block;
  padding: 0 0 0 4px;
  position: relative;
  top: 2px;
}



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

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

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

.posts .posts-comment .comment-wrapper.not-comment .title {
  font-size: 1.2rem;
  color: #FF5700;
  font-weight: bold;
  text-align: center;
  margin: 0 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: 160px;
  min-height: 80px;
  height: 80px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 10px;
  line-height: 1.35;
  font-family: sans-serif;
  font-size: 1.3rem;
  background: #f5f5f5;
  margin: 0 0 8px 0;
  -webkit-appearance: none;
}

.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 8px 0;
}

.posts .posts-comment .comment-wrapper .comment-mention-box .comment-mention-text {
  color: #666;
  font-size: 1rem;
  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.5rem;
  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: 1rem;
  line-height: 1.3;
  margin: 15px 0 10px;

}

.posts .posts-comment .comment-wrapper .sp-post-guide-banner {
  height: auto;
  display: block;
  margin: 0 -15px -15px;
}

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


/* ----- 投稿ボックス(固定) ----- */

.posts .comment-fixed-buttom-box {
  display: none;
}

.posts.app .comment-fixed-buttom-box {
  display: block;
  position: fixed;
  bottom: -1px;
  width: 100%;
  background: rgba(240,240,240,0.97);
  border-top: 1px solid #e5e5e5;
  padding: 8px 6px;
  box-sizing: border-box;
  z-index: 50;
}

.posts.app .comment-fixed-buttom-box .comment-button {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  padding: 10px;
  line-height: 1.65;
  font-size: 1.3rem;
  display: block;
  color: #ccc;
  background: #fff;
}


/* ----- 通報 ----- */

.posts .popup-content {
  padding: 18px 0 15px;
  min-height: auto;
}

.posts .popup-content .title {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0 10px 0;
}

.posts .popup-content .detail-text {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
  line-height: 1.4;
}

.posts .popup-content ul li a {
  display: block;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.3rem;
  color: #000;
  padding: 15px 15px 13px;
  line-height: 1.3;
}

.posts .popup-content ul li:first-child {
  border-top: 1px solid #e5e5e5;
}


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

.posts .content-title-type-1 {
  padding: 18px 15px 0 15px;
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
  border: none;
  margin: 0;
}

.posts .button-box {
  padding: 0 15px;
  margin: 0 0 20px 0;
}

.posts .button-box .button-collor-grey {
  color: #fff;
  background-color: #000;
}
.posts .item-list-box {
  width: 100%;
  padding: 0 9px 0 15px;
  box-sizing: border-box;
  margin: 0 0 20px 0;
}

.posts .item-list-box .item-list {
  width: calc(33.33% - 6px);
  float: left;
  display: block;
  margin: 6px 6px 0 0;
  position: relative;
}

.posts .item-list-box .item-list.new::after {
  content: " ";
  background-image: url(../../../img/common/icon-article-new.png);
  background-size: 100%;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
}

.posts .item-list-box .item-list .item-block {
  display: block;
}


.posts .item-list-box .item-list .item-block .img-box {
  width: 100%;
  height: 80px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.posts .item-list-box .item-list .item-block .img-box img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.posts .item-list-box .item-list .item-block .item-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;
}

.posts .item-list-box .item-list .item-block .item-price {
  color: #ff0030;
  font-size: 1.2rem;
  margin: 10px 0 0 0;
  height: 15px;
  text-align: left;
  font-weight: bold;
}

.posts .item-list-box .item-list .item-block .item-price span.min-text {
  color: #ff0030;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  padding: 0 0 0 1px;
  position: relative;
  top: -1px;
  letter-spacing: -0.5px;
}

.posts .item-list-box .item-list .item-block .item-price span.min-text.none {
  color: #FF832D;
  font-size: 1.1rem;
  font-weight: bold;
  display: inline-block;
  padding: 0;
  position: relative;
  top: -1px;
}

.posts .item-list-box .item-list .item-block .sell-num {
  font-size: 1rem;
  color: #000;
  margin: 1px 0 0 0;
}

.posts .item-list-box .item-list .item-block .sell-num.none {
  color: #999;
}

.posts .product-content-wrapper {
  padding: 0 15px;
  background: #fff;
}

.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 solid #e5e5e5;
  padding: 10px 0 8px 0;
  display: block;
}

.posts .product-detail-info-table tr:last-child {
  border-bottom: none;
}


.posts .product-detail-info-table tr th {
  width: 30%;
  display: inline-block;
  text-align: left;
  font-size: 1.2rem;
  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.3rem;
  color: #000;
  line-height: 1.4;
}
