/* ------------------------------ */
/* layout */
/* ------------------------------ */
.l-container {
  width: min(var(--container-max), calc(100% - var(--container-gutter) * 2));
  margin: 0 auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section__head {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 86px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.section__sideLabel {
  position: absolute;
  right: -72px;
  top: 12px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  line-height: 1;
}

