

/*---------------------------------------------
  inner
---------------------------------------------*/

#contents .inner {
	width: 100%;
	padding: 44px 16px 100px;
	margin: 0 auto;
}

@media screen and (min-width: 990px) {
	#contents .inner {
		max-width: 1200px;
		padding: 100px 160px;
	}
}


/***** title *****/

#contents .inner h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 40px;
}

#contents .inner h3.border {
	font-size: 24px;
	padding-left: 1em;
	position: relative;
}

#contents .inner h3.border::before {
	content: "";
	position: absolute;
	left: 0;
	width: 7px;
	height: 100%;
	background: -moz-linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
	background: linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
}

#contents .inner h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}


@media screen and (min-width: 990px) {

	#contents .inner h3 {
		font-size: 32px;
	}

	#contents .inner h3.border {
		font-size: 32px;
	}

	#contents .inner h4 {
		font-size: 26px;
		margin-bottom: 40px;
	}
}

/***** coming soon *****/

#contents .cs {
	padding: 150px 0;
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}


@media screen and (min-width: 990px) {

	#contents .cs {
		font-size: 32px;
	}
}


/*---------------------------------------------
  ABOUT
---------------------------------------------*/

#about .about dl {
	margin-bottom: 25px;
}

#about .about dt {
	font-weight: bold;
	margin-bottom: 8px;
}

#about .about dd span {
	font-size: 14px;
	color: var(--text-color-secondary);
}

@media screen and (min-width: 990px) {

	#about .about dl {
		display: flex;
	}

	#about .about dt {
		width: 130px;
		margin-right: 30px;
		margin-bottom: 0;
	}

	#about .about dd {
		flex: 1;
	}

	#about .about dd span {
		font-size: 16px;
	}

}



/*---------------------------------------------
  GUIDELINE
---------------------------------------------*/

#guideline .lead {
	margin-bottom: 38px;
}

#guideline .attention {
	margin-bottom: 42px;
	padding: 42px 38px;
	background: #F8F8F8;
	border-radius: 10px;
}

#guideline .guide-box {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: solid 1px #E6E6E6;
}

#guideline .guide-box:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

#guideline .guide-box dl {
	margin-bottom: 40px;
}

#guideline .guide-box dl:last-child {
	margin-bottom: 0px;
}

#guideline .guide-box dt {
	font-weight: bold;
}

@media screen and (min-width: 990px) {

	#guideline .lead {
		margin-bottom: 60px;
	}

	#guideline .attention {
		margin-bottom: 80px;
		padding: 60px;
		border-radius: 20px;
	}

	#guideline .guide-box {
		border-bottom: solid 1px #E6E6E6;
	}

	#guideline .guide-box dl {
		margin-bottom: 50px;
	}

}



/*---------------------------------------------
  NEWS
---------------------------------------------*/

/*-----------------------
  ARTICLE LIST
-----------------------*/

#article-list li {
	margin-bottom: 36px;
	background: #fff;
	box-shadow: 1px 1px 20px rgb(147,147,147,.16);
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	z-index: 1;
}

#article-list li:hover {
	box-shadow: 1px 3px 30px rgb(147,147,147,.16);
	transform: translateY(-5px);
}

#article-list li a {
	display: block;
}

#article-list li a:hover {
	opacity: 1;
}

#article-list li .thum {
	width: 100%;
	padding-top: 50%;
	overflow: hidden;
	position: relative;
}

#article-list li .thum img {
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}


#article-list li .post-info {
	padding: 30px;
}

#article-list li .post-info .date {
	font-family: var(--font-en);
	font-size: 14px;
	color: #B2B2B2;
	margin-bottom: 8px;
}



@media screen and (min-width: 990px) {

	#article-list li {
		margin-bottom: 40px;
		border-radius: 20px;
	}


	#article-list li .post-info {
		padding: 40px 50px;
	}

	#article-list li .post-info .date {
		font-size: 16px;
		margin-bottom: 18px;
	}

}

/*-----------------------
  ARTICLE DETAIL
-----------------------*/

#article-detail img {
	border-radius: 20px;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	display: block;
	pointer-events:auto;
    -webkit-touch-callout: default;
    -webkit-user-select: default;
    -moz-touch-callout: default;
    -moz-user-select: default;
    touch-callout: default;
    user-select: unset;
}

#article-detail .thum {
	margin-bottom: 60px;
}

#article-detail .post-info {
	padding-bottom: 30px;
	margin-bottom: 60px;
	border-bottom: solid 1px #E6E6E6;
}

#article-detail .post-info .date {
	margin-bottom: 30px;
	font-family: var(--font-accent);
	font-size: 14px;
	font-weight: 600;
	color: #939393;
}

#article-detail .post-info .title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}


