@charset "UTF-8";

@media screen and (min-width: 768px) {
  .newsList1 {
    padding: 0 0 0 6.451613vw;
  }
}

@media screen and (min-width: 1550px) {
  .newsList1 {
    padding-left: 6.25em;
  }
}

.pagArticle {
  margin: 4em 0 0;
  padding: 4em 0 0;
  border-top: 1px solid #272727;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pagArticle > li {
  margin: 0;
}

.pagArticle > li:nth-child(1) a::before,
.pagArticle > li:nth-child(2) a::after {
  content: '';
  display: inline-block;
  width: 2.5em;
  height: 0.5625em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0;
}

.pagArticle > li:nth-child(1) a::before {
  background-image: url(../images/common/arrow_prev_black_long.svg);
  margin-right: 1em;
}

.pagArticle > li:nth-child(2) a::after {
  background-image: url(../images/common/arrow_next_black_long.svg);
  margin-left: 1em;
}

.pagArticle > li.linkButton1 {
  width: 12em;
  text-align: center;
  margin: 2em auto 0;
}

.pagArticle .prevButton,
.pagArticle .nextButton {
  width: 50%;
}
.pagArticle .nextButton {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .pagArticle {
    flex-wrap: nowrap;
  }

  .pagArticle > li:nth-child(2) {
    order: 2;
  }

  .pagArticle > li.linkButton1 {
    order: 1;
    margin-top: 0;
  }
  .pagArticle .prevButton,
  .pagArticle .nextButton {
    width: 12em;
  }
}

.contentInner1 .fukidashi {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
}

.contentInner1 .fukidashi__profile {
  text-align: center;
  
  p {
    margin-bottom: 0;
  }
}

.contentInner1 .fukidashi__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.contentInner1 .fukidashi__name {
  font-weight: bold;
  margin-top: 8px;
}

.contentInner1 .fukidashi__role {
  font-size: 12px;
  color: #888;
}

.contentInner1 .fukidashi__bubble {
  position: relative;
  background: #dff5f0;
  border-radius: 16px;
  padding: 20px 24px;
  flex: 1;
  border: 1px solid #d6eae3;
}

.contentInner1 .fukidashi__bubble::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 26px;
  width: 12px;
  height: 18px;
  background: #dff5f0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.contentInner1 .fukidashi__bubble::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 24px;
  width: 14px;
  height: 22px;
  background: #d6eae3;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  z-index: -1;
}

.contentInner1 .fukidashi__title {
  color: #0C7C66;
  font-weight: bold;
  margin-bottom: 12px;
}

.contentInner1 .fukidashi__text {
  line-height: 1.6;
}

@media (max-width: 767px) {
  .contentInner1 .fukidashi {
    flex-direction: column;
    align-items: flex-start;
  }

  .contentInner1 .fukidashi__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin-left: 10px;
  }

  .contentInner1 .fukidashi__avatar {
    width: 48px;
    height: 48px;
  }

  .contentInner1 .fukidashi__bubble {
    padding: 12px 16px;
  }

  .contentInner1 .fukidashi__bubble::after {
    left: 24px;
    top: -11px;
    width: 18px;
    height: 12px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }

  .contentInner1 .fukidashi__bubble::before {
    left: 22px;
    top: -12px;
    width: 22px;
    height: 14px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }
  
}