@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.voice #breadcrumbs {
  background-color: #fff;
  margin-bottom: 0 !important;
  padding-bottom: 10px;
}
.voice main {
  padding-top: clamp(80px, 18vw, 160px) !important;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, rgb(247, 247, 247) 3px, rgb(247, 247, 247) 6px);
}
.voice__item {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .voice__item {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__item {
    border-radius: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__item {
    margin-bottom: 20px;
  }
}
.voice__item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .voice__item .head {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__item .head {
    gap: 10px;
  }
}
.voice__item .head .img {
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #eeeeee;
}
.voice__item .head .img img {
  aspect-ratio: 1;
  border-radius: 50%;
}
.voice__item .head .title {
  width: 85%;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .voice__item .head .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__item .head .title {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.voice .tag__list {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .voice .tag__list {
    gap: 5px;
  }
}
.voice .tag__item {
  background: #eeeeee;
  color: #6c6c6c;
  padding: 4px 6px;
}