@charset "UTF-8";
/* ====================================================
# 口コミ詳細ページ
==================================================== */
.item_detail {
  margin-bottom: 30px;
}
.item_profile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #F0F0F0;
  /*
  &__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    a.tag {
      position: relative;
      display: block;
      padding: 6px 10px 6px 20px;
      border-radius: 15px;
      border: 1px solid @colorDark01;
      background-color: #fff;
      color: @colorDark01;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
      text-decoration: none;
      &::before {
        content:"";
        display: block;
        position: absolute;
        top: 15px;
        left: 10px;
        transform:translate(-50%,-50%);
        rotate: 45deg;
        width: 5px;
        height: 5px;
        background-color: @colorGreen;
      }
    }
  }
  @media @hover {
    &__tags {
      a.tag {
        transition-property: color, background-color, border-color;
        transition-duration: .3s;
        transition-timing-function: ease;
        &::before {
          transition: background-color .3s ease;
        }
        &:hover {
          background-color: @colorGreen;
          color: #fff;
          &::before {
            background-color: #fff;
          }
        }
      }
    }
  }
  */
}
.item_profile p {
  margin: 0;
}
.item_profile__name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.item_profile__row {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.item_profile__row > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #361d10;
  color: #fff;
  width: 8em;
  border-radius: 5px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
.item_profile__row > dd {
  flex: 1;
}
.item_profile__description {
  position: relative;
  padding: 15px 20px 15px 40px;
  margin: 5px 0;
  background: #fff;
  border-radius: 5px;
}
.item_profile__description::before {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 24px;
  background: url(../images/shop_page/ico_info.svg) no-repeat;
}
@media screen and (max-width: 767px) {
  .item_profile {
    gap: 6px;
    padding: 15px 4vw;
  }
  .item_profile__row {
    gap: 6px;
  }
  .item_profile__row > dt {
    width: 7em;
    font-size: 11px;
  }
}
.icon_customer {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/shop_page/ico_customer.svg) no-repeat;
}
.single_paginate {
  position: relative;
  max-width: 880px;
  padding: 0 220px;
  margin: 40px auto 0;
}
.single_paginate .btn_style02 {
  width: 300px;
}
.single_paginate .btn_prev,
.single_paginate .btn_next {
  position: absolute;
  width: 180px;
}
.single_paginate .btn_prev {
  right: 0;
}
.single_paginate .btn_next {
  left: 0;
}
@media screen and (max-width: 767px) {
  .single_paginate {
    margin-top: 30px;
    padding: 0 26%;
  }
  .single_paginate .btn_style02 {
    width: 100%;
  }
  .single_paginate .btn_prev,
  .single_paginate .btn_next {
    width: 25%;
  }
}
