@charset "UTF-8";
/* ヘッダーナビの当該ページにアンダーライン */
.header__nav__wrap li:nth-child(4) a.header__nav__parent {
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

/* -----------------------------------------------
voice__wrap
----------------------------------------------- */
.voice__inner__wrap {
  position: relative;
}
.voice__inner__wrap::before {
  content: '';
  width: 100vw;
  background-color: var(--light-color);
  position: absolute;
  right: 0;
}
.voice__inner__wrap > div {
  position: relative;
}
.voice__title__heading {
  background-color: #fff;
  color: var(--main-color);
  font-weight: bold;
}
.voice__inner__wrap strong {
  font-weight: bold;
}

@media (max-width: 767px) {
  .voice__inner__wrap {
    padding-right: calc(var(--vw) * 15);
  }
  .voice__inner__wrap::before {
    height: calc(100% + 60px + 120px);
    border-radius: 0 calc(var(--vw) * 50) calc(var(--vw) * 50) 0;
    top: -60px;
  }
  .voice__text__img__content .text__img__content__text {
    gap: 30px;
  }
  .voice__title__heading {
    font-size: 20px;
    letter-spacing: 0.05em;
    padding: 0.2em 10px;
    border-radius: 5px;
  }
  .voice__inner__wrap strong {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 768px) {
  .voice__inner__wrap {
    padding-right: 60px;
  }
  .voice__inner__wrap::before {
    height: calc(100% + 120px + 240px);
    border-radius: 0 min(8.33vw, 120px) min(8.33vw, 120px) 0;
    top: -120px;
  }
  .voice__text__img__content .text__img__content__img {
    width: 44.89%;
  }
  .voice__text__img__content .text__img__content__text {
    gap: 30px;
  }
  .voice__title__heading {
    font-size: 24px;
    letter-spacing: 0.05em;
    padding: 0.2em 10px;
    border-radius: 10px;
  }
  .voice__inner__wrap strong {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}