@charset "UTF-8";
/*固定関係*/
 .ikn{
        position: fixed;
        top:1vh;
        left: 60vw;
        z-index: 10;
        opacity: 1 ;
    }

 
    .menui{
        height: 10vh;
        width: 10vh;
        opacity: 1;
    }
    .menut{
        height: 3vh;
        width: 10vh;
        opacity: 1;
    }

    


    .menumove{
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 3vh;
        right: 3vh;
        z-index: 15;
        background-color: rgb(255, 255, 255);
        border-radius: 10%;
        cursor: pointer;
        pointer-events: auto;
        opacity: 1;
    }
    .ideamove{
         position: fixed;
        display: flex;
        flex-direction: column;
        top: 3vh;
        right: 3vh;
        z-index: 9;
        background-color: white;
        border-radius: 10%;
        opacity: 0;
    }
    .mapmove{
      position: fixed;
        display: flex;
        flex-direction: column;
        top: 3vh;
        right: 3vh;
        z-index: 9;
        background-color: white;
        border-radius: 10%;
        opacity: 0;
    }
    .homemove{
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 3vh;
        right: 3vh;
        z-index: 9;
        background-color: white;
        border-radius: 10%;
        opacity: 0;
    }
    /*固定関係ここまで*/

body{
    font-family: serif;
}

.grandMap{
    position: absolute;
    width: 90vw;
    left: 50vw;
    transform: translateX(-50%);
    top: 20vw;
}

.DrOnodera{
    position: absolute;
    z-index: 9998;
    width: 10vw;
    height: auto;
    left: 56vw;
    top: 45vw;

    transform: translate(-50% ,-50%);
}

.OnoderaTalk{
    position: fixed;
    z-index: 9999;
    display: grid;
    grid-template-rows: repeat(10,1fr);
    height: 70vw;
    width: 40vw;
    background-color: beige;
    left: -40vw;
    text-align: center;
}

.img{
    grid-row: 1/7;
    width: 100%;
}

.name{
    grid-row: 7;
}
.place{
    grid-row: 8;
}

.time{
    grid-row: 9;
}

.detail{
    grid-row: 10;
}

@media(max-width : 800px){
    .OnoderaTalk{
        grid-template-rows: repeat(4,1fr);
        grid-template-columns: repeat(2,1fr);
        height: 50vh;
        width: 100vw;
        left: 0;
        bottom: -50vh;
    }
    .img{
        grid-row: 1/5;
        grid-column: 1;
    }
    .name{
        grid-row: 1;
        grid-column: 2;
    }
    .place{
        grid-row: 2;
        grid-column: 2;
    }
    .time{
        grid-row: 3;
        grid-column: 2;
    }
    .detail{
        grid-row: 5;
        grid-column: 2;
    }
}

.title{
    font-size: 100px;
}

.title{
    font-size: 60px;
    font-family: serif;
    position: relative;
    display: inline-block;
    padding-bottom: 4px; /* 下の線の位置確保 */
}

.title::before,.title::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.title::before{
    bottom: 20px;
    height: 4px;
    background-color: black;
}
.title::after{
    bottom: 16px;
    height: 2px;
    background-color: rgb(0, 0, 0);
}




.shortcatTab{
    position: fixed;
    right: -15vw;
    top: 0;
    display: grid;
    width:9vw ;
    margin-right: 1vw;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(6,1fr);
    height: 100vh;
    z-index: 10;
}

.shortcutB{
    position: fixed;
    right:-15vw;
    top: 0;
    display: grid;
    width:9vw ;
    margin-right: 1vw;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(6,1fr);
    height: 100vh;
    z-index: 9;
}

.homeB,.mapB,.serchB,.planB,.itemsB,.questionB{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(186, 120, 120,0);
    box-shadow: 4px 0 0 0 rgb(253, 255, 208);
    border-radius: 50%;
    color: #ffffff;
    
    width: min(10vw,10vh);
    height: min(10vw,10vh);
    transition:transform 0.5s;
}

.homeB{
    grid-column: 1;
    grid-row: 1;
}

.mapB{
    grid-column: 2;
    grid-row: 2;
}
.serchB{
    grid-column: 1;
    grid-row: 3;
}
.planB{
    grid-column: 2;
    grid-row: 4;
}

.itemsB{
    grid-column: 1;
    grid-row: 5;
}

.questionB{
    grid-column: 2;
    grid-row: 6;
}

.home,.map,.serch,.plan,.items,.question{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 192, 192);
    border-radius: 50%;
    color: #ffffff;
    font-family: serif;
    width: min(10vw,10vh) ;
    height: min(10vw,10vh);
    transition: background 0.3s ease , color 0.3s ease;
    text-decoration: none;
}

.home{
    grid-column: 1;
    grid-row: 1;
}

.map{
    grid-column: 2;
    grid-row: 2;
    text-decoration: none;
}
.serch{
    grid-column: 1;
    grid-row: 3;
}
.plan{
    grid-column: 2;
    grid-row: 4;
}

.items{
    grid-column: 1;
    grid-row: 5;
}

.question{
    grid-column: 2;
    grid-row: 6;
}