@charset "utf-8";

body {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    font-family: "YuGothic", "Yu Gothic Medium", sans-serif;
    color: #ffffff;
    font-size: 16px;
}

body img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

body::before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 150vh;
    background: url('../image/background.png') center no-repeat;
    background-size: cover;
}

.top {
    padding: 60px 16px 24px 16px;
}

.title__image_sub {
    width: 60%;
}

.top__sub {
    padding: 20px 16px;
}

.place {
    width: 80%;
}

.artist__list {
    display: flex;
    justify-content: space-between;
    margin: 0 0 16px 0;
}

.artist__list li {
    width: 32%;
    text-align: center;
    background: #00000094;
}

.artist__image {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: contain;
}

.artist__name {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

.text_sub {
    font-size: 10px;
    color: #fff;
    font-weight: bold;
}

/*  accordion  */
.accordion {
    padding: 24px 16px 40px 16px;
}

.artist__list_btn {
	position: relative;
	width: 200px;
	line-height: 40px;
	margin: 0 auto;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, #131313 100%);
	color: #fff;
    letter-spacing: 0.1em;
	text-align: center;
    border: 1px solid #fff;
    cursor: pointer;
}

.event__detail {
    text-align: center;
    margin: 20px 20px 40px 20px;
    background: #00000094;
    padding: 30px 16px;
}

.event__detail h2 {
    margin: 0 0 24px 0;
}

.detail__text {
    padding: 0 0 30px 0;
    display: block;
}

.detail__text a {
    font-size: 13px;
    color: #fff;
    text-decoration:underline;
}

table {
    width: 90%;
    margin: 0 auto;
}

table tr th{
display: block;
/* width: 20%; */
line-height: 30px;
}

table tr td {
    display: block;
    /* width: 80%; */
    /* vertical-align: middle; */
}


.event__time {
    margin: 20px;
    background: #00000094;
    padding: 30px 12px 20px 12px;
}

.time__date {
    width: 30%;
    min-width:120px;
    margin: 0 auto 20px auto;
}





.event__artist {
    text-align: center;
}

.event__artist_inner {
    margin: 20px;
    background: #00000094;
    padding: 30px 16px;
    clip-path: polygon(0 2em, 2em 0, 100% 0, 100% calc(100% - 2em), calc(100% - 2em) 100%, 0 100%);
}

.event__artist_title {
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 16px 0;
}

.event__artist_name {
    max-width: 450px;
    margin: 0 auto;
}

.address {
    font-size: 13px;
}

footer {
    text-align: center;
    position: relative;
    padding: 24px 0 94px 0;
}

.copyright {
    font-size: 13px;
}

.copyright a {
    color: #fff;
}

.cta {
    position: fixed;
    bottom: 16px;
    left: 0;
    width: 100%;
    padding: 0 16px;
    text-align: center;
}

.shiny-btn {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #384878;
    overflow: hidden;
}

.cta__link {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    line-height: 60px;
    background: #eed049;
    /* background: linear-gradient(#eed049, #000000); */
    /* border: 2px solid #000000; */
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.68);
    overflow: hidden;
}

@keyframes shiny {
    0% {
        transform: scale(0) rotate(120deg);
        opacity: 0;
    }
    
    80% {
        transform: scale(1) rotate(120deg);
        opacity: 1;
    }
    
    100% {
        transform: scale(50) rotate(120deg);
        opacity: 0;
    }
}

.cta__link::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -50%;
    width: 20%;
    height: 50%;
    background: linear-gradient(to right, rgba(255, 255, 255, 9) 0%, rgba(255, 255, 255, 0.0) 100%);
    transform: skewX(125deg);
    animation: shiny 3s ease-in-out infinite;
}

/*******************/
.ticket__icon {
    display: inline-block;
    width: 20px;
    margin: 0 0 -2px 2px;
}