@charset "UTF-8";
/* CSS Document */


/* ticket_tbl　プレイガイド */
.ticket_tbl table {
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%; max-width: 1100px;
  table-layout: fixed;
  line-height: 1.50;
}
.ticket_tbl table tr {
	border-bottom: 1px solid #7F6942;
}
.ticket_tbl table tr:last-child{
	border-bottom: none
}
.ticket_tbl table th,
.ticket_tbl table td {
  border-right: 1px solid #7F6942;
	vertical-align: middle;
}
.ticket_tbl table th:last-child,
.ticket_tbl table td:last-child{
	border: none;
}
.ticket_tbl th { /* 左テキスト */
	color: #D9B68E;
	text-align: center;
  background-color: rgba(255,255,255,0.07);
  width: 300px;
}
.ticket_tbl td {
	text-align: left;
  background-color: rgba(255,255,255,0.13);
  padding: 1.7em;
}

@media screen and (max-width: 700px) {
  .ticket_tbl table {
    border: 0;
    width: 100%;
  }
  .ticket_tbl table th {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #7F6942;
    padding: 1.2rem;
    margin-bottom: 0.2rem;

  }
  
  .ticket_tbl table tr {
    display: block;
    margin-bottom: 1.6rem;
		border-bottom: 0px solid #818181;
  }
  
  .ticket_tbl table td {
    border-bottom: 0px solid #DF2E31;
    display: block;
    text-align: center;
    position: relative;
    padding: 1.2rem 1.8rem 1.2rem 1.8rem; /* 右 値段 */
    border-right: none;
  }
  
  .ticket_tbl table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 1.8rem; /* 左 テキスト */
  }
  
  .ticket_tbl table td:last-child {
    border-bottom: 0;
  }
}
