.pagehead-blue {
  padding-block: 4.5rem 4.25rem;
}

/* page common */
.relation__button {
  height: 2.5rem;
  font-size: .875rem;
  font-weight: 500;
  padding-inline: 2rem;
}
.no-wrap {
  white-space: nowrap;
}

/* ================ */
/* setion:給与ソフトに連携 */
/* ================ */
.linkage {
  padding-top: 6.25rem;
}
.linkage__text {
  margin-top: 2.5rem;
}

.linkSection__lists {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.linkSection__lists li {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  position: relative;
}
.linkSection__lists li::before {
  content: "";
  background-color: var(--color-black);
  border-radius: 50%;
  width: 0.5rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: .875rem;
  left: 0;
}

.flow__wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.flow__lists {
  display: flex;
  align-items: stretch;
  gap: 1.5781rem;
  margin-inline: 5.4463rem;
  margin-top: 3.75rem;
  width: fit-content;
}
.flowCard {
  min-width: 16.25rem;
}
.flowCard__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}
.flowCard__arrow {
  display: grid;
  place-items: center;
  width: 2rem;
}

@media screen and (max-width: 767px) {
  .flow__lists {
    margin-inline: 1rem;
    gap: 0.5rem;
  }
  .flowCard__arrow {
    width: 1.5rem;
  }
}

/* ================ */
/* setion:オンラインセミナー */
/* ================ */
.softwareSection {
  padding-top: 3.7rem;
}
.softwareSection__images {
  display: block;
  margin-top: 2.5rem;
}
.softwareSection__button {
  margin-top: 2.5rem;
}

/* ================ */
/* setion:リンク一覧 */
/* ================ */
.linkSection {
  margin-top: 5rem;
}
a.relation__link {
  color: var(--color-brand-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
  position: relative;
}
.relation__link:visited {
  color: #551a8b;
}
.relation__link:active {
  color: #ff0000;
}
a.relation__link::after {
  content: "";
  background: url(/assets/images/pages/relation/icon-link.svg) no-repeat center center / contain;
  width: 12px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  margin-left: .625rem;
}

.flow__wrapper::-webkit-scrollbar {
  height: 8px;
}

.flow__wrapper::-webkit-scrollbar-track {
  background: var(--color-gray);
  border-radius: 100px;
}

.flow__wrapper::-webkit-scrollbar-thumb {
  background: var(--color-brand-blue);
  border-radius: 100px;
}

/* ================ */
/* setion:以下、注意事項テキスト */
/* ================ */
.attention {
  margin-top: 5rem;
}
.attention__lineBlock {
  background-color: rgb(214 21 24 / 0.02);
  border: 3px solid var(--color-accent-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  row-gap: 1rem;
  margin-block: 5rem;
  padding: 1.5rem 2rem;
}
.lineBlock__head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lineBlock__icon {
  display: inline-block;
  width: 3.8506rem;
  aspect-ratio: 1 / 1;
}
.lineBlock__text--red {
  color: var(--color-accent-red);
  font-weight: 700;
}
.lineBlock__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
}
.attention .button {
  padding-inline: 1rem;
  font-weight: 400;
  font-size: .875rem;
  white-space: nowrap;
}

.navCTA {
  padding-top: 11.25rem;
  padding-bottom: 0;
}

.attention__lists {
  margin-top: 12px;
  li {
    position: relative;
    padding-left: 1.5rem;
  }
  li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-black);
    border-radius: 50%;
    position: absolute;
    top: .5625rem;
    left: 0;
  }
}

.attention--gray {
  background-color: #F4F4F3;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}
.attention__tel {
  text-decoration: underline;
}

.custom__text--blue {
  color: var(--color-brand-blue);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.custom__text {
  font-size: 1rem;
  font-weight: 400;
  margin-top: .75rem;
}

@media screen and (max-width: 767px) {
  .attention__lineBlock {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.5rem 1.5rem;
  }
  .lineBlock__head {
    flex-direction: column;
    gap: 1rem;
  }
  .navCTA {
    padding-top: 5rem;
  }
  .attention--gray {
    padding: 1rem;
  }
}

/* ユーティリティ */
.fz-14 {
  font-size: .875rem;
  font-weight: 400;
}
.fz-12 {
  font-size: .75rem;
  font-weight: 400;
  line-height: 2;
}
.mt-12 {
  margin-top: .75rem;
}