@charset "UTF-8";

.voice-box {
  padding: 0 0 80px;
}
.voice-box__list {
  max-width: 980px;
  margin: 0 auto;
}
.voice-box__list__item {
  margin: 0;
}
.voice-box__list__item:not(:last-child) {
  margin-bottom: 24px;
}
.voice-box__link {
  display: block;
  transition: opacity .2s ease-out;
}
.voice-box__link:hover {
  opacity: .5;
}
.voice-box__layout {
  display: flex;
  flex-wrap: wrap;
}
.voice-box__layout__figure {
  flex: 0 0 auto;
}
.voice-box__layout__content {
  flex: 1;
}
.voice-box__layout__footer {
  flex: 0 0 100%;
  padding: 16px 0 0;
}
.voice-box__figure {
  overflow: hidden;
  margin: 0 24px 0 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.voice-box__image {
  width: 100%;
}
.voice-box__lead {
  position: relative;
  padding: 40px 0 0 16px;
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.8;
  color: #26455c;
}
.voice-box__lead:before {
  content: '“';
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 88px;
  color: #e5e5e5;
}

.voice-box__name-wrapper {
	text-align: right;
}
.voice-box__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
  color: #26455c;
}

@media screen and (max-width:959px) {
  .voice-box {
    padding: 0 0 40px;
  }
  .voice-box__list__item {
    align-items: flex-start;
  }
  .voice-box__figure {
    margin-right: 8px;
    width: 100px;
    height: 100px;
  }
  .voice-box__lead {
    font-size: 1.4rem;
    padding-left: 8px;
  }
  .voice-box__name {
    font-size: 1.4rem;
  }
}
@media screen and (min-width:960px) {
  .voice-box__layout {
    align-items: center;
  }
  .voice-box__layout__footer--hidden-pc {
    display: none;
  }
}