/* unusual */
@charset "UTF-8";
#article .enq {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#article .enq > * {
  width: 48%;
}
#article .rank-text img {
  width: fit-content;
  margin-left: 0;
  margin-bottom: 16px;
}
#article .ranking-list {
  list-style: none;
  counter-reset: ol_li;
}
#article .ranking {
  font-weight: 700;
  font-size: 18px;
}
#article .ranking::before {
  margin-right: .25em;
  counter-increment: ol_li;
  content: counter(ol_li);
  color: #68bfeb;
  font-weight: 700;
  font-size: 18px;
}
#article .enq-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin-right: 15px;
  padding: .8em 1.2em;
  border: 2px solid #333;
  border-radius: 16px;
  background-color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;

  &::before,
  &::after {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 50% 100%, 100% 0); /* ▼ */
  }
  &::before {
    top: 50%;
    right: -15px;
    width: 15px;
    height: 30px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #333;
    translate: 0 -50%;
  }

  &::after {
    top: 50%;
    right: -11px;
    width: 15px;
    height: 30px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
    translate: 0 -50%;
  }
}
#article .subtitle {
  display: block;
  color: #916fb3;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

#article h2 span.em {
  color: #68bfeb;
  font-size: inherit;
  display: inline-block;
}
.comment-wrap {
  width: 75%;
  margin-inline: auto;
}
.gallery-narrow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1em;
  margin-top: 24px;
  margin-bottom: 24px;
}
.gallery-narrow.sp-item,
.comment-wrap.sp-item {
  display: none;
}
@media only screen and (max-width: 960px) {
  #article .shop > .post-container {
    display: contents;
    h3 {
      order: -1;
      margin-bottom: 0;
    }
    > p {
      order: -1;
      margin-top: 0;
    }
  }
  .gallery-narrow.pc-item,
  .comment-wrap.pc-item {
    display: none;
  }
  .gallery-narrow.sp-item,
  .comment-wrap.sp-item {
    display: block;
  }
  .gallery-narrow.sp-item{
    width: 45%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  #article .enq {
    flex-direction: column;
  }
  #article .enq > * {
    width: 100%;
  }
  #article .enq > * + * {
    margin-top: 24px;
  }
  #article .enq-title {
    margin-right: 0;
    margin-bottom: 20px;

    &::before,
    &::after {
      top: auto;
      bottom: -15px; /* 吹き出しを下に配置 */
      left: 50%;
      right: auto;
      width: 30px;
      height: 15px;
      transform: translateX(-50%);
      clip-path: polygon(0 0, 50% 100%, 100% 0); /* ▼下向き三角 */
    }

    &::before {
      background-color: #333;
      bottom: -22px;
    }

    &::after {
      background-color: #fff;
      bottom: -20px;
      z-index: 1;
    }
  }
  .comment-wrap {
    width: 90%;
  }
  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .subtitle {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}


