@charset 'utf-8';
@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');
/*==============
    common
===============*/
:root {
    /* color */
    --black: #1a1a1a;
    --color1: #aa2f1f;
    --color2: #e4c806;
    /* font */
    --en: "Cal Sans", sans-serif;
    --jp: 'Noto Sans JP', sans-serif;
}
::selection {
    background: var(--color2);
    color: var(--black);
}
::-moz-selection {
    background: var(--color2);
    color: var(--black);
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
}
a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s all;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body {
    font-size: 1.6rem;
    font-family: var(--jp);
    font-weight: 600;
    color: var(--black);
    animation: fadeIn 3s forwards;
    position: relative;
}
.bg::after {
    content: "";
    background-image: url(../../img/special/live-beat-blast-z/bg.jpg);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 40%);
    opacity: 0.8;
    z-index: 0;
}
.bg2 {
    --angle: -3deg;
    padding: clamp(150px, calc(150px + 150 * ((100vw - 320px) / 1120)), 300px) 0;
    position: relative;
    background-image: url(../../img/special/live-beat-blast-z/bg-blue.jpg);
    background-blend-mode: multiply;
    background-size: cover;
    clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
    overflow: hidden;
}

.bg2::before {
    content: "";
    background: url(../../img/special/live-beat-blast-z/tape.jpg?2) repeat-x center;
    background-size: cover;
    width: 120%;
    height: clamp(50px, calc(50px + 30 * ((100vw - 320px) / 1120)), 80px); 
    position: absolute;
    top: 5.5vw;
    left: -10%;
    transform-origin: top left;
    transform: rotate(var(--angle)); 
}

.bg2::after {
    content: "";
    background: url(../../img/special/live-beat-blast-z/tape.jpg?2) repeat-x center;
    background-size: cover;
    width: 120%;
    height: clamp(50px, calc(50px + 30 * ((100vw - 320px) / 1120)), 80px); 
    position: absolute;
    bottom: -0.8vw;
    left: -10%;
    transform-origin: top left;
    transform: rotate(var(--angle)); 
}
.wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.wrap.in {
    padding: 0 32px;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
/* anime */
.anime {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform, filter;
}
.anime-on {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
h2 {
    width: clamp(80px, calc(80px + 52 * ((100vw - 320px) / 1120)), 132px);
    position: fixed;
    left: 30px;
    top: 56px;
    z-index: 1;
}
@media screen and (max-width: 1200px) {
    .wrap {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem;
    }
    h2 {
        left: 10px;
        top: 10px;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .red-bg {
        padding: 40px 0;
    }
    .red-bg::before,
    .red-bg::after {
        height: 40px;
        background-size: cover;
    }
    .wrap.in {
        padding: 0;
    }
}
/*==============
    main-visual
===============*/
#main-visual {
    position: relative;
}
#main-visual .link {
    position: absolute;
    top: 2.78vw;
    right: 2.78vw;
    width: 19.1%;
    max-width: 275px;
    transition: 0.3s all;
    transform: rotate(5deg);
}
#main-visual .link:hover {
    opacity: 0.8;
}
#main-visual h1 {
    width: 100%;
    max-width: clamp(300px, calc(300px + 820 * ((100vw - 320px) / 1120)), 1120px);
    margin: 0 auto;
}
#main-visual .inner {
    position: relative;
    padding: 40px 0 clamp(50px, calc(50px + 100 * ((100vw - 320px) / 1120)), 150px);
}
#main-visual .inner .ttl {
    width: 66.39%;
    max-width: 1200x;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
