@charset "utf-8";

.menu {
  display: grid;
  margin: 4rem auto;
  min-height: 80vh;
  place-content: center;
  width: 97rem;
}

.menu__read {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 8vh;
}

.menu__lists {
  display: grid;
  gap: 9rem;
  grid-template-columns: 1fr 1fr;
}

.menu__dl {
  align-items: center;
  border-bottom: 1px dashed;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr max-content;
  line-height: 1.6;
  margin: 0 0 1em;
  padding-bottom: 1em;
}

.menu__dt {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}

.menu__dd {
  font-size: 2rem;
  margin: 0;
}

.menu__info {
  font-size: 1.4rem;
  margin-top: 3em;
  text-align: right;
}

/* ================================================================
  スマホ版レイアウト
================================================================ */
@media screen and (max-width: 750px) {

  .menu {
    margin: 6rem auto;
    min-height: auto;
    padding: 0 4rem;
    width: 100%;
  }

  .menu__read {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }

  .menu__lists {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .menu__dl {
    gap: 1.5rem;
    margin-bottom: .8em;
    padding-bottom: .8em;
  }

  .menu__dt {
    font-size: 1.4rem;
  }

  .menu__dd {
    font-size: 1.8rem;
  }

  .menu__info {
    font-size: 1.2rem;
    margin-top: 2em;
  }
}