body.voice {
  --voice-wrap-gap: 40px;
  --voice-green: #16bd9c;
  --voice-round: 30px;
}
body.voice .u-text-green {
  color: var(--voice-green);
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  body.voice {
    --voice-round: 20px;
  }
}
@media screen and (max-width: 768px) {
  body.voice {
    --voice-round: 10px;
    --voice-wrap-gap: 20px;
  }
}

.p-voice__title {
  margin-bottom: 40px;
}
.p-voice__title__message {
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  margin-bottom: 35px;
}
.p-voice__title__interviewee {
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 600;
}
.p-voice__sticky {
  max-width: 1920px;
  margin: auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  margin-bottom: var(--voice-wrap-gap);
  gap: 60px;
}
@media screen and (max-width: 1480px) {
  .p-voice__sticky {
    grid-template-columns: 300px 1fr;
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__sticky {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-voice__sticky__main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--voice-wrap-gap);
}
.p-voice__sticky__sub {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice__sticky__sub {
    display: none;
  }
}
.p-voice__sticky__sub__inner {
  position: sticky;
  top: 60px;
  background: #fff;
  border-radius: var(--voice-round);
  padding: 30px 40px;
}
@media (width < 1930px) {
  .p-voice__sticky__sub__inner {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__sticky__sub__inner {
    max-width: 94%;
    margin-inline: auto;
    border-radius: var(--voice-round);
  }
}
@media screen and (max-width: 768px) {
  .p-voice__sticky__sub__inner {
    padding: 20px 10px;
  }
}
.p-voice__sticky__sub__inner ._ttl {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #dad6d3;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.p-voice__sticky__sub__link {
  text-decoration: none;
  color: #121411;
  opacity: 0.4;
  font-weight: bold;
  position: relative;
  margin-bottom: 1em;
  display: block;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice__sticky__sub__link {
    opacity: 0.8;
    margin-bottom: 0.6em;
    padding-left: 0;
  }
}
.p-voice__sticky__sub__link:before {
  content: "";
  background: url(/assets/dest/img/voice/ico_check.png) center/cover no-repeat;
  width: 14px;
  height: 13px;
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  .p-voice__sticky__sub__link:before:before {
    display: none;
  }
}
.p-voice__sticky__sub__link.is-current {
  opacity: 1;
  color: var(--voice-green);
}
.p-voice__sticky__sub__link.is-current:before {
  opacity: 1;
}
.p-voice__box {
  background: #fff;
  border-radius: var(--voice-round);
  padding: 100px;
  width: 100%;
}
@media (width < 1930px) {
  .p-voice__box {
    padding: 60px;
  }
}
@media screen and (max-width: 1480px) {
  .p-voice__box {
    padding: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__box {
    max-width: 94%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__box {
    padding: 20px 12px;
  }
}
.p-voice__list li {
  padding-left: 1em;
  position: relative;
}
.p-voice__list li:before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background: var(--voice-green);
  border-radius: 100vmax;
  position: absolute;
  left: 0.3em;
  top: 10px;
}
.p-voice__outline__photo {
  margin-bottom: var(--voice-wrap-gap);
}
@media screen and (max-width: 1200px) {
  .p-voice__outline__photo {
    max-width: 97%;
    margin-left: auto;
    margin-right: 0;
  }
}
.p-voice__outline__photo img {
  border-radius: var(--voice-round);
  width: 100%;
  display: block;
  height: auto;
}
@media (width < 1930px) {
  .p-voice__outline__photo img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (width < 1930px) {
  .p-voice__outline__profile {
    max-width: calc(100% - var(--voice-wrap-gap));
  }
}
.p-voice__outline__profile__box {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-voice__outline__profile__photo img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__photo img {
    border-radius: 10px;
  }
}
.p-voice__outline__profile__photo figcaption {
  position: relative;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 600;
}
.p-voice__outline__profile__text ._ttl {
  font-size: 2.4rem !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__text ._ttl {
    font-size: 2rem !important;
  }
}
.p-voice__outline__profile__text ._logo {
  border: 1px solid #dad6d3;
  width: 100px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__text ._logo {
    width: 80px;
  }
}
.p-voice__outline__profile__text ._logo img {
  width: 100%;
  height: auto;
}
.p-voice__outline__profile__text hgroup {
  align-items: center;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__text hgroup {
    gap: 10px;
    margin-bottom: 10px;
    grid-template-columns: 80px 1fr;
  }
}
.p-voice__outline__profile__text ._table {
  font-weight: bold;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.p-voice__outline__profile__text ._table th,
.p-voice__outline__profile__text ._table td {
  padding-block: 4px;
}
.p-voice__outline__profile__text ._table td {
  padding-left: 20px;
}
.p-voice__outline__profile__text ._table th {
  width: 85px;
  padding-right: 10px;
  color: var(--voice-green);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__text ._table th {
    width: 75px;
  }
}
.p-voice__outline__profile__text ._table th:before {
  content: "";
  background: #dad6d3;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
.p-voice__outline__profile__text ._table a {
  color: var(--voice-green);
}
.p-voice__outline__profile__text ._table a.externalLink:after {
  content: "";
  display: inline-block;
  background: url(/assets/dest/img/common/ico/ico_externallink_black.png) no-repeat 50%;
  width: 9px;
  height: 9px;
  margin-left: 8px;
}
.p-voice__outline__profile__detail p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-voice__outline__profile__detail p {
    line-height: 2;
  }
}
.p-voice__support {
  background: #eaf8f5;
  border-radius: var(--voice-round);
  border: 4px solid var(--voice-green);
}
@media (width < 1930px) {
  .p-voice__support {
    max-width: calc(100% - var(--voice-wrap-gap));
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__support {
    max-width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__support {
    border-width: 2px;
  }
}
.p-voice__support hgroup {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice__support hgroup {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__support hgroup ._logo {
    zoom: 0.8;
  }
}
.p-voice__support hgroup .c-base_ttl__en {
  font-size: 4.8rem;
  color: var(--voice-green);
}
@media screen and (max-width: 768px) {
  .p-voice__support hgroup .c-base_ttl__en {
    font-size: 3rem;
  }
}
.p-voice__support hgroup .c-base_ttl__ja {
  font-size: 1.6rem;
  color: #121411;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-voice__support hgroup .c-base_ttl__ja {
    margin-top: 0;
  }
}
.p-voice__support__list {
  counter-reset: counter;
}
.p-voice__support__item {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 0.8em;
  position: relative;
  padding-left: 2em;
}
.p-voice__support__item:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: counter;
  content: counters(counter, ".") " ";
  border-radius: 100px;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
  color: #fff;
}
.p-voice__support__item:nth-child(1):before {
  background: #94d616;
}
.p-voice__support__item:nth-child(2):before {
  background: #75d033;
}
.p-voice__support__item:nth-child(3):before {
  background: #57cb50;
}
.p-voice__support__item:nth-child(4):before {
  background: #2ec378;
}
.p-voice__support__item:nth-child(5):before {
  background: #1fb593;
}
@media screen and (max-width: 768px) {
  .p-voice__support__item {
    font-size: 1.8rem;
  }
}
.p-voice__support__item .--sm {
  font-size: 1.6rem;
}
.p-voice__question {
  max-width: inherit;
  display: grid;
  gap: var(--voice-wrap-gap);
}
@media (width < 1930px) {
  .p-voice__question {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__question {
    margin-right: 0;
    margin-left: auto;
    max-width: 97%;
  }
}
.p-voice__question__box hgroup {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #dad6d3;
  margin-bottom: var(--space-sm);
  gap: 10px;
}
.p-voice__question__box hgroup .num {
  color: var(--voice-green);
  font-size: 9.4rem;
  line-height: 0.7;
}
@media screen and (max-width: 768px) {
  .p-voice__question__box hgroup .num {
    font-size: 5rem;
  }
}
.p-voice__question__box hgroup ._en {
  color: var(--voice-green);
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "OpenSans", sans-serif;
}
.p-voice__question__box hgroup ._ja {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-voice__question__box hgroup ._ja {
    font-size: 2.2rem;
  }
}
.p-voice__question__content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-voice__question__content p {
    line-height: 2;
  }
}
.p-voice__question__content ._catch {
  font-size: 3rem;
  color: var(--voice-green);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-voice__question__content ._catch {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.p-voice__question__content img {
  width: 100%;
  height: auto;
  border-radius: var(--voice-round);
}
.p-voice__message hgroup {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice__message hgroup {
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    grid-template-columns: 60px 1fr;
  }
}
.p-voice__message hgroup ._ja {
  font-size: 3.6rem;
  color: var(--voice-green);
}
@media screen and (max-width: 768px) {
  .p-voice__message hgroup ._ja {
    font-size: 2rem;
  }
}
.p-voice__message hgroup ._ttl {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-voice__message hgroup ._logo {
    zoom: 0.8;
  }
}
.p-voice__message__box {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  background: #e5f3f0;
}
@media screen and (max-width: 1200px) {
  .p-voice__message__box {
    max-width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .p-voice__message__box {
    grid-template-columns: 1fr 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__message__box {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.p-voice__message__box__text p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-voice__message__box__text p {
    line-height: 2;
    font-size: 1.5rem;
  }
}
.p-voice__message__box__profile {
  text-align: center;
}
.p-voice__message__box__profile ._ico {
  max-width: 35vw;
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid #dad6d3;
  margin: 0 auto 10px auto;
}
.p-voice__message__box__profile ._ico img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-voice__message__box__profile ._position {
  font-weight: bold;
  color: var(--voice-green);
}
.p-voice__message__box__profile ._name {
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__message__box__profile ._name {
    font-size: 2rem;
  }
}
.p-voice__solution {
  max-width: min(100% - var(--voice-wrap-gap) - var(--voice-wrap-gap), 1550px);
  padding: 40px;
  background: #fff;
  border-radius: var(--voice-round);
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .p-voice__solution {
    max-width: 94%;
  }
}
@media screen and (max-width: 576px) {
  .p-voice__solution {
    padding: 20px 12px;
  }
}
.p-voice__solution__box {
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  gap: 20px 80px;
}
@media screen and (max-width: 1200px) {
  .p-voice__solution__box {
    flex-direction: column;
  }
}
@media screen and (max-width: 1480px) {
  .p-voice__solution__box .c-base_ttl__en {
    font-size: clamp(2rem, 7vw, 6rem);
  }
}
@media screen and (max-width: 1200px) {
  .p-voice__solution__box .c-base_ttl__en {
    font-size: clamp(2rem, 7vw, 5rem);
  }
}
.p-voice__solution__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  max-width: 940px;
}
@media screen and (max-width: 992px) {
  .p-voice__solution__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__solution__list {
    gap: 20px;
  }
}
.p-voice__solution__link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-voice__solution__link {
    gap: 15px;
    grid-template-columns: 100px 1fr;
  }
}
.p-voice__solution__link.text {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-voice__solution__link.text {
    text-align: center;
  }
}
.p-voice__solution__link ._ttl {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1480px) {
  .p-voice__solution__link ._ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__solution__link ._ttl {
    font-size: 1.7rem;
  }
}
.p-voice__solution__link ._url {
  color: var(--voice-green);
  text-decoration: underline;
}
.p-voice__solution__link.externalLink ._url:after {
  content: "";
  display: inline-block;
  background: url(/assets/dest/img/common/ico/ico_externallink_black.png) no-repeat 50%;
  width: 9px;
  height: 9px;
  margin-left: 8px;
}
.p-voice__solution .c-base_ttl .c-base_ttl__ja {
  color: var(--voice-green);
}
.p-voice__solution .c-base_btn {
  margin: 30px auto 0;
  padding: 24px 0;
  background: var(--voice-green);
  color: #fff;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  width: 320px;
  max-width: 90vw;
  line-height: 1;
  transition: 0.2s;
  width: 430px;
}
@media screen and (max-width: 768px) {
  .p-voice__solution .c-base_btn {
    width: 80%;
    min-width: 330px;
  }
}
.p-voice__solution .c-base_btn:before {
  background: #fff;
}
.p-voice__pager {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice__pager {
    gap: 80px;
    margin-top: 100px;
  }
}
.p-voice__pager ._prev,
.p-voice__pager ._txtBtn,
.p-voice__pager ._next {
  background: #fff;
  border-radius: 100vmax;
  display: block;
  padding: 28px 0;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11140f;
}
@media screen and (max-width: 768px) {
  .p-voice__pager ._prev,
  .p-voice__pager ._txtBtn,
  .p-voice__pager ._next {
    padding: 18px 0;
  }
}
@media (any-hover: hover) {
  .p-voice__pager ._prev:hover,
  .p-voice__pager ._txtBtn:hover,
  .p-voice__pager ._next:hover {
    color: var(--voice-green);
  }
  .p-voice__pager ._prev:hover:before,
  .p-voice__pager ._txtBtn:hover:before,
  .p-voice__pager ._next:hover:before {
    background: var(--voice-green);
  }
}
.p-voice__pager ._txtBtn {
  width: 380px;
}
@media screen and (max-width: 768px) {
  .p-voice__pager ._txtBtn {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__pager ._txtBtn {
    position: absolute;
    bottom: 70px;
  }
}
.p-voice__pager ._prev,
.p-voice__pager ._next {
  width: 160px;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-voice__pager ._prev,
  .p-voice__pager ._next {
    width: 130px;
  }
}
.p-voice__pager ._prev:before,
.p-voice__pager ._next:before {
  content: "";
  display: block;
  mask-image: url(/assets/dest/img/common/ico/ico_arrow.svg);
  mask-repeat: no-repeat;
  width: 14px;
  height: 12px;
  background: #11140f;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease;
}
.p-voice__pager ._prev:before {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.p-voice__pager ._next:before {
  right: 20px;
  transform: translateY(-50%);
}

body#voiceIndex .p-voice__archive {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body#voiceIndex .p-voice__archive__box {
  overflow: clip;
  text-decoration: none;
  background: #fff;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-radius: 30px;
  color: #11140f;
  position: relative;
}
@media screen and (max-width: 1200px) {
  body#voiceIndex .p-voice__archive__box {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  body#voiceIndex .p-voice__archive__box {
    flex-direction: column;
    padding: 20px 20px 80px;
    gap: 20px;
  }
}
body#voiceIndex .p-voice__archive__box:hover .p-voice__btn-grad:after {
  transform: translateX(5px);
}
body#voiceIndex .p-voice__archive__box__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 0 0 30px 0;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  body#voiceIndex .p-voice__archive__box__logo {
    width: 70px;
    height: 70px;
    border-radius: 0 0 20px 0;
  }
  body#voiceIndex .p-voice__archive__box__logo img {
    width: 75%;
  }
}
body#voiceIndex .p-voice__archive__box__pho {
  border-radius: 20px;
  width: 35%;
  aspect-ratio: 460/360;
  overflow: clip;
}
@media screen and (max-width: 992px) {
  body#voiceIndex .p-voice__archive__box__pho {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  body#voiceIndex .p-voice__archive__box__pho {
    width: 100%;
  }
}
body#voiceIndex .p-voice__archive__box__pho img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
body#voiceIndex .p-voice__archive__box__contents {
  width: 61%;
}
@media screen and (max-width: 992px) {
  body#voiceIndex .p-voice__archive__box__contents {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  body#voiceIndex .p-voice__archive__box__contents {
    width: 100%;
  }
}
body#voiceIndex .p-voice__archive__box__contents ._message {
  font-size: clamp(2.4rem, 2.5vw, 3rem);
  color: var(--voice-green);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}
body#voiceIndex .p-voice__archive__box__contents ._interviewee {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  body#voiceIndex .p-voice__archive__box__contents ._interviewee {
    margin-bottom: 20px;
  }
}
body#voiceIndex .p-voice__archive__box__contents ._txt {
  font-size: 1.6rem;
}
body#voiceIndex .p-voice__btn-grad {
  width: 200px;
  font-size: 1.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #64d25d, #1ab393);
  padding: 20px;
  border-radius: 30px 0 0 0;
  color: #fff;
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body#voiceIndex .p-voice__btn-grad {
    padding: 15px;
  }
}
body#voiceIndex .p-voice__btn-grad:after {
  transition: transform 0.5s;
  width: 15px;
  height: 11px;
  content: "";
  display: inline-block;
  background: url(/assets/dest/img/voice/ico_arrowB.png);
}
body#voiceIndex .p-voice__tag {
  margin: 26px 0 0;
  justify-content: flex-start;
}
body#voiceIndex .p-voice__tag ._tag {
  border: 1px solid #dad6d3;
  font-weight: 700;
}