@charset "UTF-8";

body {
    width: 100%;
    height: auto;
}

main {
    width: 100%;
    height: auto;
}

.r-main h1,
.r-main h2,
.r-main h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

/* pc版 */
@media (min-width: 768px) {

    /* PC版-TOPイメージ */
    /* スマホだけで表示する */
    .sp-only {
        display: none;
    }

    .restaurantPage__fv {
        width: 100%;
        text-align: center;
    }


    /* PC版-朝食セクション */

    .rest1 {
        width: 100%;
        height: auto;
        padding-top: 200px;
        padding-bottom: 200px;
        position: relative;
    }

    .restaurantPage__breakfast {
        width: 100%;
        height: auto;
    }

    /* スクロールアニメーション＝＝＝＝＝＝＝＝＝ */

    /*スクロールダウン全体の場所*/
    .r-scrolldown {
        /*描画位置※位置は適宜調整してください*/
        position: absolute;
        bottom: 50px;
        left: 90%;
    }

    /*Scrollテキストの描写*/
    .r-scrolldown span {
        /*描画位置*/
        position: absolute;
        left: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #a58e60;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .r-scrolldown:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;

        /*丸の形状*/
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #a58e60;

        /*丸の動き1.6秒かけて透過し、永遠にループ*/
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    /*下からの距離が変化して丸の全体が上から下に動く*/
    @keyframes circlemove {
        0% {
            bottom: 80px;
        }

        100% {
            bottom: -5px;
        }
    }

    /*上から下にかけて丸が透過→不透明→透過する*/
    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    /* 線の描写 */
    .r-scrolldown:after {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: 0;
        /*線の形状*/
        width: 1px;
        height: 100px;
        background: #a58e60;
    }

    /* ↑スクロールアニメーションここまで＝＝＝＝＝＝＝＝＝ */


    /* 朝食タイトル */
    /* ふわっと表示（最初は消しとく） */
    .restaurantPage__breakfast--title {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    .restaurantPage__breakfast--title h2 {
        width: 100%;
        text-align: center;
        /* font-size: 3rem; */
        font-size: clamp(2rem, 1.333rem + 1.389vw, 3rem);
        font-weight: normal;
        color: #666666;
    }

    .restaurantPage__breakfast--title p {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        font-weight: normal;
        line-height: 2;
        color: #666666;
    }

    /* ふわっと表示 */
    .restaurantPage__breakfast--title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 朝食メインメニュー */
    .restaurantPage__breakfast--main {
        display: flex;
        position: relative;
        width: 100%;
        height: 960px;
        /* margin-top: 300px; */
        z-index: -1;
    }

    .restaurantPage__breakfast--mainText {
        display: flex;
        flex: 0 0 635px;
        flex-direction: column;
        gap: 50px;
        width: 635px;
        height: 100%;
        padding: 200px 100px 200px 175px;
        color: white;
        background-color: #161C2D;
        background-image: url(../img/aji-moka30.png);
        background-size: 380px 430px;
    }

    .restaurantPage__breakfast--mainText h3 {
        width: 100%;
        text-align: center;
        font-size: 3rem;
        font-family: "Shippori Mincho", serif
    }

    .restaurantPage__breakfast--mainText p {
        width: 100%;
        text-align: center;
        font-size: 1.75rem;
    }

    .restaurantPage__breakfast--mainText div p {
        /* font-size: 1.25rem; */
        font-size: 1rem;
        text-align: left;
        padding-left: 2rem;
    }

    .restaurantPage__breakfast--pcHiddenImage {
        /* PCでは表示させない指示！ */
        display: none;
    }

    .restaurantPage__breakfast--mainImage {
        flex: 1 1 auto;
        height: 100%;
    }

    .restaurantPage__breakfast--mainImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    /* 朝食のポイント3選 */
    .restaurantPage__breakfast--sub {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        gap: 40px;
        padding: 100px 0;
    }

    .restaurantPage__breakfast--sub div {
        display: flex;
        flex-direction: column;
        width: 400px;
        height: 500px;
        text-align: center;
        color: #666666;
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        justify-content: space-between;
    }

    .restaurantPage__breakfast--subImage {
        width: 400px;
        height: 325px;
        max-height: 325px;
        overflow: hidden;
        position: relative;
    }

    .restaurantPage__breakfast--subImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* カニの大きな画像 */
    .restaurantPage__breakfast--underBackImage {
        width: 100%;
        height: 550px;
        background-image: url(../img/kani_back.jpg);
        background-size: 100% auto;
        background-position: center;
        padding: 50px 0;
    }

    .restaurantPage__breakfast--underImage {
        position: relative;
        height: 450px;
        z-index: 500;
    }

    .restaurantPage__breakfast--underImage img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-750px, 0);
        width: 800px;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .restaurantPage__breakfast--underTextWrapper {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .restaurantPage__breakfast--underText {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50px, 0);
        width: 800px;
        height: 100%;
        background-color: white;
        margin-top: -150px;
        color: #666666;
        font-weight: normal;
        padding: 95px 0 0 100px;
        border: #666666 1px solid;
        z-index: 1000;
    }

    .restaurantPage__breakfast--underText p {
        margin-top: 50px;
        font-size: 1.25rem;
    }

    /* 朝食の基本情報　*/
    .restaurantPage__breakfast--info {
        max-width: 1000px;
        margin: 100px auto 200px;
        padding: 0 20px;
        font-size: 1.25rem;
    }

    .restaurantPage__breakfast--info h2 {
        width: 100%;
        height: auto;
        color: #666666;
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
        font-weight: normal;
        text-align: center;
        margin-bottom: 25px;
    }

    .restaurantPage__breakfast--info dl {
        display: flex;
        color: #666666;
        border-bottom: 1px solid #666666;
        padding: 15px 15px 15px 60px;
        font-size: clamp(1rem, 0.333rem + 0.972vw, 1.25rem);
    }

    .restaurantPage__breakfast--info dt {
        flex: 0 0 200px;
        /* 左側の見出し部分の幅 */
        font-weight: bold;
    }

    .restinfo {
        margin-top: 1rem;
    }

    .restaurantPage__breakfast--info dd {
        flex: 1;
        margin: 0;
        line-height: 1.6;
    }


    /* PC版-夕食セクション */

    .restaurantPage__dinner {
        width: 100%;
        height: auto;
        background-color: #161C2D;
        margin-bottom: 10px;
    }

    /* 夕食タイトル */
    .restaurantPage__dinner--title {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    .restaurantPage__dinner--title h2 {
        width: 100%;
        text-align: center;
        /* font-size: 3rem; */
        font-size: clamp(2rem, 1.333rem + 1.389vw, 3rem);
        font-weight: normal;
        color: white;
    }

    .restaurantPage__dinner--title p {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        font-weight: normal;
        line-height: 2;
        color: white;
    }

    .restaurantPage__dinner--title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 夕食メインメニュー */
    .restaurantPage__dinner--main {
        display: flex;
        width: 100%;
        height: 960px;
    }

    .restaurantPage__dinner--mainText {
        display: flex;
        flex: 0 0 635px;
        flex-direction: column;
        gap: 50px;
        width: 635px;
        height: 100%;
        padding: 200px 100px 200px 175px;
        color: #666666;
        background-color: white;
        background-image: url(../img/aji-moka30.png);
        background-size: 380px 430px;
        background-position: top right;
    }

    .restaurantPage__dinner--mainText h3 {
        width: 100%;
        text-align: center;
        font-size: 3rem;
        font-family: "Shippori Mincho", serif
    }

    .restaurantPage__dinner--mainText p {
        width: 100%;
        text-align: center;
        font-size: 1.75rem;
    }

    .restaurantPage__dinner--mainText div p {
        font-size: 1rem;
        text-align: left;
        padding-left: 1rem;

    }

    .restaurantPage__dinner--pcHiddenImage {
        /* PCでは表示させない指示！ */
        display: none;
    }

    .restaurantPage__dinner--mainImage {
        flex: 1 1 auto;
        height: 100%;
    }

    .restaurantPage__dinner--mainImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    /* 夕食のポイント3選 */
    .restaurantPage__dinner--sub {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        gap: 40px;
        padding: 100px 0;
    }

    .restaurantPage__dinner--sub div {
        display: flex;
        flex-direction: column;
        width: 400px;
        height: 500px;
        text-align: center;
        color: white;
        font-size: 1.25rem;
        justify-content: space-between;
    }

    .restaurantPage__dinner--subImage {
        width: 400px;
        height: 325px;
        max-height: 325px;
        overflow: hidden;
        position: relative;
    }

    .restaurantPage__dinner--subImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* ワインの大きな画像 */
    .restaurantPage__dinner--underBackImage {
        width: 100%;
        height: 550px;
        background-image: url(../img/wain_back.jpg);
        background-size: 100% auto;
        background-position: center;
        padding: 50px 0;
    }

    .restaurantPage__dinner--underTextWrapper {
        position: relative;
        width: 100%;
        height: 450px;
    }

    .restaurantPage__dinner--underText {
        display: flex;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50px, 0);
        align-items: center;
        justify-content: center;
        width: 800px;
        height: 100%;
        background-color: white;
        color: #666666;
        font-weight: normal;
        border: #666666 1px solid;
        font-size: 1.25rem;
        z-index: 1000;
    }

    .restaurantPage__dinner--underText p {
        width: 540px;
    }

    .restaurantPage__dinner--underImage {
        position: relative;
        width: 100%;
        height: 450px;
        margin-top: -150px;
        z-index: 500;
    }

    .restaurantPage__dinner--underImage img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-750px, 0);
        width: 800px;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    /* 夕食の基本情報 */
    .restaurantPage__dinner--info {
        max-width: 1000px;
        margin: 200px auto 0px;
        padding: 0 20px 100px;
        font-size: 1.25rem;
    }

    .restaurantPage__dinner--info h2 {
        width: 100%;
        height: auto;
        color: #fff;
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
        font-weight: normal;
        text-align: center;
        margin-bottom: 25px;
    }

    .restaurantPage__dinner--info dl {
        display: flex;
        color: #fff;
        border-bottom: 1px solid #666666;
        padding: 15px 15px 15px 60px;
        font-size: clamp(1rem, 0.333rem + 0.972vw, 1.25rem);
    }

    .restaurantPage__dinner--info dt {
        flex: 0 0 200px;
        /* 左側の見出し部分の幅 */
        font-weight: bold;
    }

    .restinfo {
        margin-top: 1rem;
    }

    .rrestaurantPage__dinner--info dd {
        flex: 1;
        margin: 0;
        line-height: 1.6;
    }

}

