.space {
  width: 100%;
  height: var(--size-square-pc, 50vw);

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-surface, #ffffff);
}

.space p {
  position: relative;
  margin: 0;

  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-text, #403234);
  text-align: center;
}

.space p::after {
  content: "";
  display: block;

  width: 3px;
  height: var(--space-line-height-pc, 25vw);
  margin: 10px auto 0;

  background: var(--color-text, #403234);
}

.space p:empty {
  font-size: 0;
}

.space p:empty::after {
  margin-top: 0;
}

@media (max-width: 768px) {
  .space {
    height: var(--size-square-sp, 100vw);
  }

  .space p::after {
    height: var(--space-line-height-sp, 50vw);
  }
}
