@charset "utf-8";

/*  PC to SP */
/*========= レイアウト ===============*/
body {}

.p-qua-bg {
  display: block;
  width: 100vw;
  height: 100%;
  position: relative;
}

.p-qua-bg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, var(--white), var(--grad_purple));
  /* background-image: linear-gradient(to bottom right, var(--white) 25%, var(--grad_purple) 50%); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


.p-qua-box {
  display: block;
  width: 100%;
  height: auto;
  /* margin-bottom: 60px; */
  padding-top: 50px;
}

.p-qua-boxlist {
  display: grid;
  justify-content: center;
  align-items: center;
  /* grid-template-rows: repeat(4, 1fr); */
  /* grid-template-columns: repeat(3, 1fr); */
  grid-row-gap: 40px;
  /* grid-column-gap: calc(30/1080 * 100%); */
  width: 100%;
}

.p-qua-boxlist__item {
  width: 100%;
  height: auto;
}

.p-qua-boxlist__item img {
  width: 100%;
  height: auto;
  /* border-radius: 10px; */
  object-fit: cover;
  /* box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); */

}


/* ------ */

/* SP all */
@media screen and (max-width: 1024px) {
  .p-qua-box {
    padding-top: 24px;
  }
  
  .p-qua-boxlist {
    display: grid;
    justify-content: center;
    align-items: center;
    /* grid-template-rows: repeat(4, 1fr); */
    /* grid-template-columns: repeat(3, 1fr); */
    grid-row-gap: 20px;
    /* grid-column-gap: calc(30/1080 * 100%); */
    width: 100%;
  }

  .p-qua-boxlist__item:nth-child(1) {
    padding-bottom: 10px;
  }
  
}