/* sp版 */
@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .inner {
        padding: 0 50px;
    }

    /* SP版-TOPイメージ */
    /* PCだけで表示する */
    .restaurantPage__fv img {
        width: 100%;
    }

    .pc-only {
        display: none;
    }

    .br-sp {
        display: none;
    }

    .fv {
        aspect-ratio: 375 / 470;
        /* 縦横比を固定 */
    }


    /* SP版-朝食セクション */

    .rest1 {
        width: 100%;
        height: auto;
        padding-top: 100px;
        position: relative;
    }

    .restaurantPage__breakfast {
        width: 100%;
        height: auto;
    }

    /* スクロールアニメーション＝＝＝＝＝＝＝＝＝ */

    /*スクロールダウン全体の場所*/
    .r-scrolldown {
        /*描画位置※位置は適宜調整してください*/
        position: absolute;
        bottom: 30px;
        left: 90%;
    }

    /*Scrollテキストの描写*/
    .r-scrolldown span {
        /*描画位置*/
        position: absolute;
        left: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #a58e60;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .r-scrolldown:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;

        /*丸の形状*/
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #a58e60;

        /*丸の動き1.6秒かけて透過し、永遠にループ*/
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    /*下からの距離が変化して丸の全体が上から下に動く*/
    @keyframes circlemove {
        0% {
            bottom: 80px;
        }

        100% {
            bottom: -5px;
        }
    }

    /*上から下にかけて丸が透過→不透明→透過する*/
    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    /* 線の描写 */
    .r-scrolldown:after {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: 0;
        /*線の形状*/
        width: 1px;
        height: 70px;
        background: #a58e60;
    }

    /* ↑スクロールアニメーションここまで＝＝＝＝＝＝＝＝＝ */



    /* 朝食タイトル */
    /* ふわっと表示（最初は消しとく） */
    .restaurantPage__breakfast--title {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    .restaurantPage__breakfast--title h2 {
        text-align: center;
        font-size: 1.75rem;
        font-weight: normal;
        color: #666666;
    }

    .restaurantPage__breakfast--title p {
        text-align: center;
        margin-top: 20px;
        font-size: 1rem;
        font-weight: normal;
        color: #666666;
        line-height: 2;
        padding-bottom: 100px;
    }

    /* ふわっと表示 */
    .restaurantPage__breakfast--title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 朝食メインメニュー */
    .restaurantPage__breakfast--main {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        width: 100%;
        height: auto;
        z-index: -1;
    }

    .restaurantPage__breakfast--mainText {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
        height: auto;
        padding: 100px 60px 100px 60px;
        color: white;
        background-color: #161C2D;
    }

    .restaurantPage__breakfast--mainText h3 {
        text-align: center;
        font-size: 2.25rem;
    }

    .restaurantPage__breakfast--mainText p {
        text-align: center;
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .restaurantPage__breakfast--mainText div p {
        font-size: 1rem;
        text-align: left;
    }

    .restaurantPage__breakfast--pcHiddenImage {
        position: absolute;
        width: 150px;
        height: 170px;
        top: 25%;
        right: 20px;
    }

    .restaurantPage__breakfast--pcHiddenImage img {
        width: 100%;
        height: 100%;
    }

    .restaurantPage__breakfast--mainImage {
        width: 100%;
        height: 310px;
    }

    .restaurantPage__breakfast--mainImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 朝食のポイント3選 */
    .restaurantPage__breakfast--sub {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 50px;
        padding: 100px 0;
    }

    .restaurantPage__breakfast--sub div {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        text-align: center;
        color: #666666;
        font-size: 1rem;
        gap: 20px;
    }

    .restaurantPage__breakfast--subImage {
        width: 100%;
        height: 325px;
    }

    .restaurantPage__breakfast--subImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* カニの大きな画像 */
    .restaurantPage__breakfast--underBackImage {
        width: 100%;
        height: 200px;
        padding: 25px 0;
        background-image: url(../img/kani_back.jpg);
        background-size: 100% 100%;
        background-position: center;
    }

    .restaurantPage__breakfast--underImage {
        position: relative;
        width: 100%;
        height: 150px;
        z-index: 500;
    }

    .restaurantPage__breakfast--underImage img {
        position: absolute;
        top: 0;
        left: 70%;
        transform: translate(-235px, 0);
        width: 260px;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .restaurantPage__breakfast--underTextWrapper {
        position: relative;
        width: 100%;
        height: auto;
    }

    .restaurantPage__breakfast--underText {
        position: absolute;
        top: 0;
        left: 30%;
        transform: translate(-25px, 0);
        width: 260px;
        height: 360px;
        background-color: white;
        margin-top: -50px;
        color: #666666;
        font-weight: normal;
        padding: 30px 15px;
        border: #666666 1px solid;
        z-index: 1000;
    }

    .restaurantPage__breakfast--underText h2 {
        font-size: 1.25rem;
        padding: 0 15px;
    }

    .restaurantPage__breakfast--underText p {
        margin-top: 30px;
        font-size: 1rem;
    }

    /* 朝食の基本情報 */
    .restaurantPage__breakfast--info {
        max-width: 1000px;
        margin: 400px auto 100px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .restaurantPage__breakfast--info h2 {
        width: 100%;
        height: auto;
        color: #666666;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        margin-bottom: 15px;
    }

    .restaurantPage__breakfast--info dl {
        display: flex;
        flex-direction: column;
        /* 縦並び */
        color: #666666;
        border-bottom: 1px solid #666666;
        padding: 10px 10px 10px 20px;
        font-size: 1rem;
    }

    .restaurantPage__breakfast--info dt {
        flex: none;
        font-weight: bold;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .restinfo {
        margin-top: 1rem;
    }

    .restaurantPage__breakfast--info dd {
        flex: 1;
        margin: 0;
        width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }



    /* 夕食セクション */

    .restaurantPage__dinner {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    /* 夕食タイトル */
    .restaurantPage__dinner--title {
        position: relative;
        padding: 100px 0;
        background-color: #161C2D;
        color: white;
    }

    /* ふわっと表示 */
    .restaurantPage__dinner--title h2,
    .restaurantPage__dinner--title p {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    .restaurantPage__dinner--title h2 {
        width: 100%;
        text-align: center;
        font-size: 1.75rem;
        font-weight: normal;
    }

    .restaurantPage__dinner--title p {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        margin-top: 20px;
        line-height: 2;
    }

    .restaurantPage__dinner--title h2.visible,
    .restaurantPage__dinner--title p.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .restaurantPage__dinner--pcHiddenImage {
        position: absolute;
        width: 150px;
        height: 170px;
        top: 75%;
        left: 20px;
    }

    .restaurantPage__dinner--pcHiddenImage img {
        width: 100%;
        height: 100%;
    }

    /* 夕食メインメニュー */
    .restaurantPage__dinner--main {
        width: 100%;
        height: auto;
    }

    .restaurantPage__dinner--mainText {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
        height: auto;
        padding: 100px 45px;
        color: #666666;
    }

    .restaurantPage__dinner--mainText h3 {
        width: 100%;
        font-size: 2.25rem;
    }

    .restaurantPage__dinner--mainText p {
        width: 100%;
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .restaurantPage__dinner--mainText div p {
        font-size: 1rem;
    }

    .restaurantPage__dinner--mainImage {
        width: 100%;
        height: 310px;
    }

    .restaurantPage__dinner--mainImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 夕食のポイント3選 */
    .restaurantPage__dinner--sub {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 50px;
        padding: 100px 0;
        background-color: #161C2D;
    }

    .restaurantPage__dinner--sub div {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 450px;
        text-align: center;
        color: white;
        font-size: 1rem;
        justify-content: space-between;
    }

    .restaurantPage__dinner--subImage {
        width: 400px;
        max-height: 325px;
    }

    .restaurantPage__dinner--subImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* ワインの大きな画像 */
    .restaurantPage__dinner--underBackImage {
        position: relative;
        width: 100%;
        height: 200px;
        background-image: url(../img/wain_back.jpg);
        background-size: 100% 100%;
        background-position: center;
    }

    .restaurantPage__dinner--underText {
        position: absolute;
        top: 80%;
        left: 30%;
        transform: translate(-25px, 0);
        width: 260px;
        height: 300px;
        background-color: white;
        color: #666666;
        font-weight: normal;
        padding: 30px 30px;
        border: #666666 1px solid;
        z-index: 1000;
    }

    .restaurantPage__dinner--underImage {
        position: relative;
        width: 100%;
        height: 150px;
        margin-top: -175px;
        z-index: 500;
    }

    .restaurantPage__dinner--underImage img {
        position: absolute;
        top: 0;
        left: 70%;
        transform: translate(-235px, 0);
        width: 260px;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    /* 夕食の基本情報 */
    .restaurantPage__dinner--info {
        max-width: 1000px;
        margin: 400px auto 100px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .restaurantPage__dinner--info h2 {
        width: 100%;
        height: auto;
        color: #666666;
        font-size: 1.5rem;
        font-weight: normal;
        text-align: center;
        margin-bottom: 15px;
    }

    .restaurantPage__dinner--info dl {
        display: flex;
        flex-direction: column;
        /* 縦並び */
        color: #666666;
        border-bottom: 1px solid #666666;
        padding: 10px 10px 10px 20px;
        font-size: 1rem;
    }

    .restaurantPage__dinner--info dt {
        flex: none;
        font-weight: bold;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .restinfo {
        margin-top: 1rem;
    }

    .restaurantPage__dinner--info dd {
        flex: 1;
        margin: 0;
        width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

}