@charset "UTF-8";
.sideLink {
  opacity: 0;
  text-align: center;
  transition: 1s;
}
.sideLink a {
  background: #161f71;
  color: #FFF;
  padding: 2rem 1rem;
  border-radius: 5px 5px;
}
.sideLink.is-side, .sideLink.is-bottom {
  display: block;
  position: fixed;
  right: 0;
  top: 50vh;
  z-index: 40;
  opacity: 1;
}
.sideLink.is-side a, .sideLink.is-bottom a {
  border-radius: 5px 0 0 5px;
}
.sideLink.is-bottom {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .sideLink {
    display: none;
  }
}

/* holter_flow
------------------------------------ */
.itemList > section {
  border-top: 1px solid #D4CFCF;
  border-bottom: 1px solid #D4CFCF;
  margin-bottom: 0;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  grid-template-areas: "photo title" "photo detail";
  gap: 1rem 5rem;
}
.itemList > section + section {
  border-top: none;
}
.itemList > section h3 {
  grid-area: title;
  font-size: 1.8rem;
  font-weight: bold;
  align-self: self-end;
  margin-bottom: 1rem;
}
.itemList > section .detail {
  grid-area: detail;
}
.itemList > section .photo {
  grid-area: photo;
}
.itemList > section ul.category {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.itemList > section ul.category li {
  background: #545454;
  border-radius: 5px;
  color: #FFF;
  padding: 3px 1rem 5px;
  line-height: 1;
}
.itemList > section ul.spec {
  margin: 1rem 0;
}
.itemList > section ul.spec li {
  text-indent: -1em;
  padding-left: 1em;
}
.itemList > section ul.spec li::before {
  content: "・";
}

@media screen and (max-width: 767px) {
  .itemList > section {
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "photo" "detail";
    gap: 1rem 5rem;
  }
}
#sales .flow {
  margin-bottom: 1rem;
}
#sales .flow dt {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1rem;
}
#sales .note {
  text-align: right;
}

#rental .lead {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}