/* ゴシックドゥフォントは以下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;
    }


    .cafe {
        background-color: #F4F8E9;
    }

    .cafe-head{
        display: flex;
        padding: 6vw 5vw;
    }


    .cafe-head img {
        width: 30vw;
        height: 30vw;
    }

    .cafe-headtext {
        padding: 0 5vw;
    }

    .cafe-headtext h1 {
        text-align: left;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
        font-size: 8vw;
        margin: 0;
        padding-top: 1vw;
    }

    .cafe-headtext h4 {
        text-align: left;
        font-family: SicGothicDuex-HDL-E;
        font-weight: 400;
        font-style: normal;
        font-size: 3vw;
        margin: 0;
    }

    .cafe-headtext p {
        text-align: left;
        font-size: 2.7vw;
        padding-top:6vw ;
    }

    .cafe-menu{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3 , 1fr );
        grid-template-rows: repeat(3 , 1fr);
        column-gap: 6vw;
        row-gap: 6vw;
        padding: 0 4vw 4vw;
    }

    .main-box{
        grid-area: 1 / 1 / 3 / 4;
        width: 100%;
    }

    .subbox1{
        grid-area: 3 / 1 / 4 / 2;
        width: 100%;
        height:100%;
    }
    .subbox2{
        grid-area: 3 / 2 / 4 / 3;
        width: 100%;
        height:100%;
    }

    .menu-box{
        grid-area: 3 / 3 / 4 / 4;
        background-color: #6EC6CD;
        width: 100%;
        height:100%;
        display: flex;
        justify-content: center;
        align-items: center;  
        color: var(--Logo_navy, #091E35);
        text-align: center;
        font-family: "SicGothicDuex-HDL-E";
        font-size: 4vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }


    /* 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; /* ホバー時の色 */
    }

    .cafe-detail {
        background-color: #F4F8E9;
        padding: 5vw 6vw;
    }

    .main-content-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
    }

    .cafe-exp{
        grid-area:1 / 1 / 3 / 4;
        width: 100%;
    }
    .main-image-box{
        grid-area:1 / 4 / 3 / 7;
        width: 100%;
    }
    .box1{
        grid-area:3 / 1 / 4 / 2;
        width: 100%;
    }
    .box2{
        grid-area:3 / 2 / 4 / 3;
        width: 100%;
    }
    .box3{
        grid-area:3 / 3 / 4 / 4;
        width: 100%;
    }
    .box4{
        grid-area:3 / 4 / 4 / 5;
        width: 100%;
    }
    .box5{
        grid-area:3 / 5 / 4 / 6;
        width: 100%;
    }
    .menu-box{
        grid-area:3 / 6 / 4 / 7;
        width: 100%;
    }

    .image-box{
        width: 100%;
        display: flex;
        justify-content: center;

        padding:3vw 0 1vw;
    }

    .cafe-logo{
        width: 12vw;
    }

    .text-area h2 {
        color: #000;
        text-align: center;
        font-family: "SicGothicDuex-HDL-E";
        font-size: 2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .text-area h2 span{
        color: #000;
        text-align: center;
        font-family: "SicGothicDuex-HDL-E";
        font-size: 1vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .text-area p {
        color: #000;
        text-align: center;
        font-family: "SatsukiGendaiMincho-M", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 1vw;
        line-height: normal;
        margin: 2vw auto;
    }

    .menu-box{
        background-color: #6EC6CD;
        display: flex;
        justify-content: center;
        align-items: center;  
        color: var(--Logo_navy, #091E35);
        text-align: center;
        font-family: "SicGothicDuex-HDL-E";
        font-size: 2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        
    }
    /* pcの人はここまで記述 */
}
