@charset "UTF-8";
#page-rental .flex-container {
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  #page-rental .flex-container {
    margin-bottom: 24px;
  }
}
#page-rental #intro .flex-container {
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  #page-rental #intro .flex-container {
    margin-bottom: 24px;
  }
}
#page-rental #intro .intro-text {
  font-size: 1.8rem;
  line-height: 2.27;
}
#page-rental #intro .intro-img {
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #page-rental #intro .intro-text {
    font-size: 1.2rem;
  }
}
#page-rental .rental-machine-wrapper {
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page-rental .rental-machine-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
#page-rental .rental-machine-imgbox {
  flex-direction: column;
  margin-bottom: 0;
  gap: 24px;
  width: 50%;
}
#page-rental .rental-machine-imgbox img {
  max-width: 320px;
  object-fit: cover;
  aspect-ratio: 3/2;
}
#page-rental .rental-machine-imgbox img:nth-child(1) {
  align-self: flex-start;
}
#page-rental .rental-machine-imgbox img:nth-child(2) {
  align-self: flex-end;
}
#page-rental .rental-machine-imgbox img:nth-child(3) {
  align-self: flex-start;
}
#page-rental .rental-machine-imgbox img:nth-child(4) {
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  #page-rental .rental-machine-imgbox {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }
  #page-rental .rental-machine-imgbox img {
    width: 70%;
    aspect-ratio: 2/1;
  }
}
#page-rental .rental-machine-list {
  background-color: #01A6AB;
  padding: 48px;
  width: 50%;
  color: white;
}
#page-rental .rental-machine-list li {
  color: white;
  font-size: 1.8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid white;
  margin-bottom: 16px;
}
#page-rental .rental-machine-list li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
#page-rental .rental-machine-list .list-header {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: white;
  margin-bottom: 24px;
}
#page-rental .rental-machine-list .table-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
#page-rental .rental-machine-list .table-title::before {
  content: "【";
}
#page-rental .rental-machine-list .table-title::after {
  content: "】";
}
#page-rental .rental-machine-list .list-table {
  width: 90%;
}
#page-rental .rental-machine-list .list-table th,
#page-rental .rental-machine-list .list-table td {
  padding: 4px;
}
#page-rental .rental-machine-list .list-table th {
  font-weight: 400;
  width: 30%;
}
#page-rental .rental-machine-list .list-table td:last-of-type {
  width: 30%;
  text-align: right;
}
#page-rental .rental-machine-list .list-table td span {
  font-size: 70%;
}
@media screen and (max-width: 767px) {
  #page-rental .rental-machine-list {
    display: block;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    padding: 32px 48px;
  }
  #page-rental .rental-machine-list li {
    font-size: 1.4rem;
  }
  #page-rental .rental-machine-list .list-header {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  #page-rental .rental-machine-list .table-title {
    font-size: 1.6rem;
  }
  #page-rental .rental-machine-list .list-table {
    width: 95%;
    margin: 0 auto;
  }
  #page-rental .rental-machine-list .list-table th {
    width: 35%;
  }
}