/*
education.css
*/

/*------------------------------------------

	教育・支援施設向けサービス

------------------------------------------*/

.point-list {
  grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
  gap: var(--gap);
}
.point-list-item {
  min-width: 0;
}

.education-photo-list {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--gap);
}
.education-photo-list-item {
  min-width: 0;
}


/*------------------------------------------

	ご利用者様の声

------------------------------------------*/

.education-users-voice {
  background: var(--sub-bg);
}

.voice-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px 2.8%;
  /* grid-auto-rows: auto 1fr; */
  align-items: start;
}
.voice-card {
  display: grid;
  gap: 1.25em;
  justify-items: center;
  /* grid-template-rows: subgrid;
  grid-row: span 2; */
  align-content: start;
  min-width: 0;
}
.voice-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.56em 1.87em;
  min-width: 0;
}

/* 左下の折り返し */
.voice-card-inner::before,
.voice-card-inner::after {
  content: "";
  position: absolute;
}
.voice-card-inner::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.voice-card-inner::after {
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background: #d8dcdc;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.voice-card-inner .text-box {
  flex: 1;
  padding-bottom: 3em;
  z-index: 1;
}
.voice-card-inner .text-box p {
  display: inline;
  border-bottom: 1px dotted var(--border);
}
.voice-card-inner .info-box {
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.voice-card-inner .info-box .monitor-icon.asutre {
  width: 164px;
  height: auto;
}
.voice-card-inner .info-box .monitor-icon.steamclub {
  width: 100px;
  height: auto;
}

/* PC,Tb */
@media print, screen and (min-width: 481px) {

  .voice-grid {
    grid-auto-rows: auto 1fr;
  }
  .voice-card {
    grid-template-rows: subgrid;
    grid-row: span 1;
  }

}
/* PC END */

/* Sm */
@media print, screen and (max-width: 480px) {

  .voice-card-inner {
    align-self: start;
  }
  .voice-card-inner .info-box .monitor-icon {
    width: 70px;
  }
  .voice-card-inner .info-box .monitor-icon.asutre {
    width: 130px;
  }
  .voice-card-inner .info-box .monitor-icon.steamclub {
    width: 80px;
  }

}
/* Sm END */