/* CSS Document */

#ticket{
	padding: 0;
	}
	#ticket section{
		padding-top: 0;
		}
	#ticket h5{
		padding-left: 1.1em;
		text-indent: -1.1em;
		font-weight: bold;
		font-size: 1.2em;
		line-height: 1.4em;
		}
	#ticket h5+div{
		margin-top: 0.5em;
		}

#ticketCenter{}
	#ticketCenter dl{
		display: flex;
		align-items: center;
		border: 3px solid var(--theme-color);
		}
	#ticketCenter dt{
		font-weight: bold;
		font-size: 1.4em;
		line-height: 1em;
		}
	#ticketCenter dt+dd{
		font-weight: bold;
		font-size: 1.6em;
		line-height: 1em;
		}
	#ticketCenter dt+dd+dd{
		margin-top: 1em;
		line-height: 1.4em;
		}
	#ticketCenter dd{
		}
		#ticketCenter dd a{
			color: var(--theme-color);
			font-size: 1.4em;
			text-decoration: none;
			}
	#ticketCenter p{
		margin-top: 1em;
		}

.caution{
	padding: 1em;
	background: #f2f2f2;
	border: 1px solid #ccc;
	}
	.caution p{
		line-height: 1.4em;
		}




/* for all */
@media (max-width: 1199px) {
/*1199px以下*/
}
@media (max-width: 991px) {
/*991px以下*/
#ticketCenter{}
	#ticketCenter dl{
		flex-direction: column;
		padding: 1em;
		}
	#ticketCenter dt+dd{
		margin-top: 0.8em;
		}
}


/* for mobile */
@media (max-width: 767px) {
/*767px以下*/
}
@media (max-width: 767px) and (orientation:portrait) {
/*767px以下縦向き*/
}
@media (max-width: 767px) and (orientation:landscape) {
/*767px以下横向き*/
}
@media (max-width: 767px) and (orientation:portrait), (max-width: 575px) and (orientation:landscape) {
/*767px以下縦向き, 575px以下横向き*/
#ticketCenter{}
	#ticketCenter dt{
		font-size: 1.2em;
		}
}
@media (min-width: 768px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px以上,*/
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 576px) and (max-width: 767px) and (orientation:landscape) {
/*576px～767px横向き, 768px～991px*/
}


/* for tablet */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1199px) {
/*768px～1199px*/
}
@media (min-width: 768px) and (max-width: 991px) {
/*768px～991px*/
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#ticketCenter{}
	#ticketCenter dl{
		flex-wrap: wrap;
		justify-content: center;
		padding: 1.5em;
		}
	#ticketCenter dt+dd{
		align-self: baseline;
		margin-left: 0.5em;
		}
	#ticketCenter dt+dd+dd{
		width: 100%;
		text-align: center;
		}
}
@media (min-width: 992px) and (max-width: 1199px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
}


/* ie */
@media all and (-ms-high-contrast: none) {
}