#article-detail .post-contents {
	font-size: 16px;
}


@media screen and (min-width: 990px) {

	#article-detail .post-info .title {
		font-size: 32px;
	}

	#article-detail .post-info {
		padding-bottom: 60px;
		margin-bottom: 90px;
	}

}

/***** content option *****/

#article-detail .post-contents h1 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-left: 1em;
	position: relative;
	line-height: 1.5;
}

#article-detail .post-contents h1::before {
	content: "";
	position: absolute;
	left: 0;
	width: 7px;
	height: 100%;
	background: -moz-linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
	background: linear-gradient(180deg, rgba(255,18,109,1) 0%, rgba(141,220,255,1) 100%);
}

#article-detail .post-contents h2 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}

#article-detail .post-contents a {
	color: var(--color-accent);
	text-decoration: underline;
}

#article-detail .post-contents .caption {
	color: var(--text-color-secondary);
}


@media screen and (min-width: 990px) {

	#article-detail .post-contents h1 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	#article-detail .post-contents h2 {
		font-size: 26px;
		margin-bottom: 40px;
	}

}



/*---------------------------------------------
  ACCESS
---------------------------------------------*/

#access .access-box {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: solid 1px #E6E6E6;
}

#access .access-box:last-child {
	border-bottom: none;
}

#access .access-box .google-map {
	margin-bottom: 32px;
}

#access .access-box .google-map iframe {
	height: 300px;
}

#access .access-box .link {
	text-decoration: underline;
	padding-right: 1.5em;
	margin-top: 1.5em;
	line-height: 1;
	background: url("../images/access/link-arrow.svg") no-repeat right center;
	display: inline-block;
}

#access .flow .flow-image {
	margin-bottom: 32px;
}

#access .flow .flow-image li {
	margin:  0 auto 80px;
	max-width: 400px;
}

#access .flow .flow-image li:last-child {
	margin-bottom: 0;
}

#access .flow p a {
	color: var(--color-accent);
	text-decoration: underline;
}

#access .flow .attention {
	color: var(--text-color-secondary);
	font-size: 14px;
	margin-top: 1.5em;
}



@media screen and (min-width: 990px) {
	#access .access-box {
		padding-bottom: 62px;
		margin-bottom: 62px;
	}
	
	#access .access-box p {
		font-size: 16px;
	}

	#access .access-box .google-map iframe {
		height: 460px;
	}

	#access .flow .flow-image {
		margin-bottom: 100px;
		display: flex;
	}

	#access .flow .attention {
		font-size: 16px;
	}
}



/*---------------------------------------------
  ARTISTS
---------------------------------------------*/

/***** day list *****/

#artists-list .day-list {
	display: flex;
	margin: 0 -1% 24px;
}

#artists-list .day-list li {
	width: 23%;
	margin: 0 1%;
	padding: 8px 0;
	text-align: center;
	cursor: pointer;
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	border-radius: 3rem;
	line-height: 1;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

#artists-list .day-list li:hover {
	opacity: 0.8;
}

#artists-list .day-list li#day-all {
	background: -moz-linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
	background: -webkit-linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
	background: linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
}
#artists-list .day-list li#day-716 {
	background: -moz-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
}
#artists-list .day-list li#day-717 {
	background: -moz-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
}
#artists-list .day-list li#day-718 {
	background: -moz-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
}

#artists-list .day-list li#day-all.not-select,
#artists-list .day-list li#day-716.not-select,
#artists-list .day-list li#day-717.not-select,
#artists-list .day-list li#day-718.not-select {
	background: #E5E5E5;
}


@media screen and (min-width: 770px) {

	#artists-list .day-list {
		margin: 0 -1% 64px;
	}

	#artists-list .day-list li {
		padding: 21px 0;
		font-size: 22px;
		border-radius: 14px;
	}

}


/***** artists list *****/

#artists-list .artists-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2%;
}

#artists-list .artists-list li {
	width: 46%;
	margin: 0 2% 4%;
	background: #fff;
	box-shadow: 1px 1px 20px rgb(147,147,147,.16);
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	z-index: 1;
}

#artists-list .artists-list li:hover {
	box-shadow: 1px 3px 30px rgb(147,147,147,.16);
	transform: translateY(-5px);
}

#artists-list .artists-list li a {
	display: block;
}

#artists-list .artists-list li a:hover {
	opacity: 1;
}

#artists-list .artists-list li .thum {
	width: 100%;
	padding-top: 58%;
	overflow: hidden;
	position: relative;
}

#artists-list .artists-list li .thum img {
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}

#artists-list .artists-list li .artist {
	padding: 16px;
	line-height: 1.5;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
}

#artists-list .artists-list li .day {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

