@charset "UTF-8";
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

@media (width <= 965px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}
.metrics-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: start;
  gap: 20px;
  padding: 23px;
  background: #ECF4D9;
}
@media (width <= 640px) {
  .metrics-item {
    grid-template-columns: 48px 1fr;
  }
}
.metrics-item.row-span2 {
  grid-row: span 2;
}
@media (width <= 965px) {
  .metrics-item.row-span2 {
    grid-row: initial;
  }
}
.metrics-item.col-span2 {
  grid-column: span 2;
}
@media (width <= 965px) {
  .metrics-item.col-span2 {
    grid-column: initial;
  }
}

.metrics-span2 {
  grid-column: span 2;
}

.metrics-icon {
  display: block;
  width: 96px;
  height: 96px;
}
@media (width <= 640px) {
  .metrics-icon {
    width: 48px;
    height: 48px;
  }
}
.metrics-icon img {
  width: 100%;
  height: auto;
}

.metrics-title {
  padding-left: 0 !important;
  text-align: left !important;
  font-size: 23px !important;
  margin: 0 !important;
  border-bottom: none !important;
}
.metrics-title::before, .metrics-title:after {
  display: none !important;
}

.metrics-value {
  line-height: 1 !important;
  padding-bottom: 0 !important;
}
.metrics-value.color-red {
  color: #ED1C24;
}

.metrics-value .num {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media (width <= 640px) {
  .metrics-value .num {
    font-size: 50px;
  }
}

.metrics-value .unit {
  font-size: 35px;
  font-weight: 700;
}
@media (width <= 640px) {
  .metrics-value .unit {
    font-size: 28px;
  }
}

.metrics-list {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.metrics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(239px, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.metrics-cards li {
  flex: 0 0 239px;
  height: 100%;
}
@media (width <= 640px) {
  .metrics-cards li {
    flex: 0 0 100%;
  }
}
.metrics-cards li img {
  max-width: initial !important;
  width: 100%;
  height: auto;
}

/* 開所日数カード（生活介護 月→土） */
.metrics-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  text-align: center;
  padding: 10px 15px;
  background: #fff;
}
.metrics-card__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}
.metrics-card__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.metrics-card__badge {
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  line-height: 1;
}
.metrics-card__badge.badge-day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.metrics-card__badge.badge-num-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.metrics-card__badge.badge-hour {
  display: grid;
  place-content: center;
  grid-auto-flow: column;
  gap: 0;
}
.metrics-card__badge.badge-hour .unit {
  align-self: end;
}
.metrics-card__badge.bg-green-01 {
  background: #8FC31F;
}
.metrics-card__badge.bg-green-02 {
  background: #22B573;
}
.metrics-card__badge.bg-blue-01 {
  background: #0071BC;
}
.metrics-card__badge .num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.metrics-card__badge .unit {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.metrics-card__arrow {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #808080;
}
.metrics-card__note {
  padding-bottom: 0 !important;
  margin: 0 !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  font-feature-settings: "palt" 1;
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 34px;
}
@media (width <= 768px) {
  .voice-list {
    grid-template-columns: 1fr;
  }
}

.voice-item {
  padding: 24px;
  border: 2px solid #8CC63F;
  border-radius: 18px;
}

.voice-header {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 12px;
}

.voice-icon {
  display: block;
  width: 80px;
  height: 80px;
}
.voice-icon img {
  width: 100%;
  height: auto;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.voice-info {
  display: flex;
  flex-direction: column;
}

.voice-title,
.voice-facility-title {
  padding-left: 0 !important;
  text-align: left !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  margin: 0 !important;
  border-bottom: none !important;
}
.voice-title::before, .voice-title:after,
.voice-facility-title::before,
.voice-facility-title:after {
  display: none !important;
}

.voice-title {
  color: #8CC63F !important;
}

.voice-facility {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px dashed #8CC63F;
}

.voice-facility-title {
  font-weight: 700 !important;
}

.voice-name {
  padding-bottom: 0 !important;
  font-size: 16px !important;
}

.voice-content {
  margin-top: 10px;
}

.voice-user-comment li {
  position: relative;
  padding-left: 1em;
}
.voice-user-comment li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.voice-facility-comment {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 10px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.media-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 20px;
}
@media (width <= 640px) {
  .media-block {
    grid-template-columns: 1fr;
  }
}

.media-block-img img {
  max-width: initial !important;
  width: 100%;
  height: auto;
}

.media-block-txt p {
  padding-bottom: 1lh !important;
  font-size: 19px !important;
  line-height: 1.8 !important;
}

.img-full img {
  max-width: initial !important;
  width: 100%;
  height: auto;
}