/* ==========================================================================
   Container layout
   ========================================================================== */
.l-container--xs {
  width: calc(100% - 40px);
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 33.75em) {
  .l-container--xs {
    width: calc(100% - 80px);
  }
}
@media (min-width: 48em) {
  .l-container--xs {
    width: calc(100% - 120px);
  }
}
@media (min-width: 56.25em) {
  .l-container--xs {
    width: calc(100% - 160px);
  }
}
@media (min-width: 80em) {
  .l-container--xs {
    width: calc(100% - 80px);
  }
}

.l-container--sm {
  width: calc(100% - 40px);
  max-width: 85rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 33.75em) {
  .l-container--sm {
    width: calc(100% - 80px);
  }
}
@media (min-width: 48em) {
  .l-container--sm {
    width: calc(100% - 120px);
  }
}
@media (min-width: 56.25em) {
  .l-container--sm {
    width: calc(100% - 160px);
  }
}
@media (min-width: 80em) {
  .l-container--sm {
    width: calc(100% - 80px);
  }
}

.l-container {
  width: calc(100% - 40px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 33.75em) {
  .l-container {
    width: calc(100% - 60px);
  }
}
@media (min-width: 48em) {
  .l-container {
    width: calc(100% - 80px);
  }
}
@media (min-width: 56.25em) {
  .l-container {
    width: calc(100% - 120px);
  }
}
@media (min-width: 80em) {
  .l-container {
    width: calc(100% - 80px);
  }
}

/* left align */
.l-container--left {
  margin-left: 0;
}

@media (min-width: 22.5em) {
  .l-container--left-from-mobile {
    margin-left: 0;
  }
}
@media (min-width: 33.75em) {
  .l-container--left-from-landscape {
    margin-left: 0;
  }
}
@media (min-width: 48em) {
  .l-container--left-from-tablet {
    margin-left: 0;
  }
}
@media (min-width: 56.25em) {
  .l-container--left-from-laptop {
    margin-left: 0;
  }
}
@media (min-width: 80em) {
  .l-container--left-from-desktop {
    margin-left: 0;
  }
}
@media (min-width: 90em) {
  .l-container--left-from-wide {
    margin-left: 0;
  }
}
@media (min-width: 100em) {
  .l-container--left-from-full {
    margin-left: 0;
  }
}
/* right align */
.l-container--right {
  margin-right: 0;
}

@media (min-width: 22.5em) {
  .l-container--right-from-mobile {
    margin-right: 0;
  }
}
@media (min-width: 33.75em) {
  .l-container--right-from-landscape {
    margin-right: 0;
  }
}
@media (min-width: 48em) {
  .l-container--right-from-tablet {
    margin-right: 0;
  }
}
@media (min-width: 56.25em) {
  .l-container--right-from-laptop {
    margin-right: 0;
  }
}
@media (min-width: 80em) {
  .l-container--right-from-desktop {
    margin-right: 0;
  }
}
@media (min-width: 90em) {
  .l-container--right-from-wide {
    margin-right: 0;
  }
}
@media (min-width: 100em) {
  .l-container--right-from-full {
    margin-right: 0;
  }
}
/* 4k */
.l-container--4k {
  --max-width: 240rem;
}

/* 8k */
.l-container--8k {
  --max-width: 480rem;
}

/* ==========================================================================
   Footer layout
   ========================================================================== */
/* base */
.l-footer {
  --theme-color: var(--color-primary-mid);
  --side-padding: 2.5rem;
  padding-bottom: 2.5rem;
  margin-top: 2.5rem;
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
@media (min-width: 48em) {
  .l-footer {
    --side-padding: 3.75rem;
  }
}
@media (min-width: 56.25em) {
  .l-footer {
    --side-padding: 5rem;
  }
}
@media (min-width: 80em) {
  .l-footer {
    margin-left: 12.5rem;
    border-top: 0;
  }
}

/* inner */
@media (min-width: 80em) {
  .l-footer__inner {
    margin-inline: 2.5rem;
    border-top: 0.0625rem solid var(--color-black-alpha-100);
  }
}

/* body */
.l-footer__body {
  display: grid;
  grid-template-areas: "heartful" "business" "company " "recruit " "other";
  grid-template-rows: auto;
  grid-template-columns: repeat(1, 1fr);
  padding: 1.25rem 0;
}
@media (min-width: 48em) {
  .l-footer__body {
    --column-gap: 3rem;
    grid-template-areas: "heartful ." "business company" "recruit other";
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: var(--column-gap);
         column-gap: var(--column-gap);
    padding-block: 2rem;
    padding-inline: calc(var(--side-padding) / 2);
  }
}
@media (min-width: 56.25em) {
  .l-footer__body {
    padding-block: 2.25rem;
  }
}
@media (min-width: 80em) {
  .l-footer__body {
    grid-template-areas: "heartful . . ." "business company recruit other";
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    padding-block: 2rem;
    padding-inline: 0;
  }
}
@media (min-width: 90em) {
  .l-footer__body {
    grid-template-areas: "heartful business company recruit other";
    grid-template-rows: auto;
    grid-template-columns: 12.5rem 1fr 1fr 1fr 1fr;
  }
}

/* block */
.l-footer__block {
  padding: 1.25rem calc(var(--side-padding) / 2);
  border-top: 0.0625rem solid var(--color-black-alpha-100);
}
@media (min-width: 48em) {
  .l-footer__block {
    position: relative;
    padding: 0;
    border-top: 0;
  }
  .l-footer__block::before {
    position: absolute;
    top: 0;
    left: calc(var(--column-gap) / 2 * -1);
    width: 0.0625rem;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 80em) {
  .l-footer__block {
    margin-top: 0;
  }
}
@media (min-width: 48em) {
  .l-footer__block:nth-child(1)::before, .l-footer__block:nth-child(2n)::before {
    display: none;
  }
}
@media (min-width: 80em) {
  .l-footer__block:nth-child(n+3)::before {
    display: block;
  }
}
@media (min-width: 48em) {
  .l-footer__block:nth-child(n+4) {
    margin-top: 2rem;
  }
}
@media (min-width: 80em) {
  .l-footer__block:nth-child(n+4) {
    margin-top: 0;
  }
}
.l-footer__block.--heartful {
  grid-area: heartful;
  padding-bottom: 3rem;
  border-top: 0;
}
@media (min-width: 90em) {
  .l-footer__block.--heartful {
    padding-bottom: 0;
  }
}
.l-footer__block.--business {
  grid-area: business;
}
.l-footer__block.--company {
  grid-area: company;
}
.l-footer__block.--recruit {
  grid-area: recruit;
}
.l-footer__block.--other {
  grid-area: other;
}

/* title */
.l-footer__title {
  margin-top: 0;
  font-family: var(--font-db);
  font-size: 0.9375rem;
  color: var(--color-primary-mid);
  letter-spacing: 0;
}
@media (min-width: 48em) {
  .l-footer__title {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .l-footer__title {
    font-size: 1.0625rem;
  }
}
.l-footer__block.--heartful .l-footer__title {
  font-size: 1.0625rem;
}

.l-footer__link {
  text-decoration: none;
}

/* list */
.l-footer__list {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 1rem;
}
.l-footer__list li + li {
  margin-top: 0;
}
.l-footer__list a {
  text-decoration: none;
}
.l-footer__list p {
  margin-top: 0;
}
@media (min-width: 80em) {
  .l-footer__list {
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    margin-top: 0.5rem;
  }
}

/* btn */
.l-footer__btn {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.75rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

/* global footer */
.l-footer__common {
  width: calc(100% - var(--side-padding));
  padding-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 80em) {
  .l-footer__common {
    width: 100%;
  }
}

/* ==========================================================================
   Grid layout
   ========================================================================== */
.l-grid {
  display: grid;
  grid-row-gap: 5.25rem;
  row-gap: 5.25rem;
}
@media (min-width: 80em) {
  .l-grid {
    grid-template-columns: 1fr 17.5rem;
    row-gap: 0;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
@media (min-width: 80em) {
  .l-grid.--lg {
    grid-template-columns: 1fr 20rem;
  }
}
@media (min-width: 80em) {
  .l-grid.--xl {
    grid-template-columns: 1fr 22.5rem;
  }
}

@media (max-width: 79.99em) {
  .l-grid__aside > section:first-child {
    margin-top: 0;
  }
}
@media (max-width: 79.99em) {
  .l-grid__aside > section:first-child :is(h1, h2, h3, h4) {
    margin-top: 0;
  }
}

/* ==========================================================================
   Header layout
   ========================================================================== */
/* mobile layout */
@media (max-width: 79.99em) {
  /* header layout */
  .l-header {
    --theme-color: var(--color-primary-mid);
    --header-height: 3.75rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-30);
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    transition: top 300ms var(--ease-out-cubic);
  }

  .l-header.is-hide {
    top: calc(var(--header-height) * -1);
  }

  /* container */
  .l-header__container {
    height: 100%;
    padding-inline: 0.625rem;
  }

  /* inner layout */

  /* logo wrapper */

  /* logo */

  /* hamburger layout */

  /* menu & close common layout */

  /* close layout */

  /* icon */

  /* text */

  /* global navigation */
}
@media (max-width: 79.99em) and (min-width: 48em) {
  .l-header__container {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 79.99em) {
  .l-header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
  }
}
@media (max-width: 79.99em) {
  .l-header__logo-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 79.99em) {
  .l-header__logo.--desktop {
    display: none;
  }
}
@media (max-width: 79.99em) {
  .l-header__logo.--mobile i {
    width: 10.5625rem;
    height: 2.375rem;
    vertical-align: top;
    stroke: none;
  }
}
@media (max-width: 79.99em) {
  .l-header__hamburger {
    position: relative;
    min-width: 2.5rem;
    margin-left: auto;
    color: var(--color-primary-mid);
    transform: translateY(-2px);
  }
}
@media (max-width: 79.99em) {
  .l-header__menu,
.l-header__close {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    align-items: center;
    width: 100%;
    text-decoration: none;
  }
}
@media (max-width: 79.99em) {
  .l-header__close {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 79.99em) {
  .l-header__icon {
    visibility: visible;
    opacity: 1;
    transition: opacity 200ms var(--ease-in-cubic), visibility 200ms var(--ease-in-cubic), transform 300ms var(--ease-out-cubic);
  }
}
@media (max-width: 79.99em) {
  .l-header__icon.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms var(--ease-out-cubic), visibility 300ms var(--ease-out-cubic), transform 300ms var(--ease-out-cubic);
    transform: scale(0);
  }
}
@media (max-width: 79.99em) {
  .l-header__icon i {
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
  }
}
@media (max-width: 79.99em) {
  .l-header__text {
    font-family: var(--font-db);
    font-size: 0.5625rem;
    line-height: 1;
    color: var(--color-primary-mid);
    visibility: visible;
    opacity: 1;
    transition: opacity 200ms var(--ease-in-cubic), visibility 200ms var(--ease-in-cubic);
  }
}
@media (max-width: 79.99em) {
  .l-header__text.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms var(--ease-out-cubic), visibility 300ms var(--ease-out-cubic);
  }
}
@media (max-width: 79.99em) {
  .l-header__gnav {
    position: fixed;
    top: 3.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 2.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background-color: #fff;
    opacity: 0;
    transition: opacity 200ms var(--ease-in-cubic), visibility 200ms var(--ease-in-cubic);
  }
}
@media (max-width: 79.99em) {
  .l-header__gnav.is-open {
    overscroll-behavior: contain;
    visibility: visible;
    opacity: 1;
    transition: opacity 300ms var(--ease-out-cubic), visibility 300ms var(--ease-out-cubic);
  }
}
/* desktop layout */
@media (min-width: 80em) {
  /* firstView */
  body .l-header__logo-wrapper,
body .l-header__gnav {
    opacity: 0;
  }

  body .l-header__logo-wrapper {
    transition: opacity 500ms cubic-bezier(0, 0.47, 0.58, 1) 500ms;
  }

  body .l-header__gnav {
    transition: opacity 500ms cubic-bezier(0, 0.47, 0.58, 1) 500ms;
  }

  body.domContentLoaded .l-header__logo-wrapper,
body.domContentLoaded .l-header__gnav {
    opacity: 1;
  }

  /* header layout */
  .l-header {
    --theme-color: var(--color-primary-mid);
    position: relative;
    z-index: var(--z-30);
    background-color: #fff;
  }

  /* inner layout */
  .l-header__inner {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 12.5rem;
    height: 100vh;
  }

  /* logo wrapper */
  .l-header__logo-wrapper {
    z-index: 20;
    padding-inline: 2.5rem;
    padding-top: 2.5rem;
    margin-top: 0;
  }

  /* logo */
  .l-header__logo.--mobile {
    display: none;
  }

  .l-header__logo.--desktop i {
    width: 100%;
    height: auto;
    stroke: none;
  }

  /* map & hamburger */
  .l-header__map,
.l-header__hamburger {
    display: none;
  }

  /* gnav layout */
  .l-header__gnav {
    width: 100%;
  }
}
/* ==========================================================================
   Inner layout
   ========================================================================== */
.l-inner--xs {
  width: 100%;
  max-width: 43.75rem;
  margin-right: auto;
  margin-left: auto;
}

.l-inner--sm {
  width: 100%;
  max-width: 53.75rem;
  margin-right: auto;
  margin-left: auto;
}

.l-inner {
  width: 100%;
  max-width: 62.5rem;
  margin-right: auto;
  margin-left: auto;
}

.l-inner--lg {
  width: 100%;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
}

.l-inner--xl {
  width: 100%;
  max-width: 85rem;
  margin-right: auto;
  margin-left: auto;
}

/* ==========================================================================
   Header layout
   ========================================================================== */
.l-main {
  padding-bottom: 3.75rem;
}
@media (min-width: 48em) {
  .l-main {
    padding-bottom: 2rem;
  }
}
@media (min-width: 80em) {
  .l-main {
    padding-bottom: 2.5rem;
    padding-left: 12.5rem;
  }
}

/* ==========================================================================
   Reha-header layout
   ========================================================================== */
/* mobile layout */
@media (max-width: 79.99em) {
  .l-reha-header {
    --header-height: 3.75rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-30);
    width: 100%;
    height: var(--header-height);
    font-family: var(--font-t-b);
    font-weight: 700;
    color: var(--theme-color);
    background-color: var(--color-white);
    transition: top 300ms var(--ease-out-cubic);
  }

  .l-reha-header ul {
    margin-top: 0;
    margin-left: 0;
    list-style: none;
  }

  .l-reha-header li + li {
    margin-top: 0;
  }

  .l-reha-header a {
    text-decoration: none;
  }

  .l-reha-header p {
    margin-top: 0;
  }

  .l-reha-header.is-hide {
    top: calc(var(--header-height) * -1);
  }

  .l-reha-header__container {
    height: 100%;
    padding-inline: 0.625rem;
  }
}
@media (max-width: 79.99em) and (min-width: 48em) {
  .l-reha-header__container {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__logo i {
    display: flex;
    width: 120px;
    height: auto;
    color: var(--logo-color);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__map {
    margin-left: auto;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__map i {
    stroke-width: 2;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__open i,
.l-reha-header__close i {
    stroke-width: 1.2;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__map,
.l-reha-header__open,
.l-reha-header__close {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.5625rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__map i,
.l-reha-header__open i,
.l-reha-header__close i {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__hamburger {
    position: relative;
    z-index: var(--z-20);
    margin-left: 0.625rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__open {
    z-index: var(--z-10);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__close {
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--z-10);
    width: 100%;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__icon {
    visibility: visible;
    opacity: 1;
    transition: transform 300ms cubic-bezier(0.32, 0, 0.67, 0), opacity 300ms cubic-bezier(0.32, 0, 0.67, 0), visibility 300ms cubic-bezier(0.32, 0, 0.67, 0);
    transform: scale(1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__icon.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: transform 300ms cubic-bezier(0.33, 1, 0.68, 1), opacity 300ms cubic-bezier(0.33, 1, 0.68, 1), visibility 300ms cubic-bezier(0.33, 1, 0.68, 1);
    transform: scale(0.5);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__text {
    visibility: visible;
    opacity: 1;
    transition: opacity 300ms cubic-bezier(0.32, 0, 0.67, 0), visibility 300ms cubic-bezier(0.32, 0, 0.67, 0);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__text.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.33, 1, 0.68, 1), visibility 300ms cubic-bezier(0.33, 1, 0.68, 1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__nav {
    position: fixed;
    top: 3.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background-color: var(--color-white);
    opacity: 0;
    transition: opacity 300ms cubic-bezier(0.32, 0, 0.67, 0), color 300ms cubic-bezier(0.32, 0, 0.67, 0), visibility 300ms cubic-bezier(0.32, 0, 0.67, 0);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__nav.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 300ms cubic-bezier(0.33, 1, 0.68, 1), color 300ms cubic-bezier(0.32, 0, 0.67, 0), visibility 300ms cubic-bezier(0.33, 1, 0.68, 1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__menu {
    display: block;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__menu-2 {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    padding: 1.875rem;
    border-top: 1px solid color-mix(in srgb, var(--theme-color), transparent 80%);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__menu-2 .c-toggle-btn {
    --toggle-btn-width: 0.9375rem;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__accordion {
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--theme-color), transparent 80%);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 60px);
    padding: 1.875rem 0;
    margin: 0 auto;
    font-size: 1.125rem;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
    transition: box-shadow 300ms cubic-bezier(0.32, 0, 0.67, 0);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn > span {
    display: flex;
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
    align-items: center;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn .c-toggle-btn__icon {
    --toggle-btn-width: 0.9375rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn [data-icon=icon_chevron] {
    color: var(--color-neutral-lightest);
    transition: transform 200ms var(--ease-out-cubic), color 200ms var(--ease-out-cubic), fill 200ms var(--ease-out-cubic);
    transform: translateX(4px) rotate(0);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn [data-icon=icon_chevron] circle {
    fill: var(--color-primary-mid);
    animation: 200ms var(--ease-out-cubic) 0s circle-move-left both;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn.is-open {
    box-shadow: inset 0 -0.0625rem 0 var(--color-black-alpha-100);
    transition: box-shadow 200ms var(--ease-out-cubic);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn.is-open [data-icon=icon_chevron] {
    color: var(--color-primary-mid);
    transform: translateX(4px) rotate(-180deg);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn:hover [data-icon=icon_chevron] circle {
    animation: 200ms var(--ease-out-cubic) 0s circle-move-right both;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__btn:hover .c-toggle-btn__icon::before {
    transform: translateX(calc(var(--toggle-btn-width) * 2 - 5px));
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__panel {
    max-height: 0;
    padding: 0 1.875rem;
    overflow-y: hidden;
    color: var(--color-gray);
    transition: max-height 300ms cubic-bezier(0.33, 1, 0.68, 1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-family: var(--font-db);
    font-size: 0.875rem;
    font-weight: 600;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__title i {
    stroke-width: 4;
    transform: translateX(2px);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__title i:not([data-icon=icon_arrow-r]) {
    display: none;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5rem;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media (max-width: 79.99em) and (max-width: 47.99em) {
  .l-reha-header__list2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul {
    margin-left: 1em;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 .c-toggle-btn {
    --toggle-btn-width: 0.9375rem;
    justify-content: space-between;
    width: 100%;
    padding-block: 0.75rem;
    font-family: var(--font-r);
    font-size: 0.84375rem;
    font-weight: 400;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul .c-toggle-btn {
    padding-block: 0.5625rem;
    font-size: 0.78125rem;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 > li > .c-toggle-btn:has(+ ul) {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul > li > .c-toggle-btn:has(+ ul) {
    border-top: 0;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul > li:has(> ul) + li > .c-toggle-btn {
    border-top: 0;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul > li:first-child > .c-toggle-btn {
    border-top: 0;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul > li > ul > li:first-child .c-toggle-btn {
    border-top: 0;
  }
}
@media (max-width: 79.99em) {
  .l-reha-header__list2 ul > li > ul > li:last-child .c-toggle-btn {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
/* desktop layout */
@media (min-width: 80em) {
  .l-reha-header {
    --header-height: 7.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-30);
    width: 100%;
    height: var(--header-height);
    font-family: var(--font-t-b);
    font-weight: 700;
    color: var(--theme-color);
    background-color: white;
    transition: top 300ms var(--ease-out-cubic);
  }

  .l-reha-header ul {
    margin-top: 0;
    margin-left: 0;
    list-style: none;
  }

  .l-reha-header li + li {
    margin-top: 0;
  }

  .l-reha-header a {
    text-decoration: none;
  }

  .l-reha-header p {
    margin-top: 0;
  }

  .l-reha-header.is-hide {
    top: calc(var(--header-height) * -1);
  }

  .l-reha-header::before {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 40px);
    height: 0.3125rem;
    content: "";
    background: linear-gradient(90deg, #009964 0%, #54db86 100%);
    border-bottom-left-radius: 0.1875rem;
  }

  @supports (color: hsl(from green h s l / 30%)) {
    .l-reha-header::before {
      background-color: linear-gradient(to right, hsl(from var(--theme-color) h s l)), hsl(from var(--theme-color) calc(h - 5) calc(s - 35) calc(l + 30));
    }
  }
  /* container */
  .l-reha-header__container {
    height: 100%;
    padding-inline: 2.5rem;
  }

  /* inner */
  .l-reha-header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
  }

  /* logo */
  .l-reha-header__logo {
    z-index: 10;
  }

  .l-reha-header__logo i {
    display: flex;
    width: clamp(180px, 12.5vw + 20px, 220px);
    height: auto;
    color: var(--logo-color);
  }

  /* map, open, close */
  .l-reha-header__map,
.l-reha-header__open,
.l-reha-header__close {
    display: none;
  }

  /* nav */
  .l-reha-header__nav {
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 14px;
    align-items: flex-end;
    margin-left: auto;
  }

  /* menu */
  .l-reha-header__menu {
    display: flex;
    -moz-column-gap: clamp(20px, 3.13vw + -20px, 30px);
         column-gap: clamp(20px, 3.13vw + -20px, 30px);
    align-items: center;
  }

  /* delimiter line */
  .l-reha-header__accordion {
    position: relative;
  }

  /* btn */
  .l-reha-header__btn {
    display: block;
    font-size: 1rem;
    font-feature-settings: "palt";
    text-decoration: none;
    letter-spacing: 0.02em;
    border-radius: 0.3125rem;
    transition: color 200ms var(--ease-out-quint);
  }

  .l-reha-header__btn > span {
    display: flex;
    flex-direction: row;
    -moz-column-gap: clamp(8px, 0.63vw + 0px, 10px);
         column-gap: clamp(8px, 0.63vw + 0px, 10px);
    align-items: center;
  }

  .l-reha-header__btn i {
    display: none;
  }

  .l-reha-header__btn [data-icon=icon_chevron] {
    display: none;
  }

  .l-reha-header__btn .c-toggle-btn__icon {
    display: none;
  }

  .l-reha-header__btn.is-hover, .l-reha-header__btn:hover {
    color: #333;
    transition: color 200ms var(--ease-out-cubic);
  }

  /* panel */
  .l-reha-header__panel {
    position: absolute;
    top: 3rem;
    left: -56px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: flex-start;
    width: -moz-max-content;
    width: max-content;
    padding: 2.8125rem 2.5rem;
    pointer-events: none;
    visibility: hidden;
    background-color: #fff;
    filter: drop-shadow(2px 2px 10px rgba(0, 164, 180, 0.1)) drop-shadow(16px 16px 32px rgba(0, 164, 180, 0.05));
    border-radius: 0.625rem;
    opacity: 0;
    transition: opacity 200ms var(--ease-out-quint), visibility 200ms var(--ease-out-quint), transform 200ms var(--ease-out-back-original);
    transform: translateY(14px);
  }

  .l-reha-header__panel.is-hover {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 200ms var(--ease-out-cubic), visibility 200ms var(--ease-out-cubic), transform 200ms var(--ease-out-back-original);
    transform: translateY(0);
  }

  .l-reha-header__panel::after {
    position: absolute;
    top: 0;
    left: 14%;
    width: 0;
    height: 0;
    content: "";
    border-top-width: 0;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 8px solid transparent;
    transform: translateY(-100%);
  }

  .l-reha-header__panel#about {
    left: -200px;
  }

  .l-reha-header__panel#about::after {
    left: 48%;
  }

  /* title */
  .l-reha-header__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 8.75rem;
    padding-right: 1.875rem;
    font-family: var(--font-db);
    font-size: 1.25rem;
    font-weight: 600;
    font-feature-settings: "palt";
  }

  .l-reha-header__title [data-icon=icon_arrow-r] {
    display: none;
  }

  .l-reha-header__title i:not(.c-toggle-btn__icon) {
    width: 4.125rem;
    height: 4.125rem;
    stroke-width: 1.25;
  }

  .l-reha-header__title .c-toggle-btn__icon {
    margin-top: 0.9375rem;
  }

  .l-reha-header__title:hover {
    color: var(--theme-color);
  }

  .l-reha-header__title:hover .c-toggle-btn__icon::before {
    transform: translateX(calc(var(--toggle-btn-width, 20px) * 2 - 5px));
  }

  /* list */
  .l-reha-header__list2 {
    position: relative;
    min-width: 15rem;
    height: 100%;
    padding-left: 1.875rem;
    color: #555;
  }

  .l-reha-header__list2 .c-toggle-btn {
    justify-content: space-between;
    width: 100%;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-black-alpha-100);
  }

  .l-reha-header__list2 > li:last-child .c-toggle-btn {
    border-bottom: 0;
  }

  .l-reha-header__list2 ul {
    margin-left: 1em;
  }

  .l-reha-header__list2 ul .c-toggle-btn {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.8125rem;
  }

  .l-reha-header__list2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.0625rem;
    height: 100%;
    content: "";
    background-color: var(--color-black-alpha-100);
  }

  /* menu-2 */
  .l-reha-header__menu-2 {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }

  .l-reha-header__menu-2 .c-toggle-btn {
    padding-top: 0.1875rem;
    padding-bottom: 0.1875rem;
    font-size: 0.875rem;
  }

  .l-reha-header__menu-2 .c-toggle-btn:hover {
    color: #333;
  }

  .l-reha-header__menu-2 .c-toggle-btn__text {
    transform: translateY(-0.5px);
  }

  .l-reha-header__menu-2 .c-toggle-btn:hover .c-toggle-btn__text {
    color: #333;
  }

  .l-reha-header__menu-2 .c-toggle-btn[href*=for-medical] {
    padding-inline: 16px;
    background-color: var(--theme-color);
    border: 1px solid;
    border-color: var(--theme-color);
    border-radius: calc(infinity * 1px);
    transition: background-color 300ms var(--ease-out-cubic), border-color 300ms var(--ease-out-cubic);
  }

  .l-reha-header__menu-2 .c-toggle-btn[href*=for-medical]:hover {
    background-color: var(--color-white);
  }

  .l-reha-header__menu-2 .c-toggle-btn[href*=for-medical] .c-toggle-btn__text {
    color: var(--color-white);
  }

  .l-reha-header__menu-2 .c-toggle-btn[href*=for-medical]:hover .c-toggle-btn__text {
    color: var(--theme-color);
  }

  .l-reha-header__menu-2 .c-toggle-btn__icon {
    display: none;
  }

  .l-reha-header__menu-2 a {
    min-width: auto;
    text-decoration: none;
  }
}
/* ==========================================================================
   Footer layout
   ========================================================================== */
/* base */
.l-reha-footer {
  position: relative;
  padding-top: 2.5rem;
  font-family: var(--font-r);
  color: var(--color-white);
  background-color: var(--theme-color);
}
.l-reha-footer p {
  margin-top: 0;
}
.l-reha-footer a {
  text-decoration: none;
}
@media (min-width: 80em) {
  .l-reha-footer {
    padding-top: 0;
    margin-top: 3.75rem;
    color: #555;
    background-color: var(--color-white);
  }
}
.l-reha-footer a:hover,
.l-reha-footer a:hover p,
.l-reha-footer a:hover .c-toggle-btn__text {
  color: #fff;
}
@media (min-width: 80em) {
  .l-reha-footer a:hover,
.l-reha-footer a:hover p,
.l-reha-footer a:hover .c-toggle-btn__text {
    color: var(--theme-color);
  }
}

/* inner */
.l-reha-footer__inner {
  --side-padding: 2.5rem;
}
@media (min-width: 33.75em) {
  .l-reha-footer__inner {
    --side-padding: 5rem;
  }
}
@media (min-width: 48em) {
  .l-reha-footer__inner {
    --side-padding: 7.5rem;
    width: calc(100% - var(--side-padding) / 2);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 56.25em) {
  .l-reha-footer__inner {
    --side-padding: 10rem;
  }
}

/* body */
.l-reha-footer__body {
  display: grid;
  grid-template-areas: "ambulatory" "hospitalization" "spine" "rehabilitation" "about" "overview";
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 48em) {
  .l-reha-footer__body {
    --column-gap: 3rem;
    grid-template-areas: "ambulatory hospitalization" "spine rehabilitation" "about ." "overview overview";
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: var(--column-gap);
         column-gap: var(--column-gap);
  }
}
@media (min-width: 80em) {
  .l-reha-footer__body {
    grid-template-areas: "ambulatory hospitalization spine rehabilitation about" "overview overview overview overview overview";
    grid-template-rows: auto;
    grid-template-columns: repeat(5, 1fr);
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 100em) {
  .l-reha-footer__body {
    grid-template: "ambulatory hospitalization spine rehabilitation about overview";
    grid-template-rows: auto;
    grid-template-columns: repeat(6, 1fr);
  }
}
.l-reha-footer__body .l-reha-footer__content.--ambulatory {
  grid-area: ambulatory;
}
.l-reha-footer__body .l-reha-footer__content.--hospitalization {
  grid-area: hospitalization;
}
.l-reha-footer__body .l-reha-footer__content.--spine {
  grid-area: spine;
}
.l-reha-footer__body .l-reha-footer__content.--rehabilitation {
  grid-area: rehabilitation;
}
.l-reha-footer__body .l-reha-footer__content.--about {
  grid-area: about;
}
.l-reha-footer__body .l-reha-footer__content.--overview {
  grid-area: overview;
}

/* content */
.l-reha-footer__content {
  --toggle-btn-width: 1.25rem;
  position: relative;
  padding-block: 1.5rem;
  padding-inline: calc(var(--side-padding) / 2);
}
@media (min-width: 48em) {
  .l-reha-footer__content {
    padding-block: 0;
    padding-inline: 0;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 80em) {
  .l-reha-footer__content {
    padding: 0;
    margin: 2.5rem 0;
  }
}
.l-reha-footer__content:not(.--overview):nth-of-type(n + 2) {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 48em) {
  .l-reha-footer__content:not(.--overview):nth-of-type(n + 2) {
    position: relative;
    border-top: 0;
  }
  .l-reha-footer__content:not(.--overview):nth-of-type(n + 2)::before {
    position: absolute;
    top: 0;
    left: calc(var(--column-gap) / 2 * -1);
    width: 0.0625rem;
    height: 100%;
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 80em) {
  .l-reha-footer__content:not(.--overview):nth-of-type(n + 2) {
    position: relative;
  }
  .l-reha-footer__content:not(.--overview):nth-of-type(n + 2)::before {
    position: absolute;
    top: 0;
    left: calc(var(--column-gap) / 2 * -1);
    width: 0.0625rem;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 48em) {
  .l-reha-footer__content:nth-of-type(2n + 1)::before {
    display: none;
  }
}
@media (min-width: 80em) {
  .l-reha-footer__content:nth-of-type(2n + 1)::before {
    display: block;
  }
}
.l-reha-footer__content.--overview {
  font-family: var(--font-r);
  font-weight: 300;
}
@media (min-width: 48em) {
  .l-reha-footer__content.--overview {
    padding-top: 1.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
  }
}
@media (min-width: 80em) {
  .l-reha-footer__content.--overview {
    padding-block: 2.5rem;
    margin-block: 0;
    border-top: 0.0625rem solid var(--color-black-alpha-100);
  }
}
@media (min-width: 100em) {
  .l-reha-footer__content.--overview {
    padding-block: 0;
    margin-block: 2.5rem;
    border-top: 0;
  }
}
.l-reha-footer__content.--overview .l-reha-footer__title {
  font-size: 1.0625rem;
}
@media (min-width: 80em) {
  .l-reha-footer__content.--overview::before {
    display: none;
  }
}
@media (min-width: 100em) {
  .l-reha-footer__content.--overview::before {
    display: block;
  }
}
@media (min-width: 48em) {
  .l-reha-footer__content:not(.--overview) {
    padding-top: 0;
  }
}

/* address */
.l-reha-footer__address {
  margin-top: 1rem;
  font-size: 0.75rem;
}
.l-reha-footer__address li {
  padding-block: 0.0625rem;
}
.l-reha-footer__address li a {
  text-decoration: underline;
}

/* title */
.l-reha-footer__title {
  display: flex;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  align-items: center;
  font-family: var(--font-db);
  font-size: 0.9375rem;
  font-weight: 600;
  font-feature-settings: "palt";
}
.l-reha-footer__content:not(.--overview) .l-reha-footer__title {
  margin-left: -0.1875rem;
}

/* icon */
.l-reha-footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("/assets/img/global/global_icon_bg_white.svg");
}
.l-reha-footer__icon i {
  width: 1.875rem;
  height: 1.875rem;
  color: var(--theme-color);
  stroke-width: 1.5;
}
@media (min-width: 80em) {
  .l-reha-footer__icon i {
    stroke-width: 2;
  }
}

/* list */
.l-reha-footer__list {
  margin-top: 0;
  margin-left: 0;
  list-style: none;
  margin-top: 0.75rem;
}
.l-reha-footer__list li + li {
  margin-top: 0;
}
.l-reha-footer__list a {
  text-decoration: none;
}
.l-reha-footer__list p {
  margin-top: 0;
}
.l-reha-footer__content.--overview .l-reha-footer__list {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media (min-width: 48em) {
  .l-reha-footer__content.--overview .l-reha-footer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 100em) {
  .l-reha-footer__content.--overview .l-reha-footer__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-reha-footer__list ul {
  margin-top: 0;
}

/* btn */
.l-reha-footer__btn {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.75rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 80em) {
  .l-reha-footer__btn {
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
.l-reha-footer__list ul .l-reha-footer__btn {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
}
.l-reha-footer__item:first-child .l-reha-footer__btn {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 80em) {
  .l-reha-footer__item:first-child .l-reha-footer__btn {
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  }
}
.l-reha-footer__item:last-child .l-reha-footer__btn {
  border-bottom: 0;
}
.l-reha-footer__btn .c-toggle-btn__icon {
  background-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 80em) {
  .l-reha-footer__btn .c-toggle-btn__icon {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.l-reha-footer__btn .c-toggle-btn__icon::before {
  background-color: #fff;
}
@media (min-width: 80em) {
  .l-reha-footer__btn .c-toggle-btn__icon::before {
    background-color: var(--color-primary-mid);
  }
}

/* common */
.l-reha-footer__common {
  padding-block: 1.5rem;
  padding-inline: calc(var(--side-padding) / 2);
}
@media (min-width: 48em) {
  .l-reha-footer__common {
    padding-block: 1.5rem;
    padding-inline: 0;
  }
}
@media (min-width: 80em) {
  .l-reha-footer__common {
    padding-block: 2.5rem;
  }
}
.l-reha-footer__common .other li:not(:last-of-type)::after {
  background-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 80em) {
  .l-reha-footer__common .other li:not(:last-of-type)::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

/* ==========================================================================
   Section layout
   ========================================================================== */
.l-section--2xs {
  margin-top: 1.875rem;
}
@media (min-width: 48em) {
  .l-section--2xs {
    margin-top: 2.1875rem;
  }
}
@media (min-width: 80em) {
  .l-section--2xs {
    margin-top: 2.5rem;
  }
}
.l-section--2xs > h2,
.l-section--2xs > h3,
.l-section--2xs > h4 {
  margin-top: 0;
}

.l-section--xs {
  margin-top: 1.875rem;
}
@media (min-width: 48em) {
  .l-section--xs {
    margin-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .l-section--xs {
    margin-top: 3rem;
  }
}
.l-section--xs > h2,
.l-section--xs > h3,
.l-section--xs > h4 {
  margin-top: 0;
}

.l-section--sm {
  margin-top: 2.5rem;
}
@media (min-width: 48em) {
  .l-section--sm {
    margin-top: 3rem;
  }
}
@media (min-width: 80em) {
  .l-section--sm {
    margin-top: 3.75rem;
  }
}
.l-section--sm > *:first-child {
  margin-top: 0;
}

.l-section--md {
  margin-top: 3rem;
}
@media (min-width: 48em) {
  .l-section--md {
    margin-top: 4.0625rem;
  }
}
@media (min-width: 80em) {
  .l-section--md {
    margin-top: 5rem;
  }
}
.l-section--md > *:first-child {
  margin-top: 0;
}

.l-section {
  margin-top: 3.75rem;
}
@media (min-width: 48em) {
  .l-section {
    margin-top: 5rem;
  }
}
@media (min-width: 80em) {
  .l-section {
    margin-top: 6.25rem;
  }
}

.l-section--lg {
  margin-top: 5rem;
}
@media (min-width: 48em) {
  .l-section--lg {
    margin-top: 6.25rem;
  }
}
@media (min-width: 80em) {
  .l-section--lg {
    margin-top: 7.5rem;
  }
}

.l-section--xl {
  margin-top: 6.25rem;
}
@media (min-width: 48em) {
  .l-section--xl {
    margin-top: 7.5rem;
  }
}
@media (min-width: 80em) {
  .l-section--xl {
    margin-top: 8.75rem;
  }
}

.l-section--2xl {
  margin-top: 7.5rem;
}
@media (min-width: 48em) {
  .l-section--2xl {
    margin-top: 8.75rem;
  }
}
@media (min-width: 80em) {
  .l-section--2xl {
    margin-top: 10rem;
  }
}

.l-section__body {
  margin-top: 1.5rem;
}

[class*=l-section].-left-space {
  margin-left: 20px;
}
@media (min-width: 48em) {
  [class*=l-section].-left-space {
    margin-left: 2.5rem;
  }
}
@media (min-width: 80em) {
  [class*=l-section].-left-space {
    margin-left: 3.75rem;
  }
}

/* ==========================================================================
   Spacer layout
   ========================================================================== */
.l-spacer--2xs.l-spacer--2xs {
  margin-top: 0.5rem;
}
@media (min-width: 80em) {
  .l-spacer--2xs.l-spacer--2xs {
    margin-top: 0.75rem;
  }
}

.l-spacer--xs.l-spacer--xs {
  margin-top: 1rem;
}
@media (min-width: 80em) {
  .l-spacer--xs.l-spacer--xs {
    margin-top: 1.5rem;
  }
}

.l-spacer--sm.l-spacer--sm {
  margin-top: 2rem;
}
@media (min-width: 80em) {
  .l-spacer--sm.l-spacer--sm {
    margin-top: 1.5rem;
  }
}

.l-spacer--md.l-spacer--md {
  margin-top: 2rem;
}
@media (min-width: 80em) {
  .l-spacer--md.l-spacer--md {
    margin-top: 2.5rem;
  }
}

.l-spacer--lg.l-spacer--lg {
  margin-top: 2.5rem;
}
@media (min-width: 80em) {
  .l-spacer--lg.l-spacer--lg {
    margin-top: 3rem;
  }
}

.l-spacer--xl.l-spacer--xl {
  margin-top: 3rem;
}
@media (min-width: 80em) {
  .l-spacer--xl.l-spacer--xl {
    margin-top: 3.5rem;
  }
}