@charset "UTF-8";
.talk {
  margin-bottom: 40px;
}

.talk figure img {
  width: 100%;
  height: 100%;
  border: 2px solid #05428A;
  border-radius: 50%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* 画像の下のテキスト */
.talk-imgname {
  padding: 5px 0 0;
  font-size: 10px;
  text-align: center;
}

p.talk-text {
  margin: 0 0 8px;
}

p.talk-text:last-child {
  margin-bottom: 0px;
}

/* 回り込み解除 */
.talk:after,
.talk:before {
  clear: both;
  content: "";
  display: block;
}

/* ----- 右の場合 ----- */
/* 右画像 */
.talk-Rimg {
  margin-right: 4px;
  margin-top: -1px;
  float: right;
  width: 60px;
  height: 60px;
}

/* 右からの吹き出しテキスト */
.talk-Rtxt {
  position: relative;
  margin-right: 100px;
  padding: 1.2em;
  border: 2px solid #05428A;
  background-color: #EFF2F4;
  border-radius: 5px;
}

/* 右の三角形を作る */
.talk-Rtxt:before {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #05428A;
  top: 15px;
  right: -22px;
}

.talk-Rtxt:after {
  position: absolute;
  content: "";
  border: 10px solid transparent;
  border-left: 10px solid #EFF2F4;
  top: 15px;
  right: -19px;
}

.problem-block {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
}
@media screen and (max-width: 640px) {
  .problem-block {
    flex-direction: column;
  }
}
.problem-block__item {
  padding: 1rem;
  width: 50%;
}
@media screen and (max-width: 640px) {
  .problem-block__item {
    width: 100%;
  }
}
.problem-block__left {
  background-color: #E4E4E3;
  position: relative;
}
.problem-block__left::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 20px;
  border-color: transparent transparent transparent #E4E4E3;
  border-style: solid;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .problem-block__left::after {
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    border-color: #E4E4E3 transparent transparent transparent;
  }
}
.problem-block__right {
  background-color: #05428A;
  color: #fff;
}
.problem-block__title {
  font-weight: 700;
  font-size: 1.5rem;
}
.problem-block__desc {
  font-weight: 400;
}/*# sourceMappingURL=acf-block.css.map */