@charset "UTF-8";
/*
  /rakurakucloud/jidootai/asset/css/object/module/m-cta-footer-group.css
  フッターCTAグループ用CSS
*/
/* フッター CTA グループ */
.l-cta-footer-group{
  max-width: 1400px;
  margin-inline: auto;
  @media screen and (max-width: 840px) {
    padding: 0 20px;
  }
}
.m-cta-footer-group__wrap{
  border-radius: 10px;
  padding: 80px 20px;
  @media screen and (max-width: 840px) {
    padding: 40px 20px;
  }
}
.m-cta-footer-group__heading{
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  @media screen and (max-width: 840px) {
    font-size: 24px;
  }
}
.m-cta-footer-group-list{
  display: grid;
  grid-template-columns: repeat(3,auto);
  gap: 0 3%;
  justify-content: center;
  @media screen and (max-width: 840px) {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.m-cta-footer-group-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px 30px 30px;
  max-width: 370px;
  gap: 20px 0;
  @media screen and (max-width: 840px) {
    max-width: 100%;
  }
}
.m-cta-footer-group-item__link{
  display: contents;
}
.m-cta-footer-group-item__heading{
  font-size: 20px;
  font-weight: bold;
  color: var(--rjidootai-primary);
  margin-bottom: 20px;
  text-align: center;
}
.m-cta-footer-group__image-wrap{
  width: 80px;
  height: 80px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.m-cta-footer-group__desc{
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
}