@charset "utf-8";

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

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

.p-outline-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;
}

.l-outline-under {
  margin-bottom: 25px;
}

.p-outline-box {
  display: block;
  width: 100%;
  height: auto;
}

.p-outline-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: calc(56/18);
  letter-spacing: 0.04em;

  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--black);
  /* padding-bottom: 18px; */
}

.p-outline-subj,
.p-outline-desc {
  display: inline-block;
}

.p-outline-subj {
  width: calc(135 / 1080 * 100%);
  margin-right: calc(70 / 1080 * 100%);
}

.p-outline-desc {
  width: calc(500 / 1080 * 100%);
}

.p-outline-onerow-up,
.p-outline-onerow-low {
  display: block;
  width: 100%;
  line-height: calc(34/18);

}

.p-outline-onerow-up {
  padding-top: 12px;
}

.p-outline-onerow-low {
  padding-bottom: 12px;
}


/* ------ */

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

  .l-outline-under {
    margin-bottom: 9px;
  }

  .p-outline-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(39/12);
    letter-spacing: 0.04em;

    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--black);
    /* padding-bottom: 18px; */
  }

  .p-outline-subj {
    /* width: calc(93 / 342 * 100%);
    margin-right: calc(30 / 342 * 100%); */
    width: 93px;
    margin-right: 30px;
  }

  .p-outline-desc {
    width: auto;
  }

  .p-outline-onerow-up,
  .p-outline-onerow-low {
    display: block;
    width: 100%;
    line-height: calc(34/18);

  }

  .p-outline-onerow-up {
    padding-top: 12px;
  }

  .p-outline-onerow-low {
    padding-bottom: 12px;
  }




}