#artists-list .artists-list li .day span {
	margin: 0 2.5px;
	padding: 8px 1em;
	border-radius: 3rem;
	display: inline-block;
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	line-height: 1;
}

#artists-list .artists-list li .day span.day716 {
	background: -moz-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
}
#artists-list .artists-list li .day span.day717 {
	background: -moz-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
}
#artists-list .artists-list li .day span.day718 {
	background: -moz-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
}


@media screen and (min-width: 990px) {

	#artists-list .artists-list {
		margin: 0 -1.5%;
	}

	#artists-list .artists-list li {
		width: 30.3%;
		margin: 0 1.5% 3%;
		border-radius: 20px;
	}

	#artists-list .artists-list li .artist {
		font-size: 14px;
	}

	#artists-list .artists-list li .day span {
		margin: 0 4px;
		padding: 10px 1.5em;
		font-size: 14px;
	}

}



/*---------------------------------------------
  TIMETABLE
---------------------------------------------*/

/***** day list *****/

#tt-list .day-list {
	display: flex;
	margin: 0 -1% 24px;
}

#tt-list .day-list li {
	width: 23%;
	margin: 0 1%;
	padding: 8px 0;
	text-align: center;
	cursor: pointer;
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	border-radius: 3rem;
	line-height: 1;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

#tt-list .day-list li:hover {
	opacity: 0.8;
}

#tt-list .day-list li#day-all {
	background: -moz-linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
	background: -webkit-linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
	background: linear-gradient(56deg, rgba(144,215,251,1) 10%, rgba(245,35,121,1) 90%);
}
#tt-list .day-list li#day-716 {
	background: -moz-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
}
#tt-list .day-list li#day-717 {
	background: -moz-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
}
#tt-list .day-list li#day-718 {
	background: -moz-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
}

#tt-list .day-list li#day-all.not-select,
#tt-list .day-list li#day-716.not-select,
#tt-list .day-list li#day-717.not-select,
#tt-list .day-list li#day-718.not-select {
	background: #E5E5E5;
}


@media screen and (min-width: 770px) {

	#tt-list .day-list {
		margin: 0 -1% 64px;
	}

	#tt-list .day-list li {
		padding: 21px 0;
		font-size: 22px;
		border-radius: 14px;
	}

}


/***** tt list *****/

#tt-list .tt-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2%;
}

#tt-list .tt-list li {

	margin: 0 2% 4%;
	background: #fff;
	box-shadow: 1px 1px 20px rgb(147,147,147,.16);
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	position: relative;
	z-index: 1;
}

#tt-list .tt-list li:hover {
	box-shadow: 1px 3px 30px rgb(147,147,147,.16);
	transform: translateY(-5px);
}

#tt-list .tt-list li a {
	display: block;
}

#tt-list .tt-list li a:hover {
	opacity: 1;
}

#tt-list .tt-list li .thum {
	width: 100%;
	padding-top: 58%;
	overflow: hidden;
	position: relative;
}

#tt-list .tt-list li .thum img {
	width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}

#tt-list .tt-list li .artist {
	padding: 16px;
	line-height: 1.5;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
}

#tt-list .tt-list li .day {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

#tt-list .tt-list li .day span {
	margin: 0 2.5px;
	padding: 8px 1em;
	border-radius: 3rem;
	display: inline-block;
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	line-height: 1;
}

#tt-list .tt-list li .day span.day716 {
	background: -moz-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
	background: linear-gradient(56deg, rgba(109,191,228,1) 0%, rgba(149,218,248,1) 100%);
}
#tt-list .tt-list li .day span.day717 {
	background: -moz-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
	background: linear-gradient(56deg, rgba(175,101,216,1) 0%, rgba(186,126,218,1) 100%);
}
#tt-list .tt-list li .day span.day718 {
	background: -moz-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: -webkit-linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
	background: linear-gradient(56deg, rgba(219,93,161,1) 0%, rgba(231,135,187,1) 100%);
}


@media screen and (min-width: 990px) {

	#tt-list .tt-list {
		margin: 0 -1.5%;
	}

	#tt-list .tt-list li {

		margin: 0 1.5% 3%;
		border-radius: 20px;
	}

	#tt-list .tt-list li .artist {
		font-size: 14px;
	}

	#tt-list .tt-list li .day span {
		margin: 0 4px;
		padding: 10px 1.5em;
		font-size: 14px;
	}

}


/*---------------------------------------------
  TICKET
---------------------------------------------*/

#ticket .ticket-menu {
	margin-bottom: 40px;
}

#ticket .ticket-menu li{
	margin-bottom: 16px;
}

#ticket .ticket-menu li a {
	display: inline-block;
	text-decoration: underline;
	position: relative;
	padding-right: 2em;
}

