/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.p-access {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}
.p-access .item {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}
.p-access .title {
  row-gap: 5px;
}
.p-access .title .logo {
  height: 32px;
  display: flex;
  align-items: center;
}
.p-access .title .logo img {
  height: 100%;
}
.p-access .title .logo.dd {
  height: 48px;
}
.p-access .title span {
  font-size: clamp(1rem, 0.8977272727rem + 0.2840909091vw, 1.125rem);
  font-weight: 500;
  line-height: 1.2;
}
.p-access .list {
  padding: 0;
  border-block-start: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
  line-height: 1.8;
}
.p-access .list li {
  padding-block: clamp(20px, 3vw, 40px);
  border-block-end: 1px solid rgba(0, 0, 0, 0.15);
}
.p-access .list .st {
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .p-access .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
  }
  .p-access .list li {
    padding-block: clamp(20px, 2vw, 40px);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    column-gap: var(--grid-gap);
  }
  .p-access .list .st {
    grid-column: 1/3;
  }
  .p-access .list .inner {
    grid-column: 3/9;
  }
}

/* --------------------------------- */