@charset "utf-8";
/* CSS Document */

section h2 {
  margin: 0 auto 2em;
}
/* レビュー一覧 */
.review__ul li {
  margin-bottom: 2em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.review__head {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: .3em;
}
.review__name {
  font-weight: 700;
}
.review__body {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 1em;
  border-bottom: 1px dashed #333;
}
.review__img {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  margin-right: 2%;
  width: 40%;
}
.review__img a {
  width: 100%;
}
.review__img img {
  width: 100%;
}
.review__txt {
  margin-top: 0;
  font-weight: 700;
}
.review__area {
  position: relative;
  top: 0;
  right: 0;
  box-sizing: border-box;
  padding: 18px 0 0;
  height: 70px;
  text-align: center;
  transition-timing-function: ease;
  transition-duration: 1.0s;
  transition-property: left;
}
.review__select {
  min-width: 220px;
  padding: 3px 33px 3px 6px;
  border: 1.2px solid #000;
  border-radius: 0;
  background-color: #fff;
  background-image: url(../img/select_arrow.png);
  background-position: center right;
  background-size: auto 100%;
  background-repeat: no-repeat;
  text-overflow: "";
  font-size: .7rem;
  opacity: 1.0;
  cursor: pointer;
  transition-timing-function: ease;
  transition-duration: .2s;
  transition-property: opacity,color,background-color;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/******** SP **********/
@media screen and (max-width:640px) {
  section h2 {
    margin: 0 auto 1.5em;
  }
  /* レビュー一覧_SP */
  .review__img {
    margin: 0 auto .5em;
    width: 100%;
    max-width: 375px;
  }
  .review__body {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}