.other_wrap {
  max-width: 1024px;
  padding-bottom: var(--xxxxl);
  margin: 0 auto;
}

.other_wrap .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.other_wrap .content_wrap .content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.other_wrap .content_wrap .ttl_s {
  padding-left: min(calc(24 / 400 * 100vw), 24px);
  border-left: 2px solid var(--main-primary);
}

.other_wrap .content_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.other_wrap .content_wrap ul li {
  padding-left: min(calc(24 / 400 * 100vw), 24px);
  position: relative;
}

.other_wrap .content_wrap ul li::before {
  content: '';
  display: inline-block;
  width: min(calc(20 / 400 * 100vw), 20px);
  aspect-ratio: 20 /26;
  background-image: url(../img/common/li_icon.svg);
  background-size: cover;
  line-height: 1.6;
  position: absolute;
  top: 0;
  left: 0;
}

.other_wrap .content_wrap .btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.other_wrap .content_wrap .btn_wrap .primary_btn::after {
  background-image: url(../img/common/icon-download.svg);
  background-size: 56px;
  background-position: center center;
}

.other_wrap .content_wrap .btn_wrap .border {
  background-color: var(--base-white);
  border: 1px solid var(--main-primary);
}

.other_wrap .content_wrap .btn_wrap .border span {
  color: var(--main-primary);
}

.contact_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px clamp(16px, calc(40 / 1024 * 100vw), 40px);
  margin-top: var(--lg);
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .other_wrap .content_wrap .ttl_s {
    padding-left: min(calc(8 / 400 * 100vw), 8px);
  }
}
