@charset "UTF-8";

/* ------------------------------------------------
 voice
------------------------------------------------ */
.voice {
  margin-left: auto;
  margin-right: auto;
}
.voice .reviews {
  width:100%;
  background-color: #fff;
  padding: 3.125em;
  font-size: 1.06em;
}
.voice .reviews .list {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  row-gap: 1.55em;
}
.voice .reviews .list li {
  padding: 1.5em 1em;
  border: 3px solid #1e4d9e;
  border-radius: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voice .reviews .list .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.voice .reviews .list .meta .rating-stars {
  width: 8em;
}
.voice .reviews .list .meta .date {
  padding-bottom: 0.5em;
  font-size: 0.9em;
}
.voice .reviews .list .txt {
  /* margin-top: 0.75em; */
}
.voice .reviews .list .txt .title {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.6;
}
.voice .reviews .list .message {
  line-height: 1.8;
  /* margin-top: 0.5625em; */
  /* margin-bottom: 0.625em; */
}
.voice .reviews .list .profile {
  text-align: right;
}
.voice .more_list {
  padding-top: 1.5em;
  /*  display: none;*/
}
.voice .reviews .exhibition {
  font-size: 0.9em;
  margin-top: 1em;
  padding-right: 1em;
  text-align: right;
}
.voice .btn_more {
  color: #1e4d9e;
  line-height: 1;
  border: 1px solid #1e4d9e;
  border-radius: 3.125em;
  background-color: transparent;
  text-decoration: none;
  text-align: center;
  margin: 2.25em auto 0;
  padding-top: 0.9375em;
  padding-bottom: 1.0625em;
  width: 12.5em;
  display: block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.4s ease;
}
.voice .btn_more .txt {
  font-size: 1em;
  font-weight: 500;
}
.voice .btn_more .icon {
  width: 0.6875em;
  aspect-ratio: 1/1;
  position: absolute;
  right: 1.375em;
  top: 50%;
  transform: translateY(-50%);
}
.voice .btn_more .icon::before, .voice .btn_more .icon::after {
  content: "";
  background-color: #1e4d9e;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: transform 0.4s ease;
}
.voice .btn_more .icon::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.voice .btn_more.plus .icon::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.voice .btn_more.minus .icon::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.voice .btn_more .icon.arrow {
  width: 0.4375em;
  transform: translateX(-2%) translateY(-50%) rotate(45deg);
}
.voice .btn_more .icon.arrow::before {
  left: 0;
  top: 0;
}
.voice .btn_more .icon.arrow::after {
  left: 50%;
  top: 50%;
}
@media screen and (any-hover: hover) {
  .voice .btn_more:hover {
    background-color: rgba(186, 154, 45, 0.05);
  }
}
@media screen and (min-width: 768px) {
  .voice .reviews .list li:nth-child(odd) {
    margin-right: 0.5em;
  }
  .voice .reviews .list li:nth-child(even) {
    margin-left: 0.5em;
  }
}
@media screen and (max-width: 767.9px) {
  .voice .reviews {
    font-size: 3.77vw;
    padding: 2.2916666667em 0;
  }
  .voice .reviews .list {
    grid-template-columns: 1fr !important;
    row-gap: 1.5833333333em;
  }
  .voice .reviews .list .meta .date {
    font-size: 0.8333333333em;
  }
  .voice .reviews .list .txt {
    margin-top: 0.9166666667em;
  }
  .voice .reviews .list .txt .title {
    font-size: 1.0833333333em;
  }
  .voice .reviews .list .message {
    margin-top: 0.4166666667em;
    margin-bottom: 0.75em;
  }
  .voice .more_list {
    padding-top: 1.5833333333em;
  }
  .voice .btn_more {
    border-radius: 3.3333333333em;
    margin-top: 2.0833333333em;
    padding-top: 1em;
    padding-bottom: 1.1666666667em;
    width: 12.5em;
  }
  .voice .btn_more .txt {
    font-size: 1em;
  }
  .voice .btn_more .icon {
    width: 0.8333333333em;
    right: 1.5em;
  }
  .voice .reviews .list li {
    margin: 0 1em;
  }
}

/* メールアイコン */
.dli-mail {
  margin-bottom: 0.2em;
  margin-right: 0.7em;
  display: inline-block;
  vertical-align: middle;
  color: #1e4d9e;
  /* line-height: 2; */
  position: relative;
  width: 1.7em;
  height: 1.1em;
  border: 0.16em solid currentColor;
  border-radius: 0.18em;
  box-sizing: content-box;
  overflow: hidden;
}

.dli-mail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border: 0.16em solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 0.2em;
  box-sizing: content-box;
  transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}
