/*weight*/
/*
 * Font Set
 */
/*
 * Convert pixels to rems
 * eg. for a relational value of 12px write f-rem(12)
 * Assumes $em-base is the font-size of 10px
 */
/*
 * Convert pixels to line-height
 * eg. When the font size is 18 px and the line feed is 28 px write f-line-height( 18, 28 )
 */
/*
 * Convert letter-spacing
 * eg. When tracking = 50 on Photoshop, write f-letter-spacing(50).
 */
.ticket-table {
  width: 100%;
}
.ticket-table th, .ticket-table td {
  padding: 2.4rem 3.2rem;
  border: 0.1rem solid var(--darkgray03);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width:768px) {
  .ticket-table th, .ticket-table td {
    padding: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.33333;
    word-break: break-all;
  }
}
.ticket-table th {
  background-color: var(--litegray01);
}
/* legacy */
/*--=== SP ONLY max-width: 767px ===-- / */
/*--=== / SP ONLY max-width: 767px ===-- */
/*--=== PC ONLY min-width: 768px ===-- / */
/*--=== / PC ONLY min-width: 768px ===-- */

/*# sourceMappingURL=ticket.css.map */
