@charset "UTF-8";
.article {
  font-family: "BIZ UDPGothic", sans-serif;
}

.worksys_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}

.worksys_img {
  width: 42%;
  max-width: 440px;
  min-width: 300px;
  flex-shrink: 0;
}

.worksys_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.voice_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.voice_block {
  width: calc((100% - 50px) / 2);
  height: 115px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.worksys_icon {
  width: 93px;
  height: 94px;
  border-radius: 48px;
  flex-shrink: 0;
}

.bubble {
  padding: 22px;
  border-radius: 10px;
  border: solid 1px #000;
  box-shadow: 4px 4px 0 #BB1C21;
  font-size: 15px;
  position: relative;
}
.bubble p:nth-child(1) {
  font-weight: bold;
}

.bubble::before {
  content: "";
  position: absolute;
  top: calc(50% - 12px); /* 好みで調整 */
  left: -12px; /* 幅と同じだけ左にオフセット */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 12px 11px 0;
  border-color: transparent black transparent transparent;
}

.bubble::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: -10.8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 12px 11px 0;
  border-color: transparent white transparent transparent;
}

@media (max-width: 960px){
  .worksys_block {
    gap: 40px;
  }
  .worksys_img {
    min-width: 260px;
  }
  .worksys_title {
    font-size: 18px;
  }
  .voice_section {
    gap: 20px;
  }
  .voice_block {
    width: calc((100% - 20px) / 2);
  }
  .bubble {
    padding: 16px;
    font-size: 14px;
  }
}

@media (max-width: 767px){
  .worksys_block {
    flex-direction: column;
    justify-content: center;
  }
  .worksys_title {
    font-size: 16px;
  }
  .voice_section {
    flex-direction: column;
  }
  .voice_block {
    width: 100%;
  }
  .worksys_icon {
    width: 60px;
    height: 60.5px;
    border-radius: 30px;
  }
}