#main-visual .inner .ttl img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    #main-visual .inner .ttl{
        width: 90%;
    }
    #main-visual .link{
        max-width: initial;
        width: 30%;
        top: 10px;
    }
}
/*==============
    lead
===============*/
#lead {
    padding: clamp(30px, calc(30px + 90 * ((100vw - 320px) / 1120)), 120px) 0 clamp(50px, calc(50px + 50 * ((100vw - 320px) / 1120)), 100px);
}
#lead p {
    font-size: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    text-align: center;
    line-height: 1.8;
    color: #fff;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    #lead p {
        text-align: left;
        line-height: 1.5;
    }
}
/*==============
    news
===============*/
#news h3 {
    width: clamp(160px, calc(160px + 93 * ((100vw - 320px) / 1120)), 253px);
    margin-bottom: 10px;
}
#news .list li {
    margin-bottom: 10px;
}
#news .list li:last-child {
    margin-bottom: 0;
}
#news .list li a {
    display: flex;
    gap: 24px;
    color: var(--black);
    background: #fff;
    padding: 24px;
    border-radius: 5px;
}
#news .list li a:hover {
    opacity: 0.8;
}
#news .list li a .day {
    font-family: var(--en);
    font-size: 1.8rem;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    #news .list li a {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px 24px;
    }
}
/*==============
    schedule
===============*/
#schedule {
    padding-top: clamp(80px, calc(80px + 20 * ((100vw - 320px) / 1120)), 100px);
}
#schedule h3 {
    width: clamp(270px, calc(270px + 180 * ((100vw - 320px) / 1120)), 450px);
    margin-bottom: 10px;
}
/* accordion */
.accordion-item {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #eaeaea;
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid #ddd;
}
.accordion-content-wrap{
    padding: 24px;    
}
.accordion-header {
    padding: 24px 24px 16px 24px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
.accordion-header .date{
    font-family: var(--en);
    font-size: clamp(32px, calc(32px + 8 * ((100vw - 320px) / 1120)), 40px);
    line-height: 0.6;
    color: var(--black);
}
.accordion-header .date small{
    font-size: clamp(12px, calc(12px + 6 * ((100vw - 320px) / 1120)), 18px);
}
.accordion-header .location{
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    font-family: var(--jp);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
}
.accordion-header .location span{
    font-size: clamp(24px, calc(24px + 8 * ((100vw - 320px) / 1120)), 32px);
    font-family: var(--en);
    color: var(--color1);
    margin-right: 16px;
    font-weight: 500;
}
.icon {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 24px;
}
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}
.icon::before {
    width: 15px;
    height: 2px;
}
.icon::after {
    width: 2px;
    height: 15px;
}
.accordion-item.is-open .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.accordion-content-wrap dl{
    display: flex;
    flex-wrap: wrap;
}
.accordion-content-wrap dl dt{
    width: 15%;
    font-size: 1.4rem;
}
.accordion-content-wrap dl dd{
    width: 75%;
    font-size: 1.4rem;
}
.accordion-content-wrap dl dd a{
    color: var(--color1);
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .accordion-header .date{
        width: 15%;
    }
    .accordion-header .location{
        width: 65%;
    }
    .accordion-content-wrap dl{
        display: block;
    }
    .accordion-content-wrap dl dt,
    .accordion-content-wrap dl dd{
        width: 100%;
    }
    .accordion-content-wrap dl dd{
        margin-bottom: 10px;
    }
    .accordion-content-wrap dl dd:last-child{
        margin-bottom: 0;
    }
    .accordion-header .date small{
        display: inline-block;
        line-height: 1.2;
        margin-top: 8px;
    }
}
/*==============
    ticket
===============*/
#ticket{
    padding-top: clamp(56px, calc(56px + 44 * ((100vw - 320px) / 1120)), 100px);
}
#ticket h3{
    width: clamp(196px, calc(196px + 100 * ((100vw - 320px) / 1120)), 296px);
    margin-bottom: 10px;
}
#ticket .box{
    background: #fff;
    border-radius: 5px;
    padding: 40px 24px;
}
#ticket .box P{
    display: flex;
    align-items: center;
}
#ticket .box .tag{
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    padding: 3px 10px 5px;
    border: 1px solid;
    background: var(--black);
    color: #fff;
    margin-right: 10px;
}
#ticket .box .price{
    font-family: var(--en);
    font-size: 4rem;
    font-weight: 500;
    margin-right: 8px;
}
#ticket .schedule{
    padding-top: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    margin-top: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    border-top: 1px solid;
}
#ticket .schedule ul li{
    text-indent: -1rem;
    padding-left: 1rem;
    display: block;
    margin-bottom: 10px;
}
#ticket .schedule ul li:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    #ticket .box P{
        display: block;
    }
    #ticket .box .tag{
        margin-right: 0;
        display: inline-block;
    }
}
/*==============
    goods
===============*/
#goods{
    padding-top: clamp(56px, calc(56px + 44 * ((100vw - 320px) / 1120)), 100px);    
}
#goods h3{
    width: clamp(207px, calc(207px + 100 * ((100vw - 320px) / 1120)), 307px);
    margin-bottom: 10px;
}
#goods .box{
    background: #fff;
    border-radius: 5px;
    padding: 40px 24px;
}
#goods .box p{
    font-family: var(--en);
    text-align: center;
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 1120)), 40px);
    font-weight: 500;
    color: #ccc;
}
/*==============
    end
===============*/
#end{
    height: 100vh;
    position: relative;
}
#end .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#end .inner .visual img{
    max-height: 90vh;
}
#end .inner .ttl{
    position: absolute;
    bottom: 40px;   
}
@media screen and (max-width: 768px) {
    #end .inner{
        width: 90%;
        padding-bottom: 50px;
    }
    #end .inner .ttl{
        bottom: 0; 
    }
}
/*==============
    footer
===============*/
footer {
    position: relative;
    z-index: 1;
    background: var(--color2);
    padding: clamp(10px, calc(10px + 6 * ((100vw - 320px) / 1120)), 16px);
}
footer p {
    font-size: 10px;
    color: var(--black);
    text-align: center;
}