@charset "UTF-8";

/* 共通 */
body{
    background-color: #3D365C;
    color: #ffffff;
    width: 100%;
}
img{
    max-width: 100%;
    display: block;
}

.cont-title{
    padding: 2%;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background-color: #7c4585;
    margin: 3% 0 1%;
}

/* ヘッダー */
.header{
    background-color: #000000;
    color: #ffffff;
    padding: 1%;
}

/* トップメニュー */
    #topmenu{
        display: none;
    }
    .menu{
        width: 100%;
        text-align: center;
        position: fixed;
        top: -100%;
        right: 0;
        z-index: 1200;
        height: fit-content;
        border-radius: 10px;
        padding: 5% 5%;
        background-color:rgba(248,181,88,0.9);
        font-size: 2.5rem;
        font-weight: bold;
        transition: all 0.3s;
    }
    .menu-item{
        list-style: none;
        line-height: 5rem;
    }
    .menubox{
        width: 45px;
        height: 45px;
    }
    .toggle{
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1220;
    }
    .toggle span{
        width: 45px;
        height: 2px;
        background-color: #ffffff;
        display: block;
        transition: all 0.3s;
    }
    .toggle span:nth-of-type(2){
        margin-top: 10px;
    }
    .toggle span:nth-of-type(3){
        margin-top: 10px;
    }
    #topmenu:checked~.toggle span:nth-of-type(1){
        rotate: 45deg;
        margin-top: 10px;
    }
    #topmenu:checked~.toggle span:nth-of-type(2){
        scale: 0;
    }
    #topmenu:checked~.toggle span:nth-of-type(3){
        rotate: -45deg;
        margin-top: -14px;
    }
    #topmenu:checked~nav{
        top: 0px;
    }

    /* トップページ */
    .main-img{
        height: 700px;
        width: 100%;
        object-fit: cover;
    }
    .layer{
        position: relative;
    }
    .layer2{
        font-size: 4rem;
        font-weight: bold;
        writing-mode: vertical-rl;
        text-shadow: 6px 6px 2px black;
        position: absolute;
        top :10%;
        left:15%       
    }
    .layer3{
        text-align: right;
        font-size: 1.5rem;
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 1.5% 3.5%;
        background-color:rgba(0,0,0,0.6);
    }
    .eve{
        font-size: 4rem;
    }
    .date{
        font-size: 1.5rem;
        margin: -0.7%;
    }
    .eveaddress{
        font-size: 1.5rem;
        margin-right: 2%;
    }

    /* アーティスト */
    .day1,.day2{
        margin: 1% auto;
        text-align: center;
        font-weight: bold;
        font-size: 3rem;
    }
    .grid{
        width: 75%;
        text-align: center;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 50% 50% ;
        list-style: none;
    }
    .artist-item{
        display: flex;
        flex-direction: column-reverse;
        margin: auto auto 10%;
    }
    .artist-item img{
        width: 95%;
        aspect-ratio: 6/5;
        object-fit: cover;
        margin: 0 auto; 
    }
    .artist-item h3{
        font-size: 4rem;
        line-height: 3rem;
    }
    .artist-info{
        list-style: none;
        display: flex;
    }
    .artist-info img {
        width: 45px;
        height: 45px;
        margin-top: 15%;
    }
    .artist-name{
        display: flex;
        justify-content: space-around;
    }
    .more{
        margin: 3% 15%;
        font-weight: bold;
        font-size: 2rem;
        text-align: right;
    }
    
    /* タイムテーブル */
    .timetable img{
        display: block;
        width: 70%;
        margin: 0 auto;
    }
    /* アクセス */
    .map{
        margin: 0 auto;
        text-align: center;
    }
    .map iframe{
        width: 80%;
    }
    .address{
        margin: 2%;
        margin-left: 30%;
        text-align: left;
        font-size: 1.5rem;
    }

    /* チケット */
    .ticket-list{
        text-align: center;
        margin: 0 auto 5%;
        width: 80%;
        min-width: 900px;
        border: 2px solid #ffffff;
    }
    .ticket-list th{
        width: 25%;
        border: 1px solid #ffffff;
        height: 80px;
        font-size: clamp(0.875rem, -3.063rem + 7vw, 1.313rem);
        font-weight: bold;
        background-color: #b040ff;
    }
    .ticket-list td{
        border: 1px solid #ffffff;
        height: 120px;
        font-size: 1.5rem;
        background-color: #f0f8ff;
        color: #000000;
        font-weight: bolder;
    }
    .link a:link{
        color: #6600ff;
    } 
    .link a:visited {
        color:#000000;
    }
    .link a:hover{
        color: #ffffff;
    }
    .link a:active{
        color: #ff0000;
    }
    .ex-item{
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
    }
    .exgrid{
        display: grid;
        width: 80%;
        margin: 0 auto;
    }
    .ex-a{
        grid-column:1/2;
        grid-row: 1/3;
    }
    .ex-a img{
        width: 100%;
        max-height: 700px;
        object-fit: cover;
    }    
    .ex-b img,.ex-c img{
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }    


    .ex-b{
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .ex-c{
        grid-column: 2/3;
        grid-row: 2/3;
    }

/* フッター */

    .footer{
        margin: 2% 0 0;
        background-color: #000000;
        text-align: center;
        padding: 3%;
    }


    /* レスポンシブ */


    /* １段階目 */
    @media (max-width: 900px) {

        .main-img{
            height: 80%;
            width: 100%;
            object-fit: cover;
        }
        .layer2{
            font-size: clamp(1.25rem, 0.491rem + 3.79vw, 2.625rem);
            left:8%       
        }
        .layer3{
            text-align: right;
            font-size: 1rem;
            position: absolute;
            bottom: 0;
            right: 0;
            padding: 1.5% 3.5%;
            background-color:rgba(0,0,0,0.6);
        }    
        .eve{
            font-size: 2.5rem;
        }
        .date{
            font-size: 1rem;
        }
        .eveaddress{
            font-size: 1rem;
        }

        .day1,.day2{
            font-size: 1.5rem;
        }
        .grid{
            width: 90%;
        }
        .artist-item h3{
            font-size: 2rem;
        }
        .artist-info img {
            width: 30px;
            height: 30px;
            margin-top: 30%;
        }
        .timetable img{
            width: 90%;    
        }
        .map iframe{
            width: 90%;
            height: 400px;
        }
        .address{
            margin-left: 25%;
            font-size: 1rem;
        }
        .ticket-list{
            min-width: 100%;
        }
        .ticket-list th{
            height: 60px;
        }
        .ticket-list td{
            height: 60px;
        }
        .price td{
            font-size: clamp(0.625rem, 0.418rem + 1.03vw, 1rem);
        }
        .exgrid{
            width: 90%;
        }
        .ex-item{
            font-size: 2rem;
        }
    }

      /* 2段階目 */
    @media (max-width: 500px) {

        .layer2{
            font-size: clamp(1.25rem, 0.491rem + 3.79vw, 2.625rem);
            left:8%       
        }
        .layer3{
            text-align: right;
            position: absolute;
            bottom: 0;
            right: 0;
            width: 65%;
            padding: 1.5% 3.5%;
            background-color:rgba(0,0,0,0.6);
        }    
        .eve{
            font-size: 1.8rem;
        }
        .date{
            font-size: 0.7rem;
        }
        .eveaddress{
            font-size: 0.8rem;
        }

        .day1,.day2{
            font-size: 1.5rem;
        }
        .grid{
            width: 90%;
        }
        .artist-item h3{
            font-size: 2rem;
        }
        .artist-info img {
            width: 30px;
            height: 30px;
            margin-top: 30%;
        }
        .timetable img{
            width: 90%;    
        }
        .map iframe{
            width: 90%;
            height: 400px;
        }
        .address{
            margin-left: 25%;
            font-size: 1rem;
        }
        .ticket-list{
            min-width: 100%;
        }
        .ticket-list th{
            height: 60px;
        }
        .ticket-list td{
            height: 60px;
        }
        .price td{
            font-size: clamp(0.625rem, 0.418rem + 1.03vw, 1rem);
        }
        .exgrid{
            width: 90%;
        }
    }