@charset "utf-8";

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

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

.p-eq-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-eq-box {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  padding-top: 50px;
}

.p-eq-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-eq-boxlist__item {
  width: 100%;
  height: auto;
}

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

}


.p-eq-other-box {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.p-eq-other-boxlist {
  width: 100%;
  height: auto;
}

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

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

}

.p-eq-notice {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: calc(17/12);
  letter-spacing: 0.04em;

}

.p-eq-notice span {
  display: block;
  width: 100%;
}

/* ------ */

/* SP all */
@media screen and (max-width: 1024px) {

  .p-eq-box {
    padding-top: 24px;
    margin-bottom: 30px;

  }

  .p-eq-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-eq-boxlist__item img {
    box-shadow: unset;
  }

  .p-eq-notice {
    display: block;
    font-size: 10px;
    font-weight: 400;
    line-height: calc(16/10);
    letter-spacing: 0.04em;
  
  }
  
}