@charset "UTF-8";
/* CSS Document */

/* ticket_tbl　プレイガイド */
.ticket_tbl table {
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  width: 100%; max-width: 1100px;
  table-layout: fixed;
  line-height: 1.50;
}
.ticket_tbl table tr {
	border-bottom: 1px solid #8E876D;
}
.ticket_tbl table tr:last-child{
	border-bottom: none
}
.ticket_tbl table th,
.ticket_tbl table td {
  border-right: 1px solid #8E876D;
	vertical-align: middle;
}
.ticket_tbl table th:last-child,
.ticket_tbl table td:last-child{
	border: none;
}
.ticket_tbl th { /* 左テキスト */
	color: #E2DAA1;
	text-align: center;
  background-color: rgba(0,0,0,0.65);
  width: 300px;
}
.ticket_tbl td {
	text-align: left;
  background-color: rgba(0,0,0,0.25);
  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 #8E876D;
    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;
  }
}

/* はみ出し対策：長文を強制的に折り返す */
.ticket_tbl th,
.ticket_tbl td{
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ticket_tbl table{
  width: 100%;
  max-width: 1100px;
}

/* 料金BOX */
.price_box{
  display:inline-block;
  padding:0.4em 0.9em;
  margin-bottom:0.6em;

  font-size:1.9rem;
  font-weight:700;
  letter-spacing:0.05em;

  color:#111;
  background:#FFFFFF;

  border-radius:4px;
}

@media screen and (max-width:700px){

  /* 説明文だけ左揃え */
  .ticket_tbl td .text1em{
    text-align:left;
    margin-top:0.8rem;
    line-height:1.6;
  }

}

/* テキスト関連 */
.ticket_note {
  font-size: 0.85em;
  line-height: 1.4;
}

.ticket_note p {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0.3em 0;
}

small {
  font-size: 88%;
	line-height: 1.5;
}
