@charset "UTF-8";
#parkingPage section {
  padding-bottom: 80px;
}
#parkingPage {
  text-align: center;
}
#parkingPage .category-title {
  font-size: 30px;
  margin-bottom: 20px;
}
#parkingPage p {
  font-family: "Noto Sans", sans-serif;
}
#parkingPage .p-table-wrapper {
  width: 100%;
  margin: 30px auto 20px;
}
#parkingPage .p-area-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 15px solid #26C4A6;
  border-radius: 20px;
  overflow: hidden;
  background-color: #26C4A6;
  table-layout: fixed;
}
#parkingPage .p-area-table th,
#parkingPage .p-area-table td {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  color: #333;
  border: 2px solid #26C4A6;
}
#parkingPage .p-area-table th {
  background-color: #FFE44B;
  font-size: 15px;
}
#parkingPage .p-area-table td {
  font-size: 14px;
  font-weight: 900;
  font-family: "Noto Sans", sans-serif;
}
#parkingPage .caption {
  font-size: 11px;
  display: flex;
  justify-content: left;
  text-align: left;
  margin: 0;
}
#parkingPage .caption::before {
  content: "※";
  font-size: 11px;
  margin-right: 5px;
}
#parkingPage .status-item {
  margin-bottom: 60px;
}
#parkingPage .button {
  background-color: #26C4A6;
  color: #fff;
  margin: 20px auto;
  width: 240px;
  height: 50px;
  line-height: 50px;
}
#parkingPage .parkingImg {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
#parkingPage .parkingImg li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  #parkingPage .pagetitle-area {
    padding-bottom: 120px;
  }
  #parkingPage section {
    padding-bottom: 40px;
  }
  #parkingPage .p-area-table {
    display: block;
    border-width: 10px;
  }
  #parkingPage .p-area-table thead {
    display: none;
  }
  #parkingPage .p-area-table tbody,
  #parkingPage .p-area-table tr {
    display: block;
    width: 100%;
  }
  #parkingPage .p-area-table tr {
    margin-bottom: 10px;
    border-bottom: 5px solid #26C4A6;
  }
  #parkingPage .p-area-table tr:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  #parkingPage .p-area-table td {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 11px 15px 11px;
    border: none;
    border-bottom: 2px solid #26C4A6;
    font-size: 13px;
  }
  #parkingPage .p-area-table td:last-child {
    border-bottom: none;
  }
  #parkingPage .p-area-table td::before {
    content: attr(data-label);
    display: block;
    width: 35%;
    min-width: 100px;
    background-color: #FFE44B;
    margin: -11px 15px -11px -15px;
    padding: 12px 15px;
    font-size: 12px;
    color: #333;
    height: calc(100% + 24px);
    display: flex;
    align-items: center;
    margin-right: 20px;
  }
  #parkingPage .parkingImg {
    display: block;
    justify-content: space-between;
    margin-top: 30px;
  }
  #parkingPage .parkingImg li {
    width: 100%;
  }
  #parkingPage .parkingImg li + li {
    margin-top: 20px;
  }
}