.under-detail_head {
  border-bottom: 1px solid rgba(112, 112, 112, 0.5);
  padding-bottom: 30px;
  position: relative;
  z-index: 0;
}

.under-detail_head::before {
  background: url(/business/tech/assets/img/common/bg-detail-pattern.svg) no-repeat 0 0/100% 100%;
  content: "";
  height: 210px;
  width: 210px;
  position: absolute;
  right: 25px;
  top: 57px;
  transform: translate(100%, -100%);
  z-index: -1;
}

.under-detail_head .tag {
  pointer-events: none;
}

.under-detail_head_info {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.under-detail_head_info .btn {
  align-self: center;
}

.under-detail_table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.under-detail_table th,
.under-detail_table td {
  display: table-cell;
  border: 1px solid #C0D1FF;
  vertical-align: middle;
}

.under-detail_table thead th {
  padding: 9px 20px;
  background: #E2EAFF;
  text-align: left;
}

.under-detail_table thead th:first-child,
.under-detail_table tbody th {
  width: 120px;
}

.under-detail_table tbody th,
.under-detail_table tbody td {
  padding: 18px 20px;
}

.under-detail_table tbody th {
  background: #F0F4FF;
}

.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.pagination a {
  font-size: 16px;
}

.pagination a:not(.--active) {
  transition: color 400ms ease;
}

.pagination a:last-child,
.pagination a:first-child {
  height: 36px;
  width: 36px;
  position: relative;
}

.pagination a:last-child::before,
.pagination a:first-child::before {
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  transition: border 400ms ease;
}

.pagination a:last-child.--disabled,
.pagination a:first-child.--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination a:first-child::before {
  border-bottom: 3px solid #08287f;
  border-left: 3px solid #08287f;
}

.pagination a:last-child::before {
  border-right: 3px solid #08287f;
  border-top: 3px solid #08287f;
}

.pagination a.--active {
  color: #08287f;
  font-weight: 700;
  pointer-events: none;
}

.line-marker {
  background: #DDEAFF;
}

.relation-tag {
  border: 1px solid rgba(102, 102, 102, 0.5);
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding: 30px;
}

.relation-tag .relation-tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}

.relation-tag .btn-check,
.relation-tag .tag {
  pointer-events: none;
}

.service-flow-detail .service-flow-detail_post figure img {
  max-width: 100%;
  width: auto;
}

.serviceflow-list {
  display: grid;
  grid-template-columns: repeat(2, 47.76119%);
  -moz-column-gap: 4.47761%;
  column-gap: 4.47761%;
  row-gap: 15px;
}

.serviceflow-list-item-box {
  display: block;
  padding: 22px 0 15px;
  border: 1px solid #08287f;
  border-radius: 4px;
}

.serviceflow-list-item-img {
  max-width: 80px;
  margin: 0 auto 15px;
}

.service-flow-detail .service-flow-detail_post .serviceflow-list-item-img img {
  border: none;
}

@media screen and (min-width: 768px) {
  .under-detail_head_info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .under-detail_table thead th {
    padding-left: 25px;
    padding-right: 25px;
  }

  .under-detail_table thead th:first-child,
  .under-detail_table tbody th {
    width: 205px;
  }

  .under-detail_table tbody th,
  .under-detail_table tbody td {
    padding-left: 25px;
    padding-right: 25px;
  }

  .serviceflow-list {
    grid-template-columns: repeat(4, 20.58824%);
    -moz-column-gap: 5.88235%;
    column-gap: 5.88235%;
  }

  .serviceflow-list-item-box {
    padding: 36px 0 15px;
  }

  .serviceflow-list-item-img {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 1279.8px) {
  .under-detail_head::before {
    transform: translate(calc((100vw - var(--scrollbar-width) - 974px) / 2 + 62px), -100%);
  }
}

@media screen and (max-width: 966.8px) {
  .under-detail_head::before {
    content: none;
  }
}

@media (hover: hover) {
  .pagination a:not(.--active):hover {
    opacity: 1;
    color: #285ae1;
  }

  .pagination a:last-child:not(.--disabled):hover::before,
  .pagination a:first-child:not(.--disabled):hover::before {
    border-color: #285ae1;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .pagination a:not(.--active):hover {
    opacity: 1;
    color: #285ae1;
  }

  .pagination a:last-child:not(.--disabled):hover::before,
  .pagination a:first-child:not(.--disabled):hover::before {
    border-color: #285ae1;
  }
}