.chkup-container {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.chkup-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--app-primary);
  text-align: center;
  margin-bottom: 40px;
}
.chkup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
a {
  color: inherit;
  display: block;
  width: 100%;
}
a:hover {
  color: inherit;
}

ul.tabsbottom {
  width: 100%;
  margin: 0px;
  margin-bottom: 40px;
  padding: 0px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
ul.tabsbottom.sticky {
  position: sticky;
  top: 80px;
}
ul.tabsbottom li {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  background: var(--bg-white);
  color: var(--app-black);
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-normal);
}

ul.tabsbottom li.current {
  background: var(--app-primary);
  color: var(--bg-white);
  font-weight: 600;
  border-bottom: 1px solid var(--app-primary);
}

ul.tabsbottom li:hover {
  color: var(--app-primary);
  font-weight: 600;
  background-color: var(--primary-light);
}
ul.tabsbottom li.current:hover {
  color: var(--bg-white);
  font-weight: 600;
  background-color: var(--app-primary);
}

.chk-content-section {
  width: 100%;
  margin-bottom: 40px;
}

.chk-content-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--app-primary);
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bg-normal);
}
.chk-content-section .chk-content {
  font-size: 18px;
  color: var(--app-black);
  text-align: left;
  line-height: 1.5;
}
.chk-content-process {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chk-content-process-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  background-color: var(--gray-light);
  padding: 20px;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1.5;
}
.chk-content-process-item-content {
  padding: 0 10px;
}
.chk-bg-gray{
  background-color: var(--gray-light);
}
.chk-content-process-title-area {
  width: 100%;
  text-align: left;
  padding: 10px 20px;
}
.chk-content-process-item-title {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}
.primary-txt {
  color: var(--app-third);
  font-weight: 500;
}
.chk-number {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: var(--app-primary);
  padding: 10px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-list {
  padding-left: 20px;
}
.dash-indent {
  padding-left: 12px;
}
.chk-content-subtitle {
  font-size: 20px;
  font-weight: 600;
  padding-left: 10px;
  margin-top: 4px;
}
.chk-content-table {
  width: 100%;
  border-collapse: collapse;
}
.chk-content-table th,
.chk-content-table td {
  font-size: 18px;
  border-bottom: 1px solid var(--bg-normal);
  padding: 10px;
}
.chk-content-table-header {
  background-color: var(--gray-light);
  border-bottom: 1px solid var(--bg-normal);
}
.chk-content-primary-light {
  width: 100%;
  background-color: var(--primary-light);
  padding: 14px;
  border-radius: 4px;
  font-size: 18px;
  margin-top: 20px;
}
.chk-content-primary-light-subtitle {
  font-size: 20px;
  font-weight: 600;
  padding-left: 10px;
  margin: 4px 0 8px 0;
}
.chk-content {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
}

.chk-flow-box {
  display: flex;
  gap: 10px;
  padding-top: 20px;
  align-items: center;
}
.chk-flow-box-item {
  flex: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--app-third);
  background-color: #dce8ff;
  border-radius: 8px;
}

.chk-flow-box-item-small {
  max-width: 280px;
}

.chk-flow-arrow {
  position: relative;
  width: 24px;
  height: 3px;
  background: #4b7cff;
  flex-shrink: 0;
  margin: 0 auto;

  display: flex;
  align-items: center;
}

.chk-flow-arrow.arrow-full {
  width: 100%;
}

.chk-flow-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #4b7cff;
}

.chk-flow-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.chk-flow-plus::before,
.chk-flow-plus::after {
  content: "";
  position: absolute;
  background: var(--secondary);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.chk-flow-plus::before {
  width: 14px;
  height: 2px;
}

.chk-flow-plus::after {
  width: 2px;
  height: 14px;
}

.chk-flow-arrow-text {
  display: flex;
  align-items: center;
}

.chk-flow-arrow-text .line {
  width: 20px;
  height: 2px;
  background: #ef4444;
  position: relative;
}

.chk-flow-arrow-text .line.arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ef4444;
}

.chk-flow-arrow-text .label {
  padding: 4px 14px;
  border: 2px solid #ef4444;
  border-radius: 999px;
  color: #ef4444;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.chk-flow-box-grid {
  display: grid;
  grid-template-columns: 1fr 60px 60px 1fr 120px 1fr;
  grid-template-rows: auto 60px auto;
  align-items: center;
  padding-top: 20px;
}
.chk-flow-box-grid .chk-flow-box-item-alert {
  grid-column: 1 / 3;
  background-color: #fdeceb;
  color: #ef4444;
  border: 1px solid #f7c3bf;
  text-align: center;
}
.chk-flow-arrow-dotted {
  position: relative;
  width: 100%;
  height: 0;
  border-top: 2px dotted #4b7cff;
}
.chk-flow-line {
  position: relative;
  width: 100%;
  height: 0;
  border-top: 3px solid #4b7cff;
}
.chk-flow-line::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 5px;
  border-right: 2px dotted #4b7cff;
  height: 80px;
  width: 2px;
}

.chk-flow-arrow-dotted::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #4b7cff;
}
.chk-flow-arrow-vertical-dotted {
  width: 0;
  height: 100%;
  margin-right: 0;
  border-left: 2px dotted #4b7cff;
}

.chk-flow-arrow-text.vertical {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.chk-flow-arrow-text.vertical .line {
  width: 2px;
  height: 16px;
}
.chk-flow-arrow-text.vertical .line.arrow::after {
  right: auto;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-top: none;
  border-bottom: 8px solid #ef4444;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}