#ticket .ticket-menu li a::after {
	content: url("../images/ticket/menu-arrow.svg");
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#ticket .ticke-box {
	padding: 50px 0;
	border-bottom: solid 1px #E6E6E6;
}

#ticket .ticke-box:last-child {
	border-bottom: none;
}

#ticket ul.attention {
	margin-top: 16px;
	font-size: 14px;
	color: var(--text-color-secondary);
}



@media screen and (min-width: 770px) {

	#ticket .ticket-menu li {
		font-size: 16px;
		margin: 0 30px 0 0;
		display: inline-block;
	}

	#ticket .ticket-menu li a {
		padding-right: 1.5em;
	}

	#ticket .ticke-box {
		padding: 80px 0;
	}

	#ticket ul.attention {
		font-size: 16px;
	}
}


/***** ticket type *****/

#ticket .ticket-type dl {
	margin-bottom: 26px;
	padding: 30px;
	border-radius: 10px;
}

#ticket .ticket-type dt {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 16px;
}

#ticket .ticket-type dd .price {
	padding: 6px;
	margin-top: 16px;
	background: #fff;
	border-radius: 3rem;
	text-align: center;
}

#ticket .ticket-type dl.ticket-1 { background:rgba(209,138,255,.2); }
#ticket .ticket-type dl.ticket-2 { background:rgba(255,18,109,.1); }
#ticket .ticket-type dl.ticket-3 { background:rgba(141,220,255,.2); }

#ticket .ticket-type dl.ticket-1 dt { color: #B94DFF; }
#ticket .ticket-type dl.ticket-2 dt { color: #FF126D; }
#ticket .ticket-type dl.ticket-3 dt { color: #3EC4FF; }


@media screen and (min-width: 990px) {

	#ticket .ticket-type dl {
		margin-bottom: 40px;
		padding: 50px;
		border-radius: 20px;
	}

	#ticket .ticket-type dt {
		font-size: 32px;
	}

	#ticket .ticket-type dd .price {
		padding: 6px 2em;
		text-align: left;
	}
}


/***** schedule *****/

#ticket .schedule dl {
	margin-bottom: 16px;
}

#ticket .schedule dl:last-child {
	margin-bottom: 0;
}

#ticket .schedule dt {
	font-weight: bold;
}


@media screen and (min-width: 990px) {

	#ticket .schedule dl {
		margin-bottom: 16px;
		display: flex;
	}

	#ticket .schedule dl:last-child {
		margin-bottom: 0;
	}

	#ticket .schedule dt {
		width: 250px;
	}

	#ticket .schedule dd {
		flex: 1;
	}

	#ticket ul.attention.ticket-attention {
		margin-top: 60px;
	}
}


/***** flow *****/

#ticket .flow p {
	margin-bottom: 40px;
}

#ticket .flow dl {
	margin-bottom: 40px;
	overflow: hidden;
	clear: both;
}

#ticket .flow dt {
	width: 5%;
	float: left;
}

#ticket .flow dd {
	width: 90%;
	margin-left: 5%;
	float: right;
}

#ticket .flow dd.title {
	font-weight: bold;
}

#ticket .flow dd.image {
	margin: 1em 0 0;
}

#ticket .flow dd.image img {
	width: auto;
	max-width: 100%;
}

#ticket .flow dd.image.video {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
}

#ticket .flow dd.image.video iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ticket .flow dd ul.app-dl {
	margin-top: 30px;
}

#ticket .flow dd ul.app-dl li {
	margin-bottom: 1em;
	display: flex;
}

#ticket .flow dd ul.app-dl img {
	width: auto;
	max-width: 100%;
}

#ticket .flow dd ul.app-dl .dl-btn p {
	font-weight: bold;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.5;
}

#ticket .flow dd ul.app-dl .dl-btn a {
	display: block;
}

#ticket .flow dd ul.app-dl .dl-btn a img {
	height: 54px;
}

#ticket .flow dd ul.app-dl .qr {
	width: 80px;
	line-height: 1;
}


@media screen and (max-width: 989px) {

	#ticket .flow dd.image {
		width: 100%;
	}

	#ticket .flow dd ul.app-dl .qr {
		display: none;
	}
}

@media screen and (min-width: 990px) {

	#ticket .flow dd {
		width: 94%;
		margin-left: 0;
		float: right;
	}

	#ticket .flow dd ul.app-dl {
		display: flex;
	}

	#ticket .flow dd ul.app-dl li {
		margin-right: 60px;
		align-items: center;
	}

	#ticket .flow dd ul.app-dl .dl-btn {
		margin-right: 1em;
	}
}

/***** contact *****/

#ticket .contact dt {
	font-weight: bold;
}

#ticket .contact dd a {
	text-decoration: underline;
}





