/*メイントップ*/
/*メイントップ共通*/
.main-top-p-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
    height: 100%;
    display: flex;
    justify-content: center;
}

/*メイントップ（おどり部分）設定*/
.main-top-odori img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 3s ease;
}

.main-top-odori .active {
    opacity: 1;
}

.main-top-odori {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9の比率（9 ÷ 16 = 0.5625） */
    overflow: hidden;
}

.main-top-odori h1 {
    color: #ffffff;
    font-size: 5vw;
    letter-spacing: 5px;
    font-weight: bold;
}

/*メイントップ（概要部分）設定*/
.main-top-summary img {
    width: 100%;
}

.main-top-summary {
    position: relative;
}

.main-top-summary p {
    color: #8C7400;
    font-size: 3vw;
    line-height: 2;
    letter-spacing: 5px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .main-top-odori h1 {
        font-size: 4vw;
    }

    .main-top-summary p {
        font-size: 2vw;
    }
}


/*メニュー・店舗情報*/
.row img {
    padding: 0;
}

.takeOut-info,
.eatIn-info,
.shop-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px;
}

.info-content {
    width: 90%;
}

.info-content h1 {
    border-bottom: solid black 1px;
    padding: 15px 0px;
    font-size: 5.5vw;
}

.info-content h2 {
    font-size: 3.5vw;
    line-height: 3;
}

.info-content a {
    background-color: #999999;
    color: #8C7400;
    font-size: 3.5vw;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.info-content a:hover {
    background-color: #8C7400;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .info-content h1 {
        font-size: 3vw;
    }

    .info-content h2 {
        font-size: 2vw;
    }

    .info-content a {
        font-size: 2vw;
    }

    .menu-nav .container-fluid:nth-child(even) img {
        order: 1;
    }
}

/*お知らせ*/
.news {
    text-align: center;
}

.news h1 {
    height: 12vw;
    line-height: 12vw;
    font-size: 4vw;
}

.news-info {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vw;
    border-top: solid 1px black;
}

.news-info a,
.news-info h2 {
    font-size: 3.5vw;
}


@media screen and (min-width: 768px) {
    .news h1 {
        font-size: 3vw;
    }

    .news-info a,
    .news-info h2 {
        font-size: 2.5vw;
    }
}