@layer page {
  .rental-body {
    margin-top: 1.25rem;
    padding-bottom: 7.5rem;
  }
  @media screen and (max-width: 767px) {
    .rental-body {
      margin-top: 2.5641025641vw;
      padding-bottom: 20.5128205128vw;
    }
  }
  .rental-sec + .rental-sec {
    margin-top: 5rem;
  }
  @media screen and (max-width: 767px) {
    .rental-sec + .rental-sec {
      margin-top: 15.3846153846vw;
    }
  }
  .rental-sttl {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.875rem;
    padding-left: 1.25rem;
    border-left: 1px solid var(--accent);
  }
  @media screen and (max-width: 767px) {
    .rental-sttl {
      margin-bottom: 6.4102564103vw;
      font-size: 5.1282051282vw;
    }
  }
  @media screen and (min-width: 768px) {
    .rental-link-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .rental-link-items {
      font-weight: 500;
      display: flex;
      flex-direction: column;
      gap: 2.5641025641vw;
      font-size: 4.1025641026vw;
    }
  }
  .rental-link-items a {
    border: 1px solid #C9CACE;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1rem;
    gap: 1rem;
    padding: 1.25rem;
    transition: 0.25s color;
  }
  @media (hover: hover) {
    .rental-link-items a:hover {
      color: var(--accent);
    }
  }
}