/*-----------------------------------------
	PAGE: Rental
-----------------------------------------*/
/* Rental Product */
.rental-product--box {
  border: 1px solid #DDDDDD;
}
.rental-product--head {
  background-color: rgba(0, 0, 0, 0.08);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 660px) {
  .rental-product--head {
    padding: 0.6rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.rental-product--item {
  position: relative;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 2rem;
}
@media screen and (max-width: 660px) {
  .rental-product--item {
    padding: 1rem;
    gap: 1.4rem;
  }
}
.rental-product__title {
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (max-width: 660px) {
  .rental-product__title {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 660px) {
  .rental-product__code {
    text-align: right;
  }
}
.rental-product__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 661px) {
  .rental-product__image {
    width: 260px;
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 660px) {
  .rental-product__image {
    width: 100%;
  }
}
.rental-product__detail {
  flex: 1;
}
@media screen and (min-width: 661px) {
  .rental-product__link {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
  }
  .rental-product__link a {
    width: 260px;
    height: 45px;
  }
}
@media screen and (max-width: 660px) {
  .rental-product__link {
    width: 100%;
  }
  .rental-product__link a {
    width: 100%;
  }
}

.table--spec table tr {
  border-bottom: 1px solid #CCC;
}
.table--spec table tr:nth-of-type(1) {
  border-top: 1px solid #CCC;
}
.table--spec table tr th, .table--spec table tr td {
  padding: 0.8rem;
  font-weight: normal;
}
.table--spec table tr th {
  background-color: #f2f2f2;
}
@media screen and (max-width: 660px) {
  .table--spec table tr th, .table--spec table tr td {
    padding: 0.6rem;
    font-size: 0.8125rem;
  }
  .table--spec table tr th {
    width: 35%;
  }
  .table--spec table tr td {
    width: 65%;
  }
  .table--spec:nth-of-type(2) table tr:nth-of-type(1) {
    border-top: 0;
  }
}
.table--price table tr th, .table--price table tr td {
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #CCC;
}
.table--price table tr th {
  background-color: #F2F8FC;
}
.table--price table tr td .price--num {
  font-size: 1.125rem;
}
.table--price table tr td .price--unit {
  font-size: 0.8125rem;
}
.table--price table tr:nth-of-type(1) th {
  background-color: #f2f2f2;
}
@media screen and (min-width: 661px) {
  .table--price table tbody {
    display: flex;
    flex-wrap: wrap;
  }
  .table--price table tr {
    border-right: 1px solid #CCC;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .table--price table tr th, .table--price table tr td {
    padding: 0.6rem 0.4rem;
    font-size: 0.9375rem;
    vertical-align: middle;
  }
  .table--price table tr th {
    border-top: 1px solid #CCC;
  }
  .table--price table tr td {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .table--price table tr:nth-of-type(1) {
    border-left: 1px solid #CCC;
  }
  .table--price table tr:nth-of-type(1) th:nth-of-type(2) {
    border-top: 0;
  }
}
@media screen and (max-width: 660px) {
  .table--price table {
    border: 1px solid #CCC;
  }
  .table--price table tr th, .table--price table tr td {
    padding: 0.6rem 0.4rem;
    font-size: 0.875rem;
  }
  .table--price table tr th {
    border-right: 1px solid #CCC;
  }
  .table--price table tr td {
    text-align: right;
  }
  .table--price table tr td .price--num {
    font-size: 1rem;
  }
  .table--price table tr td .price--unit {
    font-size: 0.75rem;
  }
  .table--price table tr:nth-of-type(1) th:nth-of-type(2) {
    border-right: 0;
  }
}
.table--office table {
  height: 100%;
}
.table--office table tr th, .table--office table tr td {
  width: 20%;
}
.table--office table thead tr th {
  height: 100%;
  padding: 0.1rem;
}
.table--office table thead tr th .ms365-plan--box {
  border: 1px solid #dddddd;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 1.4rem 0.4rem;
  font-size: 0.9375rem;
  font-weight: normal;
}
.table--office table thead tr th .ms365-plan__name {
  text-align: center;
  font-size: 1rem;
  color: var(--link-blue);
  font-weight: bold;
}
.table--office table thead tr th .ms365-plan__name span {
  font-size: 1.125rem;
}
.table--office table thead tr th .ms365-plan__price {
  margin-top: auto;
}
.table--office table thead tr th .ms365-plan__price dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.table--office table thead tr th .ms365-plan__price dl dt {
  font-size: 0.875rem;
}
.table--office table thead tr th .ms365-plan__price dl dd {
  font-weight: bold;
}
.table--office table thead tr th .ms365-plan__price dl dd .price--num {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--red);
  font-size: 1.875rem;
}
.table--office table thead tr th .ms365-plan__price dl dd .price--unit {
  font-size: 1rem;
  margin-left: 0.3rem;
}
.table--office table tbody tr {
  border-bottom: 1px solid #CCC;
}
.table--office table tbody tr th, .table--office table tbody tr td {
  border-right: 1px solid #CCC;
  padding: 1.4rem 1rem;
  text-align: center;
  vertical-align: middle;
}
.table--office table tbody tr th .app-box {
  display: flex;
  flex-wrap: wrap;
  font-weight: normal;
  font-size: 0.875rem;
  gap: 0.5rem;
  align-items: center;
}
.table--office table tbody tr th .app-box__icon {
  width: 50px;
}
.table--office table tbody tr th .app-box__icon img {
  width: 100%;
  height: auto;
}
.table--office table tbody tr th .app-box__text {
  flex: 1;
}
.table--office table tbody tr th .app-box__name {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 660px) {
  .table--office {
    width: 100%;
    overflow-x: scroll;
  }
  .table--office table {
    width: 210vw;
  }
  .table--office table thead tr th:nth-of-type(1) {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #FFF;
  }
  .table--office table thead tr th .ms365-plan--box {
    gap: 0.5rem;
    padding: 0.4rem 0.4rem;
    font-size: 0.8125rem;
  }
  .table--office table thead tr th .ms365-plan__name {
    font-size: 0.8125rem;
  }
  .table--office table thead tr th .ms365-plan__name span {
    font-size: 1rem;
  }
  .table--office table thead tr th .ms365-plan__price dl dt {
    font-size: 0.75rem;
  }
  .table--office table thead tr th .ms365-plan__price dl dd .price--num {
    font-size: 1.5rem;
  }
  .table--office table thead tr th .ms365-plan__price dl dd .price--unit {
    font-size: 0.8125rem;
    margin-left: 0.2rem;
  }
  .table--office table tbody tr th, .table--office table tbody tr td {
    padding: 0.6rem 0.3rem;
  }
  .table--office table tbody tr th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background-color: #FFF;
  }
  .table--office table tbody tr th .app-box {
    flex-direction: column;
    font-size: 0.75rem;
    gap: 0.2rem;
  }
  .table--office table tbody tr th .app-box__name {
    font-size: 1.125rem;
  }
}
.table--choose table tbody tr th, .table--choose table tbody tr td {
  padding: 1rem;
  border: 1px solid #CCC;
}
.table--choose table tbody tr th {
  width: 20%;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 1.25rem;
}
.table--choose table tbody tr td {
  width: 13.3333333333%;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 660px) {
  .table--choose {
    width: 100%;
    overflow-x: scroll;
  }
  .table--choose table {
    width: 210vw;
  }
  .table--choose table tbody tr th, .table--choose table tbody tr td {
    padding: 0.4rem;
  }
  .table--choose table tbody tr th {
    font-size: 0.9375rem;
  }
  .table--choose table tbody tr td {
    font-size: 0.875rem;
  }
  .table--choose table tbody tr:nth-of-type(n + 3) td img {
    width: 5vw;
  }
}
/*# sourceMappingURL=rental.css.map */