@charset "UTF-8";

#wrap {
  position: relative;
}

.inner {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 120px 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head.align-end {
  align-items: end;
}

.section-kicker {
  color: var(--color-point);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 10px;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-desc,
.section-sidecopy {
  color: var(--color-sub);
  font-size: 1.0625rem;
}

.section-sidecopy {
  max-width: 440px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.text-link::after {
  content: "+";
  font-size: 1.1rem;
}

.light,
.light-link {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  transition: var(--transition);
}

.btn.primary {
  background: var(--color-point);
  color: #ffffff;
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.gray-bg {
  background: var(--color-soft);
}

.dark-bg {
  background: var(--color-dark);
}

@media all and (max-width: 1439px) {
  .inner {
    width: min(calc(100% - 64px), 1280px);
  }

  .section-space {
    padding: 108px 0;
  }

  .section-title {
    font-size: 2.55rem;
  }
}

@media all and (max-width: 1279px) {
  .inner {
    width: calc(100% - 48px);
  }

  .section-space {
    padding: 88px 0;
  }

  .section-title {
    font-size: 2.15rem;
  }
}

@media all and (max-width: 767px) {
  .inner {
    width: calc(100% - 32px);
  }

  .section-space {
    padding: 72px 0;
  }

  .section-head,
  .section-head.align-end {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-desc,
  .section-sidecopy {
    font-size: 0.95rem;
  }

  .btn {
    min-height: 52px;
    padding: 0 22px;
  }
}

@media all and (max-width: 320px) {
  .inner {
    width: calc(100% - 24px);
  }

  .section-title {
    font-size: 1.5rem;
  }
}
