/* ゴシックドゥフォントは以下3行をコピペ */
/* font-family: SicGothicDuex-HDL-E;
font-weight: 400;
font-style: normal; */

/* さつき源代明朝は以下3行をコピペ */
/* font-family: "SatsukiGendaiMincho-M", sans-serif;
font-weight: 300;
font-style: normal; */

/* 縦書き文字は以下2行をコピペ */
/* -ms-writing-mode: tb-rl; */
/* writing-mode: vertical-rl; */

main{
    font-family: "SatsukiGendaiMincho-M", sans-serif;
    font-weight: 300;
    font-style: normal;
}

@media screen and (max-width:767px) {
    /* spの人はここから記述 */
    main {
        background-color: #091E35;
        padding-top: 70px;
    }

    .selecter {
        background-color: #091E35;
        color: #fff;
        text-align: center;
        margin: 10vw;
    }

    .title {
        color:#fff;
        font-size: 6vw;
        margin-bottom: 6vw;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
    }

    .select-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        column-gap: 5vw;
        row-gap: 7vw;
    }

    .select-button {
        background-color: #F4F8E9;
        color: #091E35;
        padding: 1.5vw 0;
        text-align: center;
        border: none; 
        display: block;
        font-size: 3.4vw;
        line-height: 1;
        border-radius: 1vw;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;font-style: normal;
        box-sizing: border-box;
        border: 0.5vw solid #F4F8E9; 
        box-shadow:
        inset 0 0 0 2px #091E35,
        0 2px 0 rgba(0,0,0,.25);
    }

    .select-button:hover{
        background-color:#d7d7d7;
    }
    
    .stage{
        width:100%;
        background-color: #0058a9;
        padding: 5vw;
    }

    .stage p{
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
        color:white;
        font-size:10vw;
        text-shadow:0px 4px 4px #e6217f;
        text-align: center;
        padding-bottom: 9vw;
    }

    .stage-switcher{
        background-color: #0058a9;
    }

    .tab-buttons{
        display: flex;
        justify-content: center; /* ← 横方向の中央揃え */
        align-items: center;      /* ← 縦方向の揃え（高さがある場合） */
        gap:15vw;
        width: 100%; 
    }

    .tab{
        padding:1.5vw 5vw; 
        border:0.7vw solid #f06; 
        background:#fff; 
        cursor:pointer;
        font-family: SicGothicDuex-HDL-E;
        font-size: 4vw;
    }

    .stage-figure img{ 
        display:block; 
        margin: 10vw auto;
        width:80%; 
        height:auto; 
    }

    /* spの人はここまで記述 */
}


@media screen and (min-width:768px) {
    /* pcの人はここから記述 */
    main{
        padding-top:80px;
        background-color: #091E35; /* ← ここを追加または変更 */
    }

    .event-menu-container {
        background-color: #091E35; /* 画像の背景色 */
        padding: 80px 0 100px; /* 上下の余白 */
        margin: 0 auto; /* 中央寄せ */
        text-align: center; /* タイトルとボタンを中央寄せ */
    }

    .event-title {
        color: white; /* 文字色 */
        font-size: 3rem;
        margin-bottom: 70px; /* タイトル下の余白 */
        font-family: SicGothicDuex-HDL-E; /* フォントを指定 */
        font-weight: 400;
        font-style: normal;
    }

    .event-buttons {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 70px 0;
        margin: 0 auto;
        width: 80%;
        justify-items: center;
    }

    .event-button {
        background: #F4F8E9;
        border: none;
        color: black;
        font-size: 2.2vw;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
        border-radius: 0.2vw;
        padding: 0.5vw 0;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 0 0 0.1vw #091E35, 0 0 0 0.5vw #F4F8E9;
        text-align: center;
        width: 20vw;
        max-height: 73px;
        max-width: 500px;
    }

    .event-buttons a:nth-child(5){
        grid-column: 2 / 3;
    }

    .event-button:hover {
        background-color: #d7d7d7; /* ホバー時の色 */
    }

    .stage{
        background-color:#0058A9;
        padding: 5vw 0;
    }

    .stage-title{
        width: 20vw;
        display: block;
        margin: 0 auto;
        padding-bottom: 5vw;
    }

    .timetable{
        margin: 0 5%;
        display: flex;
        justify-content: space-around;
    }

    .day-title{
        width: 100%;
    }

    .day-title h2{
        color: #fff;
        text-align: center;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
        font-size: 4vw;
        padding-bottom: 1vw;
    }

    .day1 img , .day2 img{
        width: 35vw;
    }

    /* pcの人はここまで記述 */
}
