@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
.maru-go-f {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal.is-open {
  display: block;
}
.modal[aria-hidden=false] {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

#voice {
  /*========== キーイメージ ===========*/
  /*========== グラフ部分 ===========*/
  /*========== フッター部分 ===========*/
}
#voice #header {
  top: 0;
  background-color: white;
  padding: 1rem;
  padding-right: 70px;
}
#voice #header .wrap_header {
  width: 100%;
  gap: 5%;
}
#voice #header .logo {
  width: 50vw;
}
#voice #header .right {
  width: 30vw;
}
#voice .voice_mv {
  background-color: #58cd37;
  padding: 10rem 0;
}
#voice .voice_graphs {
  background-color: #eeeeee;
}
#voice .voice_graphs .graph_position {
  position: relative;
  top: -8rem;
  margin-bottom: -8rem;
}
#voice .voice_graphs .graph_block {
  padding: 2rem;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 5px rgba(153, 153, 153, 0.5);
}
#voice .voice_graphs .graph_block .question {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  text-indent: -2rem;
  margin-left: 2rem;
  word-break: auto-phrase;
}
#voice .voice_graphs .data-side {
  position: absolute;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}
#voice .voice_graphs .graph01 .graph_block {
  position: relative;
}
#voice .voice_graphs .graph01 .graph_block .data-side {
  bottom: 1%;
  right: 1%;
  font-size: x-small;
  background: white;
  padding: 1%;
}
#voice .voice_graphs .graph02 .graph02_block .left .graph_block {
  position: relative;
}
#voice .voice_graphs .graph02 .graph02_block .left .graph_block .data-side {
  bottom: 1%;
  right: 1%;
  font-size: x-small;
  background: white;
  padding: 1%;
}
#voice .voice_graphs #graph01 {
  padding: 2rem 0;
  /* Graph Layout */
  /* Grid Lines */
  /* Bars Layout */
  /* Colors */
  /* Responsive */
}
#voice .voice_graphs #graph01 .graph-wrapper {
  position: relative;
}
#voice .voice_graphs #graph01 .grid-lines-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(20% + 12px);
  right: 0;
  display: none;
}
#voice .voice_graphs #graph01 .grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e2e8f0;
  z-index: 0;
}
#voice .voice_graphs #graph01 .bar-container {
  display: grid;
  grid-template-columns: calc(20% + 12px) 1fr; /* 2-column layout, percentage is inside */
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
#voice .voice_graphs #graph01 .label {
  text-align: right;
  line-height: 1.2;
  font-size: 1.2rem;
  color: #475569;
  margin-right: 1rem;
  font-weight: bold;
}
#voice .voice_graphs #graph01 .track {
  position: relative;
  height: 1.5rem;
  width: 100%;
  border-radius: 2px;
  /* overflow: hidden; */ /* Allow percentage to stay visible */
}
#voice .voice_graphs #graph01 .bar {
  height: 100%;
  width: 0; /* Initial width for animation */
  transition: width 3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  align-items: center;
}
#voice .voice_graphs #graph01 .percentage {
  position: absolute;
  right: 0px; /* Position it relative to the end of the bar */
  transform: translateX(100%); /* Offset by its own width */
  font-size: 1.125rem;
  font-weight: bold;
  color: #1e293b;
  padding-left: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#voice .voice_graphs #graph01 .bar.show .percentage {
  opacity: 1;
}
#voice .voice_graphs #graph01 .bar-color-1 {
  background-color: #5b85f2;
}
#voice .voice_graphs #graph01 .bar-color-2 {
  background-color: #5db9e5;
}
#voice .voice_graphs #graph01 .bar-color-3 {
  background-color: #84d1e8;
}
#voice .voice_graphs #graph01 .bar-color-4 {
  background-color: #b5e7f9;
}
@media (max-width: 768px) {
  #voice .voice_graphs #graph01 .container {
    padding: 20px;
    margin: 40px auto;
  }
  #voice .voice_graphs #graph01 .bar-container {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin-bottom: 2rem;
  }
  #voice .voice_graphs #graph01 .label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 4px;
  }
  #voice .voice_graphs #graph01 .br-desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  #voice .voice_graphs #graph01 .grid-lines-container {
    display: block;
  }
  #voice .voice_graphs #graph01 .bar-container {
    padding-top: 8px;
  }
  #voice .voice_graphs #graph01 .track {
    height: 2rem;
  }
  #voice .voice_graphs #graph01 .percentage {
    font-size: 2rem;
  }
}
#voice .voice_graphs .graph02 {
  padding: 2rem 0;
}
#voice .voice_graphs .graph02 .graph02_block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#voice .voice_graphs .graph02 .graph02_block .right picture {
  display: block;
  padding: 2rem 0;
}
#voice .voice_graphs #graph02 {
  /* --- Pie Chart Styles --- */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 280px; /* グラフ自体のサイズを制限 */
  margin: 0 auto;
  /* Container Queries */
}
#voice .voice_graphs #graph02 .pie-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: auto; /* アスペクト比を維持 */
  aspect-ratio: 1/1;
  overflow: visible;
}
#voice .voice_graphs #graph02 .pie-segment {
  fill: none;
  stroke-width: 20;
  stroke-dasharray: 0 157;
  transition: stroke-dasharray 3s cubic-bezier(0.22, 1, 0.36, 1);
}
#voice .voice_graphs #graph02 .segment-no {
  stroke: #5db9e5;
  stroke-dasharray: 157 157;
}
#voice .voice_graphs #graph02 .segment-yes {
  stroke: #5b85f2;
}
#voice .voice_graphs #graph02 .pie-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#voice .voice_graphs #graph02 .label-box {
  position: absolute;
  text-align: center;
  opacity: 1;
  transition: opacity 0.6s ease 0.8s;
}
#voice .voice_graphs #graph02 .pie-chart-container.show .label-box {
  opacity: 1;
}
#voice .voice_graphs #graph02 .label-yes {
  bottom: 32%;
  right: 30%;
  color: #fff;
}
#voice .voice_graphs #graph02 .label-yes .label-text {
  font-size: 3rem;
}
#voice .voice_graphs #graph02 .label-no {
  top: 7%;
  left: 2%;
  color: #333;
}
#voice .voice_graphs #graph02 .label-text {
  font-size: 1rem;
  min-font-size: 12px;
  font-weight: 800;
  display: block;
  white-space: nowrap;
}
#voice .voice_graphs #graph02 .label-val {
  font-size: 2rem;
  font-weight: 700;
}
#voice .voice_graphs #graph02 .pie-chart-container {
  container-type: size;
}
@media (max-width: 480px) {
  #voice .voice_graphs #graph02 .container {
    padding: 20px;
  }
}
#voice .voice_interview {
  background-color: white;
  background-image: url("../images/voice/voice_back01.png");
  background-size: 300% auto;
}
#voice .voice_interview .voice_title {
  color: #ed7e81;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  padding: 2rem 0;
}
#voice .voice_interview .case {
  color: #ed7e81;
  font-family: "Zen Maru Gothic", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  width: 7rem;
  height: 7rem;
}
#voice .voice_interview .case:before {
  content: "CASE";
  font-weight: 900;
  line-height: 1;
  position: relative;
  top: 0.5rem;
}
#voice .voice_interview .case span {
  font-size: 250%;
  font-weight: 900;
}
#voice .voice_interview .voice_blocks {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#voice .voice_interview .voice_blocks .block {
  margin: 0 1rem 4rem;
  padding: 1rem 2rem;
  border: 5px solid #ed7e81;
  border-radius: 1rem;
  position: relative;
  background-color: white;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ed7e81;
  font-weight: 900;
}
#voice .voice_interview .voice_blocks .block:after {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 5%;
  bottom: -3rem;
  background-image: url("../images/voice/fukidashi.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#voice .voice_interview .voice_blocks .block .jirei {
  position: absolute;
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 100%;
  color: white;
  text-align: center;
  background-color: #ed7e81;
  top: -1.5rem;
  right: -1.5rem;
  border-radius: 0.5rem;
}
#voice .voice_interview .voice_blocks .block .image {
  padding: 0.5rem 0;
}
#voice .voice_interview .voice_blocks .block .image img {
  transition: 0.3s;
}
#voice .voice_interview .voice_blocks .block .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#voice .voice_interview .voice_blocks .block .text h3 {
  width: 70%;
  font-weight: 900;
  line-height: 1.4;
  font-size: 90%;
  word-break: auto-phrase;
}
#voice .voice_interview .voice_blocks .block .text .name {
  width: 30%;
  text-align: right;
}
#voice .voice_interview .voice_blocks .block:hover .image {
  overflow: hidden;
}
#voice .voice_interview .voice_blocks .block:hover .image img {
  transform: scale(1.1);
}
#voice .voice_interview .modal {
  color: #ed7e81;
  font-family: "Zen Maru Gothic", sans-serif;
}
#voice .voice_interview .modal .modal-header {
  flex-direction: column;
}
#voice .voice_interview .modal .modal-header .modal-header-title {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#voice .voice_interview .modal .modal-header .modal-header-title .case {
  border-radius: 50rem;
  padding: 3.5rem;
  border: 3px solid #ed7e81;
}
#voice .voice_interview .modal .modal-header .modal-header-title .modal-title {
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  word-break: auto-phrase;
  padding: 1rem 0;
  text-align: center;
}
#voice .voice_interview .modal .modal-header .modal-header-image {
  padding: 2rem 0;
  max-width: 80%;
}
#voice .voice_interview .modal .modal-header .modal-header-image .name {
  text-align: right;
  font-weight: bold;
  font-size: 110%;
}
#voice .voice_interview .modal .modal-header .modal-header-text {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#voice .voice_interview .modal .modal-header .modal-header-text .text {
  padding: 1rem 0;
}
#voice .voice_interview .modal .text h3 {
  font-size: 150%;
  font-weight: bold;
  color: #ed7e81;
  word-break: auto-phrase;
}
#voice .voice_interview .modal .text h3 br {
  display: none;
}
#voice .voice_interview .modal .text p {
  color: #333;
  font-weight: bold;
  display: block;
  padding: 1rem 0;
  text-align: justify;
}
#voice .voice_interview .modal .image {
  padding: 1rem 0;
}
#voice .voice_interview .modal .image span {
  color: #333;
  font-weight: bold;
}
#voice .voice_interview .modal div[class^=interview0] {
  padding: 2rem 0;
}
#voice .voice_interview .modal div[class^="flex block0"] {
  padding: 1rem 0;
}
#voice .voice_interview .modal .interview02_03 h3 br {
  display: block;
}
#voice .voice_interview .modal .min-font {
  font-size: x-small;
}
@media (min-width: 769px) {
  #voice .voice_interview .modal {
    font-size: 1.5vw;
  }
  #voice .voice_interview .modal .modal-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 5% 5% 0;
  }
  #voice .voice_interview .modal .modal-header .modal-header-title {
    width: 60%;
    justify-content: flex-start;
  }
  #voice .voice_interview .modal .modal-header .modal-header-title .case {
    padding: 4.5rem;
    border-width: 5px;
  }
  #voice .voice_interview .modal .modal-header .modal-header-title .case span {
    padding-bottom: 1rem;
  }
  #voice .voice_interview .modal .modal-header .modal-header-title .modal-title {
    font-size: 280%;
    text-align: left;
  }
  #voice .voice_interview .modal .modal-header .modal-header-title .modal-title br {
    display: inline-block;
  }
  #voice .voice_interview .modal .modal-header .modal-header-image {
    width: 30%;
  }
  #voice .voice_interview .modal .modal-header .modal-header-text {
    width: 60%;
  }
  #voice .voice_interview .modal .min-font {
    font-size: small;
  }
  #voice .voice_interview .modal .modal-content {
    margin-top: 0;
    padding: 0 5% 5%;
  }
  #voice .voice_interview .modal div[class^=interview0] {
    padding: 3rem 0;
  }
  #voice .voice_interview .modal .interview01_01 {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #voice .voice_interview .modal .interview01_01 .text {
    width: 60%;
  }
  #voice .voice_interview .modal .interview01_01 .images {
    width: 35%;
  }
  #voice .voice_interview .modal .interview01_02 {
    padding: 2rem 0 0;
  }
  #voice .voice_interview .modal .interview01_02 .text_image {
    padding-top: 3rem;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #voice .voice_interview .modal .interview01_02 .text_image .image {
    width: 30%;
  }
  #voice .voice_interview .modal .interview01_02 .text_image .text {
    width: 65%;
  }
  #voice .voice_interview .modal .interview01_03 {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #voice .voice_interview .modal .interview01_03 .text {
    width: 47.5%;
  }
  #voice .voice_interview .modal .modal02 .modal-header-text {
    width: 78%;
  }
  #voice .voice_interview .modal .interview02_01 .flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview02_01 .flex .text {
    width: 43%;
  }
  #voice .voice_interview .modal .interview02_01 .flex .images {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_01 {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_01 .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_01 .images {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_01 .images .image:nth-of-type(1) {
    margin-bottom: 5rem;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_02 {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
    flex-direction: row-reverse;
    align-items: flex-end;
    position: relative;
    top: -3vw;
    margin-bottom: -3vw;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_02 .text {
    width: 65%;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_02 .image {
    width: 45%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_01 {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_01 .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_01 .image {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_02 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 4.5rem;
    position: relative;
    top: -10vw;
    margin-bottom: -10vw;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_02 .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_02 .image {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_03 {
    padding-top: 5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_03 .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_03 .image {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_04 {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_04 > .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_04 > .image {
    width: 50%;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_01 {
    padding-top: 5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_01 .text {
    width: 50%;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_01 .images {
    width: 50%;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_02 {
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
    position: relative;
    top: -4vw;
    margin-bottom: -4vw;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_02 > .text {
    width: 50%;
    padding-top: 4vw;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_02 > .images {
    width: 50%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_01 {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_01 .text {
    width: 65%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_01 .image {
    width: 40%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_02 {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 4.5rem;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_02 .text {
    width: 70%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_02 .image {
    width: 35%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_03 {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    gap: 4.5rem;
    position: relative;
    top: -13vw;
    margin-bottom: -13vw;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_03 .text {
    width: 65%;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_03 .image {
    width: 35%;
  }
  #voice .voice_interview .modal .text h3 {
    font-size: 190%;
  }
  #voice .voice_interview .modal .text h3 br {
    display: inline-block;
  }
  #voice .voice_interview .modal .text p {
    text-align: justify;
    line-height: 2;
    word-break: break-word;
  }
}
@media (min-width: 1280px) {
  #voice .voice_interview .modal {
    font-size: inherit;
  }
  #voice .voice_interview .modal .interview02_02 .block02_02_02 {
    top: -25rem;
    margin-bottom: -25rem;
  }
  #voice .voice_interview .modal .interview02_03 .block02_03_02 {
    top: -13rem;
    margin-bottom: -13rem;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_02 {
    top: -7rem;
    margin-bottom: -7rem;
  }
  #voice .voice_interview .modal .interview03_01 .block03_01_02 .text {
    padding-top: 7rem;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_03 {
    top: -23rem;
    margin-bottom: -23rem;
  }
  #voice .voice_interview .modal .interview03_02 .block03_02_03 .text {
    width: 63%;
  }
}
#voice .wrap_footer_sns {
  margin-top: 0;
}
@media (min-width: 769px) {
  #voice {
    /*========== キーイメージ ===========*/
  }
  #voice #header {
    padding: 20px 1rem;
    padding-right: 110px;
  }
  #voice #header .wrap_header {
    width: clac(94.4444444444vw);
  }
  #voice #header .logo {
    width: 500px;
  }
  #voice #header .right {
    width: 200px;
  }
  #voice .voice_mv {
    padding: 200px 0;
  }
  #voice .voice_graphs .graph02 {
    padding: 5rem 0;
  }
  #voice .voice_graphs .graph02 .graph02_block {
    flex-direction: row;
    gap: 5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #voice .voice_graphs .graph02 .graph02_block .left {
    width: 50%;
  }
  #voice .voice_graphs .graph02 .graph02_block .right {
    width: calc(40% - 5rem);
  }
  #voice .voice_graphs #graph02 {
    max-width: 380px;
  }
  #voice .voice_interview {
    background-size: contain;
  }
  #voice .voice_interview .voice_title {
    font-size: 5rem;
  }
  #voice .voice_interview .voice_blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #voice .voice_interview .voice_blocks .block {
    width: calc(33.3% - 5rem);
    margin: 0 2.5rem 6rem;
  }
  #voice .voice_interview .voice_blocks .block .text {
    font-size: 80%;
  }
}
@media (min-width: 1180px) {
  #voice .voice_graphs .graph02 .graph02_block .left {
    width: 60%;
  }
  #voice .voice_graphs .graph02 .graph02_block .right img {
    width: 130%;
  }
}