@charset "UTF-8";
/*
  /rakurakucloud/mailmarketing/asset/css/object/module/m-tile.css
  横長パネル用CSS
*/
.m-tile-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  @media screen and (max-width: 840px) {
    gap: 20px;
  }
  @media screen and (max-width: 600px) {
    flex-direction: column;
  }
}
.m-tile-item {
  flex: 0 0 calc((100% - 60px) / 3);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 10px;
  border-radius: 10px;
  background-color: var(--white);
  @media screen and (max-width: 840px) {
    flex: 0 0 calc((100% - 30px) / 2);
    grid-template-columns: 1fr;
  }
  @media screen and (max-width: 600px) {
    padding: 20px;
  }
}
.m-tile-item__image-wrap {
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: var(--rmailmarketing-bg-sub-03);
  @media screen and (max-width: 600px) {
    width: 70px;
    height: 70px;
  }
}
.m-tile-item__image {
  width: 80px;
  height: 80px;
  @media screen and (max-width: 600px) {
    width: 50px;
    height: 50px;
  }
}
.m-tile-item__heading {
  margin: 0 0 10px;
  color: var(--rmailmarketing-dark);
  font-size: 18px;
  font-weight: 700;
  @media screen and (max-width: 840px) {
    text-align: center;
  }
}
.m-tile-item__text {
  font-size: 14px;
}
