@charset "UTF-8";
/*
  /rakurakucloud/gwtg/asset/css/object/module/m-support.css
  専任担当者が伴走（写真背景＋3カード）
*/
.m-support {
  padding: 0 0 64px;
  @media screen and (max-width: 840px) {
    padding: 0;
  }
}
.m-support__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}
.m-support__panel {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  padding: 56px;
  @media screen and (max-width: 840px) {
    padding: 90px 20px 24px;
  }
}
.m-support__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* height: 320px; */
  @media screen and (max-width: 840px) {
    /* position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden; */
  }
  &::after {
    content: "";
    position: absolute;
    inset: 0;
    /* --- 修正箇所：グラデーションの角度と位置を調整 --- */
    background: linear-gradient(15deg, var(--white) 54%, var(--white) 54%, rgba(255, 255, 255, 0) 100%);
    /* --- ここまで --- */
    @media screen and (max-width: 840px) {
    background: linear-gradient(6deg, var(--white) 32%, var(--white) 39%, rgba(255, 255, 255, 0) 100%);
    }
  }
}
.m-support__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-support__head {
  position: relative;
  z-index: var(--z-index-front);
  margin-bottom: 40px;
  @media screen and (max-width: 840px) {
    margin-bottom: 24px;
  }
}
.m-support__eyebrow {
  font-size: 20px;
letter-spacing: 0.1em;
  color: var(--rcloud-primary);
  margin-bottom: 12px;
}
.m-support__heading {
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  @media screen and (max-width: 840px) {
    font-size: 24px;
  }
}
.m-support__text {
  font-size: 16px;
  line-height: 1.8;
  margin: 24px 0 0;
}
.m-support__list {
  position: relative;
  z-index: var(--z-index-front);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  @media screen and (max-width: 840px) {
    grid-template-columns: 1fr;
  }
}
.m-support__item {
  background-color: var(--rcloud-bg-sub-03);
  border-radius: 8px;
  padding: 32px;
  @media screen and (max-width: 840px) {
    padding: 24px 24px;
  }
}
.m-support__item-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: var(--rcloud-primary);
  margin-bottom: 16px;
  @media screen and (max-width: 840px) {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.m-support__item-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  @media screen and (max-width: 840px) {
    font-size: 14px;
  }
}