@charset "UTF-8";
/********************************************
* Component
********************************************/
.c-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
}
.c-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/********************************************
* Project
********************************************/
.p-voice__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-voice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
@media (width <= 768px) {
  .p-voice__item {
    flex-wrap: wrap;
  }
}
.p-voice__item:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.p-voice__item:nth-of-type(2n) .p-voice__thumb {
  order: 2;
}
@media (width <= 768px) {
  .p-voice__item:nth-of-type(2n) .p-voice__thumb {
    order: 1;
  }
}
.p-voice__item:nth-of-type(2n) .p-voice__text {
  order: 1;
}
@media (width <= 768px) {
  .p-voice__item:nth-of-type(2n) .p-voice__text {
    order: 2;
  }
}
.p-voice__thumb {
  width: 180px;
  text-align: center;
}
@media (width <= 768px) {
  .p-voice__thumb {
    width: 100%;
  }
}
.p-voice__img {
  width: 180px;
  vertical-align: bottom;
}
.p-voice__name {
  background: #ddd;
  display: block;
  padding: 5px 10px;
  text-align: center;
}
.p-voice__text {
  width: calc(100% - 200px);
}
@media (width <= 768px) {
  .p-voice__text {
    width: 100%;
  }
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
.u-pc--inline {
  display: inline;
}
.u-pc--iblock {
  display: inline-block;
}
.u-pc--table {
  display: table;
}

.u-sp {
  display: none;
}
.u-sp--inline {
  display: none;
}
.u-sp--iblock {
  display: none;
}
.u-sp--table {
  display: none;
}

.u-ofit {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}
.u-text--mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #ccc;
  line-height: 1.5;
}
.u-text_ellipsis--multiline {
  white-space: normal;
  max-height: 3em;
  position: relative;
}
.u-text_ellipsis--multiline::after {
  content: "…";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: #ccc;
}
.u-text_ellipsis--line2 {
  max-height: 3em;
}
.u-text_ellipsis--line3 {
  max-height: 4.5em;
}
.u-text_ellipsis--line4 {
  max-height: 6em;
}
.u-text_ellipsis--line5 {
  max-height: 7.5em;
}

.u-color__yellow {
  color: yellow;
}

@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-pc--inline {
    display: none;
  }
  .u-pc--iblock {
    display: none;
  }
  .u-pc--table {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-sp--inline {
    display: inline;
  }
  .u-sp--iblock {
    display: inline-block;
  }
  .u-sp--table {
    display: table;
  }
}