@charset "UTF-8";
/*
  /rakurakucloud/mailmarketing/asset/css/object/module/m-panel.css
  パネル用CSS
*/
.m-panel-list {
  @media screen and (max-width: 600px) {
    margin: 30px 0 0 0;
  }
}
.m-panel-item {
  position: relative;
  border-radius: 10px;
  padding: 50px 65px;
  margin: 40px 0 0;
  background-color: var(--white);
  @media screen and (max-width: 840px) {
    padding: 50px 20px 25px;
  }
}
.m-panel-item__catch {
  font-size: 20px;
  font-weight: 700;
  @media screen and (max-width: 840px) {
    margin: 0 0 5px;
    font-size: 16px;
  }
}
.m-panel-item-title {
  font-size: 30px;
  font-weight: 700;
  @media screen and (max-width: 840px) {
    margin: 0 0 20px;
    text-align: center;
    font-size: 22px;
  }
}
.m-panel-item__box {
  display: grid;
  grid-template-columns: 86px 1fr;
  margin: 30px 0 0;
  padding: 20px;
  background-color: var(--gray-bg-02);
  border-radius: 10px;
  @media screen and (max-width: 840px) {
    margin: 0;
  }
  @media screen and (max-width: 600px) {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.m-panel-item__box-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--rmailmarketing-dark);
  text-align: center;
  border-right: 1px solid var(--gray-bg-01);
  @media screen and (max-width: 600px) {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-bg-01);
  }
}
.m-panel-item__box-title-large {
  display: block;
  font-size: 18px;
}
.m-panel-item__box-list {
  padding: 5px 0 7px 16px;
}
.m-panel-item__box-item {
  position: relative;
  padding: 0 0 0 35px;
  font-size: 16px;
  font-weight: 700;
  &:not(:first-of-type) {
    margin: 8px 0 0;
  }
  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: var(--rmailmarketing-dark);
    border-radius: 11px;
  }
  &::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 5px;
    width: 10px;
    height: 7px;
    border-radius: 0;
    background: none;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    display: block;
    transform: rotate(135deg);
  }
}
.m-panel-item__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 50px;
  align-items: center;
  @media screen and (max-width: 840px) {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.m-panel-item__image {
  -o-object-fit: contain;
  object-fit: contain;
}
.m-panel-item__image-wrap {
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
  @media screen and (max-width: 840px) {
    order: 2;
    width: 80%;
    margin: 10px 0 0;
  }
  @media screen and (max-width: 600px) {
    width: 100%;
  }
}
.m-panel-item__detail {
  @media screen and (max-width: 840px) {
    order: 3;
  }
}
