@charset "UTF-8";
/*
  /asset/css/object/module/m-dencho-list.css
  電帳法リスト用CSS
*/
.m-dencho-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  @media screen and (max-width: 840px) {
    gap: 10px;
  }
}
.m-dencho-item {
  background-color: var(--rdenshihozon-bg-sub-03);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  @media screen and (max-width: 840px) {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 10px;
  }
}
.m-dencho-item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--rdenshihozon-primary);
  position: relative;
  display: inline-block;
  @media screen and (max-width: 840px) {
    font-size: 16px;
    width: 100%;
  }
}
.m-dencho-item__image-wrap {
  width: 110px;
  height: 110px;
  margin: 15px auto 0;
  border-radius: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  @media screen and (max-width: 840px) {
    width: 80px;
    height: 80px;
    margin: 10px 0 0;
  }
}
.m-dencho-item__image {
  width: 70px;
  @media screen and (max-width: 840px) {
    width: 49px;
  }
}
